mirror of
https://github.com/zen-browser/desktop.git
synced 2026-08-28 17:31:32 +00:00
Compare commits
48 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f28e0688fb | ||
|
|
8df6fef1ac | ||
|
|
4746d36699 | ||
|
|
9e0c790602 | ||
|
|
3d53b37e8b | ||
|
|
e7ddfb52db | ||
|
|
ba70449bdd | ||
|
|
bf40c31149 | ||
|
|
7a093beae4 | ||
|
|
03b4e934fe | ||
|
|
b93d19b873 | ||
|
|
b9c4000fe2 | ||
|
|
0b7687ec6d | ||
|
|
d70b3d902c | ||
|
|
f9f8f2f372 | ||
|
|
99dca42723 | ||
|
|
ed0a6fd447 | ||
|
|
88c6611f1e | ||
|
|
e66e763e63 | ||
|
|
721135f576 | ||
|
|
d8a934d2ec | ||
|
|
91a1d4d2ca | ||
|
|
97577dac26 | ||
|
|
5723a89bcd | ||
|
|
28167f86c5 | ||
|
|
49a5260007 | ||
|
|
cebaa0cefa | ||
|
|
e2e1ab4e6d | ||
|
|
9f2771aff6 | ||
|
|
67acee0791 | ||
|
|
82e1c79b60 | ||
|
|
93776ce026 | ||
|
|
816ec2d40c | ||
|
|
13edb480c4 | ||
|
|
7e8ba31bab | ||
|
|
f8daccb4c9 | ||
|
|
bdce5db518 | ||
|
|
7f40771405 | ||
|
|
89e31cd31f | ||
|
|
b0b2b7a1de | ||
|
|
b7439a92dc | ||
|
|
f2a2f7188b | ||
|
|
61275153eb | ||
|
|
0069716cd9 | ||
|
|
0953d0cda0 | ||
|
|
864a8ef713 | ||
|
|
759aa967b3 | ||
|
|
2a887a5f2e |
2
.gitattributes
vendored
2
.gitattributes
vendored
@@ -5,4 +5,4 @@
|
|||||||
*.patch linguist-language=C++
|
*.patch linguist-language=C++
|
||||||
*.d.ts linguist-language=TypeScript
|
*.d.ts linguist-language=TypeScript
|
||||||
|
|
||||||
src/zen/tests/*.js linguist-language=Test
|
src/zen/tests/** linguist-language=C++
|
||||||
|
|||||||
38
.github/workflows/build.yml
vendored
38
.github/workflows/build.yml
vendored
@@ -287,7 +287,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
use-sccache: ${{ inputs.use-sccache }}
|
use-sccache: ${{ inputs.use-sccache }}
|
||||||
build-version: ${{ needs.build-data.outputs.version }}
|
build-version: ${{ needs.build-data.outputs.version }}
|
||||||
generate-gpo: true
|
generate-pgo: true
|
||||||
profile-data-path-archive: zen-windows-profile-data-and-jarlog.zip
|
profile-data-path-archive: zen-windows-profile-data-and-jarlog.zip
|
||||||
release-branch: ${{ inputs.update_branch }}
|
release-branch: ${{ inputs.update_branch }}
|
||||||
MOZ_BUILD_DATE: ${{needs.buildid.outputs.buildids}}
|
MOZ_BUILD_DATE: ${{needs.buildid.outputs.buildids}}
|
||||||
@@ -313,7 +313,7 @@ jobs:
|
|||||||
needs: [build-data, windows-step-2, start-self-host, buildid]
|
needs: [build-data, windows-step-2, start-self-host, buildid]
|
||||||
with:
|
with:
|
||||||
build-version: ${{ needs.build-data.outputs.version }}
|
build-version: ${{ needs.build-data.outputs.version }}
|
||||||
generate-gpo: false
|
generate-pgo: false
|
||||||
release-branch: ${{ inputs.update_branch }}
|
release-branch: ${{ inputs.update_branch }}
|
||||||
MOZ_BUILD_DATE: ${{needs.buildid.outputs.buildids}}
|
MOZ_BUILD_DATE: ${{needs.buildid.outputs.buildids}}
|
||||||
use-sccache: ${{ inputs.use-sccache }}
|
use-sccache: ${{ inputs.use-sccache }}
|
||||||
@@ -331,15 +331,41 @@ jobs:
|
|||||||
MOZ_BUILD_DATE: ${{needs.buildid.outputs.buildids}}
|
MOZ_BUILD_DATE: ${{needs.buildid.outputs.buildids}}
|
||||||
use-sccache: ${{ inputs.use-sccache }}
|
use-sccache: ${{ inputs.use-sccache }}
|
||||||
|
|
||||||
mac:
|
mac-step-1:
|
||||||
name: macOS build
|
name: macOS build step 1 (PGO build)
|
||||||
|
uses: ./.github/workflows/macos-release-build.yml
|
||||||
|
needs: [build-data, buildid]
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
secrets: inherit
|
||||||
|
with:
|
||||||
|
use-sccache: ${{ inputs.use-sccache }}
|
||||||
|
build-version: ${{ needs.build-data.outputs.version }}
|
||||||
|
generate-pgo: true
|
||||||
|
release-branch: ${{ inputs.update_branch }}
|
||||||
|
MOZ_BUILD_DATE: ${{needs.buildid.outputs.buildids}}
|
||||||
|
|
||||||
|
mac-step-2:
|
||||||
|
name: macOS build step 2 (Generate profile data)
|
||||||
|
uses: ./.github/workflows/macos-profile-build.yml
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
secrets: inherit
|
||||||
|
needs: [mac-step-1, build-data]
|
||||||
|
with:
|
||||||
|
build-version: ${{ needs.build-data.outputs.version }}
|
||||||
|
release-branch: ${{ inputs.update_branch }}
|
||||||
|
|
||||||
|
mac-step-3:
|
||||||
|
name: macOS build step 3 (build with profile data)
|
||||||
uses: ./.github/workflows/macos-release-build.yml
|
uses: ./.github/workflows/macos-release-build.yml
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
needs: [build-data, buildid]
|
needs: [build-data, mac-step-2, start-self-host, buildid]
|
||||||
with:
|
with:
|
||||||
build-version: ${{ needs.build-data.outputs.version }}
|
build-version: ${{ needs.build-data.outputs.version }}
|
||||||
|
generate-pgo: false
|
||||||
release-branch: ${{ inputs.update_branch }}
|
release-branch: ${{ inputs.update_branch }}
|
||||||
MOZ_BUILD_DATE: ${{needs.buildid.outputs.buildids}}
|
MOZ_BUILD_DATE: ${{needs.buildid.outputs.buildids}}
|
||||||
use-sccache: ${{ inputs.use-sccache }}
|
use-sccache: ${{ inputs.use-sccache }}
|
||||||
@@ -350,7 +376,7 @@ jobs:
|
|||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
secrets: inherit
|
secrets: inherit
|
||||||
needs: [build-data, mac]
|
needs: [build-data, mac-step-3]
|
||||||
with:
|
with:
|
||||||
build-version: ${{ needs.build-data.outputs.version }}
|
build-version: ${{ needs.build-data.outputs.version }}
|
||||||
release-branch: ${{ inputs.update_branch }}
|
release-branch: ${{ inputs.update_branch }}
|
||||||
|
|||||||
2
.github/workflows/linux-release-build.yml
vendored
2
.github/workflows/linux-release-build.yml
vendored
@@ -105,6 +105,8 @@ jobs:
|
|||||||
SURFER_COMPAT: ${{ matrix.arch }}
|
SURFER_COMPAT: ${{ matrix.arch }}
|
||||||
SURFER_CERT_PATCH_ISSUER: ${{ secrets.SURFER_CERT_PATCH_ISSUER }}
|
SURFER_CERT_PATCH_ISSUER: ${{ secrets.SURFER_CERT_PATCH_ISSUER }}
|
||||||
SURFER_CERT_PATCH_NAME: ${{ secrets.SURFER_CERT_PATCH_NAME }}
|
SURFER_CERT_PATCH_NAME: ${{ secrets.SURFER_CERT_PATCH_NAME }}
|
||||||
|
SURFER_CERT_PATCH_NAME_PREV: ${{ secrets.SURFER_CERT_PATCH_NAME_PREV }}
|
||||||
|
SURFER_CERT_PATCH_ISSUER_PREV: ${{ secrets.SURFER_CERT_PATCH_ISSUER_PREV }}
|
||||||
run: |
|
run: |
|
||||||
. "$HOME/.cargo/env"
|
. "$HOME/.cargo/env"
|
||||||
npm run import
|
npm run import
|
||||||
|
|||||||
111
.github/workflows/macos-profile-build.yml
vendored
Normal file
111
.github/workflows/macos-profile-build.yml
vendored
Normal file
@@ -0,0 +1,111 @@
|
|||||||
|
name: macOS PGO Builds
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
inputs:
|
||||||
|
build-version:
|
||||||
|
description: "The version to build"
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
release-branch:
|
||||||
|
description: "The branch to build"
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
macos-profile-build:
|
||||||
|
name: |
|
||||||
|
macOS Profile Build - ${{ matrix.arch }}
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
arch: [x86_64, aarch64]
|
||||||
|
|
||||||
|
runs-on: ${{ matrix.arch == 'x86_64' && 'macos-15-intel' || 'macos-26' }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Setup Node.js
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version-file: ".nvmrc"
|
||||||
|
|
||||||
|
- name: Setup Python
|
||||||
|
uses: actions/setup-python@v5
|
||||||
|
|
||||||
|
- name: Setup Git
|
||||||
|
run: |
|
||||||
|
git config --global user.name "github-actions[bot]"
|
||||||
|
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
||||||
|
|
||||||
|
- name: Setup Rust
|
||||||
|
run: |
|
||||||
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain $(cat .rust-toolchain)
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: npm ci
|
||||||
|
|
||||||
|
- name: Load Surfer CI setup
|
||||||
|
run: npm run surfer -- ci --brand ${{ inputs.release-branch }} --display-version ${{ inputs.build-version }}
|
||||||
|
|
||||||
|
- name: Download instrumented app
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
with:
|
||||||
|
path: ~/instrumented
|
||||||
|
name: macos-pgo-stage1-${{ matrix.arch }}
|
||||||
|
|
||||||
|
- name: Download Firefox and dependencies
|
||||||
|
run: npm run download
|
||||||
|
|
||||||
|
- name: Import patches
|
||||||
|
env:
|
||||||
|
SURFER_NO_BRANDING_PATCH: true
|
||||||
|
run: |
|
||||||
|
. "$HOME/.cargo/env"
|
||||||
|
npm run import
|
||||||
|
|
||||||
|
- name: Bootstrap
|
||||||
|
run: |
|
||||||
|
cd engine
|
||||||
|
export SURFER_PLATFORM="darwin"
|
||||||
|
./mach --no-interactive bootstrap --application-choice browser --exclude macos-sdk || true
|
||||||
|
|
||||||
|
- name: Extract instrumented app
|
||||||
|
run: |
|
||||||
|
set -ex
|
||||||
|
cd engine
|
||||||
|
./mach python -m mozbuild.action.unpack_dmg \
|
||||||
|
"$HOME/instrumented/zen-macos-pgo-stage1-${{ matrix.arch }}.dmg" \
|
||||||
|
"$HOME/instrumented/app"
|
||||||
|
APP=$(find "$HOME/instrumented/app" -maxdepth 1 -name "*.app" -type d | head -1)
|
||||||
|
codesign --force --deep --sign - "$APP" || true
|
||||||
|
|
||||||
|
- name: Generate profile data
|
||||||
|
run: |
|
||||||
|
set -ex
|
||||||
|
export LLVM_PROFDATA="$HOME/.mozbuild/clang/bin/llvm-profdata"
|
||||||
|
export JARLOG_FILE=en-US.log
|
||||||
|
BINARY=$(find "$HOME/instrumented" -type f -path "*/Contents/MacOS/zen" | head -1)
|
||||||
|
test -n "$BINARY"
|
||||||
|
cd engine
|
||||||
|
./mach python ../scripts/download_pgo_extended_corpus.py
|
||||||
|
./mach python build/pgo/profileserver.py --binary "$BINARY" --extended-corpus ./pgo-extended-corpus
|
||||||
|
|
||||||
|
- name: Move profile data
|
||||||
|
run: |
|
||||||
|
mv engine/merged.profdata merged.profdata
|
||||||
|
mv engine/en-US.log en-US.log
|
||||||
|
|
||||||
|
- name: Upload artifacts
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
retention-days: 1
|
||||||
|
path: |
|
||||||
|
merged.profdata
|
||||||
|
en-US.log
|
||||||
|
name: macos-profdata-${{ matrix.arch }}
|
||||||
193
.github/workflows/macos-release-build.yml
vendored
193
.github/workflows/macos-release-build.yml
vendored
@@ -1,10 +1,15 @@
|
|||||||
name: macOS Release Build
|
name: macOS Release Build
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
inputs:
|
inputs:
|
||||||
|
generate-pgo:
|
||||||
|
required: true
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
build-version:
|
build-version:
|
||||||
description: "The version to build"
|
description: "The version to build"
|
||||||
required: true
|
required: true
|
||||||
@@ -26,17 +31,22 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
mac-build:
|
mac-build:
|
||||||
name: Build macOS - ${{ matrix.arch }}
|
name: Build macOS - ${{ matrix.arch }}
|
||||||
runs-on: ${{ (inputs.release-branch == 'release') && 'blacksmith-6vcpu-macos-latest' || 'macos-26' }}
|
runs-on: 'blacksmith-8vcpu-ubuntu-2404'
|
||||||
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
arch: [x86_64, aarch64]
|
|
||||||
env:
|
env:
|
||||||
SCCACHE_GHA_ENABLED: ${{ inputs.use-sccache && 'true' || 'false' }}
|
SCCACHE_GHA_ENABLED: ${{ inputs.use-sccache && 'true' || 'false' }}
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
CARGO_INCREMENTAL: 0
|
CARGO_INCREMENTAL: 0
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
arch: [x86_64, aarch64]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: Free Disk Space (Ubuntu)
|
||||||
|
uses: jlumbroso/free-disk-space@main
|
||||||
|
with:
|
||||||
|
tool-cache: false
|
||||||
|
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
@@ -44,16 +54,10 @@ jobs:
|
|||||||
token: ${{ secrets.DEPLOY_KEY }}
|
token: ${{ secrets.DEPLOY_KEY }}
|
||||||
|
|
||||||
- name: Setup Node.js
|
- name: Setup Node.js
|
||||||
uses: actions/setup-node@v4
|
uses: useblacksmith/setup-node@v5
|
||||||
with:
|
with:
|
||||||
node-version-file: ".nvmrc"
|
node-version-file: ".nvmrc"
|
||||||
|
|
||||||
- name: Log SDK versions
|
|
||||||
run: |
|
|
||||||
ls /Library/Developer/CommandLineTools/SDKs/
|
|
||||||
xcrun --show-sdk-version
|
|
||||||
xcrun --show-sdk-path
|
|
||||||
|
|
||||||
- name: Run sccache-cache
|
- name: Run sccache-cache
|
||||||
uses: mozilla-actions/sccache-action@main
|
uses: mozilla-actions/sccache-action@main
|
||||||
if: ${{ inputs.use-sccache }}
|
if: ${{ inputs.use-sccache }}
|
||||||
@@ -67,157 +71,158 @@ jobs:
|
|||||||
core.exportVariable('ACTIONS_CACHE_URL', process.env['ACTIONS_CACHE_URL'])
|
core.exportVariable('ACTIONS_CACHE_URL', process.env['ACTIONS_CACHE_URL'])
|
||||||
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env['ACTIONS_RUNTIME_TOKEN'])
|
core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env['ACTIONS_RUNTIME_TOKEN'])
|
||||||
|
|
||||||
- name: Setup Python
|
|
||||||
uses: actions/setup-python@v5
|
|
||||||
# note: This will use the version defined in '.python-version' by default
|
|
||||||
|
|
||||||
- name: Setup Git
|
- name: Setup Git
|
||||||
run: |
|
run: |
|
||||||
git config --global user.name "github-actions[bot]"
|
git config --global user.name "github-actions[bot]"
|
||||||
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
||||||
|
|
||||||
- name: Install system dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
brew update
|
npm ci
|
||||||
brew install cairo gnu-tar mercurial
|
sudo apt-get update
|
||||||
sudo pip install setuptools
|
sudo apt-get install -y python3 python3-pip zstd yasm nasm build-essential libgtk2.0-dev libpython3-dev m4 uuid libasound2-dev libcurl4-openssl-dev libdbus-1-dev libdrm-dev libdbus-glib-1-dev libgtk-3-dev libpulse-dev libx11-xcb-dev libxt-dev xvfb --fix-missing
|
||||||
|
|
||||||
brew uninstall --ignore-dependencies python3.12 -f
|
- name: Load Surfer CI setup
|
||||||
|
run: npm run surfer -- ci --brand ${{ inputs.release-branch }} --display-version ${{ inputs.build-version }}
|
||||||
|
|
||||||
export PATH="$(python3 -m site --user-base)/bin":$PATH
|
- name: Download Firefox and dependencies
|
||||||
python3 -m pip install --user mercurial
|
run: npm run download
|
||||||
|
|
||||||
rm '/usr/local/bin/2to3-3.11' '/usr/local/bin/2to3-3.12' '/usr/local/bin/2to3'
|
- name: mac-cross Cache
|
||||||
rm '/usr/local/bin/idle3.11' '/usr/local/bin/idle3.12' '/usr/local/bin/idle3'
|
env:
|
||||||
rm '/usr/local/bin/pydoc3.11' '/usr/local/bin/pydoc3.12' '/usr/local/bin/pydoc3'
|
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 5
|
||||||
rm '/usr/local/bin/python3.11' '/usr/local/bin/python3.12' '/usr/local/bin/python3'
|
id: cache-mac-cross
|
||||||
rm '/usr/local/bin/python3.11-config' '/usr/local/bin/python3.12-config' '/usr/local/bin/python3-config'
|
uses: useblacksmith/cache@v5
|
||||||
|
with:
|
||||||
|
path: ${HOME}/mac-cross
|
||||||
|
key: mac-cross
|
||||||
|
|
||||||
brew install watchman
|
- name: Setup for macOS (cctools and DMG tools)
|
||||||
|
if: steps.cache-mac-cross.outputs.cache-hit != 'true'
|
||||||
|
run: |
|
||||||
|
set -ex
|
||||||
|
mkdir -p ~/mac-cross
|
||||||
|
cd engine/
|
||||||
|
./mach artifact toolchain --from-build linux64-cctools-port linux64-libdmg linux64-hfsplus
|
||||||
|
mv cctools dmg hfsplus ~/mac-cross/
|
||||||
|
ls ~/mac-cross/cctools/bin/x86_64-apple-darwin-ld ~/mac-cross/cctools/bin/aarch64-apple-darwin-ld ~/mac-cross/dmg/dmg ~/mac-cross/hfsplus/newfs_hfs
|
||||||
|
|
||||||
|
- name: Setup Rust
|
||||||
|
run: |
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain $(cat .rust-toolchain)
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain $(cat .rust-toolchain)
|
||||||
source $HOME/.cargo/env
|
source $HOME/.cargo/env
|
||||||
|
|
||||||
if test "${{ matrix.arch }}" = "aarch64"; then
|
if test "${{ matrix.arch }}" = "aarch64"; then
|
||||||
rustup target add aarch64-apple-darwin
|
rustup target add aarch64-apple-darwin
|
||||||
else
|
else
|
||||||
rustup target add x86_64-apple-darwin
|
rustup target add x86_64-apple-darwin
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Force usage of gnu-tar
|
|
||||||
run: |
|
|
||||||
echo 'export PATH="/usr/local/opt/gnu-tar/libexec/gnubin:$PATH"' >> ~/.bash_profile
|
|
||||||
echo 'export PATH="/usr/local/opt/gnu-tar/libexec/gnubin:$PATH"' >> ~/.zsh
|
|
||||||
source ~/.bash_profile
|
|
||||||
|
|
||||||
- name: Install dependencies
|
|
||||||
run: |
|
|
||||||
npm ci
|
|
||||||
|
|
||||||
- name: Load surfer CI setup
|
|
||||||
run: npm run surfer -- ci --brand ${{ inputs.release-branch }} --display-version ${{ inputs.build-version }}
|
|
||||||
|
|
||||||
- name: Download Firefox source and dependencies
|
|
||||||
run: npm run download
|
|
||||||
|
|
||||||
- name: Import
|
- name: Import
|
||||||
env:
|
env:
|
||||||
SURFER_COMPAT: ${{ matrix.arch }}
|
SURFER_COMPAT: ${{ matrix.arch }}
|
||||||
SURFER_CERT_PATCH_ISSUER: ${{ secrets.SURFER_CERT_PATCH_ISSUER }}
|
SURFER_CERT_PATCH_ISSUER: ${{ secrets.SURFER_CERT_PATCH_ISSUER }}
|
||||||
SURFER_CERT_PATCH_NAME: ${{ secrets.SURFER_CERT_PATCH_NAME }}
|
SURFER_CERT_PATCH_NAME: ${{ secrets.SURFER_CERT_PATCH_NAME }}
|
||||||
run: npm run import
|
SURFER_CERT_PATCH_NAME_PREV: ${{ secrets.SURFER_CERT_PATCH_NAME_PREV }}
|
||||||
|
SURFER_CERT_PATCH_ISSUER_PREV: ${{ secrets.SURFER_CERT_PATCH_ISSUER_PREV }}
|
||||||
|
SURFER_PLATFORM: darwin
|
||||||
|
run: |
|
||||||
|
. "$HOME/.cargo/env"
|
||||||
|
npm run import -- --verbose
|
||||||
|
|
||||||
- name: Bootstrap
|
- name: Bootstrap
|
||||||
run: |
|
run: |
|
||||||
cd engine
|
set -x
|
||||||
export SURFER_PLATFORM="darwin"
|
export SURFER_PLATFORM="darwin"
|
||||||
export PATH="$(python3 -m site --user-base)/bin":$PATH
|
npm run bootstrap
|
||||||
# Always exist with 0, even if bootstrap fails
|
|
||||||
./mach --no-interactive bootstrap --application-choice browser --exclude macos-sdk || true
|
|
||||||
cd ..
|
|
||||||
|
|
||||||
- name: Build language packs
|
- name: Build language packs
|
||||||
run: sh scripts/download-language-packs.sh
|
run: sh scripts/download-language-packs.sh
|
||||||
|
|
||||||
- name: Build Zen (PGO stage 1 - generate)
|
- name: Download artifact (if use profdata)
|
||||||
|
uses: actions/download-artifact@v4
|
||||||
|
if: ${{ !inputs.generate-pgo }}
|
||||||
|
with:
|
||||||
|
path: ~/artifact
|
||||||
|
name: macos-profdata-${{ matrix.arch }}
|
||||||
|
|
||||||
|
- name: Show artifact info
|
||||||
|
if: ${{ !inputs.generate-pgo }}
|
||||||
|
run: |
|
||||||
|
ls ~/artifact
|
||||||
|
ls ~/artifact/en-US.log
|
||||||
|
ls ~/artifact/merged.profdata
|
||||||
|
|
||||||
|
- name: Build
|
||||||
env:
|
env:
|
||||||
SURFER_COMPAT: ${{ matrix.arch }}
|
SURFER_COMPAT: ${{ matrix.arch }}
|
||||||
ZEN_RELEASE_BRANCH: ${{ inputs.release-branch }}
|
ZEN_RELEASE_BRANCH: ${{ inputs.release-branch }}
|
||||||
ZEN_GA_GENERATE_PROFILE: 1
|
|
||||||
ZEN_SAFEBROWSING_API_KEY: ${{ secrets.ZEN_SAFEBROWSING_API_KEY }}
|
ZEN_SAFEBROWSING_API_KEY: ${{ secrets.ZEN_SAFEBROWSING_API_KEY }}
|
||||||
ZEN_MOZILLA_API_KEY: ${{ secrets.ZEN_MOZILLA_API_KEY }}
|
ZEN_MOZILLA_API_KEY: ${{ secrets.ZEN_MOZILLA_API_KEY }}
|
||||||
ZEN_GOOGLE_LOCATION_SERVICE_API_KEY: ${{ secrets.ZEN_GOOGLE_LOCATION_SERVICE_API_KEY }}
|
ZEN_GOOGLE_LOCATION_SERVICE_API_KEY: ${{ secrets.ZEN_GOOGLE_LOCATION_SERVICE_API_KEY }}
|
||||||
run: |
|
|
||||||
export SURFER_PLATFORM="darwin"
|
|
||||||
if [[ -n ${{ inputs.MOZ_BUILD_DATE }} ]];then
|
|
||||||
export MOZ_BUILD_DATE=${{ inputs.MOZ_BUILD_DATE }}
|
|
||||||
fi
|
|
||||||
bash .github/workflows/src/release-build.sh
|
|
||||||
|
|
||||||
- name: Generate PGO profile data
|
|
||||||
env:
|
|
||||||
SURFER_COMPAT: ${{ matrix.arch }}
|
|
||||||
run: |
|
run: |
|
||||||
set -x
|
set -x
|
||||||
export LLVM_PROFDATA="$HOME/.mozbuild/clang/bin/llvm-profdata"
|
|
||||||
export JARLOG_FILE=en-US.log
|
|
||||||
mkdir -p "$HOME/artifact"
|
|
||||||
cd engine
|
|
||||||
./mach python ../scripts/download_pgo_extended_corpus.py
|
|
||||||
./mach package
|
|
||||||
./mach python build/pgo/profileserver.py --extended-corpus ./pgo-extended-corpus
|
|
||||||
mv merged.profdata "$HOME/artifact/merged.profdata"
|
|
||||||
mv en-US.log "$HOME/artifact/en-US.log"
|
|
||||||
|
|
||||||
- name: Build Zen
|
|
||||||
env:
|
|
||||||
SURFER_COMPAT: ${{ matrix.arch }}
|
|
||||||
ZEN_RELEASE_BRANCH: ${{ inputs.release-branch }}
|
|
||||||
ZEN_SAFEBROWSING_API_KEY: ${{ secrets.ZEN_SAFEBROWSING_API_KEY }}
|
|
||||||
ZEN_MOZILLA_API_KEY: ${{ secrets.ZEN_MOZILLA_API_KEY }}
|
|
||||||
ZEN_GOOGLE_LOCATION_SERVICE_API_KEY: ${{ secrets.ZEN_GOOGLE_LOCATION_SERVICE_API_KEY }}
|
|
||||||
run: |
|
|
||||||
export SURFER_PLATFORM="darwin"
|
export SURFER_PLATFORM="darwin"
|
||||||
|
export ZEN_CROSS_COMPILING=1
|
||||||
|
if test ${{ inputs.generate-pgo }} = true; then
|
||||||
|
export ZEN_GA_GENERATE_PROFILE=1
|
||||||
|
fi
|
||||||
if [[ -n ${{ inputs.MOZ_BUILD_DATE }} ]];then
|
if [[ -n ${{ inputs.MOZ_BUILD_DATE }} ]];then
|
||||||
export MOZ_BUILD_DATE=${{ inputs.MOZ_BUILD_DATE }}
|
export MOZ_BUILD_DATE=${{ inputs.MOZ_BUILD_DATE }}
|
||||||
fi
|
fi
|
||||||
bash .github/workflows/src/release-build.sh
|
bash .github/workflows/src/release-build.sh
|
||||||
|
|
||||||
|
- name: Package instrumented app (PGO stage 1)
|
||||||
|
if: ${{ inputs.generate-pgo }}
|
||||||
|
env:
|
||||||
|
SURFER_COMPAT: ${{ matrix.arch }}
|
||||||
|
ZEN_RELEASE: 1
|
||||||
|
SURFER_PLATFORM: darwin
|
||||||
|
ZEN_CROSS_COMPILING: 1
|
||||||
|
ZEN_GA_GENERATE_PROFILE: 1
|
||||||
|
run: |
|
||||||
|
set -ex
|
||||||
|
cd engine
|
||||||
|
./mach package
|
||||||
|
mv obj-${{ matrix.arch }}-apple-darwin/dist/*.dmg "$GITHUB_WORKSPACE/zen-macos-pgo-stage1-${{ matrix.arch }}.dmg"
|
||||||
|
|
||||||
|
- name: Upload artifact (PGO stage 1)
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
if: ${{ inputs.generate-pgo }}
|
||||||
|
with:
|
||||||
|
retention-days: 2
|
||||||
|
name: macos-pgo-stage1-${{ matrix.arch }}
|
||||||
|
path: ./zen-macos-pgo-stage1-${{ matrix.arch }}.dmg
|
||||||
|
|
||||||
- name: Package
|
- name: Package
|
||||||
|
if: ${{ !inputs.generate-pgo }}
|
||||||
env:
|
env:
|
||||||
SURFER_COMPAT: ${{ matrix.arch }}
|
SURFER_COMPAT: ${{ matrix.arch }}
|
||||||
ZEN_GA_DISABLE_PGO: true
|
ZEN_GA_DISABLE_PGO: true
|
||||||
run: |
|
run: |
|
||||||
|
set -x
|
||||||
export SURFER_PLATFORM="darwin"
|
export SURFER_PLATFORM="darwin"
|
||||||
|
export ZEN_CROSS_COMPILING=1
|
||||||
export ZEN_RELEASE=1
|
export ZEN_RELEASE=1
|
||||||
npm run package
|
npm run package
|
||||||
|
|
||||||
- name: Rename artifacts
|
- name: Rename artifacts
|
||||||
|
if: ${{ !inputs.generate-pgo }}
|
||||||
run: |
|
run: |
|
||||||
echo "Tarballing DMG"
|
|
||||||
set -ex
|
set -ex
|
||||||
mv ./dist/*.dmg ./zen-${{ matrix.arch }}-apple-darwin-dist.dmg
|
mv ./dist/*.dmg ./zen-${{ matrix.arch }}-apple-darwin-dist.dmg
|
||||||
mv ./engine/obj-${{ matrix.arch }}-apple-darwin/dist/host/bin/mar ./zen-macos-host-mar
|
|
||||||
mv ./engine/obj-${{ matrix.arch }}-apple-darwin/dist/bin/platform.ini ./platform.ini
|
mv ./engine/obj-${{ matrix.arch }}-apple-darwin/dist/bin/platform.ini ./platform.ini
|
||||||
|
|
||||||
- name: Upload dist dmg
|
- name: Upload dist dmg
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
if: ${{ !inputs.generate-pgo }}
|
||||||
with:
|
with:
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
name: zen-${{ matrix.arch }}-apple-darwin-dist.dmg
|
name: zen-${{ matrix.arch }}-apple-darwin-dist.dmg
|
||||||
path: ./zen-${{ matrix.arch }}-apple-darwin-dist.dmg
|
path: ./zen-${{ matrix.arch }}-apple-darwin-dist.dmg
|
||||||
|
|
||||||
- name: Upload host mar
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
if: matrix.arch == 'aarch64'
|
|
||||||
with:
|
|
||||||
retention-days: 1
|
|
||||||
name: zen-macos-host-mar
|
|
||||||
path: ./zen-macos-host-mar
|
|
||||||
|
|
||||||
- name: Upload platform.ini
|
- name: Upload platform.ini
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
if: matrix.arch == 'x86_64'
|
if: ${{ !inputs.generate-pgo && matrix.arch == 'x86_64' }}
|
||||||
with:
|
with:
|
||||||
retention-days: 1
|
retention-days: 1
|
||||||
name: platform.ini
|
name: platform.ini
|
||||||
|
|||||||
@@ -99,6 +99,16 @@ jobs:
|
|||||||
cd engine
|
cd engine
|
||||||
./mach configure
|
./mach configure
|
||||||
|
|
||||||
|
- name: Build host mar tool
|
||||||
|
run: |
|
||||||
|
set -ex
|
||||||
|
cd engine
|
||||||
|
echo "ac_add_options --enable-project=tools/update-packaging" > mar-mozconfig
|
||||||
|
echo "mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj-mar-tools" >> mar-mozconfig
|
||||||
|
MOZCONFIG=$PWD/mar-mozconfig ./mach build -v
|
||||||
|
cp obj-mar-tools/dist/host/bin/mar ../zen-macos-host-mar
|
||||||
|
rm -rf obj-mar-tools mar-mozconfig
|
||||||
|
|
||||||
- name: Download x86_64 DMG from artifacts
|
- name: Download x86_64 DMG from artifacts
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
@@ -213,11 +223,6 @@ jobs:
|
|||||||
--wait
|
--wait
|
||||||
xcrun stapler staple "zen.macos-universal.dmg"
|
xcrun stapler staple "zen.macos-universal.dmg"
|
||||||
|
|
||||||
- name: Download host mar
|
|
||||||
uses: actions/download-artifact@v4
|
|
||||||
with:
|
|
||||||
name: zen-macos-host-mar
|
|
||||||
|
|
||||||
- name: Upload build artifact
|
- name: Upload build artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
|
|||||||
48
.github/workflows/windows-release-build.yml
vendored
48
.github/workflows/windows-release-build.yml
vendored
@@ -6,7 +6,7 @@ permissions:
|
|||||||
on:
|
on:
|
||||||
workflow_call:
|
workflow_call:
|
||||||
inputs:
|
inputs:
|
||||||
generate-gpo:
|
generate-pgo:
|
||||||
required: true
|
required: true
|
||||||
type: boolean
|
type: boolean
|
||||||
default: false
|
default: false
|
||||||
@@ -35,7 +35,7 @@ jobs:
|
|||||||
windows-build:
|
windows-build:
|
||||||
name: Build Windows - ${{ matrix.arch }}
|
name: Build Windows - ${{ matrix.arch }}
|
||||||
# aarch64 does not need full 16x, and we also dont use full LTO when generating GPO
|
# aarch64 does not need full 16x, and we also dont use full LTO when generating GPO
|
||||||
runs-on: ${{ (inputs.release-branch == 'release' && !inputs.generate-gpo && matrix.arch == 'x86_64') && 'self-hosted' || 'blacksmith-8vcpu-ubuntu-2404' }}
|
runs-on: ${{ (inputs.release-branch == 'release' && !inputs.generate-pgo && matrix.arch == 'x86_64') && 'self-hosted' || 'blacksmith-8vcpu-ubuntu-2404' }}
|
||||||
env:
|
env:
|
||||||
SCCACHE_GHA_ENABLED: ${{ inputs.use-sccache && 'true' || 'false' }}
|
SCCACHE_GHA_ENABLED: ${{ inputs.use-sccache && 'true' || 'false' }}
|
||||||
CARGO_TERM_COLOR: always
|
CARGO_TERM_COLOR: always
|
||||||
@@ -48,7 +48,7 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- name: Free Disk Space (Ubuntu)
|
- name: Free Disk Space (Ubuntu)
|
||||||
uses: jlumbroso/free-disk-space@main
|
uses: jlumbroso/free-disk-space@main
|
||||||
if: ${{ !(inputs.generate-gpo && matrix.arch == 'aarch64') }}
|
if: ${{ !(inputs.generate-pgo && matrix.arch == 'aarch64') }}
|
||||||
with:
|
with:
|
||||||
tool-cache: false
|
tool-cache: false
|
||||||
|
|
||||||
@@ -91,7 +91,7 @@ jobs:
|
|||||||
run: npm run surfer -- ci --brand ${{ inputs.release-branch }} --display-version ${{ inputs.build-version }}
|
run: npm run surfer -- ci --brand ${{ inputs.release-branch }} --display-version ${{ inputs.build-version }}
|
||||||
|
|
||||||
- name: Download Firefox and dependencies
|
- name: Download Firefox and dependencies
|
||||||
if: ${{ !(inputs.generate-gpo && matrix.arch == 'aarch64') }}
|
if: ${{ !(inputs.generate-pgo && matrix.arch == 'aarch64') }}
|
||||||
run: npm run download
|
run: npm run download
|
||||||
|
|
||||||
- name: win-cross Cache
|
- name: win-cross Cache
|
||||||
@@ -104,7 +104,7 @@ jobs:
|
|||||||
key: win-cross
|
key: win-cross
|
||||||
|
|
||||||
- name: Setup for Windows
|
- name: Setup for Windows
|
||||||
if: steps.cache-win-cross.outputs.cache-hit != 'true' && !(inputs.generate-gpo && matrix.arch == 'aarch64')
|
if: steps.cache-win-cross.outputs.cache-hit != 'true' && !(inputs.generate-pgo && matrix.arch == 'aarch64')
|
||||||
run: |
|
run: |
|
||||||
set -x
|
set -x
|
||||||
mkdir -p ~/win-cross
|
mkdir -p ~/win-cross
|
||||||
@@ -154,24 +154,26 @@ jobs:
|
|||||||
zlib1g-dev \
|
zlib1g-dev \
|
||||||
aria2
|
aria2
|
||||||
echo Setup wine
|
echo Setup wine
|
||||||
aria2c "https://firefox-ci-tc.services.mozilla.com/api/queue/v1/task/dQz_aHy8Rl-Lt0xf2WlrMw/artifacts/public/build/wine.tar.zst" -o wine.tar.zst
|
aria2c "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/gecko.cache.level-3.toolchains.v3.linux64-wine.latest/artifacts/public/build/wine.tar.zst" -o wine.tar.zst
|
||||||
tar --zstd -xf wine.tar.zst -C ~/win-cross
|
tar --zstd -xf wine.tar.zst -C ~/win-cross
|
||||||
rm wine.tar.zst
|
rm wine.tar.zst
|
||||||
echo Setup Visual Studio
|
echo Setup Visual Studio
|
||||||
./mach python --virtualenv build taskcluster/scripts/misc/get_vs.py build/vs/vs2026.yaml ~/win-cross/vs2026
|
./mach python --virtualenv build taskcluster/scripts/misc/get_vs.py build/vs/vs2026.yaml ~/win-cross/vs2026
|
||||||
|
|
||||||
- name: Import
|
- name: Import
|
||||||
if: ${{ !(inputs.generate-gpo && matrix.arch == 'aarch64') }}
|
if: ${{ !(inputs.generate-pgo && matrix.arch == 'aarch64') }}
|
||||||
env:
|
env:
|
||||||
SURFER_COMPAT: ${{ matrix.arch }}
|
SURFER_COMPAT: ${{ matrix.arch }}
|
||||||
SURFER_CERT_PATCH_ISSUER: ${{ secrets.SURFER_CERT_PATCH_ISSUER }}
|
SURFER_CERT_PATCH_ISSUER: ${{ secrets.SURFER_CERT_PATCH_ISSUER }}
|
||||||
SURFER_CERT_PATCH_NAME: ${{ secrets.SURFER_CERT_PATCH_NAME }}
|
SURFER_CERT_PATCH_NAME: ${{ secrets.SURFER_CERT_PATCH_NAME }}
|
||||||
|
SURFER_CERT_PATCH_NAME_PREV: ${{ secrets.SURFER_CERT_PATCH_NAME_PREV }}
|
||||||
|
SURFER_CERT_PATCH_ISSUER_PREV: ${{ secrets.SURFER_CERT_PATCH_ISSUER_PREV }}
|
||||||
run: |
|
run: |
|
||||||
. "$HOME/.cargo/env"
|
. "$HOME/.cargo/env"
|
||||||
npm run import -- --verbose
|
npm run import -- --verbose
|
||||||
|
|
||||||
- name: Bootstrap
|
- name: Bootstrap
|
||||||
if: ${{ !(inputs.generate-gpo && matrix.arch == 'aarch64') }}
|
if: ${{ !(inputs.generate-pgo && matrix.arch == 'aarch64') }}
|
||||||
run: |
|
run: |
|
||||||
set -x
|
set -x
|
||||||
cd engine/
|
cd engine/
|
||||||
@@ -189,7 +191,7 @@ jobs:
|
|||||||
ls ~/win-cross/vs2026 || true
|
ls ~/win-cross/vs2026 || true
|
||||||
|
|
||||||
- name: Setup Rust
|
- name: Setup Rust
|
||||||
if: ${{ !(inputs.generate-gpo && matrix.arch == 'aarch64') }}
|
if: ${{ !(inputs.generate-pgo && matrix.arch == 'aarch64') }}
|
||||||
run: |
|
run: |
|
||||||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain $(cat .rust-toolchain)
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain $(cat .rust-toolchain)
|
||||||
source $HOME/.cargo/env
|
source $HOME/.cargo/env
|
||||||
@@ -208,18 +210,18 @@ jobs:
|
|||||||
echo "export MOZ_WINDOWS_RS_DIR=$(pwd)/windows-$WINDOWS_RS_VERSION" >> ../configs/common/mozconfig
|
echo "export MOZ_WINDOWS_RS_DIR=$(pwd)/windows-$WINDOWS_RS_VERSION" >> ../configs/common/mozconfig
|
||||||
|
|
||||||
- name: Build language packs
|
- name: Build language packs
|
||||||
if: ${{ !(inputs.generate-gpo && matrix.arch == 'aarch64') }}
|
if: ${{ !(inputs.generate-pgo && matrix.arch == 'aarch64') }}
|
||||||
run: sh scripts/download-language-packs.sh
|
run: sh scripts/download-language-packs.sh
|
||||||
|
|
||||||
- name: Download artifact (if use profdata)
|
- name: Download artifact (if use profdata)
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v4
|
||||||
if: ${{ !inputs.generate-gpo && matrix.arch == 'x86_64' }}
|
if: ${{ !inputs.generate-pgo && matrix.arch == 'x86_64' }}
|
||||||
with:
|
with:
|
||||||
path: ~/artifact
|
path: ~/artifact
|
||||||
name: windows-profdata-${{ matrix.arch == 'aarch64' && 'arm64' || matrix.arch }}
|
name: windows-profdata-${{ matrix.arch == 'aarch64' && 'arm64' || matrix.arch }}
|
||||||
|
|
||||||
- name: Show artifact info
|
- name: Show artifact info
|
||||||
if: ${{ !inputs.generate-gpo && matrix.arch == 'x86_64' }}
|
if: ${{ !inputs.generate-pgo && matrix.arch == 'x86_64' }}
|
||||||
run: |
|
run: |
|
||||||
ls ~/artifact
|
ls ~/artifact
|
||||||
ls ~/artifact/en-US.log
|
ls ~/artifact/en-US.log
|
||||||
@@ -228,7 +230,7 @@ jobs:
|
|||||||
chmod +x ~/artifact/merged.profdata
|
chmod +x ~/artifact/merged.profdata
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
if: ${{ !(inputs.generate-gpo && matrix.arch == 'aarch64') }}
|
if: ${{ !(inputs.generate-pgo && matrix.arch == 'aarch64') }}
|
||||||
env:
|
env:
|
||||||
SURFER_COMPAT: ${{ matrix.arch }}
|
SURFER_COMPAT: ${{ matrix.arch }}
|
||||||
ZEN_RELEASE_BRANCH: ${{ inputs.release-branch }}
|
ZEN_RELEASE_BRANCH: ${{ inputs.release-branch }}
|
||||||
@@ -241,7 +243,7 @@ jobs:
|
|||||||
dos2unix configs/windows/mozconfig
|
dos2unix configs/windows/mozconfig
|
||||||
export SURFER_PLATFORM="win32"
|
export SURFER_PLATFORM="win32"
|
||||||
export ZEN_CROSS_COMPILING=1
|
export ZEN_CROSS_COMPILING=1
|
||||||
if test ${{ inputs.generate-gpo }} = true; then
|
if test ${{ inputs.generate-pgo }} = true; then
|
||||||
export ZEN_GA_GENERATE_PROFILE=1
|
export ZEN_GA_GENERATE_PROFILE=1
|
||||||
fi
|
fi
|
||||||
if [[ -n ${{ inputs.MOZ_BUILD_DATE }} ]];then
|
if [[ -n ${{ inputs.MOZ_BUILD_DATE }} ]];then
|
||||||
@@ -250,7 +252,7 @@ jobs:
|
|||||||
bash .github/workflows/src/release-build.sh
|
bash .github/workflows/src/release-build.sh
|
||||||
|
|
||||||
- name: Package
|
- name: Package
|
||||||
if: ${{ !(inputs.generate-gpo && matrix.arch == 'aarch64') }}
|
if: ${{ !(inputs.generate-pgo && matrix.arch == 'aarch64') }}
|
||||||
env:
|
env:
|
||||||
SURFER_COMPAT: ${{ matrix.arch }}
|
SURFER_COMPAT: ${{ matrix.arch }}
|
||||||
ZEN_GA_DISABLE_PGO: true
|
ZEN_GA_DISABLE_PGO: true
|
||||||
@@ -265,13 +267,13 @@ jobs:
|
|||||||
ls .
|
ls .
|
||||||
|
|
||||||
- name: Move package for PGO upload
|
- name: Move package for PGO upload
|
||||||
if: ${{ inputs.generate-gpo && matrix.arch == 'x86_64' }}
|
if: ${{ inputs.generate-pgo && matrix.arch == 'x86_64' }}
|
||||||
run: |
|
run: |
|
||||||
set -x
|
set -x
|
||||||
mv ./zen.win64.zip ./zen.win64-pgo-stage-1.zip
|
mv ./zen.win64.zip ./zen.win64-pgo-stage-1.zip
|
||||||
|
|
||||||
- name: Rename artifacts
|
- name: Rename artifacts
|
||||||
if: ${{ !inputs.generate-gpo }}
|
if: ${{ !inputs.generate-pgo }}
|
||||||
run: |
|
run: |
|
||||||
mv ./zen.win64.zip zen.win-${{ matrix.arch == 'aarch64' && 'arm64' || matrix.arch }}.zip
|
mv ./zen.win64.zip zen.win-${{ matrix.arch == 'aarch64' && 'arm64' || matrix.arch }}.zip
|
||||||
mv ./dist/output.mar windows${{ matrix.arch == 'aarch64' && '-arm64' || '' }}.mar
|
mv ./dist/output.mar windows${{ matrix.arch == 'aarch64' && '-arm64' || '' }}.mar
|
||||||
@@ -279,14 +281,14 @@ jobs:
|
|||||||
|
|
||||||
- name: Upload artifact (PGO)
|
- name: Upload artifact (PGO)
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
if: ${{ inputs.generate-gpo && matrix.arch == 'x86_64' }}
|
if: ${{ inputs.generate-pgo && matrix.arch == 'x86_64' }}
|
||||||
with:
|
with:
|
||||||
retention-days: 2
|
retention-days: 2
|
||||||
name: ${{ matrix.arch == 'aarch64' && 'arm64' || matrix.arch }}-${{ inputs.profile-data-path-archive }}
|
name: ${{ matrix.arch == 'aarch64' && 'arm64' || matrix.arch }}-${{ inputs.profile-data-path-archive }}
|
||||||
path: ./zen.win64-pgo-stage-1.zip
|
path: ./zen.win64-pgo-stage-1.zip
|
||||||
|
|
||||||
- name: Remove unnecessary files from obj
|
- name: Remove unnecessary files from obj
|
||||||
if: ${{ !inputs.generate-gpo }}
|
if: ${{ !inputs.generate-pgo }}
|
||||||
run: |
|
run: |
|
||||||
set -x
|
set -x
|
||||||
mkdir obj-${{ matrix.arch }}-pc-windows-msvc/
|
mkdir obj-${{ matrix.arch }}-pc-windows-msvc/
|
||||||
@@ -301,7 +303,7 @@ jobs:
|
|||||||
cp -r --no-dereference engine/obj-${{ matrix.arch }}-pc-windows-msvc/* obj-${{ matrix.arch }}-pc-windows-msvc/ || true
|
cp -r --no-dereference engine/obj-${{ matrix.arch }}-pc-windows-msvc/* obj-${{ matrix.arch }}-pc-windows-msvc/ || true
|
||||||
|
|
||||||
- name: Upload dist object
|
- name: Upload dist object
|
||||||
if: ${{ !inputs.generate-gpo }}
|
if: ${{ !inputs.generate-pgo }}
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
retention-days: 2
|
retention-days: 2
|
||||||
@@ -309,7 +311,7 @@ jobs:
|
|||||||
path: obj-${{ matrix.arch }}-pc-windows-msvc
|
path: obj-${{ matrix.arch }}-pc-windows-msvc
|
||||||
|
|
||||||
- name: Upload artifact (if Twilight branch, installer)
|
- name: Upload artifact (if Twilight branch, installer)
|
||||||
if: ${{ inputs.release-branch == 'twilight' && !inputs.generate-gpo }}
|
if: ${{ inputs.release-branch == 'twilight' && !inputs.generate-pgo }}
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
retention-days: 5
|
retention-days: 5
|
||||||
@@ -317,7 +319,7 @@ jobs:
|
|||||||
path: ./zen.installer${{ matrix.arch == 'aarch64' && '-arm64' || '' }}.exe
|
path: ./zen.installer${{ matrix.arch == 'aarch64' && '-arm64' || '' }}.exe
|
||||||
|
|
||||||
- name: Upload artifact (if Twilight branch, .mar)
|
- name: Upload artifact (if Twilight branch, .mar)
|
||||||
if: ${{ inputs.release-branch == 'twilight' && !inputs.generate-gpo }}
|
if: ${{ inputs.release-branch == 'twilight' && !inputs.generate-pgo }}
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
retention-days: 5
|
retention-days: 5
|
||||||
@@ -325,7 +327,7 @@ jobs:
|
|||||||
path: ./windows${{ matrix.arch == 'aarch64' && '-arm64' || '' }}.mar
|
path: ./windows${{ matrix.arch == 'aarch64' && '-arm64' || '' }}.mar
|
||||||
|
|
||||||
- name: Upload artifact (if Twilight branch, update manifests)
|
- name: Upload artifact (if Twilight branch, update manifests)
|
||||||
if: ${{ inputs.release-branch == 'twilight' && !inputs.generate-gpo }}
|
if: ${{ inputs.release-branch == 'twilight' && !inputs.generate-pgo }}
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
retention-days: 5
|
retention-days: 5
|
||||||
|
|||||||
@@ -34,8 +34,8 @@ Zen is a firefox-based browser with the aim of pushing your productivity to a ne
|
|||||||
|
|
||||||
### Firefox Versions
|
### Firefox Versions
|
||||||
|
|
||||||
- [`Release`](https://zen-browser.app/download) - Is currently built using Firefox version `153.0.3`! 🚀
|
- [`Release`](https://zen-browser.app/download) - Is currently built using Firefox version `154.0.1`!
|
||||||
- [`Twilight`](https://zen-browser.app/download?twilight) - Is currently built using Firefox version `RC 153.0.3`!
|
- [`Twilight`](https://zen-browser.app/download?twilight) - Is currently built using Firefox version `RC 154.0.1`!
|
||||||
|
|
||||||
### Contributing
|
### Contributing
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
8a0a534248f80d8c53a8997f24683521c3a50ebc
|
bf4b57fd7fe94054457be7018e8e7beaf754c520
|
||||||
@@ -3,8 +3,6 @@
|
|||||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
param(
|
param(
|
||||||
[string][Parameter(Mandatory=$true)]$SignIdentity,
|
|
||||||
[string][Parameter(Mandatory=$true)]$SignIdentityIssuer,
|
|
||||||
[string][Parameter(Mandatory=$true)]$GithubRunId
|
[string][Parameter(Mandatory=$true)]$GithubRunId
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -24,11 +22,15 @@ mkdir windsign-temp -ErrorAction SilentlyContinue
|
|||||||
# echo "Downloaded git objects repo to"
|
# echo "Downloaded git objects repo to"
|
||||||
#} -Verbose -ArgumentList $PWD -Debug
|
#} -Verbose -ArgumentList $PWD -Debug
|
||||||
|
|
||||||
|
$token = gh auth token
|
||||||
|
|
||||||
$env:SURFER_MOZCONFIG_ONLY="1"
|
$env:SURFER_MOZCONFIG_ONLY="1"
|
||||||
$env:SURFER_SIGNING_MODE=""
|
$env:SURFER_SIGNING_MODE=""
|
||||||
|
|
||||||
$env:SURFER_CERT_PATCH_ISSUER=$SignIdentityIssuer
|
get-content "$PSScriptRoot/../.env" | foreach {
|
||||||
$env:SURFER_CERT_PATCH_NAME=$SignIdentity
|
$name, $value = $_.split('=')
|
||||||
|
set-content env:\$name $value
|
||||||
|
}
|
||||||
|
|
||||||
Start-Job -Name "DownloadGitl10n" -ScriptBlock {
|
Start-Job -Name "DownloadGitl10n" -ScriptBlock {
|
||||||
param($PWD)
|
param($PWD)
|
||||||
@@ -46,7 +48,6 @@ npm run build
|
|||||||
|
|
||||||
echo "Downloading artifacts info"
|
echo "Downloading artifacts info"
|
||||||
$artifactsInfo=gh api repos/zen-browser/desktop/actions/runs/$GithubRunId/artifacts
|
$artifactsInfo=gh api repos/zen-browser/desktop/actions/runs/$GithubRunId/artifacts
|
||||||
$token = gh auth token
|
|
||||||
|
|
||||||
function New-TemporaryDirectory {
|
function New-TemporaryDirectory {
|
||||||
$tmp = [System.IO.Path]::GetTempPath() # Not $env:TEMP, see https://stackoverflow.com/a/946017
|
$tmp = [System.IO.Path]::GetTempPath() # Not $env:TEMP, see https://stackoverflow.com/a/946017
|
||||||
@@ -215,20 +216,12 @@ SignAndPackage x86_64
|
|||||||
$files = Get-ChildItem .\windsign-temp\windows-x64-signed-x86_64, .\windsign-temp\windows-x64-signed-arm64 -Recurse -Include *.exe
|
$files = Get-ChildItem .\windsign-temp\windows-x64-signed-x86_64, .\windsign-temp\windows-x64-signed-arm64 -Recurse -Include *.exe
|
||||||
signtool.exe sign /n "$SignIdentity" /t http://time.certum.pl/ /fd sha256 /v $files
|
signtool.exe sign /n "$SignIdentity" /t http://time.certum.pl/ /fd sha256 /v $files
|
||||||
|
|
||||||
# Compress each signed bundle into a single gzip tarball (`-C <dir> .` so it has
|
|
||||||
# no top-level directory) and upload it as a release asset on the windows-binaries
|
|
||||||
# repo, keyed to this build's run id. Release assets keep the bundles out of git
|
|
||||||
# (they were too large to commit) while still living in the windows-binaries repo.
|
|
||||||
# The gated release job downloads and expands these from that repo's releases.
|
|
||||||
$binariesRepo = "zen-browser/windows-binaries"
|
$binariesRepo = "zen-browser/windows-binaries"
|
||||||
$stagingTag = "windows-signed-$GithubRunId"
|
$stagingTag = "windows-signed-$GithubRunId"
|
||||||
echo "Ensuring staging release $stagingTag exists on $binariesRepo"
|
echo "Ensuring staging release $stagingTag exists on $binariesRepo"
|
||||||
gh release view $stagingTag --repo $binariesRepo *> $null
|
gh release create $stagingTag --repo $binariesRepo --prerelease --title "Windows signed bundles ($GithubRunId)" --notes "Signed Windows bundles for run $GithubRunId, consumed by the release workflow. Safe to delete."
|
||||||
if ($LASTEXITCODE -ne 0) {
|
if ($LASTEXITCODE -ne 0) {
|
||||||
gh release create $stagingTag --repo $binariesRepo --prerelease --title "Windows signed bundles ($GithubRunId)" --notes "Signed Windows bundles for run $GithubRunId, consumed by the release workflow. Safe to delete."
|
throw "Failed to create staging release $stagingTag on $binariesRepo"
|
||||||
if ($LASTEXITCODE -ne 0) {
|
|
||||||
throw "Failed to create staging release $stagingTag on $binariesRepo"
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($name in @("x86_64", "arm64")) {
|
foreach ($name in @("x86_64", "arm64")) {
|
||||||
|
|||||||
BIN
configs/branding/release/firefox.icns
Normal file
BIN
configs/branding/release/firefox.icns
Normal file
Binary file not shown.
BIN
configs/branding/twilight/firefox.icns
Normal file
BIN
configs/branding/twilight/firefox.icns
Normal file
Binary file not shown.
@@ -91,11 +91,6 @@ if test "$ZEN_RELEASE"; then
|
|||||||
export MOZ_PACKAGE_JSSHELL=1
|
export MOZ_PACKAGE_JSSHELL=1
|
||||||
|
|
||||||
ac_add_options --disable-crashreporter
|
ac_add_options --disable-crashreporter
|
||||||
|
|
||||||
# Experimental flag, enabled only on nightly for Firefox.
|
|
||||||
# Should bring in some nice performance improvements,
|
|
||||||
# but may cause stability issues.
|
|
||||||
ac_add_options --enable-replace-malloc
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
ac_add_options --enable-jxl
|
ac_add_options --enable-jxl
|
||||||
|
|||||||
@@ -7,7 +7,21 @@ unset MOZ_STDCXX_COMPAT
|
|||||||
ac_add_options --disable-dmd
|
ac_add_options --disable-dmd
|
||||||
ac_add_options --enable-eme=widevine
|
ac_add_options --enable-eme=widevine
|
||||||
|
|
||||||
if test "$ZEN_RELEASE"; then
|
if test "$ZEN_CROSS_COMPILING"; then
|
||||||
|
ZEN_MAC_CROSS="$HOME/mac-cross"
|
||||||
|
|
||||||
|
mk_add_options "export PATH=$ZEN_MAC_CROSS/cctools/bin:$PATH"
|
||||||
|
mk_add_options "export LD_LIBRARY_PATH=$HOME/.mozbuild/clang/lib:$LD_LIBRARY_PATH"
|
||||||
|
|
||||||
|
export MKFSHFS=$ZEN_MAC_CROSS/hfsplus/newfs_hfs
|
||||||
|
export DMG_TOOL=$ZEN_MAC_CROSS/dmg/dmg
|
||||||
|
export HFS_TOOL=$ZEN_MAC_CROSS/dmg/hfsplus
|
||||||
|
|
||||||
|
if test "$ZEN_RELEASE"; then
|
||||||
|
export MOZ_LD64_KNOWN_GOOD=1
|
||||||
|
ac_add_options --enable-linker=ld64
|
||||||
|
fi
|
||||||
|
elif test "$ZEN_RELEASE"; then
|
||||||
ALLOWED_SDKS="26.5 26.4"
|
ALLOWED_SDKS="26.5 26.4"
|
||||||
for SDK in $ALLOWED_SDKS; do
|
for SDK in $ALLOWED_SDKS; do
|
||||||
if [ -d "/Library/Developer/CommandLineTools/SDKs/MacOSX${SDK}.sdk" ]; then
|
if [ -d "/Library/Developer/CommandLineTools/SDKs/MacOSX${SDK}.sdk" ]; then
|
||||||
@@ -52,13 +66,3 @@ else
|
|||||||
export CXXFLAGS="$CXXFLAGS -mcpu=apple-m1"
|
export CXXFLAGS="$CXXFLAGS -mcpu=apple-m1"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Keep using ld64 on PGO/LTO builds because of performance regressions when using lld.
|
|
||||||
# Mozilla sets "MOZ_LD64_KNOWN_GOOD" to true when they do automated builds with PGO/LTO on macOS.
|
|
||||||
# See https://searchfox.org/firefox-main/rev/e61d59b5c9a651fd7bf28043f87c0dc669833496/build/moz.configure/lto-pgo.configure#261
|
|
||||||
# export MOZ_LD64_KNOWN_GOOD=1
|
|
||||||
# ac_add_options --enable-linker=ld64
|
|
||||||
#
|
|
||||||
# if test "$ZEN_RELEASE"; then
|
|
||||||
# mk_add_options MOZ_MAKE_FLAGS="-j4"
|
|
||||||
# fi
|
|
||||||
|
|||||||
@@ -8,17 +8,17 @@ category-zen-looks =
|
|||||||
zen-warning-language = تغيير اللغة الافتراضية يمكن أن يجعل من الأسهل على المواقع أن تتبعك.
|
zen-warning-language = تغيير اللغة الافتراضية يمكن أن يجعل من الأسهل على المواقع أن تتبعك.
|
||||||
zen-vertical-tabs-layout-header = تصميم المتصفح
|
zen-vertical-tabs-layout-header = تصميم المتصفح
|
||||||
zen-vertical-tabs-layout-description = اختر التخطيط الذي يناسبك بشكل أفضل
|
zen-vertical-tabs-layout-description = اختر التخطيط الذي يناسبك بشكل أفضل
|
||||||
zen-layout-single-toolbar = Single toolbar
|
zen-layout-single-toolbar = الشريط الجانبي فقط
|
||||||
zen-layout-multiple-toolbar = Multiple toolbars
|
zen-layout-multiple-toolbar = الشريط الجانبي و العلوي
|
||||||
zen-layout-collapsed-toolbar = Collapsed toolbar
|
zen-layout-collapsed-toolbar = الشريط الجانبي مطوي
|
||||||
sync-currently-syncing-workspaces = Other Workspaces
|
sync-currently-syncing-workspaces = مساحات العمل
|
||||||
sync-engine-workspaces =
|
sync-engine-workspaces =
|
||||||
.label = Other Workspaces
|
.label = مساحات العمل
|
||||||
.tooltiptext = مزامنة مساحات العمل الخاصة بك عبر الأجهزة
|
.tooltiptext = مزامنة مساحات العمل الخاصة بك عبر الأجهزة
|
||||||
.accesskey = W
|
.accesskey = W
|
||||||
zen-glance-title = لمحة
|
zen-glance-title = لمحة
|
||||||
zen-glance-header = الإعدادات العامة للنظرة
|
zen-glance-header = الإعدادات العامة للنظرة
|
||||||
zen-glance-description = احصل على نظرة عامة سريعة للروابط الخاصة بك دون فتحها في علامة تبويب جديدة
|
zen-glance-description = احصل على نظرة عامة سريعة لروابطك دون فتحها في علامة تبويب جديدة
|
||||||
zen-glance-trigger-label = طريقة المشغل
|
zen-glance-trigger-label = طريقة المشغل
|
||||||
zen-glance-enabled =
|
zen-glance-enabled =
|
||||||
.label = تمكين اللمحة
|
.label = تمكين اللمحة
|
||||||
@@ -27,17 +27,21 @@ zen-glance-trigger-ctrl-click =
|
|||||||
zen-glance-trigger-alt-click =
|
zen-glance-trigger-alt-click =
|
||||||
.label = Alt + انقر
|
.label = Alt + انقر
|
||||||
zen-glance-trigger-shift-click =
|
zen-glance-trigger-shift-click =
|
||||||
.label = المناوبة + انقر
|
.label = Shift + اضغط
|
||||||
zen-glance-trigger-meta-click =
|
zen-glance-trigger-meta-click =
|
||||||
.label = Meta (Command) + اضغط
|
.label = Meta (Command) + اضغط
|
||||||
zen-look-and-feel-compact-view-header = إظهار في العرض المدمج
|
zen-look-and-feel-compact-view-header = إظهار في العرض المدمج
|
||||||
zen-look-and-feel-compact-view-description = فقط إظهار أشرطة الأدوات التي تستخدمها!
|
zen-look-and-feel-compact-view-description = فقط إظهار الأشرطة المستعملة!
|
||||||
zen-look-and-feel-compact-view-enabled =
|
zen-look-and-feel-compact-view-enabled =
|
||||||
.label = تمكين الوضع المدمج لـ { -brand-short-name }
|
.label = تمكين الوضع المدمج لـ { -brand-short-name }
|
||||||
zen-look-and-feel-compact-view-top-toolbar =
|
zen-look-and-feel-compact-view-top-toolbar =
|
||||||
.label = إخفاء شريط الأدوات العلوي أيضا في الوضع المدمج
|
.label = إخفاء شريط الأدوات العلوي أيضا في الوضع المدمج
|
||||||
zen-look-and-feel-compact-toolbar-flash-popup =
|
zen-look-and-feel-compact-toolbar-flash-popup =
|
||||||
.label = اجعل شريط الأدوات منبثقا عند التبديل أو فتح علامات تبويب جديدة في الوضع المدمج
|
.label = اجعل شريط الأدوات منبثقا عند التبديل أو فتح علامات تبويب جديدة في الوضع المدمج
|
||||||
|
zen-look-and-feel-window-drag-header = Window dragging
|
||||||
|
zen-look-and-feel-window-drag-description = Move the window by dragging empty space at the top of websites, just like the titlebar.
|
||||||
|
zen-window-drag-enabled =
|
||||||
|
.label = Allow dragging the window from web pages
|
||||||
pane-zen-tabs-title = إدارة علامة التبويب
|
pane-zen-tabs-title = إدارة علامة التبويب
|
||||||
category-zen-workspaces =
|
category-zen-workspaces =
|
||||||
.tooltiptext = { pane-zen-tabs-title }
|
.tooltiptext = { pane-zen-tabs-title }
|
||||||
@@ -106,9 +110,9 @@ zen-theme-disable-all-enabled =
|
|||||||
.title = تعطيل جميع السمات
|
.title = تعطيل جميع السمات
|
||||||
zen-theme-disable-all-disabled =
|
zen-theme-disable-all-disabled =
|
||||||
.title = تمكين جميع السمات
|
.title = تمكين جميع السمات
|
||||||
zen-theme-marketplace-description = البحث عن الثيمات وتثبيتها من المتجر.
|
zen-theme-marketplace-description = ابحث عن مودات وتثبيتها من المتجر.
|
||||||
zen-theme-marketplace-remove-button =
|
zen-theme-marketplace-remove-button =
|
||||||
.label = إزالة السمة
|
.label = إزالة المود
|
||||||
zen-theme-marketplace-check-for-updates-button =
|
zen-theme-marketplace-check-for-updates-button =
|
||||||
.label = التحقق من وجود تحديثات
|
.label = التحقق من وجود تحديثات
|
||||||
zen-theme-marketplace-import-button =
|
zen-theme-marketplace-import-button =
|
||||||
@@ -125,7 +129,7 @@ zen-theme-marketplace-toggle-enabled-button =
|
|||||||
.title = تعطيل السمة
|
.title = تعطيل السمة
|
||||||
zen-theme-marketplace-toggle-disabled-button =
|
zen-theme-marketplace-toggle-disabled-button =
|
||||||
.title = تمكين السمة
|
.title = تمكين السمة
|
||||||
zen-theme-marketplace-remove-confirmation = هل أنت متأكد من أنك تريد إزالة هذا الوضع؟
|
zen-theme-marketplace-remove-confirmation = هل أنت متأكد من أنك تريد إزالة هذا المود؟
|
||||||
zen-theme-marketplace-close-modal = أغلق
|
zen-theme-marketplace-close-modal = أغلق
|
||||||
zen-theme-marketplace-theme-header-title =
|
zen-theme-marketplace-theme-header-title =
|
||||||
.title = محدد CSS: { $name }
|
.title = محدد CSS: { $name }
|
||||||
@@ -244,7 +248,8 @@ zen-page-info-shortcut = عرض معلومات الصفحة
|
|||||||
zen-find-shortcut = البحث في الصفحة
|
zen-find-shortcut = البحث في الصفحة
|
||||||
zen-search-find-again-shortcut = البحث مرة أخرى
|
zen-search-find-again-shortcut = البحث مرة أخرى
|
||||||
zen-search-find-again-shortcut-prev = البحث عن السابق
|
zen-search-find-again-shortcut-prev = البحث عن السابق
|
||||||
zen-search-find-again-shortcut-2 = ابحث مرة أخرى (بديل)
|
zen-search-find-again-shortcut-alt = Find Again (Alt)
|
||||||
|
zen-search-find-again-shortcut-prev-alt = Find Previous (Alt)
|
||||||
zen-bookmark-this-page-shortcut = ضع إشارة مرجعية على هذه الصفحة
|
zen-bookmark-this-page-shortcut = ضع إشارة مرجعية على هذه الصفحة
|
||||||
zen-bookmark-show-library-shortcut = إظهار مكتبة الإشارات المرجعية
|
zen-bookmark-show-library-shortcut = إظهار مكتبة الإشارات المرجعية
|
||||||
zen-key-stop = إيقاف التحميل
|
zen-key-stop = إيقاف التحميل
|
||||||
@@ -281,7 +286,7 @@ zen-workspace-shortcut-switch-9 = التبديل إلى مساحة العمل 9
|
|||||||
zen-workspace-shortcut-switch-10 = التبديل إلى مساحة العمل 10
|
zen-workspace-shortcut-switch-10 = التبديل إلى مساحة العمل 10
|
||||||
zen-workspace-shortcut-forward = إلى الأمام فضاء العمل
|
zen-workspace-shortcut-forward = إلى الأمام فضاء العمل
|
||||||
zen-workspace-shortcut-backward = مساحة العمل الخلفية
|
zen-workspace-shortcut-backward = مساحة العمل الخلفية
|
||||||
zen-workspace-shortcut-create = Create New Workspace
|
zen-workspace-shortcut-create = إنشاء مساحة عمل جديدة
|
||||||
zen-sidebar-shortcut-toggle = تبديل عرض شريط العرض
|
zen-sidebar-shortcut-toggle = تبديل عرض شريط العرض
|
||||||
zen-pinned-tab-shortcut-reset = إعادة تعيين علامة التبويب المثبتة إلى عنوان URL المثبت
|
zen-pinned-tab-shortcut-reset = إعادة تعيين علامة التبويب المثبتة إلى عنوان URL المثبت
|
||||||
zen-split-view-shortcut-grid = تبديل عرض تقسيم الشبكة
|
zen-split-view-shortcut-grid = تبديل عرض تقسيم الشبكة
|
||||||
@@ -319,4 +324,4 @@ zen-devtools-toggle-accessibility-shortcut = قلب إمكانية الوصول
|
|||||||
zen-close-all-unpinned-tabs-shortcut = إغلاق جميع علامات التبويب الغير مثبتة
|
zen-close-all-unpinned-tabs-shortcut = إغلاق جميع علامات التبويب الغير مثبتة
|
||||||
zen-new-unsynced-window-shortcut = New Unsynced Window
|
zen-new-unsynced-window-shortcut = New Unsynced Window
|
||||||
zen-duplicate-tab-shortcut = Duplicate Tab
|
zen-duplicate-tab-shortcut = Duplicate Tab
|
||||||
zen-key-find-selection = Find Selection
|
zen-key-find-selection = البحث عن الاختيار
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ zen-boost-edit-reset =
|
|||||||
zen-boost-edit-delete =
|
zen-boost-edit-delete =
|
||||||
.label = Delete Boost
|
.label = Delete Boost
|
||||||
zen-boost-size = Size
|
zen-boost-size = Size
|
||||||
zen-boost-case = Case
|
zen-boost-case = الحالة
|
||||||
zen-boost-zap = Zap
|
zen-boost-zap = Zap
|
||||||
zen-boost-code = Code
|
zen-boost-code = Code
|
||||||
zen-boost-back = Back
|
zen-boost-back = Back
|
||||||
@@ -48,9 +48,9 @@ zen-unzap-tooltip =
|
|||||||
*[other] { $elementCount } elements zapped
|
*[other] { $elementCount } elements zapped
|
||||||
}
|
}
|
||||||
zen-boost-save =
|
zen-boost-save =
|
||||||
.label = Export Boost
|
.label = تصدير التعزيز
|
||||||
zen-boost-load =
|
zen-boost-load =
|
||||||
.label = Import Boost
|
.label = استيراد التعزيز
|
||||||
zen-panel-ui-boosts-exported-message = Boost exported!
|
zen-panel-ui-boosts-exported-message = Boost exported!
|
||||||
zen-site-data-boosts = Boosts
|
zen-site-data-boosts = Boosts
|
||||||
zen-site-data-create-boost =
|
zen-site-data-create-boost =
|
||||||
|
|||||||
36
locales/ar/browser/browser/zen-command-palette.ftl
Normal file
36
locales/ar/browser/browser/zen-command-palette.ftl
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-action-toggle-compact-mode = Toggle Compact Mode
|
||||||
|
zen-action-open-theme-picker = Open Theme Picker
|
||||||
|
zen-action-new-split-view = New Split View
|
||||||
|
zen-action-new-folder = New Folder
|
||||||
|
zen-action-copy-current-url = Copy Current URL
|
||||||
|
zen-action-settings = Settings
|
||||||
|
zen-action-open-private-window = Open Private Window
|
||||||
|
zen-action-open-new-window = Open New Window
|
||||||
|
zen-action-new-blank-window = New Blank Window
|
||||||
|
zen-action-pin-tab = Pin Tab
|
||||||
|
zen-action-unpin-tab = Unpin Tab
|
||||||
|
zen-action-open-space-routing = Open Space Routing
|
||||||
|
zen-action-new-boost = New Boost
|
||||||
|
zen-action-next-space = Next Space
|
||||||
|
zen-action-previous-space = Previous Space
|
||||||
|
zen-action-close-tab = Close Tab
|
||||||
|
zen-action-reload-tab = Reload Tab
|
||||||
|
zen-action-reload-tab-without-cache = Reload Tab Without Cache
|
||||||
|
zen-action-next-tab = Next Tab
|
||||||
|
zen-action-previous-tab = Previous Tab
|
||||||
|
zen-action-capture-screenshot = Capture Screenshot
|
||||||
|
zen-action-toggle-tabs-on-right = Toggle Tabs on right
|
||||||
|
zen-action-add-to-essentials = Add to Essentials
|
||||||
|
zen-action-remove-from-essentials = Remove from Essentials
|
||||||
|
zen-action-find-in-page = Find in Page
|
||||||
|
zen-action-manage-extensions = Manage Extensions
|
||||||
|
zen-action-switch-to-automatic-appearance = Switch to Automatic Appearance
|
||||||
|
zen-action-switch-to-light-mode = Switch to Light Mode
|
||||||
|
zen-action-switch-to-dark-mode = Switch to Dark Mode
|
||||||
|
zen-action-print = Print
|
||||||
|
zen-action-focus-on = Focus on
|
||||||
|
zen-action-extension = Extension
|
||||||
@@ -18,15 +18,19 @@ tab-context-zen-add-essential-badge = { $num } / { $max } مملؤة
|
|||||||
tab-context-zen-remove-essential =
|
tab-context-zen-remove-essential =
|
||||||
.label = إزالة من الأساسيات
|
.label = إزالة من الأساسيات
|
||||||
.accesskey = R
|
.accesskey = R
|
||||||
tab-context-zen-replace-pinned-url-with-current =
|
tab-context-zen-edit-pinned-page =
|
||||||
.label =
|
.label =
|
||||||
{ $isEssential ->
|
{ $isEssential ->
|
||||||
[true] استبدل الرابط الأساسي بـ
|
[true] Edit Essential URL
|
||||||
*[false]
|
*[false] Edit Pinned URL
|
||||||
استبدل الرابط المثبت بـ
|
|
||||||
الحالي
|
|
||||||
}
|
}
|
||||||
|
.accesskey = P
|
||||||
|
tab-context-zen-replace-pinned-url-with-current =
|
||||||
|
.label = Replace with Current URL
|
||||||
.accesskey = C
|
.accesskey = C
|
||||||
|
tab-context-zen-edit-pinned-url =
|
||||||
|
.label = Edit…
|
||||||
|
.accesskey = E
|
||||||
tab-context-zen-edit-title =
|
tab-context-zen-edit-title =
|
||||||
.label = تغيير الاسم...
|
.label = تغيير الاسم...
|
||||||
tab-context-zen-edit-icon =
|
tab-context-zen-edit-icon =
|
||||||
@@ -49,6 +53,10 @@ zen-general-cancel-label =
|
|||||||
zen-general-confirm =
|
zen-general-confirm =
|
||||||
.label = تأكيد
|
.label = تأكيد
|
||||||
zen-pinned-tab-replaced = Pinned tab URL has been replaced with the current URL.
|
zen-pinned-tab-replaced = Pinned tab URL has been replaced with the current URL.
|
||||||
|
zen-pinned-tab-url-edited = Pinned tab URL has been updated!
|
||||||
|
zen-pinned-tab-url-invalid = That doesn't look like a valid URL.
|
||||||
|
zen-pinned-tab-edit-url-title = Edit Pinned URL
|
||||||
|
zen-pinned-tab-edit-url-label = Enter the URL this pinned tab should point to:
|
||||||
zen-tabs-renamed = تم تغيير اسم التبويب بنجاح!
|
zen-tabs-renamed = تم تغيير اسم التبويب بنجاح!
|
||||||
zen-background-tab-opened-toast = تم فتح علامة تبويب خلفية جديدة!
|
zen-background-tab-opened-toast = تم فتح علامة تبويب خلفية جديدة!
|
||||||
zen-workspace-renamed-toast = تم تغيير اسم مساحة العمل بنجاح!
|
zen-workspace-renamed-toast = تم تغيير اسم مساحة العمل بنجاح!
|
||||||
@@ -67,6 +75,8 @@ zen-icons-picker-emoji =
|
|||||||
.label = ايموجي
|
.label = ايموجي
|
||||||
zen-icons-picker-svg =
|
zen-icons-picker-svg =
|
||||||
.label = الأيقونات
|
.label = الأيقونات
|
||||||
|
zen-emojis-picker-search =
|
||||||
|
.placeholder = Search emojis
|
||||||
urlbar-search-mode-zen_actions = الإجراءات
|
urlbar-search-mode-zen_actions = الإجراءات
|
||||||
zen-site-data-settings = الاعدادات
|
zen-site-data-settings = الاعدادات
|
||||||
zen-generic-manage = إدارة
|
zen-generic-manage = إدارة
|
||||||
@@ -118,6 +128,9 @@ zen-sidebar-notification-updated-heading = اكتمل التحديث!
|
|||||||
zen-sidebar-notification-updated-label = ما الجديد في { -brand-short-name }
|
zen-sidebar-notification-updated-label = ما الجديد في { -brand-short-name }
|
||||||
zen-sidebar-notification-updated-tooltip =
|
zen-sidebar-notification-updated-tooltip =
|
||||||
.title = عرض ملاحظات الإصدار
|
.title = عرض ملاحظات الإصدار
|
||||||
|
zen-sidebar-notification-donate-label = Support { -brand-short-name }
|
||||||
|
zen-sidebar-notification-donate-tooltip =
|
||||||
|
.title = Donate to the project
|
||||||
zen-sidebar-notification-restart-safe-mode-label = شيء معطل؟
|
zen-sidebar-notification-restart-safe-mode-label = شيء معطل؟
|
||||||
zen-sidebar-notification-restart-safe-mode-tooltip =
|
zen-sidebar-notification-restart-safe-mode-tooltip =
|
||||||
.title = إعادة التشغيل في الوضع الآمن
|
.title = إعادة التشغيل في الوضع الآمن
|
||||||
|
|||||||
30
locales/ar/browser/browser/zen-space-routing.ftl
Normal file
30
locales/ar/browser/browser/zen-space-routing.ftl
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-space-routing-settings =
|
||||||
|
.label = Space Routing Settings
|
||||||
|
zen-space-routing-rulepanel-placeholder = Routes let you choose where specific sites open inside Zen. For example, you can route YouTube links to always open inside your Personal space.
|
||||||
|
zen-space-routing-dialog-title = Space Routing Settings
|
||||||
|
zen-space-routing-external-default = Default route for external links
|
||||||
|
zen-space-routing-new-route = New Route
|
||||||
|
zen-space-routing-open-in-space = Open in Space
|
||||||
|
zen-space-routing-most-recent-space = Most recent Space
|
||||||
|
zen-space-routing-close-button =
|
||||||
|
.aria-label = Close
|
||||||
|
.tooltiptext = Close
|
||||||
|
zen-space-routing-contains =
|
||||||
|
.label = Contains
|
||||||
|
zen-space-routing-equal-to =
|
||||||
|
.label = Is Equal To
|
||||||
|
zen-space-routing-regex =
|
||||||
|
.label = RegEx
|
||||||
|
zen-space-routing-open-in = Open In
|
||||||
|
zen-space-routing-url = URL
|
||||||
|
zen-space-routing-tab-routed-toast = New tab opened in { $targetWorkspace }
|
||||||
|
tab-context-zen-add-domain-to-sr =
|
||||||
|
.label =
|
||||||
|
{ $tabCount ->
|
||||||
|
[one] Add Route for Domain
|
||||||
|
*[other] Add Route for Domains
|
||||||
|
}
|
||||||
@@ -61,6 +61,7 @@ zen-workspace-creation-profile = الملف الشخصي
|
|||||||
.tooltiptext = تستخدم الملفات الشخصية لفصل ملفات تعريف الارتباط وبيانات الموقع بين المساحات.
|
.tooltiptext = تستخدم الملفات الشخصية لفصل ملفات تعريف الارتباط وبيانات الموقع بين المساحات.
|
||||||
zen-workspace-creation-header = إنشاء مساحة
|
zen-workspace-creation-header = إنشاء مساحة
|
||||||
zen-workspace-creation-label = يتم استخدام المساحات لتنظيم علامات التبويب والجلسات الخاصة بك.
|
zen-workspace-creation-label = يتم استخدام المساحات لتنظيم علامات التبويب والجلسات الخاصة بك.
|
||||||
|
zen-workspace-default-profile = Default
|
||||||
zen-workspaces-delete-workspace-title = حذف المساحة؟
|
zen-workspaces-delete-workspace-title = حذف المساحة؟
|
||||||
zen-workspaces-delete-workspace-body = هل أنت متأكد من رغبتك في حذف { $name }؟ لا يمكن التراجع عن هذا الإجراء.
|
zen-workspaces-delete-workspace-body = هل أنت متأكد من رغبتك في حذف { $name }؟ لا يمكن التراجع عن هذا الإجراء.
|
||||||
# Note that the html tag MUST not be changed or removed, as it is used to better
|
# Note that the html tag MUST not be changed or removed, as it is used to better
|
||||||
|
|||||||
@@ -2,26 +2,26 @@
|
|||||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
pane-zen-looks-title = Look and Feel
|
pane-zen-looks-title = Визия и усещане
|
||||||
category-zen-looks =
|
category-zen-looks =
|
||||||
.tooltiptext = { pane-zen-looks-title }
|
.tooltiptext = { pane-zen-looks-title }
|
||||||
zen-warning-language = Changing the default language could make it easier for Websites to track you.
|
zen-warning-language = Промяната на езика по подразбиране може да улесни уебсайтовете да те проследяват.
|
||||||
zen-vertical-tabs-layout-header = Browser Layout
|
zen-vertical-tabs-layout-header = Оформление на браузъра
|
||||||
zen-vertical-tabs-layout-description = Choose the layout that suits you best
|
zen-vertical-tabs-layout-description = Избери оформлението, което най-добре ви подхожда
|
||||||
zen-layout-single-toolbar = Only Sidebar
|
zen-layout-single-toolbar = Само странична лента
|
||||||
zen-layout-multiple-toolbar = Sidebar and Top Toolbar
|
zen-layout-multiple-toolbar = Странична лента и горна лента с инструменти
|
||||||
zen-layout-collapsed-toolbar = Collapsed Sidebar
|
zen-layout-collapsed-toolbar = Скрита странична лента
|
||||||
sync-currently-syncing-workspaces = Workspaces
|
sync-currently-syncing-workspaces = Работни пространства
|
||||||
sync-engine-workspaces =
|
sync-engine-workspaces =
|
||||||
.label = Workspaces
|
.label = Работни пространства
|
||||||
.tooltiptext = Sync your workspaces across devices
|
.tooltiptext = Синхронизирай работните си пространства на всички устройства
|
||||||
.accesskey = W
|
.accesskey = W
|
||||||
zen-glance-title = Glance
|
zen-glance-title = Бърз поглед
|
||||||
zen-glance-header = General settings for glance
|
zen-glance-header = Главни настройки за бърз поглед
|
||||||
zen-glance-description = Get a quick overview of your links without opening them in a new tab
|
zen-glance-description = Получи бърз преглед на твоите линкове, без да ги отваряш в нов прозорец
|
||||||
zen-glance-trigger-label = Trigger method
|
zen-glance-trigger-label = Метод на задействане
|
||||||
zen-glance-enabled =
|
zen-glance-enabled =
|
||||||
.label = Enable Glance
|
.label = Включи бързия поглед
|
||||||
zen-glance-trigger-ctrl-click =
|
zen-glance-trigger-ctrl-click =
|
||||||
.label = Ctrl + Click
|
.label = Ctrl + Click
|
||||||
zen-glance-trigger-alt-click =
|
zen-glance-trigger-alt-click =
|
||||||
@@ -30,22 +30,26 @@ zen-glance-trigger-shift-click =
|
|||||||
.label = Shift + Click
|
.label = Shift + Click
|
||||||
zen-glance-trigger-meta-click =
|
zen-glance-trigger-meta-click =
|
||||||
.label = Meta (Command) + Click
|
.label = Meta (Command) + Click
|
||||||
zen-look-and-feel-compact-view-header = Show in compact view
|
zen-look-and-feel-compact-view-header = Покажи в компактен изглед
|
||||||
zen-look-and-feel-compact-view-description = Only show the toolbars you use!
|
zen-look-and-feel-compact-view-description = Показвай само лентите с инструменти, които използваш!
|
||||||
zen-look-and-feel-compact-view-enabled =
|
zen-look-and-feel-compact-view-enabled =
|
||||||
.label = Enable { -brand-short-name }'s compact mode
|
.label = Активирай компактния режим на { -brand-short-name }
|
||||||
zen-look-and-feel-compact-view-top-toolbar =
|
zen-look-and-feel-compact-view-top-toolbar =
|
||||||
.label = Hide the top toolbar as well in compact mode
|
.label = Скрий и горната лента с инструменти в компактен режим
|
||||||
zen-look-and-feel-compact-toolbar-flash-popup =
|
zen-look-and-feel-compact-toolbar-flash-popup =
|
||||||
.label = Briefly make the toolbar popup when switching or opening new tabs in compact mode
|
.label = При превключване или отваряне на нови раздели в компактен режим лентата с инструменти да се показва за кратко
|
||||||
pane-zen-tabs-title = Tab Management
|
zen-look-and-feel-window-drag-header = Window dragging
|
||||||
|
zen-look-and-feel-window-drag-description = Move the window by dragging empty space at the top of websites, just like the titlebar.
|
||||||
|
zen-window-drag-enabled =
|
||||||
|
.label = Allow dragging the window from web pages
|
||||||
|
pane-zen-tabs-title = Управление на табове
|
||||||
category-zen-workspaces =
|
category-zen-workspaces =
|
||||||
.tooltiptext = { pane-zen-tabs-title }
|
.tooltiptext = { pane-zen-tabs-title }
|
||||||
pane-settings-workspaces-title = Workspaces
|
pane-settings-workspaces-title = Работни пространства
|
||||||
zen-tabs-select-recently-used-on-close =
|
zen-tabs-select-recently-used-on-close =
|
||||||
.label = When closing a tab, switch to the most recently used tab instead of the next tab
|
.label = При затваряне на раздел, преминавайте към най-скоро използвания, а не следващия
|
||||||
zen-tabs-close-on-back-with-no-history =
|
zen-tabs-close-on-back-with-no-history =
|
||||||
.label = Close tab and switch to its owner tab (or most recently used tab) when going back with no history
|
.label = Затваряне на раздела и преминаване към раздела на неговия собственик (или към най-скоро използвания раздел) при връщане назад без история
|
||||||
zen-settings-workspaces-sync-unpinned-tabs =
|
zen-settings-workspaces-sync-unpinned-tabs =
|
||||||
.label = Sync only pinned tabs in workspaces
|
.label = Sync only pinned tabs in workspaces
|
||||||
zen-tabs-cycle-by-attribute =
|
zen-tabs-cycle-by-attribute =
|
||||||
@@ -244,7 +248,8 @@ zen-page-info-shortcut = View Page Info
|
|||||||
zen-find-shortcut = Find on Page
|
zen-find-shortcut = Find on Page
|
||||||
zen-search-find-again-shortcut = Find Again
|
zen-search-find-again-shortcut = Find Again
|
||||||
zen-search-find-again-shortcut-prev = Find Previous
|
zen-search-find-again-shortcut-prev = Find Previous
|
||||||
zen-search-find-again-shortcut-2 = Find Again (Alt)
|
zen-search-find-again-shortcut-alt = Find Again (Alt)
|
||||||
|
zen-search-find-again-shortcut-prev-alt = Find Previous (Alt)
|
||||||
zen-bookmark-this-page-shortcut = Bookmark This Page
|
zen-bookmark-this-page-shortcut = Bookmark This Page
|
||||||
zen-bookmark-show-library-shortcut = Show Bookmarks Library
|
zen-bookmark-show-library-shortcut = Show Bookmarks Library
|
||||||
zen-key-stop = Stop Loading
|
zen-key-stop = Stop Loading
|
||||||
|
|||||||
36
locales/bg/browser/browser/zen-command-palette.ftl
Normal file
36
locales/bg/browser/browser/zen-command-palette.ftl
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-action-toggle-compact-mode = Toggle Compact Mode
|
||||||
|
zen-action-open-theme-picker = Open Theme Picker
|
||||||
|
zen-action-new-split-view = New Split View
|
||||||
|
zen-action-new-folder = New Folder
|
||||||
|
zen-action-copy-current-url = Copy Current URL
|
||||||
|
zen-action-settings = Settings
|
||||||
|
zen-action-open-private-window = Open Private Window
|
||||||
|
zen-action-open-new-window = Open New Window
|
||||||
|
zen-action-new-blank-window = New Blank Window
|
||||||
|
zen-action-pin-tab = Pin Tab
|
||||||
|
zen-action-unpin-tab = Unpin Tab
|
||||||
|
zen-action-open-space-routing = Open Space Routing
|
||||||
|
zen-action-new-boost = New Boost
|
||||||
|
zen-action-next-space = Next Space
|
||||||
|
zen-action-previous-space = Previous Space
|
||||||
|
zen-action-close-tab = Close Tab
|
||||||
|
zen-action-reload-tab = Reload Tab
|
||||||
|
zen-action-reload-tab-without-cache = Reload Tab Without Cache
|
||||||
|
zen-action-next-tab = Next Tab
|
||||||
|
zen-action-previous-tab = Previous Tab
|
||||||
|
zen-action-capture-screenshot = Capture Screenshot
|
||||||
|
zen-action-toggle-tabs-on-right = Toggle Tabs on right
|
||||||
|
zen-action-add-to-essentials = Add to Essentials
|
||||||
|
zen-action-remove-from-essentials = Remove from Essentials
|
||||||
|
zen-action-find-in-page = Find in Page
|
||||||
|
zen-action-manage-extensions = Manage Extensions
|
||||||
|
zen-action-switch-to-automatic-appearance = Switch to Automatic Appearance
|
||||||
|
zen-action-switch-to-light-mode = Switch to Light Mode
|
||||||
|
zen-action-switch-to-dark-mode = Switch to Dark Mode
|
||||||
|
zen-action-print = Print
|
||||||
|
zen-action-focus-on = Focus on
|
||||||
|
zen-action-extension = Extension
|
||||||
@@ -18,13 +18,19 @@ tab-context-zen-add-essential-badge = Запълнени слотове: { $num
|
|||||||
tab-context-zen-remove-essential =
|
tab-context-zen-remove-essential =
|
||||||
.label = Премахване от Основни
|
.label = Премахване от Основни
|
||||||
.accesskey = R
|
.accesskey = R
|
||||||
tab-context-zen-replace-pinned-url-with-current =
|
tab-context-zen-edit-pinned-page =
|
||||||
.label =
|
.label =
|
||||||
{ $isEssential ->
|
{ $isEssential ->
|
||||||
[true] Replace Essential URL with Current
|
[true] Edit Essential URL
|
||||||
*[false] Replace Pinned URL with Current
|
*[false] Edit Pinned URL
|
||||||
}
|
}
|
||||||
|
.accesskey = P
|
||||||
|
tab-context-zen-replace-pinned-url-with-current =
|
||||||
|
.label = Replace with Current URL
|
||||||
.accesskey = C
|
.accesskey = C
|
||||||
|
tab-context-zen-edit-pinned-url =
|
||||||
|
.label = Edit…
|
||||||
|
.accesskey = E
|
||||||
tab-context-zen-edit-title =
|
tab-context-zen-edit-title =
|
||||||
.label = Промени етикета...
|
.label = Промени етикета...
|
||||||
tab-context-zen-edit-icon =
|
tab-context-zen-edit-icon =
|
||||||
@@ -47,6 +53,10 @@ zen-general-cancel-label =
|
|||||||
zen-general-confirm =
|
zen-general-confirm =
|
||||||
.label = Потвърди
|
.label = Потвърди
|
||||||
zen-pinned-tab-replaced = Адресът на закачения раздел беше заменен с текущия адрес!
|
zen-pinned-tab-replaced = Адресът на закачения раздел беше заменен с текущия адрес!
|
||||||
|
zen-pinned-tab-url-edited = Pinned tab URL has been updated!
|
||||||
|
zen-pinned-tab-url-invalid = That doesn't look like a valid URL.
|
||||||
|
zen-pinned-tab-edit-url-title = Edit Pinned URL
|
||||||
|
zen-pinned-tab-edit-url-label = Enter the URL this pinned tab should point to:
|
||||||
zen-tabs-renamed = Разделът беше успешно преименуван!
|
zen-tabs-renamed = Разделът беше успешно преименуван!
|
||||||
zen-background-tab-opened-toast = Отворен е нов раздел на заден план!
|
zen-background-tab-opened-toast = Отворен е нов раздел на заден план!
|
||||||
zen-workspace-renamed-toast = Работното пространство беше преименувано успешно!
|
zen-workspace-renamed-toast = Работното пространство беше преименувано успешно!
|
||||||
@@ -65,6 +75,8 @@ zen-icons-picker-emoji =
|
|||||||
.label = Емоджита
|
.label = Емоджита
|
||||||
zen-icons-picker-svg =
|
zen-icons-picker-svg =
|
||||||
.label = Икони
|
.label = Икони
|
||||||
|
zen-emojis-picker-search =
|
||||||
|
.placeholder = Search emojis
|
||||||
urlbar-search-mode-zen_actions = Действия
|
urlbar-search-mode-zen_actions = Действия
|
||||||
zen-site-data-settings = Настройки
|
zen-site-data-settings = Настройки
|
||||||
zen-generic-manage = Управление
|
zen-generic-manage = Управление
|
||||||
@@ -116,6 +128,9 @@ zen-sidebar-notification-updated-heading = Актуализацията е за
|
|||||||
zen-sidebar-notification-updated-label = Какво е ново в { -brand-short-name }
|
zen-sidebar-notification-updated-label = Какво е ново в { -brand-short-name }
|
||||||
zen-sidebar-notification-updated-tooltip =
|
zen-sidebar-notification-updated-tooltip =
|
||||||
.title = Виж бележките към изданието
|
.title = Виж бележките към изданието
|
||||||
|
zen-sidebar-notification-donate-label = Support { -brand-short-name }
|
||||||
|
zen-sidebar-notification-donate-tooltip =
|
||||||
|
.title = Donate to the project
|
||||||
zen-sidebar-notification-restart-safe-mode-label = Има проблем?
|
zen-sidebar-notification-restart-safe-mode-label = Има проблем?
|
||||||
zen-sidebar-notification-restart-safe-mode-tooltip =
|
zen-sidebar-notification-restart-safe-mode-tooltip =
|
||||||
.title = Рестартирай в безопасен режим
|
.title = Рестартирай в безопасен режим
|
||||||
|
|||||||
30
locales/bg/browser/browser/zen-space-routing.ftl
Normal file
30
locales/bg/browser/browser/zen-space-routing.ftl
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-space-routing-settings =
|
||||||
|
.label = Space Routing Settings
|
||||||
|
zen-space-routing-rulepanel-placeholder = Routes let you choose where specific sites open inside Zen. For example, you can route YouTube links to always open inside your Personal space.
|
||||||
|
zen-space-routing-dialog-title = Space Routing Settings
|
||||||
|
zen-space-routing-external-default = Default route for external links
|
||||||
|
zen-space-routing-new-route = New Route
|
||||||
|
zen-space-routing-open-in-space = Open in Space
|
||||||
|
zen-space-routing-most-recent-space = Most recent Space
|
||||||
|
zen-space-routing-close-button =
|
||||||
|
.aria-label = Close
|
||||||
|
.tooltiptext = Close
|
||||||
|
zen-space-routing-contains =
|
||||||
|
.label = Contains
|
||||||
|
zen-space-routing-equal-to =
|
||||||
|
.label = Is Equal To
|
||||||
|
zen-space-routing-regex =
|
||||||
|
.label = RegEx
|
||||||
|
zen-space-routing-open-in = Open In
|
||||||
|
zen-space-routing-url = URL
|
||||||
|
zen-space-routing-tab-routed-toast = New tab opened in { $targetWorkspace }
|
||||||
|
tab-context-zen-add-domain-to-sr =
|
||||||
|
.label =
|
||||||
|
{ $tabCount ->
|
||||||
|
[one] Add Route for Domain
|
||||||
|
*[other] Add Route for Domains
|
||||||
|
}
|
||||||
@@ -61,6 +61,7 @@ zen-workspace-creation-profile = Profile
|
|||||||
.tooltiptext = Profiles are used to separate cookies and site data between spaces.
|
.tooltiptext = Profiles are used to separate cookies and site data between spaces.
|
||||||
zen-workspace-creation-header = Create a Space
|
zen-workspace-creation-header = Create a Space
|
||||||
zen-workspace-creation-label = Spaces are used to organize your tabs and sessions.
|
zen-workspace-creation-label = Spaces are used to organize your tabs and sessions.
|
||||||
|
zen-workspace-default-profile = Default
|
||||||
zen-workspaces-delete-workspace-title = Delete Space?
|
zen-workspaces-delete-workspace-title = Delete Space?
|
||||||
zen-workspaces-delete-workspace-body = Are you sure you want to delete { $name }? This action cannot be undone.
|
zen-workspaces-delete-workspace-body = Are you sure you want to delete { $name }? This action cannot be undone.
|
||||||
# Note that the html tag MUST not be changed or removed, as it is used to better
|
# Note that the html tag MUST not be changed or removed, as it is used to better
|
||||||
|
|||||||
@@ -38,6 +38,10 @@ zen-look-and-feel-compact-view-top-toolbar =
|
|||||||
.label = Hide the top toolbar as well in compact mode
|
.label = Hide the top toolbar as well in compact mode
|
||||||
zen-look-and-feel-compact-toolbar-flash-popup =
|
zen-look-and-feel-compact-toolbar-flash-popup =
|
||||||
.label = Briefly make the toolbar popup when switching or opening new tabs in compact mode
|
.label = Briefly make the toolbar popup when switching or opening new tabs in compact mode
|
||||||
|
zen-look-and-feel-window-drag-header = Window dragging
|
||||||
|
zen-look-and-feel-window-drag-description = Move the window by dragging empty space at the top of websites, just like the titlebar.
|
||||||
|
zen-window-drag-enabled =
|
||||||
|
.label = Allow dragging the window from web pages
|
||||||
pane-zen-tabs-title = Tab Management
|
pane-zen-tabs-title = Tab Management
|
||||||
category-zen-workspaces =
|
category-zen-workspaces =
|
||||||
.tooltiptext = { pane-zen-tabs-title }
|
.tooltiptext = { pane-zen-tabs-title }
|
||||||
@@ -244,7 +248,8 @@ zen-page-info-shortcut = View Page Info
|
|||||||
zen-find-shortcut = Find on Page
|
zen-find-shortcut = Find on Page
|
||||||
zen-search-find-again-shortcut = Find Again
|
zen-search-find-again-shortcut = Find Again
|
||||||
zen-search-find-again-shortcut-prev = Find Previous
|
zen-search-find-again-shortcut-prev = Find Previous
|
||||||
zen-search-find-again-shortcut-2 = Find Again (Alt)
|
zen-search-find-again-shortcut-alt = Find Again (Alt)
|
||||||
|
zen-search-find-again-shortcut-prev-alt = Find Previous (Alt)
|
||||||
zen-bookmark-this-page-shortcut = Bookmark This Page
|
zen-bookmark-this-page-shortcut = Bookmark This Page
|
||||||
zen-bookmark-show-library-shortcut = Show Bookmarks Library
|
zen-bookmark-show-library-shortcut = Show Bookmarks Library
|
||||||
zen-key-stop = Stop Loading
|
zen-key-stop = Stop Loading
|
||||||
|
|||||||
36
locales/bs/browser/browser/zen-command-palette.ftl
Normal file
36
locales/bs/browser/browser/zen-command-palette.ftl
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-action-toggle-compact-mode = Toggle Compact Mode
|
||||||
|
zen-action-open-theme-picker = Open Theme Picker
|
||||||
|
zen-action-new-split-view = New Split View
|
||||||
|
zen-action-new-folder = New Folder
|
||||||
|
zen-action-copy-current-url = Copy Current URL
|
||||||
|
zen-action-settings = Settings
|
||||||
|
zen-action-open-private-window = Open Private Window
|
||||||
|
zen-action-open-new-window = Open New Window
|
||||||
|
zen-action-new-blank-window = New Blank Window
|
||||||
|
zen-action-pin-tab = Pin Tab
|
||||||
|
zen-action-unpin-tab = Unpin Tab
|
||||||
|
zen-action-open-space-routing = Open Space Routing
|
||||||
|
zen-action-new-boost = New Boost
|
||||||
|
zen-action-next-space = Next Space
|
||||||
|
zen-action-previous-space = Previous Space
|
||||||
|
zen-action-close-tab = Close Tab
|
||||||
|
zen-action-reload-tab = Reload Tab
|
||||||
|
zen-action-reload-tab-without-cache = Reload Tab Without Cache
|
||||||
|
zen-action-next-tab = Next Tab
|
||||||
|
zen-action-previous-tab = Previous Tab
|
||||||
|
zen-action-capture-screenshot = Capture Screenshot
|
||||||
|
zen-action-toggle-tabs-on-right = Toggle Tabs on right
|
||||||
|
zen-action-add-to-essentials = Add to Essentials
|
||||||
|
zen-action-remove-from-essentials = Remove from Essentials
|
||||||
|
zen-action-find-in-page = Find in Page
|
||||||
|
zen-action-manage-extensions = Manage Extensions
|
||||||
|
zen-action-switch-to-automatic-appearance = Switch to Automatic Appearance
|
||||||
|
zen-action-switch-to-light-mode = Switch to Light Mode
|
||||||
|
zen-action-switch-to-dark-mode = Switch to Dark Mode
|
||||||
|
zen-action-print = Print
|
||||||
|
zen-action-focus-on = Focus on
|
||||||
|
zen-action-extension = Extension
|
||||||
@@ -18,13 +18,19 @@ tab-context-zen-add-essential-badge = { $num } / { $max } slots filled
|
|||||||
tab-context-zen-remove-essential =
|
tab-context-zen-remove-essential =
|
||||||
.label = Remove from Essentials
|
.label = Remove from Essentials
|
||||||
.accesskey = R
|
.accesskey = R
|
||||||
tab-context-zen-replace-pinned-url-with-current =
|
tab-context-zen-edit-pinned-page =
|
||||||
.label =
|
.label =
|
||||||
{ $isEssential ->
|
{ $isEssential ->
|
||||||
[true] Replace Essential URL with Current
|
[true] Edit Essential URL
|
||||||
*[false] Replace Pinned URL with Current
|
*[false] Edit Pinned URL
|
||||||
}
|
}
|
||||||
|
.accesskey = P
|
||||||
|
tab-context-zen-replace-pinned-url-with-current =
|
||||||
|
.label = Replace with Current URL
|
||||||
.accesskey = C
|
.accesskey = C
|
||||||
|
tab-context-zen-edit-pinned-url =
|
||||||
|
.label = Edit…
|
||||||
|
.accesskey = E
|
||||||
tab-context-zen-edit-title =
|
tab-context-zen-edit-title =
|
||||||
.label = Change Label...
|
.label = Change Label...
|
||||||
tab-context-zen-edit-icon =
|
tab-context-zen-edit-icon =
|
||||||
@@ -47,6 +53,10 @@ zen-general-cancel-label =
|
|||||||
zen-general-confirm =
|
zen-general-confirm =
|
||||||
.label = Confirm
|
.label = Confirm
|
||||||
zen-pinned-tab-replaced = Pinned tab URL has been replaced with the current URL!
|
zen-pinned-tab-replaced = Pinned tab URL has been replaced with the current URL!
|
||||||
|
zen-pinned-tab-url-edited = Pinned tab URL has been updated!
|
||||||
|
zen-pinned-tab-url-invalid = That doesn't look like a valid URL.
|
||||||
|
zen-pinned-tab-edit-url-title = Edit Pinned URL
|
||||||
|
zen-pinned-tab-edit-url-label = Enter the URL this pinned tab should point to:
|
||||||
zen-tabs-renamed = Tab has been successfully renamed!
|
zen-tabs-renamed = Tab has been successfully renamed!
|
||||||
zen-background-tab-opened-toast = New background tab opened!
|
zen-background-tab-opened-toast = New background tab opened!
|
||||||
zen-workspace-renamed-toast = Workspace has been successfully renamed!
|
zen-workspace-renamed-toast = Workspace has been successfully renamed!
|
||||||
@@ -65,6 +75,8 @@ zen-icons-picker-emoji =
|
|||||||
.label = Emojis
|
.label = Emojis
|
||||||
zen-icons-picker-svg =
|
zen-icons-picker-svg =
|
||||||
.label = Icons
|
.label = Icons
|
||||||
|
zen-emojis-picker-search =
|
||||||
|
.placeholder = Search emojis
|
||||||
urlbar-search-mode-zen_actions = Actions
|
urlbar-search-mode-zen_actions = Actions
|
||||||
zen-site-data-settings = Settings
|
zen-site-data-settings = Settings
|
||||||
zen-generic-manage = Manage
|
zen-generic-manage = Manage
|
||||||
@@ -116,6 +128,9 @@ zen-sidebar-notification-updated-heading = Update Complete!
|
|||||||
zen-sidebar-notification-updated-label = What's new in { -brand-short-name }
|
zen-sidebar-notification-updated-label = What's new in { -brand-short-name }
|
||||||
zen-sidebar-notification-updated-tooltip =
|
zen-sidebar-notification-updated-tooltip =
|
||||||
.title = View Release Notes
|
.title = View Release Notes
|
||||||
|
zen-sidebar-notification-donate-label = Support { -brand-short-name }
|
||||||
|
zen-sidebar-notification-donate-tooltip =
|
||||||
|
.title = Donate to the project
|
||||||
zen-sidebar-notification-restart-safe-mode-label = Something broke?
|
zen-sidebar-notification-restart-safe-mode-label = Something broke?
|
||||||
zen-sidebar-notification-restart-safe-mode-tooltip =
|
zen-sidebar-notification-restart-safe-mode-tooltip =
|
||||||
.title = Restart in Safe Mode
|
.title = Restart in Safe Mode
|
||||||
|
|||||||
30
locales/bs/browser/browser/zen-space-routing.ftl
Normal file
30
locales/bs/browser/browser/zen-space-routing.ftl
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-space-routing-settings =
|
||||||
|
.label = Space Routing Settings
|
||||||
|
zen-space-routing-rulepanel-placeholder = Routes let you choose where specific sites open inside Zen. For example, you can route YouTube links to always open inside your Personal space.
|
||||||
|
zen-space-routing-dialog-title = Space Routing Settings
|
||||||
|
zen-space-routing-external-default = Default route for external links
|
||||||
|
zen-space-routing-new-route = New Route
|
||||||
|
zen-space-routing-open-in-space = Open in Space
|
||||||
|
zen-space-routing-most-recent-space = Most recent Space
|
||||||
|
zen-space-routing-close-button =
|
||||||
|
.aria-label = Close
|
||||||
|
.tooltiptext = Close
|
||||||
|
zen-space-routing-contains =
|
||||||
|
.label = Contains
|
||||||
|
zen-space-routing-equal-to =
|
||||||
|
.label = Is Equal To
|
||||||
|
zen-space-routing-regex =
|
||||||
|
.label = RegEx
|
||||||
|
zen-space-routing-open-in = Open In
|
||||||
|
zen-space-routing-url = URL
|
||||||
|
zen-space-routing-tab-routed-toast = New tab opened in { $targetWorkspace }
|
||||||
|
tab-context-zen-add-domain-to-sr =
|
||||||
|
.label =
|
||||||
|
{ $tabCount ->
|
||||||
|
[one] Add Route for Domain
|
||||||
|
*[other] Add Route for Domains
|
||||||
|
}
|
||||||
@@ -61,6 +61,7 @@ zen-workspace-creation-profile = Profile
|
|||||||
.tooltiptext = Profiles are used to separate cookies and site data between spaces.
|
.tooltiptext = Profiles are used to separate cookies and site data between spaces.
|
||||||
zen-workspace-creation-header = Create a Space
|
zen-workspace-creation-header = Create a Space
|
||||||
zen-workspace-creation-label = Spaces are used to organize your tabs and sessions.
|
zen-workspace-creation-label = Spaces are used to organize your tabs and sessions.
|
||||||
|
zen-workspace-default-profile = Default
|
||||||
zen-workspaces-delete-workspace-title = Delete Space?
|
zen-workspaces-delete-workspace-title = Delete Space?
|
||||||
zen-workspaces-delete-workspace-body = Are you sure you want to delete { $name }? This action cannot be undone.
|
zen-workspaces-delete-workspace-body = Are you sure you want to delete { $name }? This action cannot be undone.
|
||||||
# Note that the html tag MUST not be changed or removed, as it is used to better
|
# Note that the html tag MUST not be changed or removed, as it is used to better
|
||||||
|
|||||||
@@ -38,6 +38,10 @@ zen-look-and-feel-compact-view-top-toolbar =
|
|||||||
.label = Amaga també la barra d'eines superior en el mode compacte
|
.label = Amaga també la barra d'eines superior en el mode compacte
|
||||||
zen-look-and-feel-compact-toolbar-flash-popup =
|
zen-look-and-feel-compact-toolbar-flash-popup =
|
||||||
.label = Fa que la barra d'eines aparegui breument quan canvieu o obriu noves pestanyes en el mode compacte
|
.label = Fa que la barra d'eines aparegui breument quan canvieu o obriu noves pestanyes en el mode compacte
|
||||||
|
zen-look-and-feel-window-drag-header = Arrossegueu la finestra
|
||||||
|
zen-look-and-feel-window-drag-description = Mou la finestra arrossegant l'espai buit a la part superior dels llocs web, igual que la barra de títol.
|
||||||
|
zen-window-drag-enabled =
|
||||||
|
.label = Permet arrossegar la finestra des de les pàgines web
|
||||||
pane-zen-tabs-title = Gestió de pestanyes
|
pane-zen-tabs-title = Gestió de pestanyes
|
||||||
category-zen-workspaces =
|
category-zen-workspaces =
|
||||||
.tooltiptext = { pane-zen-tabs-title }
|
.tooltiptext = { pane-zen-tabs-title }
|
||||||
@@ -244,7 +248,8 @@ zen-page-info-shortcut = Mostra la informació de la pàgina
|
|||||||
zen-find-shortcut = Cerca a la pàgina
|
zen-find-shortcut = Cerca a la pàgina
|
||||||
zen-search-find-again-shortcut = Cerca-ho un altre cop
|
zen-search-find-again-shortcut = Cerca-ho un altre cop
|
||||||
zen-search-find-again-shortcut-prev = Cerca l'anterior
|
zen-search-find-again-shortcut-prev = Cerca l'anterior
|
||||||
zen-search-find-again-shortcut-2 = Cerca-ho un altre cop (Alt)
|
zen-search-find-again-shortcut-alt = Cerca-ho un altre cop (Alt)
|
||||||
|
zen-search-find-again-shortcut-prev-alt = Cerca l'anterior (Alt)
|
||||||
zen-bookmark-this-page-shortcut = Afegeix aquesta pàgina als marcadors
|
zen-bookmark-this-page-shortcut = Afegeix aquesta pàgina als marcadors
|
||||||
zen-bookmark-show-library-shortcut = Mostra la biblioteca de marcadors
|
zen-bookmark-show-library-shortcut = Mostra la biblioteca de marcadors
|
||||||
zen-key-stop = Atura la càrrega
|
zen-key-stop = Atura la càrrega
|
||||||
|
|||||||
36
locales/ca/browser/browser/zen-command-palette.ftl
Normal file
36
locales/ca/browser/browser/zen-command-palette.ftl
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-action-toggle-compact-mode = Toggle Compact Mode
|
||||||
|
zen-action-open-theme-picker = Open Theme Picker
|
||||||
|
zen-action-new-split-view = New Split View
|
||||||
|
zen-action-new-folder = New Folder
|
||||||
|
zen-action-copy-current-url = Copy Current URL
|
||||||
|
zen-action-settings = Settings
|
||||||
|
zen-action-open-private-window = Open Private Window
|
||||||
|
zen-action-open-new-window = Open New Window
|
||||||
|
zen-action-new-blank-window = New Blank Window
|
||||||
|
zen-action-pin-tab = Pin Tab
|
||||||
|
zen-action-unpin-tab = Unpin Tab
|
||||||
|
zen-action-open-space-routing = Open Space Routing
|
||||||
|
zen-action-new-boost = New Boost
|
||||||
|
zen-action-next-space = Next Space
|
||||||
|
zen-action-previous-space = Previous Space
|
||||||
|
zen-action-close-tab = Close Tab
|
||||||
|
zen-action-reload-tab = Reload Tab
|
||||||
|
zen-action-reload-tab-without-cache = Reload Tab Without Cache
|
||||||
|
zen-action-next-tab = Next Tab
|
||||||
|
zen-action-previous-tab = Previous Tab
|
||||||
|
zen-action-capture-screenshot = Capture Screenshot
|
||||||
|
zen-action-toggle-tabs-on-right = Toggle Tabs on right
|
||||||
|
zen-action-add-to-essentials = Add to Essentials
|
||||||
|
zen-action-remove-from-essentials = Remove from Essentials
|
||||||
|
zen-action-find-in-page = Find in Page
|
||||||
|
zen-action-manage-extensions = Manage Extensions
|
||||||
|
zen-action-switch-to-automatic-appearance = Switch to Automatic Appearance
|
||||||
|
zen-action-switch-to-light-mode = Switch to Light Mode
|
||||||
|
zen-action-switch-to-dark-mode = Switch to Dark Mode
|
||||||
|
zen-action-print = Print
|
||||||
|
zen-action-focus-on = Focus on
|
||||||
|
zen-action-extension = Extension
|
||||||
@@ -18,13 +18,19 @@ tab-context-zen-add-essential-badge = { $num } / { $max }
|
|||||||
tab-context-zen-remove-essential =
|
tab-context-zen-remove-essential =
|
||||||
.label = Elimina dels essencials
|
.label = Elimina dels essencials
|
||||||
.accesskey = R
|
.accesskey = R
|
||||||
tab-context-zen-replace-pinned-url-with-current =
|
tab-context-zen-edit-pinned-page =
|
||||||
.label =
|
.label =
|
||||||
{ $isEssential ->
|
{ $isEssential ->
|
||||||
[true] Substitueix l'URL essencial per l'actual
|
[true] Edita l'URL essencial
|
||||||
*[false] Substitueix l'URL fixat per l'actual
|
*[false] Edita l'URL fixada
|
||||||
}
|
}
|
||||||
|
.accesskey = P
|
||||||
|
tab-context-zen-replace-pinned-url-with-current =
|
||||||
|
.label = Substitueix amb l'URL actual
|
||||||
.accesskey = C
|
.accesskey = C
|
||||||
|
tab-context-zen-edit-pinned-url =
|
||||||
|
.label = Edita…
|
||||||
|
.accesskey = E
|
||||||
tab-context-zen-edit-title =
|
tab-context-zen-edit-title =
|
||||||
.label = Canvia l'etiqueta...
|
.label = Canvia l'etiqueta...
|
||||||
tab-context-zen-edit-icon =
|
tab-context-zen-edit-icon =
|
||||||
@@ -47,6 +53,10 @@ zen-general-cancel-label =
|
|||||||
zen-general-confirm =
|
zen-general-confirm =
|
||||||
.label = Confirma
|
.label = Confirma
|
||||||
zen-pinned-tab-replaced = L'URL de la pestanya fixada s'ha substituït per l'URL actual.
|
zen-pinned-tab-replaced = L'URL de la pestanya fixada s'ha substituït per l'URL actual.
|
||||||
|
zen-pinned-tab-url-edited = L'URL de la pestanya fixada s'ha actualitzat!
|
||||||
|
zen-pinned-tab-url-invalid = Això no sembla una URL vàlida.
|
||||||
|
zen-pinned-tab-edit-url-title = Edita l'URL fixada
|
||||||
|
zen-pinned-tab-edit-url-label = Introduïu l'URL a la qual ha d'apuntar aquesta pestanya fixada:
|
||||||
zen-tabs-renamed = S'ha canviat el nom de la pestanya correctament
|
zen-tabs-renamed = S'ha canviat el nom de la pestanya correctament
|
||||||
zen-background-tab-opened-toast = S'ha obert una nova pestanya de fons
|
zen-background-tab-opened-toast = S'ha obert una nova pestanya de fons
|
||||||
zen-workspace-renamed-toast = S'ha canviat el nom de l'espai de treball correctament
|
zen-workspace-renamed-toast = S'ha canviat el nom de l'espai de treball correctament
|
||||||
@@ -65,6 +75,8 @@ zen-icons-picker-emoji =
|
|||||||
.label = Emojis
|
.label = Emojis
|
||||||
zen-icons-picker-svg =
|
zen-icons-picker-svg =
|
||||||
.label = Icones
|
.label = Icones
|
||||||
|
zen-emojis-picker-search =
|
||||||
|
.placeholder = Cerca emojis
|
||||||
urlbar-search-mode-zen_actions = Accions
|
urlbar-search-mode-zen_actions = Accions
|
||||||
zen-site-data-settings = Configuració
|
zen-site-data-settings = Configuració
|
||||||
zen-generic-manage = Gestiona
|
zen-generic-manage = Gestiona
|
||||||
@@ -116,6 +128,9 @@ zen-sidebar-notification-updated-heading = Actualització completada!
|
|||||||
zen-sidebar-notification-updated-label = Novetats a { -brand-short-name }
|
zen-sidebar-notification-updated-label = Novetats a { -brand-short-name }
|
||||||
zen-sidebar-notification-updated-tooltip =
|
zen-sidebar-notification-updated-tooltip =
|
||||||
.title = Mostra les notes de la versió
|
.title = Mostra les notes de la versió
|
||||||
|
zen-sidebar-notification-donate-label = Ajudeu-nos { -brand-short-name }
|
||||||
|
zen-sidebar-notification-donate-tooltip =
|
||||||
|
.title = Feu una donació al projecte
|
||||||
zen-sidebar-notification-restart-safe-mode-label = Alguna cosa no funciona?
|
zen-sidebar-notification-restart-safe-mode-label = Alguna cosa no funciona?
|
||||||
zen-sidebar-notification-restart-safe-mode-tooltip =
|
zen-sidebar-notification-restart-safe-mode-tooltip =
|
||||||
.title = Reinici en mode segur
|
.title = Reinici en mode segur
|
||||||
|
|||||||
30
locales/ca/browser/browser/zen-space-routing.ftl
Normal file
30
locales/ca/browser/browser/zen-space-routing.ftl
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-space-routing-settings =
|
||||||
|
.label = Configuració de l'encaminament d'espais
|
||||||
|
zen-space-routing-rulepanel-placeholder = Les rutes us permeten triar on s'obren llocs específics dins del Zen. Per exemple, podeu encaminar els enllaços del YouTube perquè sempre s'obrin dins del vostre espai personal.
|
||||||
|
zen-space-routing-dialog-title = Configuració de l'encaminament d'espais
|
||||||
|
zen-space-routing-external-default = Ruta per defecte per a enllaços externs
|
||||||
|
zen-space-routing-new-route = Nova ruta
|
||||||
|
zen-space-routing-open-in-space = Obre a l'espai
|
||||||
|
zen-space-routing-most-recent-space = Espai més recent
|
||||||
|
zen-space-routing-close-button =
|
||||||
|
.aria-label = Tanca
|
||||||
|
.tooltiptext = Tanca
|
||||||
|
zen-space-routing-contains =
|
||||||
|
.label = Conté
|
||||||
|
zen-space-routing-equal-to =
|
||||||
|
.label = És igual a
|
||||||
|
zen-space-routing-regex =
|
||||||
|
.label = RegEx
|
||||||
|
zen-space-routing-open-in = Obre a
|
||||||
|
zen-space-routing-url = URL
|
||||||
|
zen-space-routing-tab-routed-toast = Nova pestanya oberta a { $targetWorkspace }
|
||||||
|
tab-context-zen-add-domain-to-sr =
|
||||||
|
.label =
|
||||||
|
{ $tabCount ->
|
||||||
|
[one] Afegeix una ruta per al domini
|
||||||
|
*[other] Afegeix una ruta per als dominis
|
||||||
|
}
|
||||||
@@ -61,6 +61,7 @@ zen-workspace-creation-profile = Perfil
|
|||||||
.tooltiptext = Els perfils s'utilitzen per separar les galetes i les dades del lloc entre espais.
|
.tooltiptext = Els perfils s'utilitzen per separar les galetes i les dades del lloc entre espais.
|
||||||
zen-workspace-creation-header = Creació d'un espai
|
zen-workspace-creation-header = Creació d'un espai
|
||||||
zen-workspace-creation-label = Els espais s'utilitzen per organitzar les pestanyes i les sessions.
|
zen-workspace-creation-label = Els espais s'utilitzen per organitzar les pestanyes i les sessions.
|
||||||
|
zen-workspace-default-profile = Per defecte
|
||||||
zen-workspaces-delete-workspace-title = Voleu suprimir l'espai de treball?
|
zen-workspaces-delete-workspace-title = Voleu suprimir l'espai de treball?
|
||||||
zen-workspaces-delete-workspace-body = Esteu segur que voleu suprimir { $name }? Aquesta acció no es pot desfer.
|
zen-workspaces-delete-workspace-body = Esteu segur que voleu suprimir { $name }? Aquesta acció no es pot desfer.
|
||||||
# Note that the html tag MUST not be changed or removed, as it is used to better
|
# Note that the html tag MUST not be changed or removed, as it is used to better
|
||||||
|
|||||||
@@ -38,6 +38,10 @@ zen-look-and-feel-compact-view-top-toolbar =
|
|||||||
.label = Skrýt horní panel nástrojů i v kompaktním režimu
|
.label = Skrýt horní panel nástrojů i v kompaktním režimu
|
||||||
zen-look-and-feel-compact-toolbar-flash-popup =
|
zen-look-and-feel-compact-toolbar-flash-popup =
|
||||||
.label = Krátce zobrazit vyskakovací panel nástrojů při přepínání nebo otevírání nových panelů v kompaktním režimu
|
.label = Krátce zobrazit vyskakovací panel nástrojů při přepínání nebo otevírání nových panelů v kompaktním režimu
|
||||||
|
zen-look-and-feel-window-drag-header = Táhnutí okna
|
||||||
|
zen-look-and-feel-window-drag-description = Move the window by dragging empty space at the top of websites, just like the titlebar.
|
||||||
|
zen-window-drag-enabled =
|
||||||
|
.label = Povolit přetahování okna z webových stránek
|
||||||
pane-zen-tabs-title = Správa karet
|
pane-zen-tabs-title = Správa karet
|
||||||
category-zen-workspaces =
|
category-zen-workspaces =
|
||||||
.tooltiptext = { pane-zen-tabs-title }
|
.tooltiptext = { pane-zen-tabs-title }
|
||||||
@@ -244,7 +248,8 @@ zen-page-info-shortcut = Zobrazit informace o stránce
|
|||||||
zen-find-shortcut = Najít na stránce
|
zen-find-shortcut = Najít na stránce
|
||||||
zen-search-find-again-shortcut = Najít znovu
|
zen-search-find-again-shortcut = Najít znovu
|
||||||
zen-search-find-again-shortcut-prev = Najít předchozí
|
zen-search-find-again-shortcut-prev = Najít předchozí
|
||||||
zen-search-find-again-shortcut-2 = Najít znovu (Alt)
|
zen-search-find-again-shortcut-alt = Najít znovu (Alt)
|
||||||
|
zen-search-find-again-shortcut-prev-alt = Najít předchozí (Alt)
|
||||||
zen-bookmark-this-page-shortcut = Přidat záložku
|
zen-bookmark-this-page-shortcut = Přidat záložku
|
||||||
zen-bookmark-show-library-shortcut = Zobrazit knihovnu záložek
|
zen-bookmark-show-library-shortcut = Zobrazit knihovnu záložek
|
||||||
zen-key-stop = Zastavit načítání
|
zen-key-stop = Zastavit načítání
|
||||||
|
|||||||
@@ -3,44 +3,44 @@
|
|||||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
zen-boost-edit-rename =
|
zen-boost-edit-rename =
|
||||||
.label = Rename Boost
|
.label = Přejmenovat Boost
|
||||||
zen-boost-edit-shuffle =
|
zen-boost-edit-shuffle =
|
||||||
.label = Shuffle Vibes
|
.label = Zamíchat náladu
|
||||||
zen-boost-edit-reset =
|
zen-boost-edit-reset =
|
||||||
.label = Reset All Edits
|
.label = Obnovit všechny úpravy
|
||||||
zen-boost-edit-delete =
|
zen-boost-edit-delete =
|
||||||
.label = Delete Boost
|
.label = Odstranit Boost
|
||||||
zen-boost-size = Size
|
zen-boost-size = Velikost
|
||||||
zen-boost-case = Case
|
zen-boost-case = Case
|
||||||
zen-boost-zap = Zap
|
zen-boost-zap = Zap
|
||||||
zen-boost-code = Code
|
zen-boost-code = Code
|
||||||
zen-boost-back = Back
|
zen-boost-back = Zpět
|
||||||
zen-boost-shuffle =
|
zen-boost-shuffle =
|
||||||
.tooltiptext = Shuffle Boost Settings
|
.tooltiptext = Shuffle Boost Settings
|
||||||
zen-boost-invert =
|
zen-boost-invert =
|
||||||
.tooltiptext = Smart Invert Colors
|
.tooltiptext = Smart Invert Colors
|
||||||
zen-boost-controls =
|
zen-boost-controls =
|
||||||
.tooltiptext = Advanced Color Controls
|
.tooltiptext = Pokročilé nastavení barev
|
||||||
zen-boost-disable =
|
zen-boost-disable =
|
||||||
.tooltiptext = Disable Color Adjustments
|
.tooltiptext = Zakázat úpravy barev
|
||||||
zen-boost-text-case-toggle =
|
zen-boost-text-case-toggle =
|
||||||
.tooltiptext = Toggle Text Case
|
.tooltiptext = Toggle Text Case
|
||||||
zen-boost-css-picker =
|
zen-boost-css-picker =
|
||||||
.tooltiptext = Pick Selector
|
.tooltiptext = Pick Selector
|
||||||
zen-boost-css-inspector =
|
zen-boost-css-inspector =
|
||||||
.tooltiptext = Open Inspector
|
.tooltiptext = Otevřít inspektor
|
||||||
zen-boost-color-contrast = Contrast
|
zen-boost-color-contrast = Kontrast
|
||||||
zen-boost-color-brightness = Brightness
|
zen-boost-color-brightness = Jas
|
||||||
zen-boost-color-original-saturation = Original Saturation
|
zen-boost-color-original-saturation = Původní sytost
|
||||||
zen-add-zap-helper = Click elements on the page to <b>Zap</b> them
|
zen-add-zap-helper = Click elements on the page to <b>Zap</b> them
|
||||||
zen-remove-zap-helper = ← Click to Unzap
|
zen-remove-zap-helper = ← Click to Unzap
|
||||||
zen-select-this = Insert selector for this
|
zen-select-this = Insert selector for this
|
||||||
zen-select-related = Insert selector for related
|
zen-select-related = Insert selector for related
|
||||||
zen-select-cancel = Cancel
|
zen-select-cancel = Zrušit
|
||||||
zen-zap-this = Zap this
|
zen-zap-this = Zap this
|
||||||
zen-zap-related = Zap all related elements
|
zen-zap-related = Zap all related elements
|
||||||
zen-zap-cancel = Cancel
|
zen-zap-cancel = Zrušit
|
||||||
zen-zap-done = Done
|
zen-zap-done = Hotovo
|
||||||
zen-unzap-tooltip =
|
zen-unzap-tooltip =
|
||||||
{ $elementCount ->
|
{ $elementCount ->
|
||||||
[0] No elements zapped
|
[0] No elements zapped
|
||||||
@@ -48,11 +48,11 @@ zen-unzap-tooltip =
|
|||||||
*[other] { $elementCount } elements zapped
|
*[other] { $elementCount } elements zapped
|
||||||
}
|
}
|
||||||
zen-boost-save =
|
zen-boost-save =
|
||||||
.label = Export Boost
|
.label = Exportovat Boost
|
||||||
zen-boost-load =
|
zen-boost-load =
|
||||||
.label = Import Boost
|
.label = Import Boost
|
||||||
zen-panel-ui-boosts-exported-message = Boost exported!
|
zen-panel-ui-boosts-exported-message = Boost exportován!
|
||||||
zen-site-data-boosts = Boosts
|
zen-site-data-boosts = Boosty
|
||||||
zen-site-data-create-boost =
|
zen-site-data-create-boost =
|
||||||
.tooltiptext = Create new boost
|
.tooltiptext = Vytvořit nový Boost
|
||||||
zen-boost-rename-boost-prompt = Rename Boost?
|
zen-boost-rename-boost-prompt = Přejmenovat Boost?
|
||||||
|
|||||||
36
locales/cs/browser/browser/zen-command-palette.ftl
Normal file
36
locales/cs/browser/browser/zen-command-palette.ftl
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-action-toggle-compact-mode = Přepnout kompaktní režim
|
||||||
|
zen-action-open-theme-picker = Otevřít výběr motivu
|
||||||
|
zen-action-new-split-view = Nové rozdělení zobrazení
|
||||||
|
zen-action-new-folder = Nová složka
|
||||||
|
zen-action-copy-current-url = Kopírovat aktuální URL adresu
|
||||||
|
zen-action-settings = Nastavení
|
||||||
|
zen-action-open-private-window = Otevřít nové anonymní okno
|
||||||
|
zen-action-open-new-window = Otevřít nové okno
|
||||||
|
zen-action-new-blank-window = Nové prázdné okno
|
||||||
|
zen-action-pin-tab = Připnout panel
|
||||||
|
zen-action-unpin-tab = Odepnout panel
|
||||||
|
zen-action-open-space-routing = Open Space Routing
|
||||||
|
zen-action-new-boost = Nový boost
|
||||||
|
zen-action-next-space = Další prostor
|
||||||
|
zen-action-previous-space = Předchozí prostor
|
||||||
|
zen-action-close-tab = Zavřít panel
|
||||||
|
zen-action-reload-tab = Obnovit panel
|
||||||
|
zen-action-reload-tab-without-cache = Znovu načíst kartu bez mezipaměti
|
||||||
|
zen-action-next-tab = Další karta
|
||||||
|
zen-action-previous-tab = Předchozí karta
|
||||||
|
zen-action-capture-screenshot = Pořídit snímek obrazovky
|
||||||
|
zen-action-toggle-tabs-on-right = Přepnout panely vpravo
|
||||||
|
zen-action-add-to-essentials = Přídat do Essentials
|
||||||
|
zen-action-remove-from-essentials = Odstranit z Essentials
|
||||||
|
zen-action-find-in-page = Najít na stránce
|
||||||
|
zen-action-manage-extensions = Spravovat rozšíření
|
||||||
|
zen-action-switch-to-automatic-appearance = Přepnout na automatický vzhled
|
||||||
|
zen-action-switch-to-light-mode = Přepnout do světlého režimu
|
||||||
|
zen-action-switch-to-dark-mode = Přepnout do tmavého režimu
|
||||||
|
zen-action-print = Tisk
|
||||||
|
zen-action-focus-on = Focus on
|
||||||
|
zen-action-extension = Extension
|
||||||
@@ -18,13 +18,19 @@ tab-context-zen-add-essential-badge = { $num } / { $max } zaplněných slotů
|
|||||||
tab-context-zen-remove-essential =
|
tab-context-zen-remove-essential =
|
||||||
.label = Odstranit z Essentials
|
.label = Odstranit z Essentials
|
||||||
.accesskey = R
|
.accesskey = R
|
||||||
tab-context-zen-replace-pinned-url-with-current =
|
tab-context-zen-edit-pinned-page =
|
||||||
.label =
|
.label =
|
||||||
{ $isEssential ->
|
{ $isEssential ->
|
||||||
[true] Nahradit Essential URL aktuální
|
[true] Edit Essential URL
|
||||||
*[false] Nahradit připnutou URL aktuální
|
*[false] Edit Pinned URL
|
||||||
}
|
}
|
||||||
|
.accesskey = P
|
||||||
|
tab-context-zen-replace-pinned-url-with-current =
|
||||||
|
.label = Nahradit současnou URL
|
||||||
.accesskey = C
|
.accesskey = C
|
||||||
|
tab-context-zen-edit-pinned-url =
|
||||||
|
.label = Upravit…
|
||||||
|
.accesskey = E
|
||||||
tab-context-zen-edit-title =
|
tab-context-zen-edit-title =
|
||||||
.label = Změnit název...
|
.label = Změnit název...
|
||||||
tab-context-zen-edit-icon =
|
tab-context-zen-edit-icon =
|
||||||
@@ -47,6 +53,10 @@ zen-general-cancel-label =
|
|||||||
zen-general-confirm =
|
zen-general-confirm =
|
||||||
.label = Potvrdit
|
.label = Potvrdit
|
||||||
zen-pinned-tab-replaced = Připnutá URL adresa panelu byla nahrazena aktuální URL adresou.
|
zen-pinned-tab-replaced = Připnutá URL adresa panelu byla nahrazena aktuální URL adresou.
|
||||||
|
zen-pinned-tab-url-edited = URL připnuté karty byla aktualizována!
|
||||||
|
zen-pinned-tab-url-invalid = To nevypadá jako platná URL adresa.
|
||||||
|
zen-pinned-tab-edit-url-title = Upravit připnutou adresu URL
|
||||||
|
zen-pinned-tab-edit-url-label = Zadejte URL, na kterou by měl tento připnutý panel odkazovat:
|
||||||
zen-tabs-renamed = Panel byl úspěšně přejmenován!
|
zen-tabs-renamed = Panel byl úspěšně přejmenován!
|
||||||
zen-background-tab-opened-toast = Nový panel na pozadí byl otevřen!
|
zen-background-tab-opened-toast = Nový panel na pozadí byl otevřen!
|
||||||
zen-workspace-renamed-toast = Pracovní prostor byl úspěšně přejmenován!
|
zen-workspace-renamed-toast = Pracovní prostor byl úspěšně přejmenován!
|
||||||
@@ -65,6 +75,8 @@ zen-icons-picker-emoji =
|
|||||||
.label = Emodži
|
.label = Emodži
|
||||||
zen-icons-picker-svg =
|
zen-icons-picker-svg =
|
||||||
.label = Ikony
|
.label = Ikony
|
||||||
|
zen-emojis-picker-search =
|
||||||
|
.placeholder = Vyhledat emoji
|
||||||
urlbar-search-mode-zen_actions = Akce
|
urlbar-search-mode-zen_actions = Akce
|
||||||
zen-site-data-settings = Nastavení
|
zen-site-data-settings = Nastavení
|
||||||
zen-generic-manage = Spravovat
|
zen-generic-manage = Spravovat
|
||||||
@@ -116,6 +128,9 @@ zen-sidebar-notification-updated-heading = Aktualizace byla dokončena!
|
|||||||
zen-sidebar-notification-updated-label = Co je nového v prohlížeči { -brand-short-name }
|
zen-sidebar-notification-updated-label = Co je nového v prohlížeči { -brand-short-name }
|
||||||
zen-sidebar-notification-updated-tooltip =
|
zen-sidebar-notification-updated-tooltip =
|
||||||
.title = Zobrazit změny
|
.title = Zobrazit změny
|
||||||
|
zen-sidebar-notification-donate-label = Podpořte { -brand-short-name }
|
||||||
|
zen-sidebar-notification-donate-tooltip =
|
||||||
|
.title = Přispět na projekt
|
||||||
zen-sidebar-notification-restart-safe-mode-label = Něco se rozbilo?
|
zen-sidebar-notification-restart-safe-mode-label = Něco se rozbilo?
|
||||||
zen-sidebar-notification-restart-safe-mode-tooltip =
|
zen-sidebar-notification-restart-safe-mode-tooltip =
|
||||||
.title = Restartovat v Nouzovém Režimu
|
.title = Restartovat v Nouzovém Režimu
|
||||||
|
|||||||
30
locales/cs/browser/browser/zen-space-routing.ftl
Normal file
30
locales/cs/browser/browser/zen-space-routing.ftl
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-space-routing-settings =
|
||||||
|
.label = Space Routing Settings
|
||||||
|
zen-space-routing-rulepanel-placeholder = Routes let you choose where specific sites open inside Zen. For example, you can route YouTube links to always open inside your Personal space.
|
||||||
|
zen-space-routing-dialog-title = Space Routing Settings
|
||||||
|
zen-space-routing-external-default = Default route for external links
|
||||||
|
zen-space-routing-new-route = New Route
|
||||||
|
zen-space-routing-open-in-space = Otevřít v prostoru
|
||||||
|
zen-space-routing-most-recent-space = Nejnovější prostor
|
||||||
|
zen-space-routing-close-button =
|
||||||
|
.aria-label = Zavřít
|
||||||
|
.tooltiptext = Zavřít
|
||||||
|
zen-space-routing-contains =
|
||||||
|
.label = Obsahuje
|
||||||
|
zen-space-routing-equal-to =
|
||||||
|
.label = Je rovno
|
||||||
|
zen-space-routing-regex =
|
||||||
|
.label = RegEx
|
||||||
|
zen-space-routing-open-in = Otevřít v
|
||||||
|
zen-space-routing-url = URL
|
||||||
|
zen-space-routing-tab-routed-toast = New tab opened in { $targetWorkspace }
|
||||||
|
tab-context-zen-add-domain-to-sr =
|
||||||
|
.label =
|
||||||
|
{ $tabCount ->
|
||||||
|
[one] Add Route for Domain
|
||||||
|
*[other] Add Route for Domains
|
||||||
|
}
|
||||||
@@ -61,6 +61,7 @@ zen-workspace-creation-profile = Profil
|
|||||||
.tooltiptext = Profily se používají k oddělení cookies a údajů webových stránek mezi prostory.
|
.tooltiptext = Profily se používají k oddělení cookies a údajů webových stránek mezi prostory.
|
||||||
zen-workspace-creation-header = Vytvořte si prostor
|
zen-workspace-creation-header = Vytvořte si prostor
|
||||||
zen-workspace-creation-label = Prostory slouží k organizaci Vašich karet a relací.
|
zen-workspace-creation-label = Prostory slouží k organizaci Vašich karet a relací.
|
||||||
|
zen-workspace-default-profile = Výchozí
|
||||||
zen-workspaces-delete-workspace-title = Odstranit prostor?
|
zen-workspaces-delete-workspace-title = Odstranit prostor?
|
||||||
zen-workspaces-delete-workspace-body = Opravdu chcete smazat { $name }? Tuto akci nelze vrátit zpět.
|
zen-workspaces-delete-workspace-body = Opravdu chcete smazat { $name }? Tuto akci nelze vrátit zpět.
|
||||||
# Note that the html tag MUST not be changed or removed, as it is used to better
|
# Note that the html tag MUST not be changed or removed, as it is used to better
|
||||||
|
|||||||
@@ -38,6 +38,10 @@ zen-look-and-feel-compact-view-top-toolbar =
|
|||||||
.label = Cuddio'r bar offer uchaf hefyd yn y modd cryno
|
.label = Cuddio'r bar offer uchaf hefyd yn y modd cryno
|
||||||
zen-look-and-feel-compact-toolbar-flash-popup =
|
zen-look-and-feel-compact-toolbar-flash-popup =
|
||||||
.label = Gwneud i'r bar offer ymddangos yn fyr wrth newid neu agor tabiau newydd yn y modd cryno
|
.label = Gwneud i'r bar offer ymddangos yn fyr wrth newid neu agor tabiau newydd yn y modd cryno
|
||||||
|
zen-look-and-feel-window-drag-header = Window dragging
|
||||||
|
zen-look-and-feel-window-drag-description = Move the window by dragging empty space at the top of websites, just like the titlebar.
|
||||||
|
zen-window-drag-enabled =
|
||||||
|
.label = Allow dragging the window from web pages
|
||||||
pane-zen-tabs-title = Rheoli Tabiau
|
pane-zen-tabs-title = Rheoli Tabiau
|
||||||
category-zen-workspaces =
|
category-zen-workspaces =
|
||||||
.tooltiptext = { pane-zen-tabs-title }
|
.tooltiptext = { pane-zen-tabs-title }
|
||||||
@@ -244,7 +248,8 @@ zen-page-info-shortcut = Gweld Manylion Tudalen
|
|||||||
zen-find-shortcut = Canfod ar y Dudalen
|
zen-find-shortcut = Canfod ar y Dudalen
|
||||||
zen-search-find-again-shortcut = Canfod Eto
|
zen-search-find-again-shortcut = Canfod Eto
|
||||||
zen-search-find-again-shortcut-prev = Canfod y Blaenorol
|
zen-search-find-again-shortcut-prev = Canfod y Blaenorol
|
||||||
zen-search-find-again-shortcut-2 = Canfod Eto (Alt)
|
zen-search-find-again-shortcut-alt = Find Again (Alt)
|
||||||
|
zen-search-find-again-shortcut-prev-alt = Find Previous (Alt)
|
||||||
zen-bookmark-this-page-shortcut = Gosod Nod Tudalen i'r Dudalen Hon
|
zen-bookmark-this-page-shortcut = Gosod Nod Tudalen i'r Dudalen Hon
|
||||||
zen-bookmark-show-library-shortcut = Dangos Llyfrgell Nodau Tudalen
|
zen-bookmark-show-library-shortcut = Dangos Llyfrgell Nodau Tudalen
|
||||||
zen-key-stop = Stopio Llwytho
|
zen-key-stop = Stopio Llwytho
|
||||||
@@ -281,7 +286,7 @@ zen-workspace-shortcut-switch-9 = Symud i Gofod Gwaith 9
|
|||||||
zen-workspace-shortcut-switch-10 = Symud i Gofod Gwaith 10
|
zen-workspace-shortcut-switch-10 = Symud i Gofod Gwaith 10
|
||||||
zen-workspace-shortcut-forward = Gofod Gwaith Ymlaen
|
zen-workspace-shortcut-forward = Gofod Gwaith Ymlaen
|
||||||
zen-workspace-shortcut-backward = Gofod Gwaith Nôl
|
zen-workspace-shortcut-backward = Gofod Gwaith Nôl
|
||||||
zen-workspace-shortcut-create = Create New Workspace
|
zen-workspace-shortcut-create = Creu Gofod Gwaith Newydd
|
||||||
zen-sidebar-shortcut-toggle = Toglo Lled y Bar Ochr
|
zen-sidebar-shortcut-toggle = Toglo Lled y Bar Ochr
|
||||||
zen-pinned-tab-shortcut-reset = Ailosod y Tab wedi'i Binio i URL wedi'i Binio
|
zen-pinned-tab-shortcut-reset = Ailosod y Tab wedi'i Binio i URL wedi'i Binio
|
||||||
zen-split-view-shortcut-grid = Toglo Grid Golwg Hollt
|
zen-split-view-shortcut-grid = Toglo Grid Golwg Hollt
|
||||||
@@ -319,4 +324,4 @@ zen-devtools-toggle-accessibility-shortcut = Toglo Hygyrchedd
|
|||||||
zen-close-all-unpinned-tabs-shortcut = Cau Pob Tab Heb ei Binio
|
zen-close-all-unpinned-tabs-shortcut = Cau Pob Tab Heb ei Binio
|
||||||
zen-new-unsynced-window-shortcut = Ffenestr Wag Newydd
|
zen-new-unsynced-window-shortcut = Ffenestr Wag Newydd
|
||||||
zen-duplicate-tab-shortcut = Tab Dyblyg
|
zen-duplicate-tab-shortcut = Tab Dyblyg
|
||||||
zen-key-find-selection = Find Selection
|
zen-key-find-selection = Canfod y Dewis
|
||||||
|
|||||||
@@ -3,56 +3,56 @@
|
|||||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
zen-boost-edit-rename =
|
zen-boost-edit-rename =
|
||||||
.label = Rename Boost
|
.label = Ailenwi Hwb
|
||||||
zen-boost-edit-shuffle =
|
zen-boost-edit-shuffle =
|
||||||
.label = Shuffle Vibes
|
.label = Shyfflo Vibes
|
||||||
zen-boost-edit-reset =
|
zen-boost-edit-reset =
|
||||||
.label = Reset All Edits
|
.label = Ailosod Pob Golygiad
|
||||||
zen-boost-edit-delete =
|
zen-boost-edit-delete =
|
||||||
.label = Delete Boost
|
.label = Dileu Hwb
|
||||||
zen-boost-size = Size
|
zen-boost-size = Maint
|
||||||
zen-boost-case = Case
|
zen-boost-case = Maint Nod
|
||||||
zen-boost-zap = Zap
|
zen-boost-zap = Sap
|
||||||
zen-boost-code = Code
|
zen-boost-code = Côd
|
||||||
zen-boost-back = Back
|
zen-boost-back = Nôl
|
||||||
zen-boost-shuffle =
|
zen-boost-shuffle =
|
||||||
.tooltiptext = Shuffle Boost Settings
|
.tooltiptext = Syfflo Gosodiadau Hwb
|
||||||
zen-boost-invert =
|
zen-boost-invert =
|
||||||
.tooltiptext = Smart Invert Colors
|
.tooltiptext = Lliwiau Gwrthdroi Clyfar
|
||||||
zen-boost-controls =
|
zen-boost-controls =
|
||||||
.tooltiptext = Advanced Color Controls
|
.tooltiptext = Rheolyddion Lliw Uwch
|
||||||
zen-boost-disable =
|
zen-boost-disable =
|
||||||
.tooltiptext = Disable Color Adjustments
|
.tooltiptext = Analluogi Addasiadau Lliw
|
||||||
zen-boost-text-case-toggle =
|
zen-boost-text-case-toggle =
|
||||||
.tooltiptext = Toggle Text Case
|
.tooltiptext = Toglo Priflythreniad Testun
|
||||||
zen-boost-css-picker =
|
zen-boost-css-picker =
|
||||||
.tooltiptext = Pick Selector
|
.tooltiptext = Dewis Dewisydd
|
||||||
zen-boost-css-inspector =
|
zen-boost-css-inspector =
|
||||||
.tooltiptext = Open Inspector
|
.tooltiptext = Agor Arolygydd
|
||||||
zen-boost-color-contrast = Contrast
|
zen-boost-color-contrast = Cyferbyniad
|
||||||
zen-boost-color-brightness = Brightness
|
zen-boost-color-brightness = Disgleirdeb
|
||||||
zen-boost-color-original-saturation = Original Saturation
|
zen-boost-color-original-saturation = Dirlawnder Gwreiddiol
|
||||||
zen-add-zap-helper = Click elements on the page to <b>Zap</b> them
|
zen-add-zap-helper = Cliciwch elfennau ar y dudalen <b>i'w</b> Sapio
|
||||||
zen-remove-zap-helper = ← Click to Unzap
|
zen-remove-zap-helper = ← Clicio i Ddadsapio
|
||||||
zen-select-this = Insert selector for this
|
zen-select-this = Mewnosod dewisydd ar gyfer hwn
|
||||||
zen-select-related = Insert selector for related
|
zen-select-related = Mewnosod dewisydd ar gyfer cysylltiedig
|
||||||
zen-select-cancel = Cancel
|
zen-select-cancel = Na
|
||||||
zen-zap-this = Zap this
|
zen-zap-this = Sapio hwn
|
||||||
zen-zap-related = Zap all related elements
|
zen-zap-related = Sapio pob elfen gysylltiedig
|
||||||
zen-zap-cancel = Cancel
|
zen-zap-cancel = Na
|
||||||
zen-zap-done = Done
|
zen-zap-done = Gorffen
|
||||||
zen-unzap-tooltip =
|
zen-unzap-tooltip =
|
||||||
{ $elementCount ->
|
{ $elementCount ->
|
||||||
[0] No elements zapped
|
[0] Dim elfennau wedi'u sapio
|
||||||
[1] { $elementCount } element zapped
|
[1] { $elementCount } elfen wedi'i sapio
|
||||||
*[other] { $elementCount } elements zapped
|
*[other] { $elementCount } elfan wedi'u sapio
|
||||||
}
|
}
|
||||||
zen-boost-save =
|
zen-boost-save =
|
||||||
.label = Export Boost
|
.label = Allforio Hwb
|
||||||
zen-boost-load =
|
zen-boost-load =
|
||||||
.label = Import Boost
|
.label = Mewnforio Hwb
|
||||||
zen-panel-ui-boosts-exported-message = Boost exported!
|
zen-panel-ui-boosts-exported-message = Hwb wedi'i allforio!
|
||||||
zen-site-data-boosts = Boosts
|
zen-site-data-boosts = Hybiau
|
||||||
zen-site-data-create-boost =
|
zen-site-data-create-boost =
|
||||||
.tooltiptext = Create new boost
|
.tooltiptext = Creu hwb newydd
|
||||||
zen-boost-rename-boost-prompt = Rename Boost?
|
zen-boost-rename-boost-prompt = Ailenwi Hwb?
|
||||||
|
|||||||
36
locales/cy/browser/browser/zen-command-palette.ftl
Normal file
36
locales/cy/browser/browser/zen-command-palette.ftl
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-action-toggle-compact-mode = Toggle Compact Mode
|
||||||
|
zen-action-open-theme-picker = Open Theme Picker
|
||||||
|
zen-action-new-split-view = New Split View
|
||||||
|
zen-action-new-folder = New Folder
|
||||||
|
zen-action-copy-current-url = Copy Current URL
|
||||||
|
zen-action-settings = Settings
|
||||||
|
zen-action-open-private-window = Open Private Window
|
||||||
|
zen-action-open-new-window = Open New Window
|
||||||
|
zen-action-new-blank-window = New Blank Window
|
||||||
|
zen-action-pin-tab = Pin Tab
|
||||||
|
zen-action-unpin-tab = Unpin Tab
|
||||||
|
zen-action-open-space-routing = Open Space Routing
|
||||||
|
zen-action-new-boost = New Boost
|
||||||
|
zen-action-next-space = Next Space
|
||||||
|
zen-action-previous-space = Previous Space
|
||||||
|
zen-action-close-tab = Close Tab
|
||||||
|
zen-action-reload-tab = Reload Tab
|
||||||
|
zen-action-reload-tab-without-cache = Reload Tab Without Cache
|
||||||
|
zen-action-next-tab = Next Tab
|
||||||
|
zen-action-previous-tab = Previous Tab
|
||||||
|
zen-action-capture-screenshot = Capture Screenshot
|
||||||
|
zen-action-toggle-tabs-on-right = Toggle Tabs on right
|
||||||
|
zen-action-add-to-essentials = Add to Essentials
|
||||||
|
zen-action-remove-from-essentials = Remove from Essentials
|
||||||
|
zen-action-find-in-page = Find in Page
|
||||||
|
zen-action-manage-extensions = Manage Extensions
|
||||||
|
zen-action-switch-to-automatic-appearance = Switch to Automatic Appearance
|
||||||
|
zen-action-switch-to-light-mode = Switch to Light Mode
|
||||||
|
zen-action-switch-to-dark-mode = Switch to Dark Mode
|
||||||
|
zen-action-print = Print
|
||||||
|
zen-action-focus-on = Focus on
|
||||||
|
zen-action-extension = Extension
|
||||||
@@ -18,13 +18,19 @@ tab-context-zen-add-essential-badge = { $num } / { $max } slotiau wedi'u llenwi
|
|||||||
tab-context-zen-remove-essential =
|
tab-context-zen-remove-essential =
|
||||||
.label = Dileu o'r Hanfodion
|
.label = Dileu o'r Hanfodion
|
||||||
.accesskey = D
|
.accesskey = D
|
||||||
tab-context-zen-replace-pinned-url-with-current =
|
tab-context-zen-edit-pinned-page =
|
||||||
.label =
|
.label =
|
||||||
{ $isEssential ->
|
{ $isEssential ->
|
||||||
[true] Amnewid URL Hanfodol gyda'r Cyfredol
|
[true] Edit Essential URL
|
||||||
*[false] Amnewid URL wedi'i binio gyda'r Cyfredol
|
*[false] Edit Pinned URL
|
||||||
}
|
}
|
||||||
.accesskey = P
|
.accesskey = P
|
||||||
|
tab-context-zen-replace-pinned-url-with-current =
|
||||||
|
.label = Replace with Current URL
|
||||||
|
.accesskey = P
|
||||||
|
tab-context-zen-edit-pinned-url =
|
||||||
|
.label = Edit…
|
||||||
|
.accesskey = E
|
||||||
tab-context-zen-edit-title =
|
tab-context-zen-edit-title =
|
||||||
.label = Newid Label...
|
.label = Newid Label...
|
||||||
tab-context-zen-edit-icon =
|
tab-context-zen-edit-icon =
|
||||||
@@ -47,6 +53,10 @@ zen-general-cancel-label =
|
|||||||
zen-general-confirm =
|
zen-general-confirm =
|
||||||
.label = Cadarnhau
|
.label = Cadarnhau
|
||||||
zen-pinned-tab-replaced = Mae URL y tab wedi'i binio wedi'i newid i'r URL gyfredol!
|
zen-pinned-tab-replaced = Mae URL y tab wedi'i binio wedi'i newid i'r URL gyfredol!
|
||||||
|
zen-pinned-tab-url-edited = Pinned tab URL has been updated!
|
||||||
|
zen-pinned-tab-url-invalid = That doesn't look like a valid URL.
|
||||||
|
zen-pinned-tab-edit-url-title = Edit Pinned URL
|
||||||
|
zen-pinned-tab-edit-url-label = Enter the URL this pinned tab should point to:
|
||||||
zen-tabs-renamed = Mae'r tab wedi cael ei ailenwi'n llwyddiannus!
|
zen-tabs-renamed = Mae'r tab wedi cael ei ailenwi'n llwyddiannus!
|
||||||
zen-background-tab-opened-toast = Tab cefndir newydd wedi'i agor!
|
zen-background-tab-opened-toast = Tab cefndir newydd wedi'i agor!
|
||||||
zen-workspace-renamed-toast = Mae'r Man Gwaith wedi cael ei ailenwi'n llwyddiannus!
|
zen-workspace-renamed-toast = Mae'r Man Gwaith wedi cael ei ailenwi'n llwyddiannus!
|
||||||
@@ -65,6 +75,8 @@ zen-icons-picker-emoji =
|
|||||||
.label = Emojis
|
.label = Emojis
|
||||||
zen-icons-picker-svg =
|
zen-icons-picker-svg =
|
||||||
.label = Eiconau
|
.label = Eiconau
|
||||||
|
zen-emojis-picker-search =
|
||||||
|
.placeholder = Search emojis
|
||||||
urlbar-search-mode-zen_actions = Gweithredoedd
|
urlbar-search-mode-zen_actions = Gweithredoedd
|
||||||
zen-site-data-settings = Gosodiadau
|
zen-site-data-settings = Gosodiadau
|
||||||
zen-generic-manage = Rheoli
|
zen-generic-manage = Rheoli
|
||||||
@@ -116,6 +128,9 @@ zen-sidebar-notification-updated-heading = Diweddariad Wedi'i Gwblhau!
|
|||||||
zen-sidebar-notification-updated-label = Beth sy'n newydd yn { -brand-short-name }
|
zen-sidebar-notification-updated-label = Beth sy'n newydd yn { -brand-short-name }
|
||||||
zen-sidebar-notification-updated-tooltip =
|
zen-sidebar-notification-updated-tooltip =
|
||||||
.title = Gweld Nodiadau Rhyddhau
|
.title = Gweld Nodiadau Rhyddhau
|
||||||
|
zen-sidebar-notification-donate-label = Support { -brand-short-name }
|
||||||
|
zen-sidebar-notification-donate-tooltip =
|
||||||
|
.title = Donate to the project
|
||||||
zen-sidebar-notification-restart-safe-mode-label = Rhywbeth wedi torri?
|
zen-sidebar-notification-restart-safe-mode-label = Rhywbeth wedi torri?
|
||||||
zen-sidebar-notification-restart-safe-mode-tooltip =
|
zen-sidebar-notification-restart-safe-mode-tooltip =
|
||||||
.title = Ailgychwyn yn y Modd Diogel
|
.title = Ailgychwyn yn y Modd Diogel
|
||||||
|
|||||||
30
locales/cy/browser/browser/zen-space-routing.ftl
Normal file
30
locales/cy/browser/browser/zen-space-routing.ftl
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-space-routing-settings =
|
||||||
|
.label = Gosodiadau Llwybro Gofod
|
||||||
|
zen-space-routing-rulepanel-placeholder = Mae Llwybrau yn gadael i chi ddewis lle mae wefannau penodol yn agor o fewn Zen. Er enghraifft, gallwch lywio dolenni YouTube i agor bob tro o fewn eich gofod Personol.
|
||||||
|
zen-space-routing-dialog-title = Gosodiadau Llwybro Gofod
|
||||||
|
zen-space-routing-external-default = Llwybr rhagosodedig ar gyfer dolenni allanol
|
||||||
|
zen-space-routing-new-route = Llwybr Newydd
|
||||||
|
zen-space-routing-open-in-space = Agor mewn Gofod
|
||||||
|
zen-space-routing-most-recent-space = Gofod Diweddaraf
|
||||||
|
zen-space-routing-close-button =
|
||||||
|
.aria-label = Cau
|
||||||
|
.tooltiptext = Cau
|
||||||
|
zen-space-routing-contains =
|
||||||
|
.label = Yn cynnwys
|
||||||
|
zen-space-routing-equal-to =
|
||||||
|
.label = Yn Hafal i
|
||||||
|
zen-space-routing-regex =
|
||||||
|
.label = RegEx
|
||||||
|
zen-space-routing-open-in = Yn Agor Yn
|
||||||
|
zen-space-routing-url = URL
|
||||||
|
zen-space-routing-tab-routed-toast = New tab opened in { $targetWorkspace }
|
||||||
|
tab-context-zen-add-domain-to-sr =
|
||||||
|
.label =
|
||||||
|
{ $tabCount ->
|
||||||
|
[one] Add Route for Domain
|
||||||
|
*[other] Add Route for Domains
|
||||||
|
}
|
||||||
@@ -61,6 +61,7 @@ zen-workspace-creation-profile = Proffil
|
|||||||
.tooltiptext = Mae proffiliau'n cael eu defnyddio i wahanu cwcis a data gwefan rhwng gofodau.
|
.tooltiptext = Mae proffiliau'n cael eu defnyddio i wahanu cwcis a data gwefan rhwng gofodau.
|
||||||
zen-workspace-creation-header = Creu Gofod
|
zen-workspace-creation-header = Creu Gofod
|
||||||
zen-workspace-creation-label = Mae gofodau'n cael eu defnyddio i drefnu eich tabiau a'ch sesiynau.
|
zen-workspace-creation-label = Mae gofodau'n cael eu defnyddio i drefnu eich tabiau a'ch sesiynau.
|
||||||
|
zen-workspace-default-profile = Default
|
||||||
zen-workspaces-delete-workspace-title = Dileu Gofod Gwaith?
|
zen-workspaces-delete-workspace-title = Dileu Gofod Gwaith?
|
||||||
zen-workspaces-delete-workspace-body = Ydych chi'n siŵr eich bod chi eisiau dileu { $name }? Does dim modd dadwneud y weithred hon.
|
zen-workspaces-delete-workspace-body = Ydych chi'n siŵr eich bod chi eisiau dileu { $name }? Does dim modd dadwneud y weithred hon.
|
||||||
# Note that the html tag MUST not be changed or removed, as it is used to better
|
# Note that the html tag MUST not be changed or removed, as it is used to better
|
||||||
|
|||||||
@@ -38,23 +38,27 @@ zen-look-and-feel-compact-view-top-toolbar =
|
|||||||
.label = Skjul også den øverste værktøjslinje i kompakt tilstand
|
.label = Skjul også den øverste værktøjslinje i kompakt tilstand
|
||||||
zen-look-and-feel-compact-toolbar-flash-popup =
|
zen-look-and-feel-compact-toolbar-flash-popup =
|
||||||
.label = Vis kortvarigt værktøjslinjen ved skift eller åbning af nye faner i kompakt tilstand
|
.label = Vis kortvarigt værktøjslinjen ved skift eller åbning af nye faner i kompakt tilstand
|
||||||
|
zen-look-and-feel-window-drag-header = Window dragging
|
||||||
|
zen-look-and-feel-window-drag-description = Move the window by dragging empty space at the top of websites, just like the titlebar.
|
||||||
|
zen-window-drag-enabled =
|
||||||
|
.label = Allow dragging the window from web pages
|
||||||
pane-zen-tabs-title = Fanehåndtering
|
pane-zen-tabs-title = Fanehåndtering
|
||||||
category-zen-workspaces =
|
category-zen-workspaces =
|
||||||
.tooltiptext = { pane-zen-tabs-title }
|
.tooltiptext = { pane-zen-tabs-title }
|
||||||
pane-settings-workspaces-title = Arbejdsområder
|
pane-settings-workspaces-title = Arbejdsområder
|
||||||
zen-tabs-select-recently-used-on-close =
|
zen-tabs-select-recently-used-on-close =
|
||||||
.label = When closing a tab, switch to the most recently used tab instead of the next tab
|
.label = Når en fane lukkes, skift til den senest bruge fane i stedet for den næste fane
|
||||||
zen-tabs-close-on-back-with-no-history =
|
zen-tabs-close-on-back-with-no-history =
|
||||||
.label = Close tab and switch to its owner tab (or most recently used tab) when going back with no history
|
.label = Luk fanen og skift til dens ejerfane (eller den senest brugte fane), når du går tilbage uden historik
|
||||||
zen-settings-workspaces-sync-unpinned-tabs =
|
zen-settings-workspaces-sync-unpinned-tabs =
|
||||||
.label = Sync only pinned tabs in workspaces
|
.label = Synkroniser kun fastgjorte faner i arbejdsområder
|
||||||
zen-tabs-cycle-by-attribute =
|
zen-tabs-cycle-by-attribute =
|
||||||
.label = Ctrl+Tab cycles within Essential or Workspace tabs only
|
.label = Ctrl+Tab cycles within Essential or Workspace tabs only
|
||||||
zen-tabs-cycle-ignore-pending-tabs =
|
zen-tabs-cycle-ignore-pending-tabs =
|
||||||
.label = Ignore Pending tabs when cycling with Ctrl+Tab
|
.label = Ignorer Ventende faner, når du bruger Ctrl+Tab
|
||||||
zen-tabs-cycle-by-attribute-warning = Ctrl+Tab will cycle by recently used order, as it is enabled
|
zen-tabs-cycle-by-attribute-warning = Ctrl+Tab cykler efter senest brugte rækkefølge, da det er aktiveret
|
||||||
zen-look-and-feel-compact-toolbar-themed =
|
zen-look-and-feel-compact-toolbar-themed =
|
||||||
.label = Use themed background for compact toolbar
|
.label = Brug temabaggrund til kompakt værktøjslinje
|
||||||
zen-workspace-continue-where-left-off =
|
zen-workspace-continue-where-left-off =
|
||||||
.label = Fortsæt, hvor du slap
|
.label = Fortsæt, hvor du slap
|
||||||
pane-zen-pinned-tab-manager-title = Fastgjorte Faner
|
pane-zen-pinned-tab-manager-title = Fastgjorte Faner
|
||||||
@@ -85,7 +89,7 @@ zen-settings-workspaces-enabled =
|
|||||||
zen-settings-workspaces-hide-default-container-indicator =
|
zen-settings-workspaces-hide-default-container-indicator =
|
||||||
.label = Skjul standardindikatoren for beholdere i fanelinjen
|
.label = Skjul standardindikatoren for beholdere i fanelinjen
|
||||||
zen-key-unsaved = Ikke-gemt genvej! Gem den ved at klikke på "Escape"-tasten efter at have indtastet den igen.
|
zen-key-unsaved = Ikke-gemt genvej! Gem den ved at klikke på "Escape"-tasten efter at have indtastet den igen.
|
||||||
zen-key-conflict = Conflicts with { $group } -> { $shortcut }
|
zen-key-conflict = Konflikter med { $group } -> { $shortcut }
|
||||||
pane-zen-theme-title = Temaindstillinger
|
pane-zen-theme-title = Temaindstillinger
|
||||||
zen-vertical-tabs-title = Layout for sidepanel og faner
|
zen-vertical-tabs-title = Layout for sidepanel og faner
|
||||||
zen-vertical-tabs-header = Lodrette Faner
|
zen-vertical-tabs-header = Lodrette Faner
|
||||||
@@ -234,7 +238,7 @@ zen-key-exit-full-screen = Afslut fuld skærm
|
|||||||
zen-ai-chatbot-sidebar-shortcut = Slå sidepanel for AI-chatbot til/fra
|
zen-ai-chatbot-sidebar-shortcut = Slå sidepanel for AI-chatbot til/fra
|
||||||
zen-key-inspector-mac = Slå inspektør til/fra (Mac)
|
zen-key-inspector-mac = Slå inspektør til/fra (Mac)
|
||||||
zen-toggle-sidebar-shortcut = Slå Firefox-sidepanel til/fra
|
zen-toggle-sidebar-shortcut = Slå Firefox-sidepanel til/fra
|
||||||
zen-toggle-pin-tab-shortcut = Toggle Pin Tab
|
zen-toggle-pin-tab-shortcut = Slå fanen Fastgør til/fra
|
||||||
zen-reader-mode-toggle-shortcut-other = Slå Læsertilstand Til/Fra
|
zen-reader-mode-toggle-shortcut-other = Slå Læsertilstand Til/Fra
|
||||||
zen-picture-in-picture-toggle-shortcut = Slå Billede-i-Billede Til/Fra
|
zen-picture-in-picture-toggle-shortcut = Slå Billede-i-Billede Til/Fra
|
||||||
zen-nav-reload-shortcut-2 = Genindlæs side
|
zen-nav-reload-shortcut-2 = Genindlæs side
|
||||||
@@ -244,7 +248,8 @@ zen-page-info-shortcut = Se sideoplysninger
|
|||||||
zen-find-shortcut = Find på side
|
zen-find-shortcut = Find på side
|
||||||
zen-search-find-again-shortcut = Find igen
|
zen-search-find-again-shortcut = Find igen
|
||||||
zen-search-find-again-shortcut-prev = Find forrige
|
zen-search-find-again-shortcut-prev = Find forrige
|
||||||
zen-search-find-again-shortcut-2 = Find igen (Alt)
|
zen-search-find-again-shortcut-alt = Find Again (Alt)
|
||||||
|
zen-search-find-again-shortcut-prev-alt = Find Previous (Alt)
|
||||||
zen-bookmark-this-page-shortcut = Bogmærk denne side
|
zen-bookmark-this-page-shortcut = Bogmærk denne side
|
||||||
zen-bookmark-show-library-shortcut = Vis Bogmærkebibliotek
|
zen-bookmark-show-library-shortcut = Vis Bogmærkebibliotek
|
||||||
zen-key-stop = Stop indlæsning
|
zen-key-stop = Stop indlæsning
|
||||||
@@ -268,7 +273,7 @@ zen-close-tab-shortcut = Luk fane
|
|||||||
zen-compact-mode-shortcut-show-sidebar = Flydende sidepanel til/fra
|
zen-compact-mode-shortcut-show-sidebar = Flydende sidepanel til/fra
|
||||||
zen-compact-mode-shortcut-show-toolbar = Flydende værktøjslinje til/fra
|
zen-compact-mode-shortcut-show-toolbar = Flydende værktøjslinje til/fra
|
||||||
zen-compact-mode-shortcut-toggle = Kompakt tilstand til/fra
|
zen-compact-mode-shortcut-toggle = Kompakt tilstand til/fra
|
||||||
zen-glance-expand = Expand Glance
|
zen-glance-expand = Udvid Glance
|
||||||
zen-workspace-shortcut-switch-1 = Skift til arbejdsområde 1
|
zen-workspace-shortcut-switch-1 = Skift til arbejdsområde 1
|
||||||
zen-workspace-shortcut-switch-2 = Skift til arbejdsområde 2
|
zen-workspace-shortcut-switch-2 = Skift til arbejdsområde 2
|
||||||
zen-workspace-shortcut-switch-3 = Skift til arbejdsområde 3
|
zen-workspace-shortcut-switch-3 = Skift til arbejdsområde 3
|
||||||
@@ -281,14 +286,14 @@ zen-workspace-shortcut-switch-9 = Skift til arbejdsområde 9
|
|||||||
zen-workspace-shortcut-switch-10 = Skift til arbejdsområde 10
|
zen-workspace-shortcut-switch-10 = Skift til arbejdsområde 10
|
||||||
zen-workspace-shortcut-forward = Fremad Arbejdsområde
|
zen-workspace-shortcut-forward = Fremad Arbejdsområde
|
||||||
zen-workspace-shortcut-backward = Bagudrettet Arbejdsrum
|
zen-workspace-shortcut-backward = Bagudrettet Arbejdsrum
|
||||||
zen-workspace-shortcut-create = Create New Workspace
|
zen-workspace-shortcut-create = Opret Nyt Arbejdsrum
|
||||||
zen-sidebar-shortcut-toggle = Skift sidepanelets bredde
|
zen-sidebar-shortcut-toggle = Skift sidepanelets bredde
|
||||||
zen-pinned-tab-shortcut-reset = Nulstil fastgjort fane til fastgjort URL
|
zen-pinned-tab-shortcut-reset = Nulstil fastgjort fane til fastgjort URL
|
||||||
zen-split-view-shortcut-grid = Opdelt visning i gitter til/fra
|
zen-split-view-shortcut-grid = Opdelt visning i gitter til/fra
|
||||||
zen-split-view-shortcut-vertical = Lodret opdelt visning til/fra
|
zen-split-view-shortcut-vertical = Lodret opdelt visning til/fra
|
||||||
zen-split-view-shortcut-horizontal = Vandret opdelt visning til/fra
|
zen-split-view-shortcut-horizontal = Vandret opdelt visning til/fra
|
||||||
zen-split-view-shortcut-unsplit = Luk opdelt visning
|
zen-split-view-shortcut-unsplit = Luk opdelt visning
|
||||||
zen-new-empty-split-view-shortcut = New Empty Split View
|
zen-new-empty-split-view-shortcut = Ny Tom Delt Visning
|
||||||
zen-key-select-tab-1 = Vælg fane #1
|
zen-key-select-tab-1 = Vælg fane #1
|
||||||
zen-key-select-tab-2 = Vælg fane #2
|
zen-key-select-tab-2 = Vælg fane #2
|
||||||
zen-key-select-tab-3 = Vælg fane #3
|
zen-key-select-tab-3 = Vælg fane #3
|
||||||
@@ -316,7 +321,7 @@ zen-devtools-toggle-performance-shortcut = Vis/skjul Ydeevne
|
|||||||
zen-devtools-toggle-storage-shortcut = Vis/skjul Lager
|
zen-devtools-toggle-storage-shortcut = Vis/skjul Lager
|
||||||
zen-devtools-toggle-dom-shortcut = Vis/skjul DOM
|
zen-devtools-toggle-dom-shortcut = Vis/skjul DOM
|
||||||
zen-devtools-toggle-accessibility-shortcut = Vis/skjul Tilgængelighed
|
zen-devtools-toggle-accessibility-shortcut = Vis/skjul Tilgængelighed
|
||||||
zen-close-all-unpinned-tabs-shortcut = Close All Unpinned Tabs
|
zen-close-all-unpinned-tabs-shortcut = Luk Alle Ikke Fastgjorte Faner
|
||||||
zen-new-unsynced-window-shortcut = New Unsynced Window
|
zen-new-unsynced-window-shortcut = New Unsynced Window
|
||||||
zen-duplicate-tab-shortcut = Duplicate Tab
|
zen-duplicate-tab-shortcut = Dupliker Fane
|
||||||
zen-key-find-selection = Find Selection
|
zen-key-find-selection = Find Valgte
|
||||||
|
|||||||
@@ -3,44 +3,44 @@
|
|||||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
zen-boost-edit-rename =
|
zen-boost-edit-rename =
|
||||||
.label = Rename Boost
|
.label = Omdøb Boost
|
||||||
zen-boost-edit-shuffle =
|
zen-boost-edit-shuffle =
|
||||||
.label = Shuffle Vibes
|
.label = Bland Vibes
|
||||||
zen-boost-edit-reset =
|
zen-boost-edit-reset =
|
||||||
.label = Reset All Edits
|
.label = Reset All Edits
|
||||||
zen-boost-edit-delete =
|
zen-boost-edit-delete =
|
||||||
.label = Delete Boost
|
.label = Slet Boost
|
||||||
zen-boost-size = Size
|
zen-boost-size = Størrelse
|
||||||
zen-boost-case = Case
|
zen-boost-case = Case
|
||||||
zen-boost-zap = Zap
|
zen-boost-zap = Zap
|
||||||
zen-boost-code = Code
|
zen-boost-code = Code
|
||||||
zen-boost-back = Back
|
zen-boost-back = Tilbage
|
||||||
zen-boost-shuffle =
|
zen-boost-shuffle =
|
||||||
.tooltiptext = Shuffle Boost Settings
|
.tooltiptext = Shuffle Boost Settings
|
||||||
zen-boost-invert =
|
zen-boost-invert =
|
||||||
.tooltiptext = Smart Invert Colors
|
.tooltiptext = Intelligent Invertering af Farver
|
||||||
zen-boost-controls =
|
zen-boost-controls =
|
||||||
.tooltiptext = Advanced Color Controls
|
.tooltiptext = Avanceret Farvekontroller
|
||||||
zen-boost-disable =
|
zen-boost-disable =
|
||||||
.tooltiptext = Disable Color Adjustments
|
.tooltiptext = Deaktiver Farvejusteringer
|
||||||
zen-boost-text-case-toggle =
|
zen-boost-text-case-toggle =
|
||||||
.tooltiptext = Toggle Text Case
|
.tooltiptext = Toggle Text Case
|
||||||
zen-boost-css-picker =
|
zen-boost-css-picker =
|
||||||
.tooltiptext = Pick Selector
|
.tooltiptext = Pick Selector
|
||||||
zen-boost-css-inspector =
|
zen-boost-css-inspector =
|
||||||
.tooltiptext = Open Inspector
|
.tooltiptext = Åben Inspektør
|
||||||
zen-boost-color-contrast = Contrast
|
zen-boost-color-contrast = Kontrast
|
||||||
zen-boost-color-brightness = Brightness
|
zen-boost-color-brightness = Lysstyrke
|
||||||
zen-boost-color-original-saturation = Original Saturation
|
zen-boost-color-original-saturation = Original Saturation
|
||||||
zen-add-zap-helper = Click elements on the page to <b>Zap</b> them
|
zen-add-zap-helper = Click elements on the page to <b>Zap</b> them
|
||||||
zen-remove-zap-helper = ← Click to Unzap
|
zen-remove-zap-helper = ← Click to Unzap
|
||||||
zen-select-this = Insert selector for this
|
zen-select-this = Insert selector for this
|
||||||
zen-select-related = Insert selector for related
|
zen-select-related = Insert selector for related
|
||||||
zen-select-cancel = Cancel
|
zen-select-cancel = Annuller
|
||||||
zen-zap-this = Zap this
|
zen-zap-this = Zap this
|
||||||
zen-zap-related = Zap all related elements
|
zen-zap-related = Zap all related elements
|
||||||
zen-zap-cancel = Cancel
|
zen-zap-cancel = Annuller
|
||||||
zen-zap-done = Done
|
zen-zap-done = Færdig
|
||||||
zen-unzap-tooltip =
|
zen-unzap-tooltip =
|
||||||
{ $elementCount ->
|
{ $elementCount ->
|
||||||
[0] No elements zapped
|
[0] No elements zapped
|
||||||
@@ -48,11 +48,11 @@ zen-unzap-tooltip =
|
|||||||
*[other] { $elementCount } elements zapped
|
*[other] { $elementCount } elements zapped
|
||||||
}
|
}
|
||||||
zen-boost-save =
|
zen-boost-save =
|
||||||
.label = Export Boost
|
.label = Eksporter Boost
|
||||||
zen-boost-load =
|
zen-boost-load =
|
||||||
.label = Import Boost
|
.label = Importer Boost
|
||||||
zen-panel-ui-boosts-exported-message = Boost exported!
|
zen-panel-ui-boosts-exported-message = Boost Eksporteret!
|
||||||
zen-site-data-boosts = Boosts
|
zen-site-data-boosts = Boosts
|
||||||
zen-site-data-create-boost =
|
zen-site-data-create-boost =
|
||||||
.tooltiptext = Create new boost
|
.tooltiptext = Opret ny boost
|
||||||
zen-boost-rename-boost-prompt = Rename Boost?
|
zen-boost-rename-boost-prompt = Omdøb Boost?
|
||||||
|
|||||||
36
locales/da/browser/browser/zen-command-palette.ftl
Normal file
36
locales/da/browser/browser/zen-command-palette.ftl
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-action-toggle-compact-mode = Toggle Compact Mode
|
||||||
|
zen-action-open-theme-picker = Open Theme Picker
|
||||||
|
zen-action-new-split-view = New Split View
|
||||||
|
zen-action-new-folder = New Folder
|
||||||
|
zen-action-copy-current-url = Copy Current URL
|
||||||
|
zen-action-settings = Settings
|
||||||
|
zen-action-open-private-window = Open Private Window
|
||||||
|
zen-action-open-new-window = Open New Window
|
||||||
|
zen-action-new-blank-window = New Blank Window
|
||||||
|
zen-action-pin-tab = Pin Tab
|
||||||
|
zen-action-unpin-tab = Unpin Tab
|
||||||
|
zen-action-open-space-routing = Open Space Routing
|
||||||
|
zen-action-new-boost = New Boost
|
||||||
|
zen-action-next-space = Next Space
|
||||||
|
zen-action-previous-space = Previous Space
|
||||||
|
zen-action-close-tab = Close Tab
|
||||||
|
zen-action-reload-tab = Reload Tab
|
||||||
|
zen-action-reload-tab-without-cache = Reload Tab Without Cache
|
||||||
|
zen-action-next-tab = Next Tab
|
||||||
|
zen-action-previous-tab = Previous Tab
|
||||||
|
zen-action-capture-screenshot = Capture Screenshot
|
||||||
|
zen-action-toggle-tabs-on-right = Toggle Tabs on right
|
||||||
|
zen-action-add-to-essentials = Add to Essentials
|
||||||
|
zen-action-remove-from-essentials = Remove from Essentials
|
||||||
|
zen-action-find-in-page = Find in Page
|
||||||
|
zen-action-manage-extensions = Manage Extensions
|
||||||
|
zen-action-switch-to-automatic-appearance = Switch to Automatic Appearance
|
||||||
|
zen-action-switch-to-light-mode = Switch to Light Mode
|
||||||
|
zen-action-switch-to-dark-mode = Switch to Dark Mode
|
||||||
|
zen-action-print = Print
|
||||||
|
zen-action-focus-on = Focus on
|
||||||
|
zen-action-extension = Extension
|
||||||
@@ -18,13 +18,19 @@ tab-context-zen-add-essential-badge = { $num } / { $max } slots filled
|
|||||||
tab-context-zen-remove-essential =
|
tab-context-zen-remove-essential =
|
||||||
.label = Fjern fra Essentielle
|
.label = Fjern fra Essentielle
|
||||||
.accesskey = R
|
.accesskey = R
|
||||||
tab-context-zen-replace-pinned-url-with-current =
|
tab-context-zen-edit-pinned-page =
|
||||||
.label =
|
.label =
|
||||||
{ $isEssential ->
|
{ $isEssential ->
|
||||||
[true] Replace Essential URL with Current
|
[true] Edit Essential URL
|
||||||
*[false] Replace Pinned URL with Current
|
*[false] Edit Pinned URL
|
||||||
}
|
}
|
||||||
|
.accesskey = P
|
||||||
|
tab-context-zen-replace-pinned-url-with-current =
|
||||||
|
.label = Replace with Current URL
|
||||||
.accesskey = C
|
.accesskey = C
|
||||||
|
tab-context-zen-edit-pinned-url =
|
||||||
|
.label = Edit…
|
||||||
|
.accesskey = E
|
||||||
tab-context-zen-edit-title =
|
tab-context-zen-edit-title =
|
||||||
.label = Change Label...
|
.label = Change Label...
|
||||||
tab-context-zen-edit-icon =
|
tab-context-zen-edit-icon =
|
||||||
@@ -41,16 +47,20 @@ pictureinpicture-minimize-btn =
|
|||||||
.tooltip = Minimer
|
.tooltip = Minimer
|
||||||
zen-panel-ui-gradient-generator-custom-color = Brugerdefineret Farve
|
zen-panel-ui-gradient-generator-custom-color = Brugerdefineret Farve
|
||||||
zen-copy-current-url-confirmation = Kopieret nuværende URL!
|
zen-copy-current-url-confirmation = Kopieret nuværende URL!
|
||||||
zen-copy-current-url-as-markdown-confirmation = Copied current URL as Markdown!
|
zen-copy-current-url-as-markdown-confirmation = Kopierede nuværende URL som Markdown!
|
||||||
zen-general-cancel-label =
|
zen-general-cancel-label =
|
||||||
.label = Annuller
|
.label = Annuller
|
||||||
zen-general-confirm =
|
zen-general-confirm =
|
||||||
.label = Bekræft
|
.label = Bekræft
|
||||||
zen-pinned-tab-replaced = Den fastgjorte fane-URL blev erstattet med den aktuelle.
|
zen-pinned-tab-replaced = Den fastgjorte fane-URL blev erstattet med den aktuelle.
|
||||||
|
zen-pinned-tab-url-edited = Pinned tab URL has been updated!
|
||||||
|
zen-pinned-tab-url-invalid = That doesn't look like a valid URL.
|
||||||
|
zen-pinned-tab-edit-url-title = Edit Pinned URL
|
||||||
|
zen-pinned-tab-edit-url-label = Enter the URL this pinned tab should point to:
|
||||||
zen-tabs-renamed = Fanen blev omdøbt!
|
zen-tabs-renamed = Fanen blev omdøbt!
|
||||||
zen-background-tab-opened-toast = Ny baggrundsfane åbnet!
|
zen-background-tab-opened-toast = Ny baggrundsfane åbnet!
|
||||||
zen-workspace-renamed-toast = Arbejdsområde blev omdøbt!
|
zen-workspace-renamed-toast = Arbejdsområde blev omdøbt!
|
||||||
zen-split-view-limit-toast = Can't add more panels to the split view!
|
zen-split-view-limit-toast = Kan ikke tilføje flere paneler til denne delte visning!
|
||||||
zen-toggle-compact-mode-button =
|
zen-toggle-compact-mode-button =
|
||||||
.label = Kompakt tilstand
|
.label = Kompakt tilstand
|
||||||
.tooltiptext = Kompakt tilstand til/fra
|
.tooltiptext = Kompakt tilstand til/fra
|
||||||
@@ -65,18 +75,20 @@ zen-icons-picker-emoji =
|
|||||||
.label = Emojis
|
.label = Emojis
|
||||||
zen-icons-picker-svg =
|
zen-icons-picker-svg =
|
||||||
.label = Ikoner
|
.label = Ikoner
|
||||||
|
zen-emojis-picker-search =
|
||||||
|
.placeholder = Search emojis
|
||||||
urlbar-search-mode-zen_actions = Handlinger
|
urlbar-search-mode-zen_actions = Handlinger
|
||||||
zen-site-data-settings = Indstillinger
|
zen-site-data-settings = Indstillinger
|
||||||
zen-generic-manage = Administrer
|
zen-generic-manage = Administrer
|
||||||
zen-generic-more = Mere
|
zen-generic-more = Mere
|
||||||
zen-generic-next = Næste
|
zen-generic-next = Næste
|
||||||
zen-essentials-promo-label = Add to Essentials
|
zen-essentials-promo-label = Add to Essentials
|
||||||
zen-essentials-promo-sublabel = Keep your favorite tabs just a click away
|
zen-essentials-promo-sublabel = Hold dine yndlings faner et klik væk
|
||||||
# These labels will be used for the site data panel settings
|
# These labels will be used for the site data panel settings
|
||||||
zen-site-data-setting-allow = Tilladt
|
zen-site-data-setting-allow = Tilladt
|
||||||
zen-site-data-setting-block = Blokeret
|
zen-site-data-setting-block = Blokeret
|
||||||
zen-site-data-protections-enabled = Enabled
|
zen-site-data-protections-enabled = Aktiveret
|
||||||
zen-site-data-protections-disabled = Disabled
|
zen-site-data-protections-disabled = Deaktiveret
|
||||||
zen-site-data-setting-cross-site = Cross-Site cookie
|
zen-site-data-setting-cross-site = Cross-Site cookie
|
||||||
zen-site-data-security-info-extension =
|
zen-site-data-security-info-extension =
|
||||||
.label = Udvidelse
|
.label = Udvidelse
|
||||||
@@ -89,15 +101,15 @@ zen-site-data-manage-addons =
|
|||||||
zen-site-data-get-addons =
|
zen-site-data-get-addons =
|
||||||
.label = Tilføj udvidelser
|
.label = Tilføj udvidelser
|
||||||
zen-site-data-site-settings =
|
zen-site-data-site-settings =
|
||||||
.label = All Site Settings
|
.label = Alle Side Indstillinger
|
||||||
zen-site-data-header-share =
|
zen-site-data-header-share =
|
||||||
.tooltiptext = Share This Page
|
.tooltiptext = Del Denne Side
|
||||||
zen-site-data-header-reader-mode =
|
zen-site-data-header-reader-mode =
|
||||||
.tooltiptext = Enter Reader Mode
|
.tooltiptext = Åben Læsertilstand
|
||||||
zen-site-data-header-screenshot =
|
zen-site-data-header-screenshot =
|
||||||
.tooltiptext = Take a Screenshot
|
.tooltiptext = Tag et Skærmbillede
|
||||||
zen-site-data-header-bookmark =
|
zen-site-data-header-bookmark =
|
||||||
.tooltiptext = Bookmark This Page
|
.tooltiptext = Tilføj Side til Bogmærker
|
||||||
zen-urlbar-copy-url-button =
|
zen-urlbar-copy-url-button =
|
||||||
.tooltiptext = Kopiér URL
|
.tooltiptext = Kopiér URL
|
||||||
zen-site-data-setting-site-protection = Sporingsbeskyttelse
|
zen-site-data-setting-site-protection = Sporingsbeskyttelse
|
||||||
@@ -105,23 +117,26 @@ zen-site-data-setting-site-protection = Sporingsbeskyttelse
|
|||||||
# Section: Feature callouts
|
# Section: Feature callouts
|
||||||
|
|
||||||
zen-site-data-panel-feature-callout-title = Et nyt hjem for tilføjelser, tilladelser og mere
|
zen-site-data-panel-feature-callout-title = Et nyt hjem for tilføjelser, tilladelser og mere
|
||||||
zen-site-data-panel-feature-callout-subtitle = Click the icon to manage site settings, view security info, access extensions, and perform common actions.
|
zen-site-data-panel-feature-callout-subtitle = Klik ikonet for at administrere side indstillinger, se sikkerhedsoplysninger, tilgå udvidelser, og udføre almindelige handlinger.
|
||||||
zen-open-link-in-glance =
|
zen-open-link-in-glance =
|
||||||
.label = Open Link in Glance
|
.label = Open Link in Glance
|
||||||
.accesskey = G
|
.accesskey = G
|
||||||
zen-sidebar-notification-updated-heading = Update Complete!
|
zen-sidebar-notification-updated-heading = Opdatering Fuldført!
|
||||||
|
|
||||||
# See ZenSidebarNotification.mjs to see how these would be used
|
# See ZenSidebarNotification.mjs to see how these would be used
|
||||||
|
|
||||||
zen-sidebar-notification-updated-label = What's new in { -brand-short-name }
|
zen-sidebar-notification-updated-label = Hvad er nyt i { -brand-short-name }
|
||||||
zen-sidebar-notification-updated-tooltip =
|
zen-sidebar-notification-updated-tooltip =
|
||||||
.title = View Release Notes
|
.title = Se Udgivelsesnoter
|
||||||
zen-sidebar-notification-restart-safe-mode-label = Something broke?
|
zen-sidebar-notification-donate-label = Support { -brand-short-name }
|
||||||
|
zen-sidebar-notification-donate-tooltip =
|
||||||
|
.title = Donate to the project
|
||||||
|
zen-sidebar-notification-restart-safe-mode-label = Noget der ikke virker?
|
||||||
zen-sidebar-notification-restart-safe-mode-tooltip =
|
zen-sidebar-notification-restart-safe-mode-tooltip =
|
||||||
.title = Restart in Safe Mode
|
.title = Genstart i Beskyttet Tilstand
|
||||||
zen-window-sync-migration-dialog-title = Keep Your Windows in Sync
|
zen-window-sync-migration-dialog-title = Hold Dine Vinduer Synkroniseret
|
||||||
zen-window-sync-migration-dialog-message = Zen now syncs windows on the same device, so changes in one window are reflected across the others instantly.
|
zen-window-sync-migration-dialog-message = Zen synkroniserer nu vinduer på samme enhed, så ændringer i et vindue afspejles øjeblikkeligt på tværs af de andre.
|
||||||
zen-window-sync-migration-dialog-learn-more = Learn More
|
zen-window-sync-migration-dialog-learn-more = Lær Mere
|
||||||
zen-window-sync-migration-dialog-accept = Got It
|
zen-window-sync-migration-dialog-accept = Forstået
|
||||||
zen-appmenu-new-blank-window =
|
zen-appmenu-new-blank-window =
|
||||||
.label = New blank window
|
.label = Nyt tomt vindue
|
||||||
|
|||||||
@@ -9,14 +9,14 @@ zen-menubar-toggle-pinned-tabs =
|
|||||||
*[false] Collapse Pinned Tabs
|
*[false] Collapse Pinned Tabs
|
||||||
}
|
}
|
||||||
zen-menubar-appearance =
|
zen-menubar-appearance =
|
||||||
.label = Appearance
|
.label = Udseende
|
||||||
zen-menubar-appearance-description =
|
zen-menubar-appearance-description =
|
||||||
.label = Websites will use:
|
.label = Hjemmesider vil bruge:
|
||||||
zen-menubar-appearance-auto =
|
zen-menubar-appearance-auto =
|
||||||
.label = Automatic
|
.label = Automatisk
|
||||||
zen-menubar-appearance-light =
|
zen-menubar-appearance-light =
|
||||||
.label = Light
|
.label = Lys
|
||||||
zen-menubar-appearance-dark =
|
zen-menubar-appearance-dark =
|
||||||
.label = Dark
|
.label = Mørk
|
||||||
zen-menubar-new-blank-window =
|
zen-menubar-new-blank-window =
|
||||||
.label = New Blank Window
|
.label = Nyt Tomt Vindue
|
||||||
|
|||||||
30
locales/da/browser/browser/zen-space-routing.ftl
Normal file
30
locales/da/browser/browser/zen-space-routing.ftl
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-space-routing-settings =
|
||||||
|
.label = Space Routing Settings
|
||||||
|
zen-space-routing-rulepanel-placeholder = Routes let you choose where specific sites open inside Zen. For example, you can route YouTube links to always open inside your Personal space.
|
||||||
|
zen-space-routing-dialog-title = Space Routing Settings
|
||||||
|
zen-space-routing-external-default = Default route for external links
|
||||||
|
zen-space-routing-new-route = New Route
|
||||||
|
zen-space-routing-open-in-space = Åben i Arbejdsområde
|
||||||
|
zen-space-routing-most-recent-space = Seneste Arbejdsområde
|
||||||
|
zen-space-routing-close-button =
|
||||||
|
.aria-label = Luk
|
||||||
|
.tooltiptext = Luk
|
||||||
|
zen-space-routing-contains =
|
||||||
|
.label = Indeholder
|
||||||
|
zen-space-routing-equal-to =
|
||||||
|
.label = Is Equal To
|
||||||
|
zen-space-routing-regex =
|
||||||
|
.label = RegEx
|
||||||
|
zen-space-routing-open-in = Åben i
|
||||||
|
zen-space-routing-url = URL
|
||||||
|
zen-space-routing-tab-routed-toast = New tab opened in { $targetWorkspace }
|
||||||
|
tab-context-zen-add-domain-to-sr =
|
||||||
|
.label =
|
||||||
|
{ $tabCount ->
|
||||||
|
[one] Add Route for Domain
|
||||||
|
*[other] Add Route for Domains
|
||||||
|
}
|
||||||
@@ -5,9 +5,9 @@
|
|||||||
tab-zen-split-tabs =
|
tab-zen-split-tabs =
|
||||||
.label =
|
.label =
|
||||||
{ $tabCount ->
|
{ $tabCount ->
|
||||||
[-1] Split out tab
|
[-1] Opdel fane
|
||||||
[1] Add split view...
|
[1] Tilføj opdelt visning...
|
||||||
*[other] Join { $tabCount } Tabs
|
*[other] Sammenføj { $tabCount } Faner
|
||||||
}
|
}
|
||||||
.accesskey = S
|
.accesskey = S
|
||||||
zen-split-link =
|
zen-split-link =
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ tabbrowser-reset-pin-button =
|
|||||||
}
|
}
|
||||||
zen-tab-sublabel =
|
zen-tab-sublabel =
|
||||||
{ $tabSubtitle ->
|
{ $tabSubtitle ->
|
||||||
[zen-default-pinned] Back to pinned url
|
[zen-default-pinned] Tilbage til fastgjort url
|
||||||
[zen-default-pinned-cmd] Separate from pinned tab
|
[zen-default-pinned-cmd] Adskil fra fastgjort fane
|
||||||
*[other] { $tabSubtitle }
|
*[other] { $tabSubtitle }
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,15 +4,15 @@
|
|||||||
|
|
||||||
zen-panel-ui-workspaces-text = Arbejdsområder
|
zen-panel-ui-workspaces-text = Arbejdsområder
|
||||||
zen-panel-ui-spaces-label =
|
zen-panel-ui-spaces-label =
|
||||||
.label = Spaces
|
.label = Rum
|
||||||
zen-panel-ui-workspaces-create =
|
zen-panel-ui-workspaces-create =
|
||||||
.label = Opret rum
|
.label = Opret rum
|
||||||
zen-panel-ui-folder-create =
|
zen-panel-ui-folder-create =
|
||||||
.label = Opret mappe
|
.label = Opret mappe
|
||||||
zen-panel-ui-live-folder-create =
|
zen-panel-ui-live-folder-create =
|
||||||
.label = Live Folder
|
.label = Live Mappe
|
||||||
zen-panel-ui-new-empty-split =
|
zen-panel-ui-new-empty-split =
|
||||||
.label = New Split
|
.label = Ny Opdeling
|
||||||
zen-workspaces-panel-context-delete =
|
zen-workspaces-panel-context-delete =
|
||||||
.label = Slet arbejdsområde
|
.label = Slet arbejdsområde
|
||||||
.accesskey = D
|
.accesskey = D
|
||||||
@@ -23,9 +23,9 @@ zen-workspaces-panel-change-icon =
|
|||||||
zen-workspaces-panel-context-default-profile =
|
zen-workspaces-panel-context-default-profile =
|
||||||
.label = Indstil profil
|
.label = Indstil profil
|
||||||
zen-workspaces-panel-unload =
|
zen-workspaces-panel-unload =
|
||||||
.label = Unload Space
|
.label = Sæt Rum i Dvale
|
||||||
zen-workspaces-panel-unload-others =
|
zen-workspaces-panel-unload-others =
|
||||||
.label = Unload All Other Spaces
|
.label = Sæt Alle Andre Rum i Dvale
|
||||||
zen-workspaces-how-to-reorder-title = Sådan omarrangerer du rum
|
zen-workspaces-how-to-reorder-title = Sådan omarrangerer du rum
|
||||||
zen-workspaces-how-to-reorder-desc = Træk rumikonerne nederst i sidepanelet for at omarrangere dem
|
zen-workspaces-how-to-reorder-desc = Træk rumikonerne nederst i sidepanelet for at omarrangere dem
|
||||||
zen-workspaces-change-theme =
|
zen-workspaces-change-theme =
|
||||||
@@ -37,7 +37,7 @@ zen-workspaces-panel-context-edit =
|
|||||||
.label = Rediger arbejdsområde
|
.label = Rediger arbejdsområde
|
||||||
.accesskey = E
|
.accesskey = E
|
||||||
zen-bookmark-edit-panel-workspace-selector =
|
zen-bookmark-edit-panel-workspace-selector =
|
||||||
.value = Spaces
|
.value = Rum
|
||||||
.accesskey = W
|
.accesskey = W
|
||||||
zen-panel-ui-gradient-generator-algo-complementary =
|
zen-panel-ui-gradient-generator-algo-complementary =
|
||||||
.label = Komplementær
|
.label = Komplementær
|
||||||
@@ -54,22 +54,23 @@ zen-workspace-creation-name =
|
|||||||
.placeholder = Rumnavn
|
.placeholder = Rumnavn
|
||||||
zen-move-tab-to-workspace-button =
|
zen-move-tab-to-workspace-button =
|
||||||
.label = Move To...
|
.label = Move To...
|
||||||
.tooltiptext = Move all tabs in this window to a Space
|
.tooltiptext = Bevæg alle faner i dette vindue til et Rum
|
||||||
zen-workspaces-panel-context-reorder =
|
zen-workspaces-panel-context-reorder =
|
||||||
.label = Omarranger rum
|
.label = Omarranger rum
|
||||||
zen-workspace-creation-profile = Profil
|
zen-workspace-creation-profile = Profil
|
||||||
.tooltiptext = Profiler bruges til at adskille cookies og webstedsdata mellem forskellige rum.
|
.tooltiptext = Profiler bruges til at adskille cookies og webstedsdata mellem forskellige rum.
|
||||||
zen-workspace-creation-header = Opret et rum
|
zen-workspace-creation-header = Opret et rum
|
||||||
zen-workspace-creation-label = Rum bruges til at organisere dine faner og sessioner.
|
zen-workspace-creation-label = Rum bruges til at organisere dine faner og sessioner.
|
||||||
|
zen-workspace-default-profile = Default
|
||||||
zen-workspaces-delete-workspace-title = Slet arbejdsområde?
|
zen-workspaces-delete-workspace-title = Slet arbejdsområde?
|
||||||
zen-workspaces-delete-workspace-body = Er du sikker på, at du vil slette { $name }? Dette kan ikke fortrydes.
|
zen-workspaces-delete-workspace-body = Er du sikker på, at du vil slette { $name }? Dette kan ikke fortrydes.
|
||||||
# Note that the html tag MUST not be changed or removed, as it is used to better
|
# Note that the html tag MUST not be changed or removed, as it is used to better
|
||||||
# display the shortcut in the toast notification.
|
# display the shortcut in the toast notification.
|
||||||
zen-workspaces-close-all-unpinned-tabs-toast = Tabs Closed! Use <span>{ $shortcut }</span> to undo.
|
zen-workspaces-close-all-unpinned-tabs-toast = Faner Lukket! Brug <span>{ $shortcut }</span> for at fortryd.
|
||||||
zen-workspaces-close-all-unpinned-tabs-title =
|
zen-workspaces-close-all-unpinned-tabs-title =
|
||||||
.label = Clear
|
.label = Ryd
|
||||||
.tooltiptext = Close all unpinned tabs
|
.tooltiptext = Luk alle ikke-fastgjorte faner
|
||||||
zen-panel-ui-workspaces-change-forward =
|
zen-panel-ui-workspaces-change-forward =
|
||||||
.label = Next Space
|
.label = Nyt Rum
|
||||||
zen-panel-ui-workspaces-change-back =
|
zen-panel-ui-workspaces-change-back =
|
||||||
.label = Previous Space
|
.label = Tidligere Rum
|
||||||
|
|||||||
@@ -38,6 +38,10 @@ zen-look-and-feel-compact-view-top-toolbar =
|
|||||||
.label = Die obere Symbolleiste auch im Kompaktmodus ausblenden
|
.label = Die obere Symbolleiste auch im Kompaktmodus ausblenden
|
||||||
zen-look-and-feel-compact-toolbar-flash-popup =
|
zen-look-and-feel-compact-toolbar-flash-popup =
|
||||||
.label = Symbolleiste im Kompaktmodus beim Wechseln oder Öffnen neuer Tabs kurz einblenden
|
.label = Symbolleiste im Kompaktmodus beim Wechseln oder Öffnen neuer Tabs kurz einblenden
|
||||||
|
zen-look-and-feel-window-drag-header = Fenster ziehen
|
||||||
|
zen-look-and-feel-window-drag-description = Verschiebe das Fenster, indem du leeren Platz an der Spitze der Webseite ziehst, genau wie die Titelleiste.
|
||||||
|
zen-window-drag-enabled =
|
||||||
|
.label = Erlaube das Ziehen des Fensters einer Webseite
|
||||||
pane-zen-tabs-title = Tab-Verwaltung
|
pane-zen-tabs-title = Tab-Verwaltung
|
||||||
category-zen-workspaces =
|
category-zen-workspaces =
|
||||||
.tooltiptext = { pane-zen-tabs-title }
|
.tooltiptext = { pane-zen-tabs-title }
|
||||||
@@ -54,7 +58,7 @@ zen-tabs-cycle-ignore-pending-tabs =
|
|||||||
.label = Ausstehende Tabs beim Wechseln mit Strg+Tab ignorieren
|
.label = Ausstehende Tabs beim Wechseln mit Strg+Tab ignorieren
|
||||||
zen-tabs-cycle-by-attribute-warning = Strg+Tab wechselt in der zuletzt verwendeten Reihenfolge, da diese Option aktiviert ist
|
zen-tabs-cycle-by-attribute-warning = Strg+Tab wechselt in der zuletzt verwendeten Reihenfolge, da diese Option aktiviert ist
|
||||||
zen-look-and-feel-compact-toolbar-themed =
|
zen-look-and-feel-compact-toolbar-themed =
|
||||||
.label = Theme-Hintergrund für kompakte Symbolleiste verwenden
|
.label = Design-Hintergrund für kompakte Symbolleiste verwenden
|
||||||
zen-workspace-continue-where-left-off =
|
zen-workspace-continue-where-left-off =
|
||||||
.label = Dort fortfahren, wo du aufgehört hast
|
.label = Dort fortfahren, wo du aufgehört hast
|
||||||
pane-zen-pinned-tab-manager-title = Angeheftete Tabs
|
pane-zen-pinned-tab-manager-title = Angeheftete Tabs
|
||||||
@@ -64,7 +68,7 @@ zen-pinned-tab-manager-restore-pinned-tabs-to-pinned-url =
|
|||||||
.label = Angeheftete Tabs beim Start auf ihre ursprüngliche URL zurücksetzen
|
.label = Angeheftete Tabs beim Start auf ihre ursprüngliche URL zurücksetzen
|
||||||
zen-pinned-tab-manager-container-specific-essentials-enabled =
|
zen-pinned-tab-manager-container-specific-essentials-enabled =
|
||||||
.label = Container-spezifische Essentials aktivieren
|
.label = Container-spezifische Essentials aktivieren
|
||||||
zen-pinned-tab-manager-close-shortcut-behavior-label = Verhalten der Tastenkombination zum Schließen von Tabs
|
zen-pinned-tab-manager-close-shortcut-behavior-label = Verhalten des Tastenkürzels zum Schließen von Tabs
|
||||||
zen-pinned-tab-manager-reset-unload-switch-close-shortcut-option =
|
zen-pinned-tab-manager-reset-unload-switch-close-shortcut-option =
|
||||||
.label = URL zurücksetzen, entladen und zum nächsten Tab wechseln
|
.label = URL zurücksetzen, entladen und zum nächsten Tab wechseln
|
||||||
zen-pinned-tab-manager-unload-switch-close-shortcut-option =
|
zen-pinned-tab-manager-unload-switch-close-shortcut-option =
|
||||||
@@ -79,7 +83,7 @@ zen-pinned-tab-manager-close-close-shortcut-option =
|
|||||||
.label = Tab schließen
|
.label = Tab schließen
|
||||||
pane-zen-workspaces-header = Arbeitsbereiche
|
pane-zen-workspaces-header = Arbeitsbereiche
|
||||||
zen-settings-workspaces-header = Allgemeine Einstellungen für Arbeitsbereiche
|
zen-settings-workspaces-header = Allgemeine Einstellungen für Arbeitsbereiche
|
||||||
zen-settings-workspaces-description = Mit Arbeitsbereichen kannst du mehrere Browser-Sitzungen gleichzeitig haben
|
zen-settings-workspaces-description = Mit Arbeitsbereichen kannst du mehrere Browser-Sitzungen gleichzeitig haben!
|
||||||
zen-settings-workspaces-enabled =
|
zen-settings-workspaces-enabled =
|
||||||
.label = Arbeitsbereiche aktivieren (experimentell)
|
.label = Arbeitsbereiche aktivieren (experimentell)
|
||||||
zen-settings-workspaces-hide-default-container-indicator =
|
zen-settings-workspaces-hide-default-container-indicator =
|
||||||
@@ -91,16 +95,16 @@ zen-vertical-tabs-title = Seitenleiste und Tab-Layout
|
|||||||
zen-vertical-tabs-header = Vertikale Tabs
|
zen-vertical-tabs-header = Vertikale Tabs
|
||||||
zen-vertical-tabs-description = Verwalte deine Tabs in einem vertikalen Layout
|
zen-vertical-tabs-description = Verwalte deine Tabs in einem vertikalen Layout
|
||||||
zen-vertical-tabs-show-expand-button =
|
zen-vertical-tabs-show-expand-button =
|
||||||
.label = Erweitern-Schaltfläche anzeigen
|
.label = Ausklapp-Button anzeigen
|
||||||
zen-vertical-tabs-newtab-on-tab-list =
|
zen-vertical-tabs-newtab-on-tab-list =
|
||||||
.label = „Neuer Tab“-Button in der Tab-Liste anzeigen
|
.label = „Neuer Tab“-Button in der Tab-Liste anzeigen
|
||||||
zen-vertical-tabs-newtab-top-button-up =
|
zen-vertical-tabs-newtab-top-button-up =
|
||||||
.label = Schaltfläche „Neuer Tab“ nach oben verschieben
|
.label = Schaltfläche „Neuer Tab“ nach oben verschieben
|
||||||
zen-vertical-tabs-expand-tabs-by-default = Tabs standardmäßig erweitern
|
zen-vertical-tabs-expand-tabs-by-default = Tabs standardmäßig ausklappen
|
||||||
zen-vertical-tabs-dont-expand-tabs-by-default = Tabs standardmäßig nicht erweitern
|
zen-vertical-tabs-dont-expand-tabs-by-default = Tabs standardmäßig nicht ausklappen
|
||||||
zen-vertical-tabs-expand-tabs-on-hover = Tabs beim Drüberfahren erweitern (funktioniert nicht im Kompaktmodus)
|
zen-vertical-tabs-expand-tabs-on-hover = Tabs beim Drüberfahren erweitern (funktioniert nicht im Kompaktmodus)
|
||||||
zen-vertical-tabs-expand-tabs-header = Wie Tabs erweitert werden sollen
|
zen-vertical-tabs-expand-tabs-header = Wie Tabs ausgeklappt werden
|
||||||
zen-vertical-tabs-expand-tabs-description = Wähle aus, wie Tabs in der Seitenleiste erweitert werden sollen
|
zen-vertical-tabs-expand-tabs-description = Wähle aus, wie Tabs in der Seitenleiste ausgeklappt werden
|
||||||
zen-theme-marketplace-header = Zen-Mods
|
zen-theme-marketplace-header = Zen-Mods
|
||||||
zen-theme-disable-all-enabled =
|
zen-theme-disable-all-enabled =
|
||||||
.title = Alle Mods deaktivieren
|
.title = Alle Mods deaktivieren
|
||||||
@@ -142,7 +146,7 @@ zen-theme-marketplace-link = Store besuchen
|
|||||||
zen-dark-theme-styles-header = Dunkles Design
|
zen-dark-theme-styles-header = Dunkles Design
|
||||||
zen-dark-theme-styles-description = Passe das dunkle Design nach deinen Wünschen an
|
zen-dark-theme-styles-description = Passe das dunkle Design nach deinen Wünschen an
|
||||||
zen-dark-theme-styles-amoled = Nacht-Design
|
zen-dark-theme-styles-amoled = Nacht-Design
|
||||||
zen-dark-theme-styles-default = Standardmäßiges dunkles Design
|
zen-dark-theme-styles-default = Dunkles Standard-Design
|
||||||
zen-dark-theme-styles-colorful = Farbenfrohes dunkles Design
|
zen-dark-theme-styles-colorful = Farbenfrohes dunkles Design
|
||||||
zen-compact-mode-styles-left = Tab-Leiste ausblenden
|
zen-compact-mode-styles-left = Tab-Leiste ausblenden
|
||||||
zen-compact-mode-styles-top = Obere Leiste ausblenden
|
zen-compact-mode-styles-top = Obere Leiste ausblenden
|
||||||
@@ -208,7 +212,7 @@ zen-picture-in-picture-toggle-shortcut-mac = Bild-im-Bild umschalten (Mac)
|
|||||||
zen-picture-in-picture-toggle-shortcut-mac-alt = Bild-im-Bild umschalten (Mac Alternative)
|
zen-picture-in-picture-toggle-shortcut-mac-alt = Bild-im-Bild umschalten (Mac Alternative)
|
||||||
zen-page-source-shortcut-safari = Seitenquelltext (Safari)
|
zen-page-source-shortcut-safari = Seitenquelltext (Safari)
|
||||||
zen-nav-stop-shortcut = Navigation stoppen
|
zen-nav-stop-shortcut = Navigation stoppen
|
||||||
zen-history-sidebar-shortcut = Verlaufs-Seitenleiste
|
zen-history-sidebar-shortcut = Verlaufs-Seitenleiste anzeigen
|
||||||
zen-window-minimize-shortcut = Fenster minimieren
|
zen-window-minimize-shortcut = Fenster minimieren
|
||||||
zen-help-shortcut = Hilfe öffnen
|
zen-help-shortcut = Hilfe öffnen
|
||||||
zen-preferences-shortcut = Einstellungen öffnen
|
zen-preferences-shortcut = Einstellungen öffnen
|
||||||
@@ -238,13 +242,14 @@ zen-toggle-pin-tab-shortcut = Tab anheften/lösen
|
|||||||
zen-reader-mode-toggle-shortcut-other = Lesemodus umschalten
|
zen-reader-mode-toggle-shortcut-other = Lesemodus umschalten
|
||||||
zen-picture-in-picture-toggle-shortcut = Bild-im-Bild umschalten
|
zen-picture-in-picture-toggle-shortcut = Bild-im-Bild umschalten
|
||||||
zen-nav-reload-shortcut-2 = Seite neu laden
|
zen-nav-reload-shortcut-2 = Seite neu laden
|
||||||
zen-key-about-processes = Über Prozesse
|
zen-key-about-processes = Prozess-Manager öffnen
|
||||||
zen-page-source-shortcut = Seitenquelltext anzeigen
|
zen-page-source-shortcut = Seitenquelltext anzeigen
|
||||||
zen-page-info-shortcut = Seiteninformationen anzeigen
|
zen-page-info-shortcut = Seiteninformationen anzeigen
|
||||||
zen-find-shortcut = Auf Seite suchen
|
zen-find-shortcut = Auf Seite suchen
|
||||||
zen-search-find-again-shortcut = Weitersuchen
|
zen-search-find-again-shortcut = Weitersuchen
|
||||||
zen-search-find-again-shortcut-prev = Vorheriges suchen
|
zen-search-find-again-shortcut-prev = Vorheriges suchen
|
||||||
zen-search-find-again-shortcut-2 = Weitersuchen (Alt)
|
zen-search-find-again-shortcut-alt = Erneut suchen (Alt)
|
||||||
|
zen-search-find-again-shortcut-prev-alt = Vorherigen suchen (Alt)
|
||||||
zen-bookmark-this-page-shortcut = Diese Seite als Lesezeichen speichern
|
zen-bookmark-this-page-shortcut = Diese Seite als Lesezeichen speichern
|
||||||
zen-bookmark-show-library-shortcut = Lesezeichen-Bibliothek anzeigen
|
zen-bookmark-show-library-shortcut = Lesezeichen-Bibliothek anzeigen
|
||||||
zen-key-stop = Laden stoppen
|
zen-key-stop = Laden stoppen
|
||||||
@@ -255,7 +260,7 @@ zen-full-zoom-reset-shortcut-alt = Zoom zurücksetzen (Alt)
|
|||||||
zen-full-zoom-enlarge-shortcut-alt = Hineinzoomen (Alt)
|
zen-full-zoom-enlarge-shortcut-alt = Hineinzoomen (Alt)
|
||||||
zen-full-zoom-enlarge-shortcut-alt2 = Hineinzoomen (Alt 2)
|
zen-full-zoom-enlarge-shortcut-alt2 = Hineinzoomen (Alt 2)
|
||||||
zen-bidi-switch-direction-shortcut = Text-Richtung wechseln
|
zen-bidi-switch-direction-shortcut = Text-Richtung wechseln
|
||||||
zen-private-browsing-shortcut = Privaten Modus öffnen
|
zen-private-browsing-shortcut = Privates Fenster öffnen
|
||||||
zen-screenshot-shortcut = Bildschirmfoto erstellen
|
zen-screenshot-shortcut = Bildschirmfoto erstellen
|
||||||
zen-key-sanitize = Browser-Daten löschen
|
zen-key-sanitize = Browser-Daten löschen
|
||||||
zen-quit-app-shortcut = Anwendung beenden
|
zen-quit-app-shortcut = Anwendung beenden
|
||||||
@@ -281,7 +286,7 @@ zen-workspace-shortcut-switch-9 = Zu Arbeitsbereich 9 wechseln
|
|||||||
zen-workspace-shortcut-switch-10 = Zu Arbeitsbereich 10 wechseln
|
zen-workspace-shortcut-switch-10 = Zu Arbeitsbereich 10 wechseln
|
||||||
zen-workspace-shortcut-forward = Zum nächsten Arbeitsbereich wechseln
|
zen-workspace-shortcut-forward = Zum nächsten Arbeitsbereich wechseln
|
||||||
zen-workspace-shortcut-backward = Zum vorherigen Arbeitsbereich wechseln
|
zen-workspace-shortcut-backward = Zum vorherigen Arbeitsbereich wechseln
|
||||||
zen-workspace-shortcut-create = Create New Workspace
|
zen-workspace-shortcut-create = Neuen Arbeitsbereich erstellen
|
||||||
zen-sidebar-shortcut-toggle = Seitenleisten-Breite umschalten
|
zen-sidebar-shortcut-toggle = Seitenleisten-Breite umschalten
|
||||||
zen-pinned-tab-shortcut-reset = Angehefteten Tab zurücksetzen
|
zen-pinned-tab-shortcut-reset = Angehefteten Tab zurücksetzen
|
||||||
zen-split-view-shortcut-grid = Raster-Layout für geteilte Ansicht umschalten
|
zen-split-view-shortcut-grid = Raster-Layout für geteilte Ansicht umschalten
|
||||||
@@ -303,20 +308,20 @@ zen-key-goto-history = Zum Verlauf gehen
|
|||||||
zen-key-go-home = Zur Startseite gehen
|
zen-key-go-home = Zur Startseite gehen
|
||||||
zen-bookmark-show-sidebar-shortcut = Lesezeichen-Seitenleiste anzeigen
|
zen-bookmark-show-sidebar-shortcut = Lesezeichen-Seitenleiste anzeigen
|
||||||
zen-bookmark-show-toolbar-shortcut = Lesezeichen-Symbolleiste anzeigen
|
zen-bookmark-show-toolbar-shortcut = Lesezeichen-Symbolleiste anzeigen
|
||||||
zen-devtools-toggle-shortcut = Entwicklertools umschalten
|
zen-devtools-toggle-shortcut = Entwicklerwerkzeuge umschalten
|
||||||
zen-devtools-toggle-browser-toolbox-shortcut = Browser-Toolbox umschalten
|
zen-devtools-toggle-browser-toolbox-shortcut = Browser-Toolbox umschalten
|
||||||
zen-devtools-toggle-browser-console-shortcut = Browser-Konsole umschalten
|
zen-devtools-toggle-browser-console-shortcut = Browser-Konsole umschalten
|
||||||
zen-devtools-toggle-responsive-design-mode-shortcut = Responsive-Design-Modus umschalten
|
zen-devtools-toggle-responsive-design-mode-shortcut = Responsive-Design-Modus umschalten
|
||||||
zen-devtools-toggle-inspector-shortcut = Inspektor umschalten
|
zen-devtools-toggle-inspector-shortcut = Inspektor umschalten
|
||||||
zen-devtools-toggle-web-console-shortcut = Web-Konsole umschalten
|
zen-devtools-toggle-web-console-shortcut = Web-Konsole umschalten
|
||||||
zen-devtools-toggle-js-debugger-shortcut = JavaScript-Debugger umschalten
|
zen-devtools-toggle-js-debugger-shortcut = JavaScript-Debugger umschalten
|
||||||
zen-devtools-toggle-net-monitor-shortcut = Netzwerk-Monitor umschalten
|
zen-devtools-toggle-net-monitor-shortcut = Netzwerkanalyse umschalten
|
||||||
zen-devtools-toggle-style-editor-shortcut = Stil-Editor umschalten
|
zen-devtools-toggle-style-editor-shortcut = Stil-Editor umschalten
|
||||||
zen-devtools-toggle-performance-shortcut = Performance umschalten
|
zen-devtools-toggle-performance-shortcut = Leistung umschalten
|
||||||
zen-devtools-toggle-storage-shortcut = Speicher umschalten
|
zen-devtools-toggle-storage-shortcut = Speicher umschalten
|
||||||
zen-devtools-toggle-dom-shortcut = DOM umschalten
|
zen-devtools-toggle-dom-shortcut = DOM umschalten
|
||||||
zen-devtools-toggle-accessibility-shortcut = Barrierefreiheit umschalten
|
zen-devtools-toggle-accessibility-shortcut = Barrierefreiheit umschalten
|
||||||
zen-close-all-unpinned-tabs-shortcut = Alle nicht angehefteten Tabs schließen
|
zen-close-all-unpinned-tabs-shortcut = Alle nicht angehefteten Tabs schließen
|
||||||
zen-new-unsynced-window-shortcut = Neues leeres Fenster
|
zen-new-unsynced-window-shortcut = Neues leeres Fenster
|
||||||
zen-duplicate-tab-shortcut = Tab duplizieren
|
zen-duplicate-tab-shortcut = Tab duplizieren
|
||||||
zen-key-find-selection = Find Selection
|
zen-key-find-selection = Auswahl suchen
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ zen-boost-edit-reset =
|
|||||||
zen-boost-edit-delete =
|
zen-boost-edit-delete =
|
||||||
.label = Boost löschen
|
.label = Boost löschen
|
||||||
zen-boost-size = Größe
|
zen-boost-size = Größe
|
||||||
zen-boost-case = Case
|
zen-boost-case = Schreibweise
|
||||||
zen-boost-zap = Zap
|
zen-boost-zap = Zap
|
||||||
zen-boost-code = Code
|
zen-boost-code = Code
|
||||||
zen-boost-back = Zurück
|
zen-boost-back = Zurück
|
||||||
@@ -32,25 +32,25 @@ zen-boost-css-inspector =
|
|||||||
zen-boost-color-contrast = Kontrast
|
zen-boost-color-contrast = Kontrast
|
||||||
zen-boost-color-brightness = Helligkeit
|
zen-boost-color-brightness = Helligkeit
|
||||||
zen-boost-color-original-saturation = Ausgangssättigung
|
zen-boost-color-original-saturation = Ausgangssättigung
|
||||||
zen-add-zap-helper = Klicke auf Elemente auf der Seite, um sie mit <b>Zap</b> zu markieren
|
zen-add-zap-helper = Klicke auf Elemente der Seite, um sie zu <b>zappen</b>
|
||||||
zen-remove-zap-helper = ← Erneut klicken zum Wiederherstellen
|
zen-remove-zap-helper = ← Klicken zum Entzappen
|
||||||
zen-select-this = Selektor für dieses Element einfügen
|
zen-select-this = Selektor für dieses Element einfügen
|
||||||
zen-select-related = Selektor für verwandte Elemente einfügen
|
zen-select-related = Selektor für verwandte Elemente einfügen
|
||||||
zen-select-cancel = Abbrechen
|
zen-select-cancel = Abbrechen
|
||||||
zen-zap-this = Dieses entfernen
|
zen-zap-this = Dieses Element zappen
|
||||||
zen-zap-related = Alle verwandten Elemente entfernen
|
zen-zap-related = Alle verwandten Elemente zappen
|
||||||
zen-zap-cancel = Abbrechen
|
zen-zap-cancel = Abbrechen
|
||||||
zen-zap-done = Fertig
|
zen-zap-done = Fertig
|
||||||
zen-unzap-tooltip =
|
zen-unzap-tooltip =
|
||||||
{ $elementCount ->
|
{ $elementCount ->
|
||||||
[0] Keine Elemente entfernt
|
[0] Keine Elemente gezappt
|
||||||
[1] { $elementCount } Element entfernt
|
[1] { $elementCount } Element gezappt
|
||||||
*[other] { $elementCount } Elemente entfernt
|
*[other] { $elementCount } Elemente gezappt
|
||||||
}
|
}
|
||||||
zen-boost-save =
|
zen-boost-save =
|
||||||
.label = Export Boost
|
.label = Boost exportieren
|
||||||
zen-boost-load =
|
zen-boost-load =
|
||||||
.label = Import Boost
|
.label = Boost importieren
|
||||||
zen-panel-ui-boosts-exported-message = Boost exportiert!
|
zen-panel-ui-boosts-exported-message = Boost exportiert!
|
||||||
zen-site-data-boosts = Boosts
|
zen-site-data-boosts = Boosts
|
||||||
zen-site-data-create-boost =
|
zen-site-data-create-boost =
|
||||||
|
|||||||
36
locales/de/browser/browser/zen-command-palette.ftl
Normal file
36
locales/de/browser/browser/zen-command-palette.ftl
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-action-toggle-compact-mode = Kompakten Modus umschalten
|
||||||
|
zen-action-open-theme-picker = Theme-Auswahl öffnen
|
||||||
|
zen-action-new-split-view = Neue geteilte Ansicht
|
||||||
|
zen-action-new-folder = Neuer Ordner
|
||||||
|
zen-action-copy-current-url = Aktuelle URL kopieren
|
||||||
|
zen-action-settings = Einstellungen
|
||||||
|
zen-action-open-private-window = Privates Fenster öffnen
|
||||||
|
zen-action-open-new-window = Neues Fenster öffnen
|
||||||
|
zen-action-new-blank-window = Neues leeres Fenster
|
||||||
|
zen-action-pin-tab = Tab anheften
|
||||||
|
zen-action-unpin-tab = Tab lösen
|
||||||
|
zen-action-open-space-routing = Arbeitsbereich-Routing öffnen
|
||||||
|
zen-action-new-boost = Neuer Boost
|
||||||
|
zen-action-next-space = Neuer Arbeitsbereich
|
||||||
|
zen-action-previous-space = Vorheriger Arbeitsbereich
|
||||||
|
zen-action-close-tab = Tab schließen
|
||||||
|
zen-action-reload-tab = Tab neu laden
|
||||||
|
zen-action-reload-tab-without-cache = Tab ohne Cache neu laden
|
||||||
|
zen-action-next-tab = Nächster Tab
|
||||||
|
zen-action-previous-tab = Vorherige Tab
|
||||||
|
zen-action-capture-screenshot = Screenshot erstellen
|
||||||
|
zen-action-toggle-tabs-on-right = Tab nach rechts umschalten
|
||||||
|
zen-action-add-to-essentials = Zu Essentials hinzufügen
|
||||||
|
zen-action-remove-from-essentials = Von Essentials entfernen
|
||||||
|
zen-action-find-in-page = In Seite suchen
|
||||||
|
zen-action-manage-extensions = Erweiterungen verwalten
|
||||||
|
zen-action-switch-to-automatic-appearance = Zur automatischen Darstellung wechseln
|
||||||
|
zen-action-switch-to-light-mode = Zum hellen Modus wechseln
|
||||||
|
zen-action-switch-to-dark-mode = Zum dunklen Modus wechseln
|
||||||
|
zen-action-print = Drucken
|
||||||
|
zen-action-focus-on = Fokussieren auf
|
||||||
|
zen-action-extension = Erweiterung
|
||||||
@@ -18,13 +18,19 @@ tab-context-zen-add-essential-badge = { $num } / { $max } Plätzen belegt
|
|||||||
tab-context-zen-remove-essential =
|
tab-context-zen-remove-essential =
|
||||||
.label = Aus Essentials entfernen
|
.label = Aus Essentials entfernen
|
||||||
.accesskey = R
|
.accesskey = R
|
||||||
tab-context-zen-replace-pinned-url-with-current =
|
tab-context-zen-edit-pinned-page =
|
||||||
.label =
|
.label =
|
||||||
{ $isEssential ->
|
{ $isEssential ->
|
||||||
[true] Essential-URL durch aktuelle ersetzen
|
[true] Essentials URL bearbeiten
|
||||||
*[false] Angeheftete URL durch aktuelle ersetzen
|
*[false] Angeheftete URL bearbeiten
|
||||||
}
|
}
|
||||||
|
.accesskey = P
|
||||||
|
tab-context-zen-replace-pinned-url-with-current =
|
||||||
|
.label = Mit aktueller URL ersetzen
|
||||||
.accesskey = C
|
.accesskey = C
|
||||||
|
tab-context-zen-edit-pinned-url =
|
||||||
|
.label = Bearbeiten...
|
||||||
|
.accesskey = E
|
||||||
tab-context-zen-edit-title =
|
tab-context-zen-edit-title =
|
||||||
.label = Titel ändern...
|
.label = Titel ändern...
|
||||||
tab-context-zen-edit-icon =
|
tab-context-zen-edit-icon =
|
||||||
@@ -47,6 +53,10 @@ zen-general-cancel-label =
|
|||||||
zen-general-confirm =
|
zen-general-confirm =
|
||||||
.label = Bestätigen
|
.label = Bestätigen
|
||||||
zen-pinned-tab-replaced = Die URL des angehefteten Tabs wurde aktualisiert!
|
zen-pinned-tab-replaced = Die URL des angehefteten Tabs wurde aktualisiert!
|
||||||
|
zen-pinned-tab-url-edited = Angeheftete URL wurde aktualisiert!
|
||||||
|
zen-pinned-tab-url-invalid = Das sieht nicht nach einer gültigen URL aus.
|
||||||
|
zen-pinned-tab-edit-url-title = Angeheftete URL bearbeiten
|
||||||
|
zen-pinned-tab-edit-url-label = Gib die URL an, auf die der angeheftete Tab verweisen soll:
|
||||||
zen-tabs-renamed = Tab umbenannt!
|
zen-tabs-renamed = Tab umbenannt!
|
||||||
zen-background-tab-opened-toast = Neuer Tab im Hintergrund geöffnet!
|
zen-background-tab-opened-toast = Neuer Tab im Hintergrund geöffnet!
|
||||||
zen-workspace-renamed-toast = Arbeitsbereich umbenannt!
|
zen-workspace-renamed-toast = Arbeitsbereich umbenannt!
|
||||||
@@ -65,6 +75,8 @@ zen-icons-picker-emoji =
|
|||||||
.label = Emojis
|
.label = Emojis
|
||||||
zen-icons-picker-svg =
|
zen-icons-picker-svg =
|
||||||
.label = Symbole
|
.label = Symbole
|
||||||
|
zen-emojis-picker-search =
|
||||||
|
.placeholder = Emojis durchsuchen
|
||||||
urlbar-search-mode-zen_actions = Aktionen
|
urlbar-search-mode-zen_actions = Aktionen
|
||||||
zen-site-data-settings = Einstellungen
|
zen-site-data-settings = Einstellungen
|
||||||
zen-generic-manage = Verwalten
|
zen-generic-manage = Verwalten
|
||||||
@@ -116,6 +128,9 @@ zen-sidebar-notification-updated-heading = Update abgeschlossen!
|
|||||||
zen-sidebar-notification-updated-label = Was in { -brand-short-name } neu ist
|
zen-sidebar-notification-updated-label = Was in { -brand-short-name } neu ist
|
||||||
zen-sidebar-notification-updated-tooltip =
|
zen-sidebar-notification-updated-tooltip =
|
||||||
.title = Versionshinweise anzeigen
|
.title = Versionshinweise anzeigen
|
||||||
|
zen-sidebar-notification-donate-label = Unterstütze { -brand-short-name }
|
||||||
|
zen-sidebar-notification-donate-tooltip =
|
||||||
|
.title = Spende für das Projekt
|
||||||
zen-sidebar-notification-restart-safe-mode-label = Funktioniert etwas nicht?
|
zen-sidebar-notification-restart-safe-mode-label = Funktioniert etwas nicht?
|
||||||
zen-sidebar-notification-restart-safe-mode-tooltip =
|
zen-sidebar-notification-restart-safe-mode-tooltip =
|
||||||
.title = Im abgesicherten Modus neu starten
|
.title = Im abgesicherten Modus neu starten
|
||||||
|
|||||||
30
locales/de/browser/browser/zen-space-routing.ftl
Normal file
30
locales/de/browser/browser/zen-space-routing.ftl
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-space-routing-settings =
|
||||||
|
.label = Einstellungen für Arbeitsbereich-Routing
|
||||||
|
zen-space-routing-rulepanel-placeholder = Mit Routen legst du fest, wo bestimmte Websites in Zen geöffnet werden. Du kannst zum Beispiel YouTube-Links immer in deinem privaten Arbeitsbereich öffnen lassen.
|
||||||
|
zen-space-routing-dialog-title = Einstellungen für Arbeitsbereich-Routing
|
||||||
|
zen-space-routing-external-default = Standardroute für externe Links
|
||||||
|
zen-space-routing-new-route = Neue Route
|
||||||
|
zen-space-routing-open-in-space = Im Arbeitsbereich öffnen
|
||||||
|
zen-space-routing-most-recent-space = Zuletzt genutzter Arbeitsbereich
|
||||||
|
zen-space-routing-close-button =
|
||||||
|
.aria-label = Schließen
|
||||||
|
.tooltiptext = Schließen
|
||||||
|
zen-space-routing-contains =
|
||||||
|
.label = Enthält
|
||||||
|
zen-space-routing-equal-to =
|
||||||
|
.label = Ist gleich
|
||||||
|
zen-space-routing-regex =
|
||||||
|
.label = RegEx
|
||||||
|
zen-space-routing-open-in = Öffnen in
|
||||||
|
zen-space-routing-url = URL
|
||||||
|
zen-space-routing-tab-routed-toast = Neuer Tab in { $targetWorkspace } geöffnet
|
||||||
|
tab-context-zen-add-domain-to-sr =
|
||||||
|
.label =
|
||||||
|
{ $tabCount ->
|
||||||
|
[one] Route für Domain hinzufügen
|
||||||
|
*[other] Route für Domains hinzufügen
|
||||||
|
}
|
||||||
@@ -6,13 +6,13 @@ tab-zen-split-tabs =
|
|||||||
.label =
|
.label =
|
||||||
{ $tabCount ->
|
{ $tabCount ->
|
||||||
[-1] Tab abtrennen
|
[-1] Tab abtrennen
|
||||||
[1] Split View hinzufügen...
|
[1] Geteilte Ansicht hinzufügen…
|
||||||
*[other] { $tabCount } Tabs zusammenführen
|
*[other] { $tabCount } Tabs zusammenführen
|
||||||
}
|
}
|
||||||
.accesskey = S
|
.accesskey = S
|
||||||
zen-split-link =
|
zen-split-link =
|
||||||
.label = Link in geteiltem Tab öffnen
|
.label = Link in geteilter Ansicht öffnen
|
||||||
.accesskey = S
|
.accesskey = G
|
||||||
zen-split-view-modifier-header = Geteilte Ansicht
|
zen-split-view-modifier-header = Geteilte Ansicht
|
||||||
zen-split-view-modifier-activate-reallocation =
|
zen-split-view-modifier-activate-reallocation =
|
||||||
.label = Anordnung ändern
|
.label = Anordnung ändern
|
||||||
|
|||||||
@@ -16,10 +16,10 @@ zen-toolbar-context-compact-mode-just-toolbar =
|
|||||||
.label = Nur Symbolleiste ausblenden
|
.label = Nur Symbolleiste ausblenden
|
||||||
zen-toolbar-context-compact-mode-hide-both =
|
zen-toolbar-context-compact-mode-hide-both =
|
||||||
.label = Beides ausblenden
|
.label = Beides ausblenden
|
||||||
.accesskey = H
|
.accesskey = B
|
||||||
zen-toolbar-context-move-to-folder =
|
zen-toolbar-context-move-to-folder =
|
||||||
.label = In Ordner verschieben...
|
.label = In Ordner verschieben...
|
||||||
.accesskey = M
|
.accesskey = O
|
||||||
zen-toolbar-context-new-folder =
|
zen-toolbar-context-new-folder =
|
||||||
.label = Neuer Ordner
|
.label = Neuer Ordner
|
||||||
.accesskey = N
|
.accesskey = N
|
||||||
|
|||||||
@@ -2,24 +2,24 @@
|
|||||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
zen-welcome-title-line1 = Willkommen zu
|
zen-welcome-title-line1 = Willkommen in
|
||||||
zen-welcome-title-line2 = einem ruhigeren Internet
|
zen-welcome-title-line2 = einem ruhigeren Internet
|
||||||
zen-welcome-import-title = Ein neuer Anfang, dieselben Lesezeichen
|
zen-welcome-import-title = Ein neuer Anfang, dieselben Lesezeichen
|
||||||
zen-welcome-import-description-1 = Deine Lesezeichen, dein Verlauf und deine Passwörter sind wie eine Spur durch das Internet – lass sie nicht zurück!
|
zen-welcome-import-description-1 = Deine Lesezeichen, dein Verlauf und deine Passwörter sind wie eine Spur durch das Internet – lass sie nicht zurück!
|
||||||
zen-welcome-import-description-2 = Übertrage sie ganz einfach aus einem anderen Browser und mache genau dort weiter, wo du aufgehört hast.
|
zen-welcome-import-description-2 = Übertrage sie ganz einfach aus einem anderen Browser und mache genau dort weiter, wo du aufgehört hast.
|
||||||
zen-welcome-import-button = Jetzt importieren
|
zen-welcome-import-button = Jetzt importieren
|
||||||
zen-welcome-set-default-browser = { -brand-short-name } als Standardbrowser festlegen
|
zen-welcome-set-default-browser = { -brand-short-name } als Standardbrowser festlegen
|
||||||
zen-welcome-dont-set-default-browser = { -brand-short-name } nicht als Standardbrowser festlegen
|
zen-welcome-dont-set-default-browser = { -brand-short-name } NICHT als Standardbrowser festlegen
|
||||||
zen-welcome-initial-essentials-title = Deine wichtigsten Tabs, immer in Reichweite
|
zen-welcome-initial-essentials-title = Deine wichtigsten Tabs, immer in Reichweite
|
||||||
zen-welcome-initial-essentials-description-1 = Halte deine wichtigsten Tabs leicht zugänglich und immer griffbereit, egal wie viele du öffnest.
|
zen-welcome-initial-essentials-description-1 = Halte deine wichtigsten Tabs leicht zugänglich und immer griffbereit, egal wie viele du öffnest.
|
||||||
zen-welcome-initial-essentials-description-2 = Essential-Tabs sind immer sichtbar, unabhängig davon, in welchem Arbeitsbereich du dich befindest.
|
zen-welcome-initial-essentials-description-2 = Essential-Tabs sind immer sichtbar, egal in welchem Arbeitsbereich du bist.
|
||||||
zen-welcome-workspace-colors-title = Deine Arbeitsbereiche, deine Farben
|
zen-welcome-workspace-colors-title = Deine Arbeitsbereiche, deine Farben
|
||||||
zen-welcome-workspace-colors-description = Personalisiere deinen Browser, indem du jedem Arbeitsbereich eine eigene Farbidentität gibst.
|
zen-welcome-workspace-colors-description = Personalisiere deinen Browser, indem du jedem Arbeitsbereich eine eigene Farbidentität gibst.
|
||||||
zen-welcome-start-browsing-title =
|
zen-welcome-start-browsing-title =
|
||||||
Alles bereit?<br/>
|
Alles bereit?<br/>
|
||||||
Los geht's!
|
Los geht's!
|
||||||
zen-welcome-start-browsing-description-1 = Du bist startklar! Klicke auf den Button unten, um mit { -brand-short-name } loszulegen.
|
zen-welcome-start-browsing-description-1 = Du bist startklar! Klicke auf den Button unten, um mit { -brand-short-name } loszulegen.
|
||||||
zen-welcome-start-browsing = Los geht's!
|
zen-welcome-start-browsing = Loslegen!
|
||||||
zen-welcome-default-search-title = Deine Standard-Suchmaschine
|
zen-welcome-default-search-title = Deine Standard-Suchmaschine
|
||||||
zen-welcome-default-search-description = Wähle deine Standard-Suchmaschine. Du kannst sie jederzeit später ändern!
|
zen-welcome-default-search-description = Wähle deine Standard-Suchmaschine. Du kannst sie jederzeit später ändern!
|
||||||
zen-welcome-skip-button = Überspringen
|
zen-welcome-skip-button = Überspringen
|
||||||
|
|||||||
@@ -12,10 +12,10 @@ zen-panel-ui-folder-create =
|
|||||||
zen-panel-ui-live-folder-create =
|
zen-panel-ui-live-folder-create =
|
||||||
.label = Live-Ordner
|
.label = Live-Ordner
|
||||||
zen-panel-ui-new-empty-split =
|
zen-panel-ui-new-empty-split =
|
||||||
.label = Neuen Split erstellen
|
.label = Neue geteilte Ansicht
|
||||||
zen-workspaces-panel-context-delete =
|
zen-workspaces-panel-context-delete =
|
||||||
.label = Arbeitsbereich löschen
|
.label = Arbeitsbereich löschen
|
||||||
.accesskey = D
|
.accesskey = L
|
||||||
zen-workspaces-panel-change-name =
|
zen-workspaces-panel-change-name =
|
||||||
.label = Namen ändern
|
.label = Namen ändern
|
||||||
zen-workspaces-panel-change-icon =
|
zen-workspaces-panel-change-icon =
|
||||||
@@ -32,13 +32,13 @@ zen-workspaces-change-theme =
|
|||||||
.label = Design anpassen
|
.label = Design anpassen
|
||||||
zen-workspaces-panel-context-open =
|
zen-workspaces-panel-context-open =
|
||||||
.label = Arbeitsbereich öffnen
|
.label = Arbeitsbereich öffnen
|
||||||
.accesskey = O
|
.accesskey = ö
|
||||||
zen-workspaces-panel-context-edit =
|
zen-workspaces-panel-context-edit =
|
||||||
.label = Arbeitsbereich bearbeiten
|
.label = Arbeitsbereich bearbeiten
|
||||||
.accesskey = E
|
.accesskey = E
|
||||||
zen-bookmark-edit-panel-workspace-selector =
|
zen-bookmark-edit-panel-workspace-selector =
|
||||||
.value = Arbeitsbereiche
|
.value = Arbeitsbereiche
|
||||||
.accesskey = W
|
.accesskey = A
|
||||||
zen-panel-ui-gradient-generator-algo-complementary =
|
zen-panel-ui-gradient-generator-algo-complementary =
|
||||||
.label = Komplementär
|
.label = Komplementär
|
||||||
zen-panel-ui-gradient-generator-algo-splitComplementary =
|
zen-panel-ui-gradient-generator-algo-splitComplementary =
|
||||||
@@ -61,6 +61,7 @@ zen-workspace-creation-profile = Profil
|
|||||||
.tooltiptext = Profile trennen Cookies und Website-Daten zwischen verschiedenen Arbeitsbereichen.
|
.tooltiptext = Profile trennen Cookies und Website-Daten zwischen verschiedenen Arbeitsbereichen.
|
||||||
zen-workspace-creation-header = Arbeitsbereich erstellen
|
zen-workspace-creation-header = Arbeitsbereich erstellen
|
||||||
zen-workspace-creation-label = Arbeitsbereiche helfen dir, deine Tabs und Sitzungen zu organisieren.
|
zen-workspace-creation-label = Arbeitsbereiche helfen dir, deine Tabs und Sitzungen zu organisieren.
|
||||||
|
zen-workspace-default-profile = Standard
|
||||||
zen-workspaces-delete-workspace-title = Arbeitsbereich löschen?
|
zen-workspaces-delete-workspace-title = Arbeitsbereich löschen?
|
||||||
zen-workspaces-delete-workspace-body = Möchtest du { $name } wirklich löschen? Das lässt sich nicht rückgängig machen.
|
zen-workspaces-delete-workspace-body = Möchtest du { $name } wirklich löschen? Das lässt sich nicht rückgängig machen.
|
||||||
# Note that the html tag MUST not be changed or removed, as it is used to better
|
# Note that the html tag MUST not be changed or removed, as it is used to better
|
||||||
|
|||||||
@@ -38,6 +38,10 @@ zen-look-and-feel-compact-view-top-toolbar =
|
|||||||
.label = Απόκρυψη και της επάνω γραμμής εργαλείων σε συμπαγή λειτουργία
|
.label = Απόκρυψη και της επάνω γραμμής εργαλείων σε συμπαγή λειτουργία
|
||||||
zen-look-and-feel-compact-toolbar-flash-popup =
|
zen-look-and-feel-compact-toolbar-flash-popup =
|
||||||
.label = Σύντομη ανάδυση της γραμμής εργαλείων κατά την εναλλαγή ή το άνοιγμα νέων καρτελών σε συμπαγή λειτουργία
|
.label = Σύντομη ανάδυση της γραμμής εργαλείων κατά την εναλλαγή ή το άνοιγμα νέων καρτελών σε συμπαγή λειτουργία
|
||||||
|
zen-look-and-feel-window-drag-header = Window dragging
|
||||||
|
zen-look-and-feel-window-drag-description = Move the window by dragging empty space at the top of websites, just like the titlebar.
|
||||||
|
zen-window-drag-enabled =
|
||||||
|
.label = Allow dragging the window from web pages
|
||||||
pane-zen-tabs-title = Διαχείριση Καρτελών
|
pane-zen-tabs-title = Διαχείριση Καρτελών
|
||||||
category-zen-workspaces =
|
category-zen-workspaces =
|
||||||
.tooltiptext = { pane-zen-tabs-title }
|
.tooltiptext = { pane-zen-tabs-title }
|
||||||
@@ -244,7 +248,8 @@ zen-page-info-shortcut = Προβολή Πληροφοριών Σελίδας
|
|||||||
zen-find-shortcut = Εύρεση στη Σελίδα
|
zen-find-shortcut = Εύρεση στη Σελίδα
|
||||||
zen-search-find-again-shortcut = Εύρεση Ξανά
|
zen-search-find-again-shortcut = Εύρεση Ξανά
|
||||||
zen-search-find-again-shortcut-prev = Εύρεση Προηγουμένου
|
zen-search-find-again-shortcut-prev = Εύρεση Προηγουμένου
|
||||||
zen-search-find-again-shortcut-2 = Εύρεση Ξανά (Alt)
|
zen-search-find-again-shortcut-alt = Find Again (Alt)
|
||||||
|
zen-search-find-again-shortcut-prev-alt = Find Previous (Alt)
|
||||||
zen-bookmark-this-page-shortcut = Σελιδοδείκτης στη Σελίδα
|
zen-bookmark-this-page-shortcut = Σελιδοδείκτης στη Σελίδα
|
||||||
zen-bookmark-show-library-shortcut = Εμφάνιση Βιβλιοθήκης Σελιδοδεικτών
|
zen-bookmark-show-library-shortcut = Εμφάνιση Βιβλιοθήκης Σελιδοδεικτών
|
||||||
zen-key-stop = Διακοπή Φόρτωσης
|
zen-key-stop = Διακοπή Φόρτωσης
|
||||||
|
|||||||
36
locales/el/browser/browser/zen-command-palette.ftl
Normal file
36
locales/el/browser/browser/zen-command-palette.ftl
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-action-toggle-compact-mode = Toggle Compact Mode
|
||||||
|
zen-action-open-theme-picker = Open Theme Picker
|
||||||
|
zen-action-new-split-view = New Split View
|
||||||
|
zen-action-new-folder = New Folder
|
||||||
|
zen-action-copy-current-url = Copy Current URL
|
||||||
|
zen-action-settings = Settings
|
||||||
|
zen-action-open-private-window = Open Private Window
|
||||||
|
zen-action-open-new-window = Open New Window
|
||||||
|
zen-action-new-blank-window = New Blank Window
|
||||||
|
zen-action-pin-tab = Pin Tab
|
||||||
|
zen-action-unpin-tab = Unpin Tab
|
||||||
|
zen-action-open-space-routing = Open Space Routing
|
||||||
|
zen-action-new-boost = New Boost
|
||||||
|
zen-action-next-space = Next Space
|
||||||
|
zen-action-previous-space = Previous Space
|
||||||
|
zen-action-close-tab = Close Tab
|
||||||
|
zen-action-reload-tab = Reload Tab
|
||||||
|
zen-action-reload-tab-without-cache = Reload Tab Without Cache
|
||||||
|
zen-action-next-tab = Next Tab
|
||||||
|
zen-action-previous-tab = Previous Tab
|
||||||
|
zen-action-capture-screenshot = Capture Screenshot
|
||||||
|
zen-action-toggle-tabs-on-right = Toggle Tabs on right
|
||||||
|
zen-action-add-to-essentials = Add to Essentials
|
||||||
|
zen-action-remove-from-essentials = Remove from Essentials
|
||||||
|
zen-action-find-in-page = Find in Page
|
||||||
|
zen-action-manage-extensions = Manage Extensions
|
||||||
|
zen-action-switch-to-automatic-appearance = Switch to Automatic Appearance
|
||||||
|
zen-action-switch-to-light-mode = Switch to Light Mode
|
||||||
|
zen-action-switch-to-dark-mode = Switch to Dark Mode
|
||||||
|
zen-action-print = Print
|
||||||
|
zen-action-focus-on = Focus on
|
||||||
|
zen-action-extension = Extension
|
||||||
@@ -18,13 +18,19 @@ tab-context-zen-add-essential-badge = { $num } / { $max } γεμισμένες
|
|||||||
tab-context-zen-remove-essential =
|
tab-context-zen-remove-essential =
|
||||||
.label = Αφαίρεση από Απαραίτητα
|
.label = Αφαίρεση από Απαραίτητα
|
||||||
.accesskey = R
|
.accesskey = R
|
||||||
tab-context-zen-replace-pinned-url-with-current =
|
tab-context-zen-edit-pinned-page =
|
||||||
.label =
|
.label =
|
||||||
{ $isEssential ->
|
{ $isEssential ->
|
||||||
[true] Αντικατάσταση Απαραίτητης διεύθυνσής με την τωρινή
|
[true] Edit Essential URL
|
||||||
*[false] Αντικατάσταση Καρφιτσωμένης διεύθυνσής με την τωρινή
|
*[false] Edit Pinned URL
|
||||||
}
|
}
|
||||||
|
.accesskey = P
|
||||||
|
tab-context-zen-replace-pinned-url-with-current =
|
||||||
|
.label = Replace with Current URL
|
||||||
.accesskey = C
|
.accesskey = C
|
||||||
|
tab-context-zen-edit-pinned-url =
|
||||||
|
.label = Edit…
|
||||||
|
.accesskey = E
|
||||||
tab-context-zen-edit-title =
|
tab-context-zen-edit-title =
|
||||||
.label = Αλλαγή Ετικέτας...
|
.label = Αλλαγή Ετικέτας...
|
||||||
tab-context-zen-edit-icon =
|
tab-context-zen-edit-icon =
|
||||||
@@ -47,6 +53,10 @@ zen-general-cancel-label =
|
|||||||
zen-general-confirm =
|
zen-general-confirm =
|
||||||
.label = Επιβεβαίωση
|
.label = Επιβεβαίωση
|
||||||
zen-pinned-tab-replaced = Το URL της καρφιτσωμένης καρτέλας έχει αντικατασταθεί από το τρέχον URL.
|
zen-pinned-tab-replaced = Το URL της καρφιτσωμένης καρτέλας έχει αντικατασταθεί από το τρέχον URL.
|
||||||
|
zen-pinned-tab-url-edited = Pinned tab URL has been updated!
|
||||||
|
zen-pinned-tab-url-invalid = That doesn't look like a valid URL.
|
||||||
|
zen-pinned-tab-edit-url-title = Edit Pinned URL
|
||||||
|
zen-pinned-tab-edit-url-label = Enter the URL this pinned tab should point to:
|
||||||
zen-tabs-renamed = Η καρτέλα μετονομάστηκε επιτυχώς!
|
zen-tabs-renamed = Η καρτέλα μετονομάστηκε επιτυχώς!
|
||||||
zen-background-tab-opened-toast = Άνοιξε νέα καρτέλα στο παρασκήνιο!
|
zen-background-tab-opened-toast = Άνοιξε νέα καρτέλα στο παρασκήνιο!
|
||||||
zen-workspace-renamed-toast = Ο χώρος εργασίας μετονομάστηκε επιτυχώς!
|
zen-workspace-renamed-toast = Ο χώρος εργασίας μετονομάστηκε επιτυχώς!
|
||||||
@@ -65,6 +75,8 @@ zen-icons-picker-emoji =
|
|||||||
.label = Εμότζι
|
.label = Εμότζι
|
||||||
zen-icons-picker-svg =
|
zen-icons-picker-svg =
|
||||||
.label = Εικονίδια
|
.label = Εικονίδια
|
||||||
|
zen-emojis-picker-search =
|
||||||
|
.placeholder = Search emojis
|
||||||
urlbar-search-mode-zen_actions = Ενέργειες
|
urlbar-search-mode-zen_actions = Ενέργειες
|
||||||
zen-site-data-settings = Ρυθμίσεις
|
zen-site-data-settings = Ρυθμίσεις
|
||||||
zen-generic-manage = Διαχείριση
|
zen-generic-manage = Διαχείριση
|
||||||
@@ -116,6 +128,9 @@ zen-sidebar-notification-updated-heading = Η Ενημέρωση Ολοκληρ
|
|||||||
zen-sidebar-notification-updated-label = Τι νέο υπάρχει στο { -brand-short-name }
|
zen-sidebar-notification-updated-label = Τι νέο υπάρχει στο { -brand-short-name }
|
||||||
zen-sidebar-notification-updated-tooltip =
|
zen-sidebar-notification-updated-tooltip =
|
||||||
.title = Προβολή Σημειώσεων Έκδοσης
|
.title = Προβολή Σημειώσεων Έκδοσης
|
||||||
|
zen-sidebar-notification-donate-label = Support { -brand-short-name }
|
||||||
|
zen-sidebar-notification-donate-tooltip =
|
||||||
|
.title = Donate to the project
|
||||||
zen-sidebar-notification-restart-safe-mode-label = Χάλασε κάτι;
|
zen-sidebar-notification-restart-safe-mode-label = Χάλασε κάτι;
|
||||||
zen-sidebar-notification-restart-safe-mode-tooltip =
|
zen-sidebar-notification-restart-safe-mode-tooltip =
|
||||||
.title = Επανεκκίνηση σε Ασφαλή Λειτουργία
|
.title = Επανεκκίνηση σε Ασφαλή Λειτουργία
|
||||||
|
|||||||
30
locales/el/browser/browser/zen-space-routing.ftl
Normal file
30
locales/el/browser/browser/zen-space-routing.ftl
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-space-routing-settings =
|
||||||
|
.label = Space Routing Settings
|
||||||
|
zen-space-routing-rulepanel-placeholder = Routes let you choose where specific sites open inside Zen. For example, you can route YouTube links to always open inside your Personal space.
|
||||||
|
zen-space-routing-dialog-title = Space Routing Settings
|
||||||
|
zen-space-routing-external-default = Default route for external links
|
||||||
|
zen-space-routing-new-route = New Route
|
||||||
|
zen-space-routing-open-in-space = Open in Space
|
||||||
|
zen-space-routing-most-recent-space = Most recent Space
|
||||||
|
zen-space-routing-close-button =
|
||||||
|
.aria-label = Close
|
||||||
|
.tooltiptext = Close
|
||||||
|
zen-space-routing-contains =
|
||||||
|
.label = Contains
|
||||||
|
zen-space-routing-equal-to =
|
||||||
|
.label = Is Equal To
|
||||||
|
zen-space-routing-regex =
|
||||||
|
.label = RegEx
|
||||||
|
zen-space-routing-open-in = Open In
|
||||||
|
zen-space-routing-url = URL
|
||||||
|
zen-space-routing-tab-routed-toast = New tab opened in { $targetWorkspace }
|
||||||
|
tab-context-zen-add-domain-to-sr =
|
||||||
|
.label =
|
||||||
|
{ $tabCount ->
|
||||||
|
[one] Add Route for Domain
|
||||||
|
*[other] Add Route for Domains
|
||||||
|
}
|
||||||
@@ -61,6 +61,7 @@ zen-workspace-creation-profile = Προφίλ
|
|||||||
.tooltiptext = Τα προφίλ χρησιμοποιούνται για να διαχωρίζουν τα cookies και τα δεδομένα του ιστότοπου μεταξύ των χώρων.
|
.tooltiptext = Τα προφίλ χρησιμοποιούνται για να διαχωρίζουν τα cookies και τα δεδομένα του ιστότοπου μεταξύ των χώρων.
|
||||||
zen-workspace-creation-header = Δημιουργία Χώρου
|
zen-workspace-creation-header = Δημιουργία Χώρου
|
||||||
zen-workspace-creation-label = Οι χώροι χρησιμοποιούνται για την οργάνωση των καρτελών και των συνεδριών σας.
|
zen-workspace-creation-label = Οι χώροι χρησιμοποιούνται για την οργάνωση των καρτελών και των συνεδριών σας.
|
||||||
|
zen-workspace-default-profile = Default
|
||||||
zen-workspaces-delete-workspace-title = Διαγραφή Χώρου Εργασίας;
|
zen-workspaces-delete-workspace-title = Διαγραφή Χώρου Εργασίας;
|
||||||
zen-workspaces-delete-workspace-body = Είστε σίγουροι ότι Θέλετε να διαγράψετε το { $name }; Αυτή η πράξη δεν μπορεί να αναιρεθεί.
|
zen-workspaces-delete-workspace-body = Είστε σίγουροι ότι Θέλετε να διαγράψετε το { $name }; Αυτή η πράξη δεν μπορεί να αναιρεθεί.
|
||||||
# Note that the html tag MUST not be changed or removed, as it is used to better
|
# Note that the html tag MUST not be changed or removed, as it is used to better
|
||||||
|
|||||||
@@ -38,6 +38,10 @@ zen-look-and-feel-compact-view-top-toolbar =
|
|||||||
.label = Hide the top toolbar as well in compact mode
|
.label = Hide the top toolbar as well in compact mode
|
||||||
zen-look-and-feel-compact-toolbar-flash-popup =
|
zen-look-and-feel-compact-toolbar-flash-popup =
|
||||||
.label = Briefly make the toolbar pop-up when switching or opening new tabs in compact mode
|
.label = Briefly make the toolbar pop-up when switching or opening new tabs in compact mode
|
||||||
|
zen-look-and-feel-window-drag-header = Window dragging
|
||||||
|
zen-look-and-feel-window-drag-description = Move the window by dragging empty space at the top of websites, just like the titlebar.
|
||||||
|
zen-window-drag-enabled =
|
||||||
|
.label = Allow dragging the window from web pages
|
||||||
pane-zen-tabs-title = Tab Management
|
pane-zen-tabs-title = Tab Management
|
||||||
category-zen-workspaces =
|
category-zen-workspaces =
|
||||||
.tooltiptext = { pane-zen-tabs-title }
|
.tooltiptext = { pane-zen-tabs-title }
|
||||||
@@ -244,7 +248,8 @@ zen-page-info-shortcut = View Page Info
|
|||||||
zen-find-shortcut = Find on Page
|
zen-find-shortcut = Find on Page
|
||||||
zen-search-find-again-shortcut = Find Again
|
zen-search-find-again-shortcut = Find Again
|
||||||
zen-search-find-again-shortcut-prev = Find Previous
|
zen-search-find-again-shortcut-prev = Find Previous
|
||||||
zen-search-find-again-shortcut-2 = Find Again (Alt)
|
zen-search-find-again-shortcut-alt = Find Again (Alt)
|
||||||
|
zen-search-find-again-shortcut-prev-alt = Find Previous (Alt)
|
||||||
zen-bookmark-this-page-shortcut = Bookmark This Page
|
zen-bookmark-this-page-shortcut = Bookmark This Page
|
||||||
zen-bookmark-show-library-shortcut = Show Bookmarks Library
|
zen-bookmark-show-library-shortcut = Show Bookmarks Library
|
||||||
zen-key-stop = Stop Loading
|
zen-key-stop = Stop Loading
|
||||||
|
|||||||
36
locales/en-GB/browser/browser/zen-command-palette.ftl
Normal file
36
locales/en-GB/browser/browser/zen-command-palette.ftl
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-action-toggle-compact-mode = Toggle Compact Mode
|
||||||
|
zen-action-open-theme-picker = Open Theme Picker
|
||||||
|
zen-action-new-split-view = New Split View
|
||||||
|
zen-action-new-folder = New Folder
|
||||||
|
zen-action-copy-current-url = Copy Current URL
|
||||||
|
zen-action-settings = Settings
|
||||||
|
zen-action-open-private-window = Open Private Window
|
||||||
|
zen-action-open-new-window = Open New Window
|
||||||
|
zen-action-new-blank-window = New Blank Window
|
||||||
|
zen-action-pin-tab = Pin Tab
|
||||||
|
zen-action-unpin-tab = Unpin Tab
|
||||||
|
zen-action-open-space-routing = Open Space Routing
|
||||||
|
zen-action-new-boost = New Boost
|
||||||
|
zen-action-next-space = Next Space
|
||||||
|
zen-action-previous-space = Previous Space
|
||||||
|
zen-action-close-tab = Close Tab
|
||||||
|
zen-action-reload-tab = Reload Tab
|
||||||
|
zen-action-reload-tab-without-cache = Reload Tab Without Cache
|
||||||
|
zen-action-next-tab = Next Tab
|
||||||
|
zen-action-previous-tab = Previous Tab
|
||||||
|
zen-action-capture-screenshot = Capture Screenshot
|
||||||
|
zen-action-toggle-tabs-on-right = Toggle Tabs on right
|
||||||
|
zen-action-add-to-essentials = Add to Essentials
|
||||||
|
zen-action-remove-from-essentials = Remove from Essentials
|
||||||
|
zen-action-find-in-page = Find in Page
|
||||||
|
zen-action-manage-extensions = Manage Extensions
|
||||||
|
zen-action-switch-to-automatic-appearance = Switch to Automatic Appearance
|
||||||
|
zen-action-switch-to-light-mode = Switch to Light Mode
|
||||||
|
zen-action-switch-to-dark-mode = Switch to Dark Mode
|
||||||
|
zen-action-print = Print
|
||||||
|
zen-action-focus-on = Focus on
|
||||||
|
zen-action-extension = Extension
|
||||||
@@ -18,13 +18,19 @@ tab-context-zen-add-essential-badge = { $num } / { $max } slots filled
|
|||||||
tab-context-zen-remove-essential =
|
tab-context-zen-remove-essential =
|
||||||
.label = Remove from Essentials
|
.label = Remove from Essentials
|
||||||
.accesskey = R
|
.accesskey = R
|
||||||
tab-context-zen-replace-pinned-url-with-current =
|
tab-context-zen-edit-pinned-page =
|
||||||
.label =
|
.label =
|
||||||
{ $isEssential ->
|
{ $isEssential ->
|
||||||
[true] Replace Essential URL with Current
|
[true] Edit Essential URL
|
||||||
*[false] Replace Pinned URL with Current
|
*[false] Edit Pinned URL
|
||||||
}
|
}
|
||||||
|
.accesskey = P
|
||||||
|
tab-context-zen-replace-pinned-url-with-current =
|
||||||
|
.label = Replace with Current URL
|
||||||
.accesskey = C
|
.accesskey = C
|
||||||
|
tab-context-zen-edit-pinned-url =
|
||||||
|
.label = Edit…
|
||||||
|
.accesskey = E
|
||||||
tab-context-zen-edit-title =
|
tab-context-zen-edit-title =
|
||||||
.label = Change Label...
|
.label = Change Label...
|
||||||
tab-context-zen-edit-icon =
|
tab-context-zen-edit-icon =
|
||||||
@@ -45,6 +51,10 @@ zen-general-cancel-label =
|
|||||||
zen-general-confirm =
|
zen-general-confirm =
|
||||||
.label = Confirm
|
.label = Confirm
|
||||||
zen-pinned-tab-replaced = Pinned tab URL has been replaced with the current URL.
|
zen-pinned-tab-replaced = Pinned tab URL has been replaced with the current URL.
|
||||||
|
zen-pinned-tab-url-edited = Pinned tab URL has been updated!
|
||||||
|
zen-pinned-tab-url-invalid = That doesn't look like a valid URL.
|
||||||
|
zen-pinned-tab-edit-url-title = Edit Pinned URL
|
||||||
|
zen-pinned-tab-edit-url-label = Enter the URL this pinned tab should point to:
|
||||||
zen-tabs-renamed = Tab has been successfully renamed!
|
zen-tabs-renamed = Tab has been successfully renamed!
|
||||||
zen-background-tab-opened-toast = New background tab opened!
|
zen-background-tab-opened-toast = New background tab opened!
|
||||||
zen-workspace-renamed-toast = Workspace has been successfully renamed!
|
zen-workspace-renamed-toast = Workspace has been successfully renamed!
|
||||||
@@ -63,6 +73,8 @@ zen-icons-picker-emoji =
|
|||||||
.label = Emojis
|
.label = Emojis
|
||||||
zen-icons-picker-svg =
|
zen-icons-picker-svg =
|
||||||
.label = Icons
|
.label = Icons
|
||||||
|
zen-emojis-picker-search =
|
||||||
|
.placeholder = Search emojis
|
||||||
urlbar-search-mode-zen_actions = Actions
|
urlbar-search-mode-zen_actions = Actions
|
||||||
zen-site-data-settings = Settings
|
zen-site-data-settings = Settings
|
||||||
zen-generic-manage = Manage
|
zen-generic-manage = Manage
|
||||||
@@ -114,6 +126,9 @@ zen-sidebar-notification-updated-heading = Update Complete!
|
|||||||
zen-sidebar-notification-updated-label = What's new in { -brand-short-name }
|
zen-sidebar-notification-updated-label = What's new in { -brand-short-name }
|
||||||
zen-sidebar-notification-updated-tooltip =
|
zen-sidebar-notification-updated-tooltip =
|
||||||
.title = View Release Notes
|
.title = View Release Notes
|
||||||
|
zen-sidebar-notification-donate-label = Support { -brand-short-name }
|
||||||
|
zen-sidebar-notification-donate-tooltip =
|
||||||
|
.title = Donate to the project
|
||||||
zen-sidebar-notification-restart-safe-mode-label = Something broke?
|
zen-sidebar-notification-restart-safe-mode-label = Something broke?
|
||||||
zen-sidebar-notification-restart-safe-mode-tooltip =
|
zen-sidebar-notification-restart-safe-mode-tooltip =
|
||||||
.title = Restart in Safe Mode
|
.title = Restart in Safe Mode
|
||||||
|
|||||||
30
locales/en-GB/browser/browser/zen-space-routing.ftl
Normal file
30
locales/en-GB/browser/browser/zen-space-routing.ftl
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-space-routing-settings =
|
||||||
|
.label = Space Routing Settings
|
||||||
|
zen-space-routing-rulepanel-placeholder = Routes let you choose where specific sites open inside Zen. For example, you can route YouTube links to always open inside your Personal space.
|
||||||
|
zen-space-routing-dialog-title = Space Routing Settings
|
||||||
|
zen-space-routing-external-default = Default route for external links
|
||||||
|
zen-space-routing-new-route = New Route
|
||||||
|
zen-space-routing-open-in-space = Open in Space
|
||||||
|
zen-space-routing-most-recent-space = Most recent Space
|
||||||
|
zen-space-routing-close-button =
|
||||||
|
.aria-label = Close
|
||||||
|
.tooltiptext = Close
|
||||||
|
zen-space-routing-contains =
|
||||||
|
.label = Contains
|
||||||
|
zen-space-routing-equal-to =
|
||||||
|
.label = Is Equal To
|
||||||
|
zen-space-routing-regex =
|
||||||
|
.label = RegEx
|
||||||
|
zen-space-routing-open-in = Open In
|
||||||
|
zen-space-routing-url = URL
|
||||||
|
zen-space-routing-tab-routed-toast = New tab opened in { $targetWorkspace }
|
||||||
|
tab-context-zen-add-domain-to-sr =
|
||||||
|
.label =
|
||||||
|
{ $tabCount ->
|
||||||
|
[one] Add Route for Domain
|
||||||
|
*[other] Add Route for Domains
|
||||||
|
}
|
||||||
@@ -61,6 +61,7 @@ zen-workspace-creation-profile = Profile
|
|||||||
.tooltiptext = Profiles are used to separate cookies and site data between spaces.
|
.tooltiptext = Profiles are used to separate cookies and site data between spaces.
|
||||||
zen-workspace-creation-header = Create a Space
|
zen-workspace-creation-header = Create a Space
|
||||||
zen-workspace-creation-label = Spaces are used to organise your tabs and sessions.
|
zen-workspace-creation-label = Spaces are used to organise your tabs and sessions.
|
||||||
|
zen-workspace-default-profile = Default
|
||||||
zen-workspaces-delete-workspace-title = Delete Workspace?
|
zen-workspaces-delete-workspace-title = Delete Workspace?
|
||||||
zen-workspaces-delete-workspace-body = Are you sure you want to delete { $name }? This action cannot be undone.
|
zen-workspaces-delete-workspace-body = Are you sure you want to delete { $name }? This action cannot be undone.
|
||||||
# Note that the html tag MUST not be changed or removed, as it is used to better
|
# Note that the html tag MUST not be changed or removed, as it is used to better
|
||||||
|
|||||||
@@ -48,6 +48,11 @@ zen-look-and-feel-compact-view-top-toolbar =
|
|||||||
zen-look-and-feel-compact-toolbar-flash-popup =
|
zen-look-and-feel-compact-toolbar-flash-popup =
|
||||||
.label = Briefly make the toolbar popup when switching or opening new tabs in compact mode
|
.label = Briefly make the toolbar popup when switching or opening new tabs in compact mode
|
||||||
|
|
||||||
|
zen-look-and-feel-window-drag-header = Window dragging
|
||||||
|
zen-look-and-feel-window-drag-description = Move the window by dragging empty space at the top of websites, just like the titlebar.
|
||||||
|
zen-window-drag-enabled =
|
||||||
|
.label = Allow dragging the window from web pages
|
||||||
|
|
||||||
pane-zen-tabs-title = Tab Management
|
pane-zen-tabs-title = Tab Management
|
||||||
category-zen-workspaces =
|
category-zen-workspaces =
|
||||||
.tooltiptext = { pane-zen-tabs-title }
|
.tooltiptext = { pane-zen-tabs-title }
|
||||||
|
|||||||
@@ -164,5 +164,5 @@ zen-window-sync-migration-dialog-learn-more = Learn More
|
|||||||
zen-window-sync-migration-dialog-accept = Got It
|
zen-window-sync-migration-dialog-accept = Got It
|
||||||
|
|
||||||
zen-appmenu-new-blank-window =
|
zen-appmenu-new-blank-window =
|
||||||
.label = New blank window
|
.label = New Blank Window
|
||||||
|
|
||||||
|
|||||||
@@ -5,14 +5,14 @@
|
|||||||
tab-zen-split-tabs =
|
tab-zen-split-tabs =
|
||||||
.label =
|
.label =
|
||||||
{ $tabCount ->
|
{ $tabCount ->
|
||||||
[-1] Split out tab
|
[-1] Split Out Tab
|
||||||
[1] Add split view...
|
[1] Add Split View...
|
||||||
*[other] Join { $tabCount } Tabs
|
*[other] Join { $tabCount } Tabs
|
||||||
}
|
}
|
||||||
.accesskey = S
|
.accesskey = S
|
||||||
|
|
||||||
zen-split-link =
|
zen-split-link =
|
||||||
.label = Split link to new tab
|
.label = Split Link to New Tab
|
||||||
.accesskey = S
|
.accesskey = S
|
||||||
|
|
||||||
zen-split-view-modifier-header = Split View
|
zen-split-view-modifier-header = Split View
|
||||||
|
|||||||
@@ -86,6 +86,8 @@ zen-workspace-default-profile = Default
|
|||||||
|
|
||||||
zen-workspaces-delete-workspace-title = Delete Space?
|
zen-workspaces-delete-workspace-title = Delete Space?
|
||||||
zen-workspaces-delete-workspace-body = Are you sure you want to delete { $name }? This action cannot be undone.
|
zen-workspaces-delete-workspace-body = Are you sure you want to delete { $name }? This action cannot be undone.
|
||||||
|
zen-workspaces-remote-delete-title = Delete Synced Space?
|
||||||
|
zen-workspaces-remote-delete-body = { $name } was deleted on another device. Delete it here too? Keeping it will restore it on your other devices.
|
||||||
|
|
||||||
# Note that the html tag MUST not be changed or removed, as it is used to better
|
# Note that the html tag MUST not be changed or removed, as it is used to better
|
||||||
# display the shortcut in the toast notification.
|
# display the shortcut in the toast notification.
|
||||||
|
|||||||
@@ -38,6 +38,10 @@ zen-look-and-feel-compact-view-top-toolbar =
|
|||||||
.label = Ocultar también la barra de herramientas superior en el modo compacto
|
.label = Ocultar también la barra de herramientas superior en el modo compacto
|
||||||
zen-look-and-feel-compact-toolbar-flash-popup =
|
zen-look-and-feel-compact-toolbar-flash-popup =
|
||||||
.label = Hacer emerger brevemente la barra de herramientas al cambiar o abrir nuevas pestañas en el modo compacto
|
.label = Hacer emerger brevemente la barra de herramientas al cambiar o abrir nuevas pestañas en el modo compacto
|
||||||
|
zen-look-and-feel-window-drag-header = Arrastrar ventana
|
||||||
|
zen-look-and-feel-window-drag-description = Mueva la ventana arrastrando espacio vacío en la parte superior de los sitios web, al igual que la barra de título.
|
||||||
|
zen-window-drag-enabled =
|
||||||
|
.label = Permitir arrastrar la ventana desde páginas web
|
||||||
pane-zen-tabs-title = Administración de pestañas
|
pane-zen-tabs-title = Administración de pestañas
|
||||||
category-zen-workspaces =
|
category-zen-workspaces =
|
||||||
.tooltiptext = { pane-zen-tabs-title }
|
.tooltiptext = { pane-zen-tabs-title }
|
||||||
@@ -244,7 +248,8 @@ zen-page-info-shortcut = Ver información de la página
|
|||||||
zen-find-shortcut = Encontrar en la página
|
zen-find-shortcut = Encontrar en la página
|
||||||
zen-search-find-again-shortcut = Encontrar de nuevo
|
zen-search-find-again-shortcut = Encontrar de nuevo
|
||||||
zen-search-find-again-shortcut-prev = Encontrar anterior
|
zen-search-find-again-shortcut-prev = Encontrar anterior
|
||||||
zen-search-find-again-shortcut-2 = Encontrar de nuevo (Alt)
|
zen-search-find-again-shortcut-alt = Encontrar de nuevo (Alt)
|
||||||
|
zen-search-find-again-shortcut-prev-alt = Encontrar anterior (Alt)
|
||||||
zen-bookmark-this-page-shortcut = Añadir página a marcadores
|
zen-bookmark-this-page-shortcut = Añadir página a marcadores
|
||||||
zen-bookmark-show-library-shortcut = Mostrar catálogo de marcadores
|
zen-bookmark-show-library-shortcut = Mostrar catálogo de marcadores
|
||||||
zen-key-stop = Detener carga
|
zen-key-stop = Detener carga
|
||||||
|
|||||||
36
locales/es-ES/browser/browser/zen-command-palette.ftl
Normal file
36
locales/es-ES/browser/browser/zen-command-palette.ftl
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-action-toggle-compact-mode = Alternar modo compacto
|
||||||
|
zen-action-open-theme-picker = Abrir selector de temas
|
||||||
|
zen-action-new-split-view = Nueva vista dividida
|
||||||
|
zen-action-new-folder = Nueva carpeta
|
||||||
|
zen-action-copy-current-url = Copiar URL actual
|
||||||
|
zen-action-settings = Ajustes
|
||||||
|
zen-action-open-private-window = Abrir ventana privada
|
||||||
|
zen-action-open-new-window = Abrir nueva ventana
|
||||||
|
zen-action-new-blank-window = Nueva ventana en blanco
|
||||||
|
zen-action-pin-tab = Fijar pestaña
|
||||||
|
zen-action-unpin-tab = Desfijar pestaña
|
||||||
|
zen-action-open-space-routing = Abrir enrutamiento del espacio
|
||||||
|
zen-action-new-boost = Nuevo Boost
|
||||||
|
zen-action-next-space = Espacio siguiente
|
||||||
|
zen-action-previous-space = Espacio anterior
|
||||||
|
zen-action-close-tab = Cerrar pestaña
|
||||||
|
zen-action-reload-tab = Recargar pestaña
|
||||||
|
zen-action-reload-tab-without-cache = Recargar pestaña sin caché
|
||||||
|
zen-action-next-tab = Pestaña siguiente
|
||||||
|
zen-action-previous-tab = Pestaña anterior
|
||||||
|
zen-action-capture-screenshot = Tomar captura de pantalla
|
||||||
|
zen-action-toggle-tabs-on-right = Alternar pestañas a la derecha
|
||||||
|
zen-action-add-to-essentials = Añadir a esenciales
|
||||||
|
zen-action-remove-from-essentials = Quitar de esenciales
|
||||||
|
zen-action-find-in-page = Encontrar en la página
|
||||||
|
zen-action-manage-extensions = Administrar extensiones
|
||||||
|
zen-action-switch-to-automatic-appearance = Cambiar a apariencia automática
|
||||||
|
zen-action-switch-to-light-mode = Cambiar al modo claro
|
||||||
|
zen-action-switch-to-dark-mode = Cambiar al modo oscuro
|
||||||
|
zen-action-print = Imprimir
|
||||||
|
zen-action-focus-on = Centrarse en
|
||||||
|
zen-action-extension = Extensión
|
||||||
@@ -18,13 +18,19 @@ tab-context-zen-add-essential-badge = { $num } / { $max } huecos llenos
|
|||||||
tab-context-zen-remove-essential =
|
tab-context-zen-remove-essential =
|
||||||
.label = Quitar de esenciales
|
.label = Quitar de esenciales
|
||||||
.accesskey = R
|
.accesskey = R
|
||||||
tab-context-zen-replace-pinned-url-with-current =
|
tab-context-zen-edit-pinned-page =
|
||||||
.label =
|
.label =
|
||||||
{ $isEssential ->
|
{ $isEssential ->
|
||||||
[true] Reemplazar URL esencial con la actual
|
[true] Editar URL esencial
|
||||||
*[false] Reemplazar URL fijada con la actual
|
*[false] Editar URL fijada
|
||||||
}
|
}
|
||||||
|
.accesskey = P
|
||||||
|
tab-context-zen-replace-pinned-url-with-current =
|
||||||
|
.label = Reemplazar con la URL actual
|
||||||
.accesskey = C
|
.accesskey = C
|
||||||
|
tab-context-zen-edit-pinned-url =
|
||||||
|
.label = Editar…
|
||||||
|
.accesskey = E
|
||||||
tab-context-zen-edit-title =
|
tab-context-zen-edit-title =
|
||||||
.label = Cambiar etiqueta...
|
.label = Cambiar etiqueta...
|
||||||
tab-context-zen-edit-icon =
|
tab-context-zen-edit-icon =
|
||||||
@@ -47,6 +53,10 @@ zen-general-cancel-label =
|
|||||||
zen-general-confirm =
|
zen-general-confirm =
|
||||||
.label = Confirmar
|
.label = Confirmar
|
||||||
zen-pinned-tab-replaced = La URL de la pestaña fijada se ha reemplazado por la URL actual.
|
zen-pinned-tab-replaced = La URL de la pestaña fijada se ha reemplazado por la URL actual.
|
||||||
|
zen-pinned-tab-url-edited = ¡La URL de la pestaña fijada ha sido actualizada!
|
||||||
|
zen-pinned-tab-url-invalid = Eso no parece una URL válida.
|
||||||
|
zen-pinned-tab-edit-url-title = Editar URL fijada
|
||||||
|
zen-pinned-tab-edit-url-label = Introduzca la URL a la que debe apuntar esta pestaña fijada:
|
||||||
zen-tabs-renamed = ¡La pestaña se ha renombrado con éxito!
|
zen-tabs-renamed = ¡La pestaña se ha renombrado con éxito!
|
||||||
zen-background-tab-opened-toast = ¡Nueva pestaña abierta en segundo plano!
|
zen-background-tab-opened-toast = ¡Nueva pestaña abierta en segundo plano!
|
||||||
zen-workspace-renamed-toast = ¡El espacio de trabajo ha sido renombrado con éxito!
|
zen-workspace-renamed-toast = ¡El espacio de trabajo ha sido renombrado con éxito!
|
||||||
@@ -65,6 +75,8 @@ zen-icons-picker-emoji =
|
|||||||
.label = Emojis
|
.label = Emojis
|
||||||
zen-icons-picker-svg =
|
zen-icons-picker-svg =
|
||||||
.label = Iconos
|
.label = Iconos
|
||||||
|
zen-emojis-picker-search =
|
||||||
|
.placeholder = Buscar emojis
|
||||||
urlbar-search-mode-zen_actions = Acciones
|
urlbar-search-mode-zen_actions = Acciones
|
||||||
zen-site-data-settings = Ajustes
|
zen-site-data-settings = Ajustes
|
||||||
zen-generic-manage = Administrar
|
zen-generic-manage = Administrar
|
||||||
@@ -116,6 +128,9 @@ zen-sidebar-notification-updated-heading = ¡Actualización completada!
|
|||||||
zen-sidebar-notification-updated-label = Novedades en { -brand-short-name }
|
zen-sidebar-notification-updated-label = Novedades en { -brand-short-name }
|
||||||
zen-sidebar-notification-updated-tooltip =
|
zen-sidebar-notification-updated-tooltip =
|
||||||
.title = Ver notas de la versión
|
.title = Ver notas de la versión
|
||||||
|
zen-sidebar-notification-donate-label = Soporte { -brand-short-name }
|
||||||
|
zen-sidebar-notification-donate-tooltip =
|
||||||
|
.title = Donar al proyecto
|
||||||
zen-sidebar-notification-restart-safe-mode-label = ¿Algo dejó de funcionar?
|
zen-sidebar-notification-restart-safe-mode-label = ¿Algo dejó de funcionar?
|
||||||
zen-sidebar-notification-restart-safe-mode-tooltip =
|
zen-sidebar-notification-restart-safe-mode-tooltip =
|
||||||
.title = Reiniciar en modo seguro
|
.title = Reiniciar en modo seguro
|
||||||
|
|||||||
30
locales/es-ES/browser/browser/zen-space-routing.ftl
Normal file
30
locales/es-ES/browser/browser/zen-space-routing.ftl
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-space-routing-settings =
|
||||||
|
.label = Ajustes del enrutamiento del espacio
|
||||||
|
zen-space-routing-rulepanel-placeholder = Las rutas le permiten elegir donde se abren sitios web específicos dentro de Zen. Por ejemplo, puede enrutar los enlaces de YouTube para que siempre se abran dentro de su espacio personal.
|
||||||
|
zen-space-routing-dialog-title = Ajustes del enrutamiento del espacio
|
||||||
|
zen-space-routing-external-default = Ruta por defecto para los enlaces externos
|
||||||
|
zen-space-routing-new-route = Nueva ruta
|
||||||
|
zen-space-routing-open-in-space = Abrir en espacio
|
||||||
|
zen-space-routing-most-recent-space = Espacio más reciente
|
||||||
|
zen-space-routing-close-button =
|
||||||
|
.aria-label = Cerrar
|
||||||
|
.tooltiptext = Cerrar
|
||||||
|
zen-space-routing-contains =
|
||||||
|
.label = Contiene
|
||||||
|
zen-space-routing-equal-to =
|
||||||
|
.label = Es igual a
|
||||||
|
zen-space-routing-regex =
|
||||||
|
.label = RegEx
|
||||||
|
zen-space-routing-open-in = Abrir en
|
||||||
|
zen-space-routing-url = URL
|
||||||
|
zen-space-routing-tab-routed-toast = Nueva pestaña abierta en { $targetWorkspace }
|
||||||
|
tab-context-zen-add-domain-to-sr =
|
||||||
|
.label =
|
||||||
|
{ $tabCount ->
|
||||||
|
[one] Añadir ruta para el dominio
|
||||||
|
*[other] Añadir ruta para los dominios
|
||||||
|
}
|
||||||
@@ -61,6 +61,7 @@ zen-workspace-creation-profile = Perfil
|
|||||||
.tooltiptext = Los perfiles se utilizan para separar las cookies y los datos de sitios entre espacios.
|
.tooltiptext = Los perfiles se utilizan para separar las cookies y los datos de sitios entre espacios.
|
||||||
zen-workspace-creation-header = Crear un espacio
|
zen-workspace-creation-header = Crear un espacio
|
||||||
zen-workspace-creation-label = Los espacios se utilizan para organizar sus pestañas y sesiones.
|
zen-workspace-creation-label = Los espacios se utilizan para organizar sus pestañas y sesiones.
|
||||||
|
zen-workspace-default-profile = Predeterminado
|
||||||
zen-workspaces-delete-workspace-title = ¿Eliminar espacio de trabajo?
|
zen-workspaces-delete-workspace-title = ¿Eliminar espacio de trabajo?
|
||||||
zen-workspaces-delete-workspace-body = ¿Seguro que quiere eliminar { $name }? Esta acción no se puede deshacer.
|
zen-workspaces-delete-workspace-body = ¿Seguro que quiere eliminar { $name }? Esta acción no se puede deshacer.
|
||||||
# Note that the html tag MUST not be changed or removed, as it is used to better
|
# Note that the html tag MUST not be changed or removed, as it is used to better
|
||||||
|
|||||||
@@ -38,6 +38,10 @@ zen-look-and-feel-compact-view-top-toolbar =
|
|||||||
.label = Peida ka ülemine tööriistariba kompaktses vaates
|
.label = Peida ka ülemine tööriistariba kompaktses vaates
|
||||||
zen-look-and-feel-compact-toolbar-flash-popup =
|
zen-look-and-feel-compact-toolbar-flash-popup =
|
||||||
.label = Lühidalt kuva tööriistariba hüpikut kui lülitutakse kaartide vahel või avatakse uus kaart kompaktses režiimis
|
.label = Lühidalt kuva tööriistariba hüpikut kui lülitutakse kaartide vahel või avatakse uus kaart kompaktses režiimis
|
||||||
|
zen-look-and-feel-window-drag-header = Window dragging
|
||||||
|
zen-look-and-feel-window-drag-description = Move the window by dragging empty space at the top of websites, just like the titlebar.
|
||||||
|
zen-window-drag-enabled =
|
||||||
|
.label = Allow dragging the window from web pages
|
||||||
pane-zen-tabs-title = Kaartide haldamine
|
pane-zen-tabs-title = Kaartide haldamine
|
||||||
category-zen-workspaces =
|
category-zen-workspaces =
|
||||||
.tooltiptext = { pane-zen-tabs-title }
|
.tooltiptext = { pane-zen-tabs-title }
|
||||||
@@ -244,7 +248,8 @@ zen-page-info-shortcut = Vaata veebilehe infot
|
|||||||
zen-find-shortcut = Otsi lehelt
|
zen-find-shortcut = Otsi lehelt
|
||||||
zen-search-find-again-shortcut = Otsi järgmist
|
zen-search-find-again-shortcut = Otsi järgmist
|
||||||
zen-search-find-again-shortcut-prev = Otsi eelmist
|
zen-search-find-again-shortcut-prev = Otsi eelmist
|
||||||
zen-search-find-again-shortcut-2 = Otsi järgmist (alternatiivne)
|
zen-search-find-again-shortcut-alt = Find Again (Alt)
|
||||||
|
zen-search-find-again-shortcut-prev-alt = Find Previous (Alt)
|
||||||
zen-bookmark-this-page-shortcut = Lisa järjehoidjatesse
|
zen-bookmark-this-page-shortcut = Lisa järjehoidjatesse
|
||||||
zen-bookmark-show-library-shortcut = Näita järjehoidjaid
|
zen-bookmark-show-library-shortcut = Näita järjehoidjaid
|
||||||
zen-key-stop = Peata laadimine
|
zen-key-stop = Peata laadimine
|
||||||
|
|||||||
36
locales/et/browser/browser/zen-command-palette.ftl
Normal file
36
locales/et/browser/browser/zen-command-palette.ftl
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-action-toggle-compact-mode = Toggle Compact Mode
|
||||||
|
zen-action-open-theme-picker = Open Theme Picker
|
||||||
|
zen-action-new-split-view = New Split View
|
||||||
|
zen-action-new-folder = New Folder
|
||||||
|
zen-action-copy-current-url = Copy Current URL
|
||||||
|
zen-action-settings = Settings
|
||||||
|
zen-action-open-private-window = Open Private Window
|
||||||
|
zen-action-open-new-window = Open New Window
|
||||||
|
zen-action-new-blank-window = New Blank Window
|
||||||
|
zen-action-pin-tab = Pin Tab
|
||||||
|
zen-action-unpin-tab = Unpin Tab
|
||||||
|
zen-action-open-space-routing = Open Space Routing
|
||||||
|
zen-action-new-boost = New Boost
|
||||||
|
zen-action-next-space = Next Space
|
||||||
|
zen-action-previous-space = Previous Space
|
||||||
|
zen-action-close-tab = Close Tab
|
||||||
|
zen-action-reload-tab = Reload Tab
|
||||||
|
zen-action-reload-tab-without-cache = Reload Tab Without Cache
|
||||||
|
zen-action-next-tab = Next Tab
|
||||||
|
zen-action-previous-tab = Previous Tab
|
||||||
|
zen-action-capture-screenshot = Capture Screenshot
|
||||||
|
zen-action-toggle-tabs-on-right = Toggle Tabs on right
|
||||||
|
zen-action-add-to-essentials = Add to Essentials
|
||||||
|
zen-action-remove-from-essentials = Remove from Essentials
|
||||||
|
zen-action-find-in-page = Find in Page
|
||||||
|
zen-action-manage-extensions = Manage Extensions
|
||||||
|
zen-action-switch-to-automatic-appearance = Switch to Automatic Appearance
|
||||||
|
zen-action-switch-to-light-mode = Switch to Light Mode
|
||||||
|
zen-action-switch-to-dark-mode = Switch to Dark Mode
|
||||||
|
zen-action-print = Print
|
||||||
|
zen-action-focus-on = Focus on
|
||||||
|
zen-action-extension = Extension
|
||||||
@@ -18,13 +18,19 @@ tab-context-zen-add-essential-badge = { $num } / { $max } slots filled
|
|||||||
tab-context-zen-remove-essential =
|
tab-context-zen-remove-essential =
|
||||||
.label = Eemalda olulistest
|
.label = Eemalda olulistest
|
||||||
.accesskey = o
|
.accesskey = o
|
||||||
tab-context-zen-replace-pinned-url-with-current =
|
tab-context-zen-edit-pinned-page =
|
||||||
.label =
|
.label =
|
||||||
{ $isEssential ->
|
{ $isEssential ->
|
||||||
[true] Replace Essential URL with Current
|
[true] Edit Essential URL
|
||||||
*[false] Replace Pinned URL with Current
|
*[false] Edit Pinned URL
|
||||||
}
|
}
|
||||||
|
.accesskey = P
|
||||||
|
tab-context-zen-replace-pinned-url-with-current =
|
||||||
|
.label = Replace with Current URL
|
||||||
.accesskey = p
|
.accesskey = p
|
||||||
|
tab-context-zen-edit-pinned-url =
|
||||||
|
.label = Edit…
|
||||||
|
.accesskey = E
|
||||||
tab-context-zen-edit-title =
|
tab-context-zen-edit-title =
|
||||||
.label = Change Label...
|
.label = Change Label...
|
||||||
tab-context-zen-edit-icon =
|
tab-context-zen-edit-icon =
|
||||||
@@ -47,6 +53,10 @@ zen-general-cancel-label =
|
|||||||
zen-general-confirm =
|
zen-general-confirm =
|
||||||
.label = Kinnita
|
.label = Kinnita
|
||||||
zen-pinned-tab-replaced = Pinned tab URL has been replaced with the current URL.
|
zen-pinned-tab-replaced = Pinned tab URL has been replaced with the current URL.
|
||||||
|
zen-pinned-tab-url-edited = Pinned tab URL has been updated!
|
||||||
|
zen-pinned-tab-url-invalid = That doesn't look like a valid URL.
|
||||||
|
zen-pinned-tab-edit-url-title = Edit Pinned URL
|
||||||
|
zen-pinned-tab-edit-url-label = Enter the URL this pinned tab should point to:
|
||||||
zen-tabs-renamed = Kaart on edukalt ümber nimetatud!
|
zen-tabs-renamed = Kaart on edukalt ümber nimetatud!
|
||||||
zen-background-tab-opened-toast = Taustal avati uus kaart!
|
zen-background-tab-opened-toast = Taustal avati uus kaart!
|
||||||
zen-workspace-renamed-toast = Tööruum on edukalt ümber nimetatud!
|
zen-workspace-renamed-toast = Tööruum on edukalt ümber nimetatud!
|
||||||
@@ -65,6 +75,8 @@ zen-icons-picker-emoji =
|
|||||||
.label = Emojid
|
.label = Emojid
|
||||||
zen-icons-picker-svg =
|
zen-icons-picker-svg =
|
||||||
.label = Ikoonid
|
.label = Ikoonid
|
||||||
|
zen-emojis-picker-search =
|
||||||
|
.placeholder = Search emojis
|
||||||
urlbar-search-mode-zen_actions = Tegevused
|
urlbar-search-mode-zen_actions = Tegevused
|
||||||
zen-site-data-settings = Sätted
|
zen-site-data-settings = Sätted
|
||||||
zen-generic-manage = Halda
|
zen-generic-manage = Halda
|
||||||
@@ -116,6 +128,9 @@ zen-sidebar-notification-updated-heading = Update Complete!
|
|||||||
zen-sidebar-notification-updated-label = What's new in { -brand-short-name }
|
zen-sidebar-notification-updated-label = What's new in { -brand-short-name }
|
||||||
zen-sidebar-notification-updated-tooltip =
|
zen-sidebar-notification-updated-tooltip =
|
||||||
.title = View Release Notes
|
.title = View Release Notes
|
||||||
|
zen-sidebar-notification-donate-label = Support { -brand-short-name }
|
||||||
|
zen-sidebar-notification-donate-tooltip =
|
||||||
|
.title = Donate to the project
|
||||||
zen-sidebar-notification-restart-safe-mode-label = Something broke?
|
zen-sidebar-notification-restart-safe-mode-label = Something broke?
|
||||||
zen-sidebar-notification-restart-safe-mode-tooltip =
|
zen-sidebar-notification-restart-safe-mode-tooltip =
|
||||||
.title = Restart in Safe Mode
|
.title = Restart in Safe Mode
|
||||||
|
|||||||
30
locales/et/browser/browser/zen-space-routing.ftl
Normal file
30
locales/et/browser/browser/zen-space-routing.ftl
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-space-routing-settings =
|
||||||
|
.label = Space Routing Settings
|
||||||
|
zen-space-routing-rulepanel-placeholder = Routes let you choose where specific sites open inside Zen. For example, you can route YouTube links to always open inside your Personal space.
|
||||||
|
zen-space-routing-dialog-title = Space Routing Settings
|
||||||
|
zen-space-routing-external-default = Default route for external links
|
||||||
|
zen-space-routing-new-route = New Route
|
||||||
|
zen-space-routing-open-in-space = Open in Space
|
||||||
|
zen-space-routing-most-recent-space = Most recent Space
|
||||||
|
zen-space-routing-close-button =
|
||||||
|
.aria-label = Close
|
||||||
|
.tooltiptext = Close
|
||||||
|
zen-space-routing-contains =
|
||||||
|
.label = Contains
|
||||||
|
zen-space-routing-equal-to =
|
||||||
|
.label = Is Equal To
|
||||||
|
zen-space-routing-regex =
|
||||||
|
.label = RegEx
|
||||||
|
zen-space-routing-open-in = Open In
|
||||||
|
zen-space-routing-url = URL
|
||||||
|
zen-space-routing-tab-routed-toast = New tab opened in { $targetWorkspace }
|
||||||
|
tab-context-zen-add-domain-to-sr =
|
||||||
|
.label =
|
||||||
|
{ $tabCount ->
|
||||||
|
[one] Add Route for Domain
|
||||||
|
*[other] Add Route for Domains
|
||||||
|
}
|
||||||
@@ -61,6 +61,7 @@ zen-workspace-creation-profile = Profiil
|
|||||||
.tooltiptext = Profiile kasutatakse küpsiste ning saidi andmete eraldamiseks tööruumide vahel.
|
.tooltiptext = Profiile kasutatakse küpsiste ning saidi andmete eraldamiseks tööruumide vahel.
|
||||||
zen-workspace-creation-header = Loo uus tööruum
|
zen-workspace-creation-header = Loo uus tööruum
|
||||||
zen-workspace-creation-label = Tööruume kasutatakse kaartide ja sessioonide organiseerimiseks.
|
zen-workspace-creation-label = Tööruume kasutatakse kaartide ja sessioonide organiseerimiseks.
|
||||||
|
zen-workspace-default-profile = Default
|
||||||
zen-workspaces-delete-workspace-title = Delete Workspace?
|
zen-workspaces-delete-workspace-title = Delete Workspace?
|
||||||
zen-workspaces-delete-workspace-body = Kas oled kindel, et soovid kustutada tööruumi { $name }? Seda tegevust ei saa tagasi võtta.
|
zen-workspaces-delete-workspace-body = Kas oled kindel, et soovid kustutada tööruumi { $name }? Seda tegevust ei saa tagasi võtta.
|
||||||
# Note that the html tag MUST not be changed or removed, as it is used to better
|
# Note that the html tag MUST not be changed or removed, as it is used to better
|
||||||
|
|||||||
@@ -38,6 +38,10 @@ zen-look-and-feel-compact-view-top-toolbar =
|
|||||||
.label = Hide the top toolbar as well in compact mode
|
.label = Hide the top toolbar as well in compact mode
|
||||||
zen-look-and-feel-compact-toolbar-flash-popup =
|
zen-look-and-feel-compact-toolbar-flash-popup =
|
||||||
.label = Briefly make the toolbar popup when switching or opening new tabs in compact mode
|
.label = Briefly make the toolbar popup when switching or opening new tabs in compact mode
|
||||||
|
zen-look-and-feel-window-drag-header = Window dragging
|
||||||
|
zen-look-and-feel-window-drag-description = Move the window by dragging empty space at the top of websites, just like the titlebar.
|
||||||
|
zen-window-drag-enabled =
|
||||||
|
.label = Allow dragging the window from web pages
|
||||||
pane-zen-tabs-title = Tab Management
|
pane-zen-tabs-title = Tab Management
|
||||||
category-zen-workspaces =
|
category-zen-workspaces =
|
||||||
.tooltiptext = { pane-zen-tabs-title }
|
.tooltiptext = { pane-zen-tabs-title }
|
||||||
@@ -244,7 +248,8 @@ zen-page-info-shortcut = View Page Info
|
|||||||
zen-find-shortcut = Find on Page
|
zen-find-shortcut = Find on Page
|
||||||
zen-search-find-again-shortcut = Find Again
|
zen-search-find-again-shortcut = Find Again
|
||||||
zen-search-find-again-shortcut-prev = Find Previous
|
zen-search-find-again-shortcut-prev = Find Previous
|
||||||
zen-search-find-again-shortcut-2 = Find Again (Alt)
|
zen-search-find-again-shortcut-alt = Find Again (Alt)
|
||||||
|
zen-search-find-again-shortcut-prev-alt = Find Previous (Alt)
|
||||||
zen-bookmark-this-page-shortcut = Bookmark This Page
|
zen-bookmark-this-page-shortcut = Bookmark This Page
|
||||||
zen-bookmark-show-library-shortcut = Show Bookmarks Library
|
zen-bookmark-show-library-shortcut = Show Bookmarks Library
|
||||||
zen-key-stop = Stop Loading
|
zen-key-stop = Stop Loading
|
||||||
|
|||||||
36
locales/eu/browser/browser/zen-command-palette.ftl
Normal file
36
locales/eu/browser/browser/zen-command-palette.ftl
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-action-toggle-compact-mode = Toggle Compact Mode
|
||||||
|
zen-action-open-theme-picker = Open Theme Picker
|
||||||
|
zen-action-new-split-view = New Split View
|
||||||
|
zen-action-new-folder = New Folder
|
||||||
|
zen-action-copy-current-url = Copy Current URL
|
||||||
|
zen-action-settings = Settings
|
||||||
|
zen-action-open-private-window = Open Private Window
|
||||||
|
zen-action-open-new-window = Open New Window
|
||||||
|
zen-action-new-blank-window = New Blank Window
|
||||||
|
zen-action-pin-tab = Pin Tab
|
||||||
|
zen-action-unpin-tab = Unpin Tab
|
||||||
|
zen-action-open-space-routing = Open Space Routing
|
||||||
|
zen-action-new-boost = New Boost
|
||||||
|
zen-action-next-space = Next Space
|
||||||
|
zen-action-previous-space = Previous Space
|
||||||
|
zen-action-close-tab = Close Tab
|
||||||
|
zen-action-reload-tab = Reload Tab
|
||||||
|
zen-action-reload-tab-without-cache = Reload Tab Without Cache
|
||||||
|
zen-action-next-tab = Next Tab
|
||||||
|
zen-action-previous-tab = Previous Tab
|
||||||
|
zen-action-capture-screenshot = Capture Screenshot
|
||||||
|
zen-action-toggle-tabs-on-right = Toggle Tabs on right
|
||||||
|
zen-action-add-to-essentials = Add to Essentials
|
||||||
|
zen-action-remove-from-essentials = Remove from Essentials
|
||||||
|
zen-action-find-in-page = Find in Page
|
||||||
|
zen-action-manage-extensions = Manage Extensions
|
||||||
|
zen-action-switch-to-automatic-appearance = Switch to Automatic Appearance
|
||||||
|
zen-action-switch-to-light-mode = Switch to Light Mode
|
||||||
|
zen-action-switch-to-dark-mode = Switch to Dark Mode
|
||||||
|
zen-action-print = Print
|
||||||
|
zen-action-focus-on = Focus on
|
||||||
|
zen-action-extension = Extension
|
||||||
@@ -18,13 +18,19 @@ tab-context-zen-add-essential-badge = { $num } / { $max } hutsune beteta
|
|||||||
tab-context-zen-remove-essential =
|
tab-context-zen-remove-essential =
|
||||||
.label = Funtsezko fitxetatik Kendu
|
.label = Funtsezko fitxetatik Kendu
|
||||||
.accesskey = R
|
.accesskey = R
|
||||||
tab-context-zen-replace-pinned-url-with-current =
|
tab-context-zen-edit-pinned-page =
|
||||||
.label =
|
.label =
|
||||||
{ $isEssential ->
|
{ $isEssential ->
|
||||||
[true] Ordezkatu Funtsezko URLa Oraingoarekin
|
[true] Edit Essential URL
|
||||||
*[false] Ordezkatu Ainguratutako URLa Oraingoarekin
|
*[false] Edit Pinned URL
|
||||||
}
|
}
|
||||||
|
.accesskey = P
|
||||||
|
tab-context-zen-replace-pinned-url-with-current =
|
||||||
|
.label = Replace with Current URL
|
||||||
.accesskey = C
|
.accesskey = C
|
||||||
|
tab-context-zen-edit-pinned-url =
|
||||||
|
.label = Edit…
|
||||||
|
.accesskey = E
|
||||||
tab-context-zen-edit-title =
|
tab-context-zen-edit-title =
|
||||||
.label = Etiketa aldatu...
|
.label = Etiketa aldatu...
|
||||||
tab-context-zen-edit-icon =
|
tab-context-zen-edit-icon =
|
||||||
@@ -47,6 +53,10 @@ zen-general-cancel-label =
|
|||||||
zen-general-confirm =
|
zen-general-confirm =
|
||||||
.label = Baieztatu
|
.label = Baieztatu
|
||||||
zen-pinned-tab-replaced = Oraingo estekak ordezkatu du ainguratutako fitxarena!
|
zen-pinned-tab-replaced = Oraingo estekak ordezkatu du ainguratutako fitxarena!
|
||||||
|
zen-pinned-tab-url-edited = Pinned tab URL has been updated!
|
||||||
|
zen-pinned-tab-url-invalid = That doesn't look like a valid URL.
|
||||||
|
zen-pinned-tab-edit-url-title = Edit Pinned URL
|
||||||
|
zen-pinned-tab-edit-url-label = Enter the URL this pinned tab should point to:
|
||||||
zen-tabs-renamed = Fitxaren izena ongi aldatu da!
|
zen-tabs-renamed = Fitxaren izena ongi aldatu da!
|
||||||
zen-background-tab-opened-toast = Fitxa berri bat zabaldu da bigarren planoan!
|
zen-background-tab-opened-toast = Fitxa berri bat zabaldu da bigarren planoan!
|
||||||
zen-workspace-renamed-toast = Lan-eremuaren izena ongi aldatu da!
|
zen-workspace-renamed-toast = Lan-eremuaren izena ongi aldatu da!
|
||||||
@@ -65,6 +75,8 @@ zen-icons-picker-emoji =
|
|||||||
.label = Emojiak
|
.label = Emojiak
|
||||||
zen-icons-picker-svg =
|
zen-icons-picker-svg =
|
||||||
.label = Ikonoak
|
.label = Ikonoak
|
||||||
|
zen-emojis-picker-search =
|
||||||
|
.placeholder = Search emojis
|
||||||
urlbar-search-mode-zen_actions = Ekintzak
|
urlbar-search-mode-zen_actions = Ekintzak
|
||||||
zen-site-data-settings = Ezarpenak
|
zen-site-data-settings = Ezarpenak
|
||||||
zen-generic-manage = Kudeatu
|
zen-generic-manage = Kudeatu
|
||||||
@@ -116,6 +128,9 @@ zen-sidebar-notification-updated-heading = Update Complete!
|
|||||||
zen-sidebar-notification-updated-label = What's new in { -brand-short-name }
|
zen-sidebar-notification-updated-label = What's new in { -brand-short-name }
|
||||||
zen-sidebar-notification-updated-tooltip =
|
zen-sidebar-notification-updated-tooltip =
|
||||||
.title = View Release Notes
|
.title = View Release Notes
|
||||||
|
zen-sidebar-notification-donate-label = Support { -brand-short-name }
|
||||||
|
zen-sidebar-notification-donate-tooltip =
|
||||||
|
.title = Donate to the project
|
||||||
zen-sidebar-notification-restart-safe-mode-label = Something broke?
|
zen-sidebar-notification-restart-safe-mode-label = Something broke?
|
||||||
zen-sidebar-notification-restart-safe-mode-tooltip =
|
zen-sidebar-notification-restart-safe-mode-tooltip =
|
||||||
.title = Restart in Safe Mode
|
.title = Restart in Safe Mode
|
||||||
|
|||||||
30
locales/eu/browser/browser/zen-space-routing.ftl
Normal file
30
locales/eu/browser/browser/zen-space-routing.ftl
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-space-routing-settings =
|
||||||
|
.label = Space Routing Settings
|
||||||
|
zen-space-routing-rulepanel-placeholder = Routes let you choose where specific sites open inside Zen. For example, you can route YouTube links to always open inside your Personal space.
|
||||||
|
zen-space-routing-dialog-title = Space Routing Settings
|
||||||
|
zen-space-routing-external-default = Default route for external links
|
||||||
|
zen-space-routing-new-route = New Route
|
||||||
|
zen-space-routing-open-in-space = Open in Space
|
||||||
|
zen-space-routing-most-recent-space = Most recent Space
|
||||||
|
zen-space-routing-close-button =
|
||||||
|
.aria-label = Close
|
||||||
|
.tooltiptext = Close
|
||||||
|
zen-space-routing-contains =
|
||||||
|
.label = Contains
|
||||||
|
zen-space-routing-equal-to =
|
||||||
|
.label = Is Equal To
|
||||||
|
zen-space-routing-regex =
|
||||||
|
.label = RegEx
|
||||||
|
zen-space-routing-open-in = Open In
|
||||||
|
zen-space-routing-url = URL
|
||||||
|
zen-space-routing-tab-routed-toast = New tab opened in { $targetWorkspace }
|
||||||
|
tab-context-zen-add-domain-to-sr =
|
||||||
|
.label =
|
||||||
|
{ $tabCount ->
|
||||||
|
[one] Add Route for Domain
|
||||||
|
*[other] Add Route for Domains
|
||||||
|
}
|
||||||
@@ -61,6 +61,7 @@ zen-workspace-creation-profile = Profile
|
|||||||
.tooltiptext = Profiles are used to separate cookies and site data between spaces.
|
.tooltiptext = Profiles are used to separate cookies and site data between spaces.
|
||||||
zen-workspace-creation-header = Create a Space
|
zen-workspace-creation-header = Create a Space
|
||||||
zen-workspace-creation-label = Spaces are used to organize your tabs and sessions.
|
zen-workspace-creation-label = Spaces are used to organize your tabs and sessions.
|
||||||
|
zen-workspace-default-profile = Default
|
||||||
zen-workspaces-delete-workspace-title = Delete Space?
|
zen-workspaces-delete-workspace-title = Delete Space?
|
||||||
zen-workspaces-delete-workspace-body = Are you sure you want to delete { $name }? This action cannot be undone.
|
zen-workspaces-delete-workspace-body = Are you sure you want to delete { $name }? This action cannot be undone.
|
||||||
# Note that the html tag MUST not be changed or removed, as it is used to better
|
# Note that the html tag MUST not be changed or removed, as it is used to better
|
||||||
|
|||||||
@@ -38,6 +38,10 @@ zen-look-and-feel-compact-view-top-toolbar =
|
|||||||
.label = پنهانکردن نوار ابزار بالا در حالت فشرده
|
.label = پنهانکردن نوار ابزار بالا در حالت فشرده
|
||||||
zen-look-and-feel-compact-toolbar-flash-popup =
|
zen-look-and-feel-compact-toolbar-flash-popup =
|
||||||
.label = Briefly make the toolbar popup when switching or opening new tabs in compact mode
|
.label = Briefly make the toolbar popup when switching or opening new tabs in compact mode
|
||||||
|
zen-look-and-feel-window-drag-header = Window dragging
|
||||||
|
zen-look-and-feel-window-drag-description = Move the window by dragging empty space at the top of websites, just like the titlebar.
|
||||||
|
zen-window-drag-enabled =
|
||||||
|
.label = Allow dragging the window from web pages
|
||||||
pane-zen-tabs-title = Tab Management
|
pane-zen-tabs-title = Tab Management
|
||||||
category-zen-workspaces =
|
category-zen-workspaces =
|
||||||
.tooltiptext = { pane-zen-tabs-title }
|
.tooltiptext = { pane-zen-tabs-title }
|
||||||
@@ -244,7 +248,8 @@ zen-page-info-shortcut = View Page Info
|
|||||||
zen-find-shortcut = Find on Page
|
zen-find-shortcut = Find on Page
|
||||||
zen-search-find-again-shortcut = Find Again
|
zen-search-find-again-shortcut = Find Again
|
||||||
zen-search-find-again-shortcut-prev = Find Previous
|
zen-search-find-again-shortcut-prev = Find Previous
|
||||||
zen-search-find-again-shortcut-2 = Find Again (Alt)
|
zen-search-find-again-shortcut-alt = Find Again (Alt)
|
||||||
|
zen-search-find-again-shortcut-prev-alt = Find Previous (Alt)
|
||||||
zen-bookmark-this-page-shortcut = Bookmark This Page
|
zen-bookmark-this-page-shortcut = Bookmark This Page
|
||||||
zen-bookmark-show-library-shortcut = Show Bookmarks Library
|
zen-bookmark-show-library-shortcut = Show Bookmarks Library
|
||||||
zen-key-stop = Stop Loading
|
zen-key-stop = Stop Loading
|
||||||
|
|||||||
36
locales/fa/browser/browser/zen-command-palette.ftl
Normal file
36
locales/fa/browser/browser/zen-command-palette.ftl
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-action-toggle-compact-mode = Toggle Compact Mode
|
||||||
|
zen-action-open-theme-picker = Open Theme Picker
|
||||||
|
zen-action-new-split-view = New Split View
|
||||||
|
zen-action-new-folder = New Folder
|
||||||
|
zen-action-copy-current-url = Copy Current URL
|
||||||
|
zen-action-settings = Settings
|
||||||
|
zen-action-open-private-window = Open Private Window
|
||||||
|
zen-action-open-new-window = Open New Window
|
||||||
|
zen-action-new-blank-window = New Blank Window
|
||||||
|
zen-action-pin-tab = Pin Tab
|
||||||
|
zen-action-unpin-tab = Unpin Tab
|
||||||
|
zen-action-open-space-routing = Open Space Routing
|
||||||
|
zen-action-new-boost = New Boost
|
||||||
|
zen-action-next-space = Next Space
|
||||||
|
zen-action-previous-space = Previous Space
|
||||||
|
zen-action-close-tab = Close Tab
|
||||||
|
zen-action-reload-tab = Reload Tab
|
||||||
|
zen-action-reload-tab-without-cache = Reload Tab Without Cache
|
||||||
|
zen-action-next-tab = Next Tab
|
||||||
|
zen-action-previous-tab = Previous Tab
|
||||||
|
zen-action-capture-screenshot = Capture Screenshot
|
||||||
|
zen-action-toggle-tabs-on-right = Toggle Tabs on right
|
||||||
|
zen-action-add-to-essentials = Add to Essentials
|
||||||
|
zen-action-remove-from-essentials = Remove from Essentials
|
||||||
|
zen-action-find-in-page = Find in Page
|
||||||
|
zen-action-manage-extensions = Manage Extensions
|
||||||
|
zen-action-switch-to-automatic-appearance = Switch to Automatic Appearance
|
||||||
|
zen-action-switch-to-light-mode = Switch to Light Mode
|
||||||
|
zen-action-switch-to-dark-mode = Switch to Dark Mode
|
||||||
|
zen-action-print = Print
|
||||||
|
zen-action-focus-on = Focus on
|
||||||
|
zen-action-extension = Extension
|
||||||
@@ -18,13 +18,19 @@ tab-context-zen-add-essential-badge = { $num } / { $max } slots filled
|
|||||||
tab-context-zen-remove-essential =
|
tab-context-zen-remove-essential =
|
||||||
.label = Remove from Essentials
|
.label = Remove from Essentials
|
||||||
.accesskey = R
|
.accesskey = R
|
||||||
tab-context-zen-replace-pinned-url-with-current =
|
tab-context-zen-edit-pinned-page =
|
||||||
.label =
|
.label =
|
||||||
{ $isEssential ->
|
{ $isEssential ->
|
||||||
[true] Replace Essential URL with Current
|
[true] Edit Essential URL
|
||||||
*[false] Replace Pinned URL with Current
|
*[false] Edit Pinned URL
|
||||||
}
|
}
|
||||||
|
.accesskey = P
|
||||||
|
tab-context-zen-replace-pinned-url-with-current =
|
||||||
|
.label = Replace with Current URL
|
||||||
.accesskey = C
|
.accesskey = C
|
||||||
|
tab-context-zen-edit-pinned-url =
|
||||||
|
.label = Edit…
|
||||||
|
.accesskey = E
|
||||||
tab-context-zen-edit-title =
|
tab-context-zen-edit-title =
|
||||||
.label = Change Label...
|
.label = Change Label...
|
||||||
tab-context-zen-edit-icon =
|
tab-context-zen-edit-icon =
|
||||||
@@ -47,6 +53,10 @@ zen-general-cancel-label =
|
|||||||
zen-general-confirm =
|
zen-general-confirm =
|
||||||
.label = تایید
|
.label = تایید
|
||||||
zen-pinned-tab-replaced = Pinned tab URL has been replaced with the current URL.
|
zen-pinned-tab-replaced = Pinned tab URL has been replaced with the current URL.
|
||||||
|
zen-pinned-tab-url-edited = Pinned tab URL has been updated!
|
||||||
|
zen-pinned-tab-url-invalid = That doesn't look like a valid URL.
|
||||||
|
zen-pinned-tab-edit-url-title = Edit Pinned URL
|
||||||
|
zen-pinned-tab-edit-url-label = Enter the URL this pinned tab should point to:
|
||||||
zen-tabs-renamed = Tab has been successfully renamed!
|
zen-tabs-renamed = Tab has been successfully renamed!
|
||||||
zen-background-tab-opened-toast = New background tab opened!
|
zen-background-tab-opened-toast = New background tab opened!
|
||||||
zen-workspace-renamed-toast = Workspace has been successfully renamed!
|
zen-workspace-renamed-toast = Workspace has been successfully renamed!
|
||||||
@@ -65,6 +75,8 @@ zen-icons-picker-emoji =
|
|||||||
.label = Emojis
|
.label = Emojis
|
||||||
zen-icons-picker-svg =
|
zen-icons-picker-svg =
|
||||||
.label = Icons
|
.label = Icons
|
||||||
|
zen-emojis-picker-search =
|
||||||
|
.placeholder = Search emojis
|
||||||
urlbar-search-mode-zen_actions = Actions
|
urlbar-search-mode-zen_actions = Actions
|
||||||
zen-site-data-settings = Settings
|
zen-site-data-settings = Settings
|
||||||
zen-generic-manage = Manage
|
zen-generic-manage = Manage
|
||||||
@@ -116,6 +128,9 @@ zen-sidebar-notification-updated-heading = Update Complete!
|
|||||||
zen-sidebar-notification-updated-label = What's new in { -brand-short-name }
|
zen-sidebar-notification-updated-label = What's new in { -brand-short-name }
|
||||||
zen-sidebar-notification-updated-tooltip =
|
zen-sidebar-notification-updated-tooltip =
|
||||||
.title = View Release Notes
|
.title = View Release Notes
|
||||||
|
zen-sidebar-notification-donate-label = Support { -brand-short-name }
|
||||||
|
zen-sidebar-notification-donate-tooltip =
|
||||||
|
.title = Donate to the project
|
||||||
zen-sidebar-notification-restart-safe-mode-label = Something broke?
|
zen-sidebar-notification-restart-safe-mode-label = Something broke?
|
||||||
zen-sidebar-notification-restart-safe-mode-tooltip =
|
zen-sidebar-notification-restart-safe-mode-tooltip =
|
||||||
.title = Restart in Safe Mode
|
.title = Restart in Safe Mode
|
||||||
|
|||||||
30
locales/fa/browser/browser/zen-space-routing.ftl
Normal file
30
locales/fa/browser/browser/zen-space-routing.ftl
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
zen-space-routing-settings =
|
||||||
|
.label = Space Routing Settings
|
||||||
|
zen-space-routing-rulepanel-placeholder = Routes let you choose where specific sites open inside Zen. For example, you can route YouTube links to always open inside your Personal space.
|
||||||
|
zen-space-routing-dialog-title = Space Routing Settings
|
||||||
|
zen-space-routing-external-default = Default route for external links
|
||||||
|
zen-space-routing-new-route = New Route
|
||||||
|
zen-space-routing-open-in-space = Open in Space
|
||||||
|
zen-space-routing-most-recent-space = Most recent Space
|
||||||
|
zen-space-routing-close-button =
|
||||||
|
.aria-label = Close
|
||||||
|
.tooltiptext = Close
|
||||||
|
zen-space-routing-contains =
|
||||||
|
.label = Contains
|
||||||
|
zen-space-routing-equal-to =
|
||||||
|
.label = Is Equal To
|
||||||
|
zen-space-routing-regex =
|
||||||
|
.label = RegEx
|
||||||
|
zen-space-routing-open-in = Open In
|
||||||
|
zen-space-routing-url = URL
|
||||||
|
zen-space-routing-tab-routed-toast = New tab opened in { $targetWorkspace }
|
||||||
|
tab-context-zen-add-domain-to-sr =
|
||||||
|
.label =
|
||||||
|
{ $tabCount ->
|
||||||
|
[one] Add Route for Domain
|
||||||
|
*[other] Add Route for Domains
|
||||||
|
}
|
||||||
@@ -61,6 +61,7 @@ zen-workspace-creation-profile = Profile
|
|||||||
.tooltiptext = Profiles are used to separate cookies and site data between spaces.
|
.tooltiptext = Profiles are used to separate cookies and site data between spaces.
|
||||||
zen-workspace-creation-header = Create a Space
|
zen-workspace-creation-header = Create a Space
|
||||||
zen-workspace-creation-label = Spaces are used to organize your tabs and sessions.
|
zen-workspace-creation-label = Spaces are used to organize your tabs and sessions.
|
||||||
|
zen-workspace-default-profile = Default
|
||||||
zen-workspaces-delete-workspace-title = Delete Workspace?
|
zen-workspaces-delete-workspace-title = Delete Workspace?
|
||||||
zen-workspaces-delete-workspace-body = Are you sure you want to delete { $name }? This action cannot be undone.
|
zen-workspaces-delete-workspace-body = Are you sure you want to delete { $name }? This action cannot be undone.
|
||||||
# Note that the html tag MUST not be changed or removed, as it is used to better
|
# Note that the html tag MUST not be changed or removed, as it is used to better
|
||||||
|
|||||||
@@ -38,6 +38,10 @@ zen-look-and-feel-compact-view-top-toolbar =
|
|||||||
.label = Piilota työkalupalkki niin myös kompaktissa tilassa
|
.label = Piilota työkalupalkki niin myös kompaktissa tilassa
|
||||||
zen-look-and-feel-compact-toolbar-flash-popup =
|
zen-look-and-feel-compact-toolbar-flash-popup =
|
||||||
.label = Tee työkalurivin ponnahdusikkuna lyhyesti, kun vaihdat tai avaat uusia välilehtiä kompaktitilassa
|
.label = Tee työkalurivin ponnahdusikkuna lyhyesti, kun vaihdat tai avaat uusia välilehtiä kompaktitilassa
|
||||||
|
zen-look-and-feel-window-drag-header = Window dragging
|
||||||
|
zen-look-and-feel-window-drag-description = Move the window by dragging empty space at the top of websites, just like the titlebar.
|
||||||
|
zen-window-drag-enabled =
|
||||||
|
.label = Allow dragging the window from web pages
|
||||||
pane-zen-tabs-title = Välilehtien Hallinta
|
pane-zen-tabs-title = Välilehtien Hallinta
|
||||||
category-zen-workspaces =
|
category-zen-workspaces =
|
||||||
.tooltiptext = { pane-zen-tabs-title }
|
.tooltiptext = { pane-zen-tabs-title }
|
||||||
@@ -244,7 +248,8 @@ zen-page-info-shortcut = Näytä Sivun Tiedot
|
|||||||
zen-find-shortcut = Etsi sivulta
|
zen-find-shortcut = Etsi sivulta
|
||||||
zen-search-find-again-shortcut = Etsi Uudelleen
|
zen-search-find-again-shortcut = Etsi Uudelleen
|
||||||
zen-search-find-again-shortcut-prev = Etsi Edellinen
|
zen-search-find-again-shortcut-prev = Etsi Edellinen
|
||||||
zen-search-find-again-shortcut-2 = Etsi Uudelleen (Alt)
|
zen-search-find-again-shortcut-alt = Find Again (Alt)
|
||||||
|
zen-search-find-again-shortcut-prev-alt = Find Previous (Alt)
|
||||||
zen-bookmark-this-page-shortcut = Lisää Tämä Sivu Kirjanmerkkeihin
|
zen-bookmark-this-page-shortcut = Lisää Tämä Sivu Kirjanmerkkeihin
|
||||||
zen-bookmark-show-library-shortcut = Näytä Kirjanmerkkikirjasto
|
zen-bookmark-show-library-shortcut = Näytä Kirjanmerkkikirjasto
|
||||||
zen-key-stop = Lopeta Lataaminen
|
zen-key-stop = Lopeta Lataaminen
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user