mirror of
https://github.com/kevinveenbirkenbach/homepage.veen.world.git
synced 2026-09-10 21:26:48 +00:00
Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f76794df78 | |||
| c6667f3b05 | |||
| b8891fe6fd | |||
| 2c7f0a23d1 | |||
| 330881260c | |||
| 857c470c9e | |||
| 793e2de899 | |||
| f830153cf4 | |||
| 308741346e | |||
| d7149b83e9 | |||
| e00ff9437c |
2
.dockerignore
Normal file
2
.dockerignore
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
app/node_modules/
|
||||||
|
app/static/vendor/
|
||||||
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
@@ -70,11 +70,11 @@ jobs:
|
|||||||
|
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
if: steps.semver.outputs.found == 'true'
|
if: steps.semver.outputs.found == 'true'
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3.12.0
|
||||||
|
|
||||||
- name: Login to GHCR
|
- name: Login to GHCR
|
||||||
if: steps.semver.outputs.found == 'true'
|
if: steps.semver.outputs.found == 'true'
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3.7.0
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
@@ -82,7 +82,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Build and publish image
|
- name: Build and publish image
|
||||||
if: steps.semver.outputs.found == 'true'
|
if: steps.semver.outputs.found == 'true'
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6.19.2
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
file: ./Dockerfile
|
file: ./Dockerfile
|
||||||
|
|||||||
7
.github/workflows/tests.yml
vendored
7
.github/workflows/tests.yml
vendored
@@ -21,6 +21,11 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
python-version: "3.12"
|
python-version: "3.12"
|
||||||
|
|
||||||
|
- name: Install lint test dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install --ignore-installed .
|
||||||
|
|
||||||
- name: Run lint test suite
|
- name: Run lint test suite
|
||||||
run: python -m unittest discover -s tests/lint -t .
|
run: python -m unittest discover -s tests/lint -t .
|
||||||
|
|
||||||
@@ -185,7 +190,7 @@ jobs:
|
|||||||
xvfb
|
xvfb
|
||||||
|
|
||||||
- name: Run Cypress tests
|
- name: Run Cypress tests
|
||||||
uses: cypress-io/github-action@v6
|
uses: cypress-io/github-action@f790eee7a50d9505912f50c2095510be7de06aa7 # v6.10.9
|
||||||
with:
|
with:
|
||||||
working-directory: app
|
working-directory: app
|
||||||
install: false
|
install: false
|
||||||
|
|||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -5,6 +5,7 @@ app/static/cache/*
|
|||||||
.env
|
.env
|
||||||
app/cypress/screenshots/*
|
app/cypress/screenshots/*
|
||||||
.ruff_cache/
|
.ruff_cache/
|
||||||
|
.venv/
|
||||||
app/node_modules/
|
app/node_modules/
|
||||||
app/static/vendor/
|
app/static/vendor/
|
||||||
hadolint-results.sarif
|
hadolint-results.sarif
|
||||||
|
|||||||
13
CHANGELOG.md
13
CHANGELOG.md
@@ -1,5 +1,18 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [2.1.2] - 2026-09-10
|
||||||
|
|
||||||
|
* CI: lint tests install the project first, so the image publishes again
|
||||||
|
* Tooling: make test runs every local suite in .venv and keeps going
|
||||||
|
* Image: multi-stage build ships only runtime assets, no node or dev packages
|
||||||
|
* Security: CodeQL findings fixed; iframe links only open configured origins
|
||||||
|
* i18n: interface strings translated for all 184 languages, test-enforced
|
||||||
|
|
||||||
|
## [2.1.1] - 2026-09-10
|
||||||
|
|
||||||
|
* Accessibility: header icons are *aria-hidden*, links read by label alone
|
||||||
|
* Test coverage: unit test requires *aria-hidden* on every header icon
|
||||||
|
|
||||||
## [2.1.0] - 2026-08-22
|
## [2.1.0] - 2026-08-22
|
||||||
|
|
||||||
* Multilingual site: every ISO 639-1 language has its own URL, */* follows the visitor's browser language, and a switcher in the navbar lists all 184 in their own script
|
* Multilingual site: every ISO 639-1 language has its own URL, */* follows the visitor's browser language, and a switcher in the navbar lists all 184 in their own script
|
||||||
|
|||||||
22
Dockerfile
22
Dockerfile
@@ -1,12 +1,16 @@
|
|||||||
FROM python:3.12-slim
|
FROM node:22-slim AS assets
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
COPY app/package.json ./
|
||||||
|
COPY app/scripts ./scripts
|
||||||
|
RUN npm install --omit=dev --no-audit --no-fund
|
||||||
|
|
||||||
|
FROM python:3.12-slim AS base
|
||||||
|
|
||||||
ENV PYTHONDONTWRITEBYTECODE=1 \
|
ENV PYTHONDONTWRITEBYTECODE=1 \
|
||||||
PYTHONUNBUFFERED=1 \
|
PYTHONUNBUFFERED=1 \
|
||||||
FLASK_HOST=0.0.0.0
|
FLASK_HOST=0.0.0.0
|
||||||
|
|
||||||
# hadolint ignore=DL3008
|
|
||||||
RUN apt-get update && apt-get install -y --no-install-recommends nodejs npm && rm -rf /var/lib/apt/lists/*
|
|
||||||
|
|
||||||
WORKDIR /tmp/build
|
WORKDIR /tmp/build
|
||||||
|
|
||||||
COPY pyproject.toml README.md main.py ./
|
COPY pyproject.toml README.md main.py ./
|
||||||
@@ -15,6 +19,14 @@ RUN python -m pip install --no-cache-dir .
|
|||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
COPY app/ .
|
COPY app/ .
|
||||||
RUN npm install --prefix /app
|
|
||||||
|
|
||||||
CMD ["python", "app.py"]
|
CMD ["python", "app.py"]
|
||||||
|
|
||||||
|
FROM base AS dev
|
||||||
|
|
||||||
|
# hadolint ignore=DL3008
|
||||||
|
RUN apt-get update && apt-get install -y --no-install-recommends nodejs npm && rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
|
FROM base AS runtime
|
||||||
|
|
||||||
|
COPY --from=assets /app/static/vendor ./static/vendor
|
||||||
|
|||||||
11
Makefile
11
Makefile
@@ -7,6 +7,8 @@ endif
|
|||||||
|
|
||||||
PYTHON ?= python3
|
PYTHON ?= python3
|
||||||
ACT ?= act
|
ACT ?= act
|
||||||
|
TEST_VENV := $(CURDIR)/.venv
|
||||||
|
TEST_PYTHON ?= $(TEST_VENV)/bin/python
|
||||||
|
|
||||||
# Bootstrap the local .env from the checked-in env.example template.
|
# Bootstrap the local .env from the checked-in env.example template.
|
||||||
# Idempotent: leaves an existing .env untouched.
|
# Idempotent: leaves an existing .env untouched.
|
||||||
@@ -185,7 +187,7 @@ lint-shell:
|
|||||||
docker run --rm -v "$$PWD:/mnt" -w /mnt koalaman/shellcheck:stable scripts/*.sh
|
docker run --rm -v "$$PWD:/mnt" -w /mnt koalaman/shellcheck:stable scripts/*.sh
|
||||||
|
|
||||||
.PHONY: test-lint
|
.PHONY: test-lint
|
||||||
test-lint:
|
test-lint: install
|
||||||
# Run lint guardrail tests.
|
# Run lint guardrail tests.
|
||||||
$(PYTHON) -m unittest discover -s tests/lint -t .
|
$(PYTHON) -m unittest discover -s tests/lint -t .
|
||||||
|
|
||||||
@@ -252,5 +254,8 @@ ci: lint security test-unit test-integration test-e2e
|
|||||||
# Run the local CI suite.
|
# Run the local CI suite.
|
||||||
|
|
||||||
.PHONY: test
|
.PHONY: test
|
||||||
test: ci
|
test:
|
||||||
# Run the full validation suite.
|
# Run every local suite in a project virtualenv, since PEP 668 refuses pip on
|
||||||
|
# a system Python, and keep going so each failing suite reports.
|
||||||
|
@[ -x "$(TEST_PYTHON)" ] || python3 -m venv "$(TEST_VENV)"
|
||||||
|
$(MAKE) --keep-going ci PYTHON="$(TEST_PYTHON)"
|
||||||
|
|||||||
@@ -28,7 +28,6 @@ logging.basicConfig(level=logging.DEBUG)
|
|||||||
FLASK_ENV = os.getenv("FLASK_ENV", "production")
|
FLASK_ENV = os.getenv("FLASK_ENV", "production")
|
||||||
FLASK_HOST = os.getenv("FLASK_HOST", "127.0.0.1")
|
FLASK_HOST = os.getenv("FLASK_HOST", "127.0.0.1")
|
||||||
FLASK_PORT = int(os.getenv("FLASK_PORT", os.getenv("PORT", 5000)))
|
FLASK_PORT = int(os.getenv("FLASK_PORT", os.getenv("PORT", 5000)))
|
||||||
print(f"Starting app on {FLASK_HOST}:{FLASK_PORT}, FLASK_ENV={FLASK_ENV}")
|
|
||||||
|
|
||||||
# Initialize the CacheManager
|
# Initialize the CacheManager
|
||||||
cache_manager = CacheManager()
|
cache_manager = CacheManager()
|
||||||
@@ -190,6 +189,7 @@ def localized_index(lang):
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
print(f"Starting app on {FLASK_HOST}:{FLASK_PORT}, FLASK_ENV={FLASK_ENV}")
|
||||||
app.run(
|
app.run(
|
||||||
debug=(FLASK_ENV == "development"),
|
debug=(FLASK_ENV == "development"),
|
||||||
host=FLASK_HOST,
|
host=FLASK_HOST,
|
||||||
|
|||||||
@@ -253,11 +253,33 @@ describe('Untrusted content reaching the iframe', () => {
|
|||||||
cy.window().should('not.have.property', '__xss');
|
cy.window().should('not.have.property', '__xss');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('still opens an ordinary URL from the query string', () => {
|
it('still opens a configured iframe target from the query string', () => {
|
||||||
|
cy.visit('/');
|
||||||
|
cy.get('a.iframe-link').first().invoke('prop', 'href').then((href) => {
|
||||||
|
cy.visit(`/?iframe=${encodeURIComponent(href)}`);
|
||||||
|
|
||||||
|
cy.get('#main')
|
||||||
|
.find('iframe', { timeout: AFTER_THE_FADE })
|
||||||
|
.should('have.attr', 'src', href);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('refuses a foreign origin supplied through the query string', () => {
|
||||||
cy.visit('/?iframe=https://example.com/');
|
cy.visit('/?iframe=https://example.com/');
|
||||||
|
|
||||||
cy.get('#main')
|
cy.wait(AFTER_THE_FADE);
|
||||||
.find('iframe', { timeout: AFTER_THE_FADE })
|
cy.get('#main').find('iframe').should('not.exist');
|
||||||
.should('have.attr', 'src', 'https://example.com/');
|
});
|
||||||
|
|
||||||
|
it('does not open a foreign query-string origin in a new tab', () => {
|
||||||
|
cy.visit('/?iframe=https://example.com/', {
|
||||||
|
onBeforeLoad(win) {
|
||||||
|
cy.stub(win, 'open').as('open');
|
||||||
|
cy.stub(win, 'alert');
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
cy.window().then((win) => win.openIframeInNewTab());
|
||||||
|
cy.get('@open').should('not.have.been.called');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
11
app/i18n/ui/aa.yaml
Normal file
11
app/i18n/ui/aa.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Tan doorit
|
||||||
|
Close: Alif
|
||||||
|
Copy: Garraab
|
||||||
|
Identifier copied to clipboard!: Astooti tixi rakaakayih culte!
|
||||||
|
Imprint: Qaanuunih warsa
|
||||||
|
Information: Warsa
|
||||||
|
Language: Af
|
||||||
|
Open: Fak
|
||||||
|
Open Link: Tixi fak
|
||||||
|
Options: Doorit
|
||||||
|
Warning: Kassiisa
|
||||||
11
app/i18n/ui/ab.yaml
Normal file
11
app/i18n/ui/ab.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Альтернативақәа
|
||||||
|
Close: Аркра
|
||||||
|
Copy: Акопиа ахыхра
|
||||||
|
Identifier copied to clipboard!: Аидентификатор абуфер ахь иқәыргылоуп!
|
||||||
|
Imprint: Азакәантә информациа
|
||||||
|
Information: Аинформациа
|
||||||
|
Language: Абызшәа
|
||||||
|
Open: Аартра
|
||||||
|
Open Link: Азхьарԥш аартра
|
||||||
|
Options: Апараметрқәа
|
||||||
|
Warning: Агәаҽанижьра
|
||||||
11
app/i18n/ui/ae.yaml
Normal file
11
app/i18n/ui/ae.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Aniiā
|
||||||
|
Close: Pairi.dāraiia
|
||||||
|
Copy: Paitiš.kərənu
|
||||||
|
Identifier copied to clipboard!: Nāman paitiš.kərətəm!
|
||||||
|
Imprint: Dātō.xvarənah
|
||||||
|
Information: Vaēdiia
|
||||||
|
Language: Hizuuā
|
||||||
|
Open: Vīuuāraiia
|
||||||
|
Open Link: Paθō vīuuāraiia
|
||||||
|
Options: Vərəθra
|
||||||
|
Warning: Aiβi.saŋha
|
||||||
11
app/i18n/ui/af.yaml
Normal file
11
app/i18n/ui/af.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternatiewe
|
||||||
|
Close: Maak toe
|
||||||
|
Copy: Kopieer
|
||||||
|
Identifier copied to clipboard!: Identifiseerder na knipbord gekopieer!
|
||||||
|
Imprint: Regskennisgewing
|
||||||
|
Information: Inligting
|
||||||
|
Language: Taal
|
||||||
|
Open: Maak oop
|
||||||
|
Open Link: Maak skakel oop
|
||||||
|
Options: Opsies
|
||||||
|
Warning: Waarskuwing
|
||||||
11
app/i18n/ui/ak.yaml
Normal file
11
app/i18n/ui/ak.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Nneɛma foforɔ
|
||||||
|
Close: To mu
|
||||||
|
Copy: Twa
|
||||||
|
Identifier copied to clipboard!: Wɔatwa nsɛnkyerɛnneɛ no akɔ clipboard so!
|
||||||
|
Imprint: Mmara ho nsɛm
|
||||||
|
Information: Nsɛm
|
||||||
|
Language: Kasa
|
||||||
|
Open: Bue
|
||||||
|
Open Link: Bue link no
|
||||||
|
Options: Nhyehyɛe
|
||||||
|
Warning: Kɔkɔbɔ
|
||||||
11
app/i18n/ui/am.yaml
Normal file
11
app/i18n/ui/am.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: አማራጮች
|
||||||
|
Close: ዝጋ
|
||||||
|
Copy: ቅዳ
|
||||||
|
Identifier copied to clipboard!: መለያው ወደ ቅንጥብ ሰሌዳ ተቀድቷል!
|
||||||
|
Imprint: ሕጋዊ መረጃ
|
||||||
|
Information: መረጃ
|
||||||
|
Language: ቋንቋ
|
||||||
|
Open: ክፈት
|
||||||
|
Open Link: ማገናኛውን ክፈት
|
||||||
|
Options: ምርጫዎች
|
||||||
|
Warning: ማስጠንቀቂያ
|
||||||
11
app/i18n/ui/an.yaml
Normal file
11
app/i18n/ui/an.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternativas
|
||||||
|
Close: Zarrar
|
||||||
|
Copy: Copiar
|
||||||
|
Identifier copied to clipboard!: Identificador copiau en o portafuellas!
|
||||||
|
Imprint: Aviso legal
|
||||||
|
Information: Información
|
||||||
|
Language: Idioma
|
||||||
|
Open: Ubrir
|
||||||
|
Open Link: Ubrir o vinclo
|
||||||
|
Options: Opcions
|
||||||
|
Warning: Alvertencia
|
||||||
11
app/i18n/ui/as.yaml
Normal file
11
app/i18n/ui/as.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: বিকল্পসমূহ
|
||||||
|
Close: বন্ধ কৰক
|
||||||
|
Copy: কপি কৰক
|
||||||
|
Identifier copied to clipboard!: চিনাক্তকাৰী ক্লিপবোৰ্ডলৈ কপি কৰা হ'ল!
|
||||||
|
Imprint: আইনী তথ্য
|
||||||
|
Information: তথ্য
|
||||||
|
Language: ভাষা
|
||||||
|
Open: খোলক
|
||||||
|
Open Link: লিংক খোলক
|
||||||
|
Options: বিকল্প
|
||||||
|
Warning: সতৰ্কবাণী
|
||||||
11
app/i18n/ui/av.yaml
Normal file
11
app/i18n/ui/av.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Альтернативаби
|
||||||
|
Close: Къазе
|
||||||
|
Copy: Копия гьабе
|
||||||
|
Identifier copied to clipboard!: Идентификатор буфералде копия гьабуна!
|
||||||
|
Imprint: Закон баян
|
||||||
|
Information: Хабар
|
||||||
|
Language: МацӀ
|
||||||
|
Open: Рагье
|
||||||
|
Open Link: Ссылка рагье
|
||||||
|
Options: Параметрал
|
||||||
|
Warning: ТӀаде кӀвар
|
||||||
11
app/i18n/ui/ay.yaml
Normal file
11
app/i18n/ui/ay.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Yaqha ajlliwinaka
|
||||||
|
Close: Jist'antaña
|
||||||
|
Copy: Qillqaña
|
||||||
|
Identifier copied to clipboard!: Uñt'ayiri clipboard ukar qillqatawa!
|
||||||
|
Imprint: Kamachi yatiyawi
|
||||||
|
Information: Yatiyawi
|
||||||
|
Language: Aru
|
||||||
|
Open: Jist'araña
|
||||||
|
Open Link: Link jist'araña
|
||||||
|
Options: Ajlliwinaka
|
||||||
|
Warning: Iwxt'awi
|
||||||
11
app/i18n/ui/az.yaml
Normal file
11
app/i18n/ui/az.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternativlər
|
||||||
|
Close: Bağla
|
||||||
|
Copy: Kopyala
|
||||||
|
Identifier copied to clipboard!: İdentifikator mübadilə buferinə kopyalandı!
|
||||||
|
Imprint: Hüquqi məlumat
|
||||||
|
Information: Məlumat
|
||||||
|
Language: Dil
|
||||||
|
Open: Aç
|
||||||
|
Open Link: Keçidi aç
|
||||||
|
Options: Seçimlər
|
||||||
|
Warning: Xəbərdarlıq
|
||||||
11
app/i18n/ui/ba.yaml
Normal file
11
app/i18n/ui/ba.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Альтернативалар
|
||||||
|
Close: Ябырға
|
||||||
|
Copy: Күсерергә
|
||||||
|
Identifier copied to clipboard!: Идентификатор алмашыу буферына күсерелде!
|
||||||
|
Imprint: Хоҡуҡи мәғлүмәт
|
||||||
|
Information: Мәғлүмәт
|
||||||
|
Language: Тел
|
||||||
|
Open: Асырға
|
||||||
|
Open Link: Һылтанманы асырға
|
||||||
|
Options: Параметрҙар
|
||||||
|
Warning: Иҫкәртеү
|
||||||
11
app/i18n/ui/be.yaml
Normal file
11
app/i18n/ui/be.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Альтэрнатывы
|
||||||
|
Close: Закрыць
|
||||||
|
Copy: Капіяваць
|
||||||
|
Identifier copied to clipboard!: Ідэнтыфікатар скапіяваны ў буфер абмену!
|
||||||
|
Imprint: Прававая інфармацыя
|
||||||
|
Information: Інфармацыя
|
||||||
|
Language: Мова
|
||||||
|
Open: Адкрыць
|
||||||
|
Open Link: Адкрыць спасылку
|
||||||
|
Options: Параметры
|
||||||
|
Warning: Папярэджанне
|
||||||
11
app/i18n/ui/bg.yaml
Normal file
11
app/i18n/ui/bg.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Алтернативи
|
||||||
|
Close: Затвори
|
||||||
|
Copy: Копирай
|
||||||
|
Identifier copied to clipboard!: Идентификаторът е копиран в клипборда!
|
||||||
|
Imprint: Правна информация
|
||||||
|
Information: Информация
|
||||||
|
Language: Език
|
||||||
|
Open: Отвори
|
||||||
|
Open Link: Отвори връзката
|
||||||
|
Options: Опции
|
||||||
|
Warning: Предупреждение
|
||||||
11
app/i18n/ui/bi.yaml
Normal file
11
app/i18n/ui/bi.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Narafala jois
|
||||||
|
Close: Klosem
|
||||||
|
Copy: Kopi
|
||||||
|
Identifier copied to clipboard!: Namba blong aedentifikesen i kopi finis!
|
||||||
|
Imprint: Loa infomesen
|
||||||
|
Information: Infomesen
|
||||||
|
Language: Lanwis
|
||||||
|
Open: Openem
|
||||||
|
Open Link: Openem link
|
||||||
|
Options: Ol jois
|
||||||
|
Warning: Woning
|
||||||
11
app/i18n/ui/bm.yaml
Normal file
11
app/i18n/ui/bm.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Sugandili wɛrɛw
|
||||||
|
Close: A datugu
|
||||||
|
Copy: A kopi
|
||||||
|
Identifier copied to clipboard!: Tɔgɔ taamasiyɛn kopilen don!
|
||||||
|
Imprint: Sariya kunnafoni
|
||||||
|
Information: Kunnafoni
|
||||||
|
Language: Kan
|
||||||
|
Open: A dayɛlɛ
|
||||||
|
Open Link: Jɛɲɔgɔnya dayɛlɛ
|
||||||
|
Options: Sugandiliw
|
||||||
|
Warning: Lasɔmini
|
||||||
11
app/i18n/ui/bo.yaml
Normal file
11
app/i18n/ui/bo.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: གདམ་ག་གཞན།
|
||||||
|
Close: ཁ་རྒྱག
|
||||||
|
Copy: འདྲ་བཤུས།
|
||||||
|
Identifier copied to clipboard!: ངོས་འཛིན་རྟགས་སྦྱར་སྡེར་དུ་འདྲ་བཤུས་བྱས་ཟིན།
|
||||||
|
Imprint: ཁྲིམས་ཀྱི་གསལ་བསྒྲགས།
|
||||||
|
Information: ཆ་འཕྲིན།
|
||||||
|
Language: སྐད་ཡིག
|
||||||
|
Open: ཁ་ཕྱེ།
|
||||||
|
Open Link: སྦྲེལ་ཐག་ཁ་ཕྱེ།
|
||||||
|
Options: གདམ་ག
|
||||||
|
Warning: ཉེན་བརྡ།
|
||||||
11
app/i18n/ui/br.yaml
Normal file
11
app/i18n/ui/br.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Dibaboù all
|
||||||
|
Close: Serriñ
|
||||||
|
Copy: Eilañ
|
||||||
|
Identifier copied to clipboard!: Eilet eo bet an anaouder er golver!
|
||||||
|
Imprint: Titouroù lezennel
|
||||||
|
Information: Titouroù
|
||||||
|
Language: Yezh
|
||||||
|
Open: Digeriñ
|
||||||
|
Open Link: Digeriñ al liamm
|
||||||
|
Options: Dibarzhioù
|
||||||
|
Warning: Diwall
|
||||||
11
app/i18n/ui/bs.yaml
Normal file
11
app/i18n/ui/bs.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternative
|
||||||
|
Close: Zatvori
|
||||||
|
Copy: Kopiraj
|
||||||
|
Identifier copied to clipboard!: Identifikator je kopiran u međuspremnik!
|
||||||
|
Imprint: Pravne informacije
|
||||||
|
Information: Informacije
|
||||||
|
Language: Jezik
|
||||||
|
Open: Otvori
|
||||||
|
Open Link: Otvori link
|
||||||
|
Options: Opcije
|
||||||
|
Warning: Upozorenje
|
||||||
11
app/i18n/ui/ca.yaml
Normal file
11
app/i18n/ui/ca.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternatives
|
||||||
|
Close: Tanca
|
||||||
|
Copy: Copia
|
||||||
|
Identifier copied to clipboard!: S'ha copiat l'identificador al porta-retalls!
|
||||||
|
Imprint: Avís legal
|
||||||
|
Information: Informació
|
||||||
|
Language: Idioma
|
||||||
|
Open: Obre
|
||||||
|
Open Link: Obre l'enllaç
|
||||||
|
Options: Opcions
|
||||||
|
Warning: Advertiment
|
||||||
11
app/i18n/ui/ce.yaml
Normal file
11
app/i18n/ui/ce.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Альтернативаш
|
||||||
|
Close: ДӀакъовла
|
||||||
|
Copy: Копи ян
|
||||||
|
Identifier copied to clipboard!: Идентификатор буфере копи йина!
|
||||||
|
Imprint: Бакъонан хаам
|
||||||
|
Information: Хаам
|
||||||
|
Language: Мотт
|
||||||
|
Open: ДӀаелла
|
||||||
|
Open Link: ТӀе хьажорг дӀаелла
|
||||||
|
Options: Параметраш
|
||||||
|
Warning: Кхайкхам
|
||||||
11
app/i18n/ui/ch.yaml
Normal file
11
app/i18n/ui/ch.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Otro na ayek
|
||||||
|
Close: Huchom
|
||||||
|
Copy: Kopia
|
||||||
|
Identifier copied to clipboard!: Ma kopia i identifier gi clipboard!
|
||||||
|
Imprint: Infotmasion lai
|
||||||
|
Information: Infotmasion
|
||||||
|
Language: Lengguahi
|
||||||
|
Open: Baba
|
||||||
|
Open Link: Baba i link
|
||||||
|
Options: Ayek
|
||||||
|
Warning: Adbietensia
|
||||||
11
app/i18n/ui/co.yaml
Normal file
11
app/i18n/ui/co.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternative
|
||||||
|
Close: Chjode
|
||||||
|
Copy: Cupià
|
||||||
|
Identifier copied to clipboard!: L'identificatore hè statu cupiatu in u preme-papers!
|
||||||
|
Imprint: Menzioni legali
|
||||||
|
Information: Infurmazione
|
||||||
|
Language: Lingua
|
||||||
|
Open: Apre
|
||||||
|
Open Link: Apre u ligame
|
||||||
|
Options: Uzzione
|
||||||
|
Warning: Avertimentu
|
||||||
11
app/i18n/ui/cr.yaml
Normal file
11
app/i18n/ui/cr.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: kotakak
|
||||||
|
Close: kipahamok
|
||||||
|
Copy: ayisinahikêwin
|
||||||
|
Identifier copied to clipboard!: kiskinowâcihcikan kî-ayisinahikâtêw!
|
||||||
|
Imprint: wiyasiwêwin kiskêyihtamowin
|
||||||
|
Information: kiskêyihtamowin
|
||||||
|
Language: pîkiskwêwin
|
||||||
|
Open: yôhtênamok
|
||||||
|
Open Link: yôhtêna mâmawikan
|
||||||
|
Options: nawasônamowina
|
||||||
|
Warning: kitahamâkêwin
|
||||||
11
app/i18n/ui/cu.yaml
Normal file
11
app/i18n/ui/cu.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Инаѧ
|
||||||
|
Close: Затвори
|
||||||
|
Copy: Списати
|
||||||
|
Identifier copied to clipboard!: Именованїе списано бысть!
|
||||||
|
Imprint: Законное вѣдѣнїе
|
||||||
|
Information: Вѣдѣнїе
|
||||||
|
Language: Ѧзыкъ
|
||||||
|
Open: Отверзи
|
||||||
|
Open Link: Отверзи съвѧзь
|
||||||
|
Options: Изволенїѧ
|
||||||
|
Warning: Предостереженїе
|
||||||
11
app/i18n/ui/cv.yaml
Normal file
11
app/i18n/ui/cv.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Альтернативӑсем
|
||||||
|
Close: Хуп
|
||||||
|
Copy: Копиле
|
||||||
|
Identifier copied to clipboard!: Идентификатор буфера копиленӗ!
|
||||||
|
Imprint: Саккун информацийӗ
|
||||||
|
Information: Информаци
|
||||||
|
Language: Чӗлхе
|
||||||
|
Open: Уҫ
|
||||||
|
Open Link: Каҫӑна уҫ
|
||||||
|
Options: Параметрсем
|
||||||
|
Warning: Асӑрхаттару
|
||||||
11
app/i18n/ui/cy.yaml
Normal file
11
app/i18n/ui/cy.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Dewisiadau eraill
|
||||||
|
Close: Cau
|
||||||
|
Copy: Copïo
|
||||||
|
Identifier copied to clipboard!: Wedi copïo'r dynodwr i'r clipfwrdd!
|
||||||
|
Imprint: Gwybodaeth gyfreithiol
|
||||||
|
Information: Gwybodaeth
|
||||||
|
Language: Iaith
|
||||||
|
Open: Agor
|
||||||
|
Open Link: Agor y ddolen
|
||||||
|
Options: Opsiynau
|
||||||
|
Warning: Rhybudd
|
||||||
11
app/i18n/ui/dv.yaml
Normal file
11
app/i18n/ui/dv.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: ބަދަލު އިޚްތިޔާރުތައް
|
||||||
|
Close: ބަންދުކުރޭ
|
||||||
|
Copy: ކޮޕީކުރޭ
|
||||||
|
Identifier copied to clipboard!: އައިޑެންޓިފަޔަރ ކްލިޕްބޯޑަށް ކޮޕީކުރެވިއްޖެ!
|
||||||
|
Imprint: ޤާނޫނީ މަޢުލޫމާތު
|
||||||
|
Information: މަޢުލޫމާތު
|
||||||
|
Language: ބަސް
|
||||||
|
Open: ހުޅުވާ
|
||||||
|
Open Link: ލިންކު ހުޅުވާ
|
||||||
|
Options: އިޚްތިޔާރުތައް
|
||||||
|
Warning: އިންޒާރު
|
||||||
11
app/i18n/ui/dz.yaml
Normal file
11
app/i18n/ui/dz.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: གདམ་ཁ་གཞན།
|
||||||
|
Close: ཁ་བསྡམས།
|
||||||
|
Copy: འདྲ་བཤུས།
|
||||||
|
Identifier copied to clipboard!: ངོས་འཛིན་འདི་འདྲ་བཤུས་འབད་ཡི།
|
||||||
|
Imprint: ཁྲིམས་དོན་བརྡ་དོན།
|
||||||
|
Information: བརྡ་དོན།
|
||||||
|
Language: ཁ་སྐད།
|
||||||
|
Open: ཁ་ཕྱེ།
|
||||||
|
Open Link: འབྲེལ་མཐུད་ཁ་ཕྱེ།
|
||||||
|
Options: གདམ་ཁ།
|
||||||
|
Warning: ཉེན་བརྡ།
|
||||||
11
app/i18n/ui/ee.yaml
Normal file
11
app/i18n/ui/ee.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Tiatia bubuwo
|
||||||
|
Close: Tu
|
||||||
|
Copy: Kɔpi
|
||||||
|
Identifier copied to clipboard!: Wokɔpi dzesidede ɖe clipboard dzi!
|
||||||
|
Imprint: Se ŋuti nyatakakawo
|
||||||
|
Information: Nyatakaka
|
||||||
|
Language: Gbe
|
||||||
|
Open: Ʋu
|
||||||
|
Open Link: Ʋu kadodoa
|
||||||
|
Options: Tiatiawo
|
||||||
|
Warning: Nuxlɔ̃ame
|
||||||
11
app/i18n/ui/eo.yaml
Normal file
11
app/i18n/ui/eo.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternativoj
|
||||||
|
Close: Fermi
|
||||||
|
Copy: Kopii
|
||||||
|
Identifier copied to clipboard!: Identigilo kopiita al la tondujo!
|
||||||
|
Imprint: Jura informo
|
||||||
|
Information: Informo
|
||||||
|
Language: Lingvo
|
||||||
|
Open: Malfermi
|
||||||
|
Open Link: Malfermi ligilon
|
||||||
|
Options: Opcioj
|
||||||
|
Warning: Averto
|
||||||
11
app/i18n/ui/et.yaml
Normal file
11
app/i18n/ui/et.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternatiivid
|
||||||
|
Close: Sulge
|
||||||
|
Copy: Kopeeri
|
||||||
|
Identifier copied to clipboard!: Identifikaator kopeeriti lõikelauale!
|
||||||
|
Imprint: Õiguslik teave
|
||||||
|
Information: Teave
|
||||||
|
Language: Keel
|
||||||
|
Open: Ava
|
||||||
|
Open Link: Ava link
|
||||||
|
Options: Valikud
|
||||||
|
Warning: Hoiatus
|
||||||
11
app/i18n/ui/eu.yaml
Normal file
11
app/i18n/ui/eu.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternatibak
|
||||||
|
Close: Itxi
|
||||||
|
Copy: Kopiatu
|
||||||
|
Identifier copied to clipboard!: Identifikatzailea arbelean kopiatu da!
|
||||||
|
Imprint: Lege-oharra
|
||||||
|
Information: Informazioa
|
||||||
|
Language: Hizkuntza
|
||||||
|
Open: Ireki
|
||||||
|
Open Link: Ireki esteka
|
||||||
|
Options: Aukerak
|
||||||
|
Warning: Abisua
|
||||||
11
app/i18n/ui/ff.yaml
Normal file
11
app/i18n/ui/ff.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Suɓaaji goɗɗi
|
||||||
|
Close: Uddu
|
||||||
|
Copy: Natto
|
||||||
|
Identifier copied to clipboard!: Innde heɓtirde natta!
|
||||||
|
Imprint: Humpito laawol
|
||||||
|
Information: Humpito
|
||||||
|
Language: Ɗemngal
|
||||||
|
Open: Uddit
|
||||||
|
Open Link: Uddit jokkorde
|
||||||
|
Options: Suɓaaji
|
||||||
|
Warning: Reentino
|
||||||
11
app/i18n/ui/fj.yaml
Normal file
11
app/i18n/ui/fj.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Na ka tale e so
|
||||||
|
Close: Sogota
|
||||||
|
Copy: Kopitaka
|
||||||
|
Identifier copied to clipboard!: Sa kopitaki na ivakatakilakila!
|
||||||
|
Imprint: iTukutuku vakalawa
|
||||||
|
Information: iTukutuku
|
||||||
|
Language: Vosa
|
||||||
|
Open: Dolava
|
||||||
|
Open Link: Dolava na isema
|
||||||
|
Options: Digidigi
|
||||||
|
Warning: iVakasala
|
||||||
11
app/i18n/ui/fo.yaml
Normal file
11
app/i18n/ui/fo.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternativ
|
||||||
|
Close: Lat aftur
|
||||||
|
Copy: Avrita
|
||||||
|
Identifier copied to clipboard!: Eyðmerki avritað í setiborðið!
|
||||||
|
Imprint: Løgfrøðilig kunning
|
||||||
|
Information: Kunning
|
||||||
|
Language: Mál
|
||||||
|
Open: Lat upp
|
||||||
|
Open Link: Lat leinkju upp
|
||||||
|
Options: Valmøguleikar
|
||||||
|
Warning: Ávaring
|
||||||
11
app/i18n/ui/fy.yaml
Normal file
11
app/i18n/ui/fy.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternativen
|
||||||
|
Close: Slute
|
||||||
|
Copy: Kopiearje
|
||||||
|
Identifier copied to clipboard!: Identifikaasje nei it klamboerd kopiearre!
|
||||||
|
Imprint: Kolofon
|
||||||
|
Information: Ynformaasje
|
||||||
|
Language: Taal
|
||||||
|
Open: Iepenje
|
||||||
|
Open Link: Keppeling iepenje
|
||||||
|
Options: Opsjes
|
||||||
|
Warning: Warskôging
|
||||||
11
app/i18n/ui/ga.yaml
Normal file
11
app/i18n/ui/ga.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Roghanna eile
|
||||||
|
Close: Dún
|
||||||
|
Copy: Cóipeáil
|
||||||
|
Identifier copied to clipboard!: Cóipeáladh an t-aitheantóir chuig an ghearrthaisce!
|
||||||
|
Imprint: Fógra dlíthiúil
|
||||||
|
Information: Faisnéis
|
||||||
|
Language: Teanga
|
||||||
|
Open: Oscail
|
||||||
|
Open Link: Oscail an nasc
|
||||||
|
Options: Roghanna
|
||||||
|
Warning: Rabhadh
|
||||||
11
app/i18n/ui/gd.yaml
Normal file
11
app/i18n/ui/gd.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Roghainnean eile
|
||||||
|
Close: Dùin
|
||||||
|
Copy: Dèan lethbhreac
|
||||||
|
Identifier copied to clipboard!: Chaidh lethbhreac dhen aithnichear a chur air an stòr-bhòrd!
|
||||||
|
Imprint: Fiosrachadh laghail
|
||||||
|
Information: Fiosrachadh
|
||||||
|
Language: Cànan
|
||||||
|
Open: Fosgail
|
||||||
|
Open Link: Fosgail an ceangal
|
||||||
|
Options: Roghainnean
|
||||||
|
Warning: Rabhadh
|
||||||
11
app/i18n/ui/gl.yaml
Normal file
11
app/i18n/ui/gl.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternativas
|
||||||
|
Close: Pechar
|
||||||
|
Copy: Copiar
|
||||||
|
Identifier copied to clipboard!: Identificador copiado no portapapeis!
|
||||||
|
Imprint: Aviso legal
|
||||||
|
Information: Información
|
||||||
|
Language: Idioma
|
||||||
|
Open: Abrir
|
||||||
|
Open Link: Abrir ligazón
|
||||||
|
Options: Opcións
|
||||||
|
Warning: Advertencia
|
||||||
11
app/i18n/ui/gn.yaml
Normal file
11
app/i18n/ui/gn.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Ambue jeporavorã
|
||||||
|
Close: Mboty
|
||||||
|
Copy: Monguatia
|
||||||
|
Identifier copied to clipboard!: Oñemonguatia pe mboheraguapy!
|
||||||
|
Imprint: Léi marandu
|
||||||
|
Information: Marandu
|
||||||
|
Language: Ñe'ẽ
|
||||||
|
Open: Mbojuruja
|
||||||
|
Open Link: Mbojuruja joajuha
|
||||||
|
Options: Jeporavorã
|
||||||
|
Warning: Ñemomarandu
|
||||||
11
app/i18n/ui/gu.yaml
Normal file
11
app/i18n/ui/gu.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: અન્ય વિકલ્પો
|
||||||
|
Close: બંધ કરો
|
||||||
|
Copy: કૉપિ કરો
|
||||||
|
Identifier copied to clipboard!: ઓળખકર્તા ક્લિપબોર્ડ પર કૉપિ કર્યો!
|
||||||
|
Imprint: કાનૂની માહિતી
|
||||||
|
Information: માહિતી
|
||||||
|
Language: ભાષા
|
||||||
|
Open: ખોલો
|
||||||
|
Open Link: લિંક ખોલો
|
||||||
|
Options: વિકલ્પો
|
||||||
|
Warning: ચેતવણી
|
||||||
11
app/i18n/ui/gv.yaml
Normal file
11
app/i18n/ui/gv.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Reihghyn elley
|
||||||
|
Close: Dooney
|
||||||
|
Copy: Jean lhiasaghey
|
||||||
|
Identifier copied to clipboard!: Ta'n enmyssagh er ny lhiasaghey!
|
||||||
|
Imprint: Fys leighoil
|
||||||
|
Information: Fys
|
||||||
|
Language: Çhengey
|
||||||
|
Open: Foshil
|
||||||
|
Open Link: Foshil y kiangley
|
||||||
|
Options: Reihghyn
|
||||||
|
Warning: Raaue
|
||||||
11
app/i18n/ui/ha.yaml
Normal file
11
app/i18n/ui/ha.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Madadai
|
||||||
|
Close: Rufe
|
||||||
|
Copy: Kwafi
|
||||||
|
Identifier copied to clipboard!: An kwafi mai ganowa zuwa allon rubutu!
|
||||||
|
Imprint: Bayanin doka
|
||||||
|
Information: Bayani
|
||||||
|
Language: Harshe
|
||||||
|
Open: Buɗe
|
||||||
|
Open Link: Buɗe mahaɗi
|
||||||
|
Options: Zaɓuɓɓuka
|
||||||
|
Warning: Gargaɗi
|
||||||
11
app/i18n/ui/ho.yaml
Normal file
11
app/i18n/ui/ho.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Ma haida
|
||||||
|
Close: Koua
|
||||||
|
Copy: Kopi
|
||||||
|
Identifier copied to clipboard!: Ladana ia kopi vadaeni!
|
||||||
|
Imprint: Taravatu sivaraina
|
||||||
|
Information: Sivaraina
|
||||||
|
Language: Gado
|
||||||
|
Open: Kehoa
|
||||||
|
Open Link: Link kehoa
|
||||||
|
Options: Abia hidi
|
||||||
|
Warning: Hadibaia
|
||||||
11
app/i18n/ui/hr.yaml
Normal file
11
app/i18n/ui/hr.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternative
|
||||||
|
Close: Zatvori
|
||||||
|
Copy: Kopiraj
|
||||||
|
Identifier copied to clipboard!: Identifikator je kopiran u međuspremnik!
|
||||||
|
Imprint: Pravne informacije
|
||||||
|
Information: Informacije
|
||||||
|
Language: Jezik
|
||||||
|
Open: Otvori
|
||||||
|
Open Link: Otvori poveznicu
|
||||||
|
Options: Mogućnosti
|
||||||
|
Warning: Upozorenje
|
||||||
11
app/i18n/ui/ht.yaml
Normal file
11
app/i18n/ui/ht.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Lòt chwa
|
||||||
|
Close: Fèmen
|
||||||
|
Copy: Kopye
|
||||||
|
Identifier copied to clipboard!: Idantifyan an kopye nan klipbòd la!
|
||||||
|
Imprint: Enfòmasyon legal
|
||||||
|
Information: Enfòmasyon
|
||||||
|
Language: Lang
|
||||||
|
Open: Louvri
|
||||||
|
Open Link: Louvri lyen an
|
||||||
|
Options: Opsyon
|
||||||
|
Warning: Avètisman
|
||||||
11
app/i18n/ui/hy.yaml
Normal file
11
app/i18n/ui/hy.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Այլընտրանքներ
|
||||||
|
Close: Փակել
|
||||||
|
Copy: Պատճենել
|
||||||
|
Identifier copied to clipboard!: Նույնացուցիչը պատճենվեց սեղմատախտակին!
|
||||||
|
Imprint: Իրավական տեղեկություններ
|
||||||
|
Information: Տեղեկություն
|
||||||
|
Language: Լեզու
|
||||||
|
Open: Բացել
|
||||||
|
Open Link: Բացել հղումը
|
||||||
|
Options: Ընտրանքներ
|
||||||
|
Warning: Զգուշացում
|
||||||
11
app/i18n/ui/hz.yaml
Normal file
11
app/i18n/ui/hz.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Ovikeṱa oviṱjaṱa
|
||||||
|
Close: Pata
|
||||||
|
Copy: Hiṱa
|
||||||
|
Identifier copied to clipboard!: Ondjiviro ya hiṱwa!
|
||||||
|
Imprint: Omambo woveta
|
||||||
|
Information: Omambo
|
||||||
|
Language: Ombango
|
||||||
|
Open: Paturura
|
||||||
|
Open Link: Paturura omukambo
|
||||||
|
Options: Ovikeṱa
|
||||||
|
Warning: Omaṱoororo
|
||||||
11
app/i18n/ui/ia.yaml
Normal file
11
app/i18n/ui/ia.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternativas
|
||||||
|
Close: Clauder
|
||||||
|
Copy: Copiar
|
||||||
|
Identifier copied to clipboard!: Identificator copiate al area de transferentia!
|
||||||
|
Imprint: Information legal
|
||||||
|
Information: Information
|
||||||
|
Language: Lingua
|
||||||
|
Open: Aperir
|
||||||
|
Open Link: Aperir ligamine
|
||||||
|
Options: Optiones
|
||||||
|
Warning: Advertimento
|
||||||
11
app/i18n/ui/ie.yaml
Normal file
11
app/i18n/ui/ie.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternatives
|
||||||
|
Close: Clúder
|
||||||
|
Copy: Copiar
|
||||||
|
Identifier copied to clipboard!: Identificator copiat al paperiere!
|
||||||
|
Imprint: Information legal
|
||||||
|
Information: Information
|
||||||
|
Language: Lingue
|
||||||
|
Open: Aperter
|
||||||
|
Open Link: Aperter li ligament
|
||||||
|
Options: Optiones
|
||||||
|
Warning: Avise
|
||||||
11
app/i18n/ui/ig.yaml
Normal file
11
app/i18n/ui/ig.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Nhọrọ ndị ọzọ
|
||||||
|
Close: Mechie
|
||||||
|
Copy: Detuo
|
||||||
|
Identifier copied to clipboard!: Edepụtara njirimara na klipbọọdụ!
|
||||||
|
Imprint: Ozi gbasara iwu
|
||||||
|
Information: Ozi
|
||||||
|
Language: Asụsụ
|
||||||
|
Open: Mepee
|
||||||
|
Open Link: Mepee njikọ
|
||||||
|
Options: Nhọrọ
|
||||||
|
Warning: Ịdọ aka na ntị
|
||||||
11
app/i18n/ui/ii.yaml
Normal file
11
app/i18n/ui/ii.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: ꀋꅉ
|
||||||
|
Close: ꏢ
|
||||||
|
Copy: ꀕ
|
||||||
|
Identifier copied to clipboard!: ꂓꂷ ꀕꀐ!
|
||||||
|
Imprint: ꃀꇖ ꌋꑍ
|
||||||
|
Information: ꌋꑍ
|
||||||
|
Language: ꉙ
|
||||||
|
Open: ꉈ
|
||||||
|
Open Link: ꇤꉈ
|
||||||
|
Options: ꀋꅉ
|
||||||
|
Warning: ꋍꅉ
|
||||||
11
app/i18n/ui/ik.yaml
Normal file
11
app/i18n/ui/ik.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Allat piksrat
|
||||||
|
Close: Umiksiuŋ
|
||||||
|
Copy: Aglaakkaŋ
|
||||||
|
Identifier copied to clipboard!: Atiŋa aglaaksiruq!
|
||||||
|
Imprint: Maligutaq ilisimaaġutit
|
||||||
|
Information: Ilisimaaġutit
|
||||||
|
Language: Uqausiq
|
||||||
|
Open: Aŋmaġuŋ
|
||||||
|
Open Link: Aŋmaġuŋ link
|
||||||
|
Options: Piksrat
|
||||||
|
Warning: Kaŋiqsiġutit
|
||||||
11
app/i18n/ui/io.yaml
Normal file
11
app/i18n/ui/io.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternativi
|
||||||
|
Close: Klozar
|
||||||
|
Copy: Kopiar
|
||||||
|
Identifier copied to clipboard!: Identigilo kopiesis a la tondilo!
|
||||||
|
Imprint: Legala informo
|
||||||
|
Information: Informo
|
||||||
|
Language: Linguo
|
||||||
|
Open: Apertar
|
||||||
|
Open Link: Apertar ligilo
|
||||||
|
Options: Opcioni
|
||||||
|
Warning: Averto
|
||||||
11
app/i18n/ui/is.yaml
Normal file
11
app/i18n/ui/is.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Aðrir kostir
|
||||||
|
Close: Loka
|
||||||
|
Copy: Afrita
|
||||||
|
Identifier copied to clipboard!: Auðkenni afritað á klippispjald!
|
||||||
|
Imprint: Lagalegar upplýsingar
|
||||||
|
Information: Upplýsingar
|
||||||
|
Language: Tungumál
|
||||||
|
Open: Opna
|
||||||
|
Open Link: Opna tengil
|
||||||
|
Options: Valkostir
|
||||||
|
Warning: Viðvörun
|
||||||
11
app/i18n/ui/iu.yaml
Normal file
11
app/i18n/ui/iu.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: ᐊᓯᖏᑦ ᓂᕈᐊᒐᒃᓴᐃᑦ
|
||||||
|
Close: ᒪᑐᐃᕐᓗᒍ
|
||||||
|
Copy: ᐊᔾᔨᓕᐅᕐᓗᒍ
|
||||||
|
Identifier copied to clipboard!: ᓇᓗᓇᐃᒃᑯᑕᖅ ᐊᔾᔨᓕᐅᖅᑕᐅᔪᖅ!
|
||||||
|
Imprint: ᒪᓕᒐᓕᕆᓂᕐᒧᑦ ᑐᓴᒐᒃᓴᖅ
|
||||||
|
Information: ᑐᓴᒐᒃᓴᖅ
|
||||||
|
Language: ᐅᖃᐅᓯᖅ
|
||||||
|
Open: ᐅᒃᑯᐃᓗᒍ
|
||||||
|
Open Link: ᐊᑐᕆᐊᖅ ᐅᒃᑯᐃᓗᒍ
|
||||||
|
Options: ᓂᕈᐊᒐᒃᓴᐃᑦ
|
||||||
|
Warning: ᖃᐅᔨᒋᐊᕐᓂᖅ
|
||||||
11
app/i18n/ui/jv.yaml
Normal file
11
app/i18n/ui/jv.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternatif
|
||||||
|
Close: Tutup
|
||||||
|
Copy: Salin
|
||||||
|
Identifier copied to clipboard!: Pengenal disalin menyang papan klip!
|
||||||
|
Imprint: Informasi hukum
|
||||||
|
Information: Informasi
|
||||||
|
Language: Basa
|
||||||
|
Open: Bukak
|
||||||
|
Open Link: Bukak pranala
|
||||||
|
Options: Pilihan
|
||||||
|
Warning: Pèngetan
|
||||||
11
app/i18n/ui/ka.yaml
Normal file
11
app/i18n/ui/ka.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: ალტერნატივები
|
||||||
|
Close: დახურვა
|
||||||
|
Copy: კოპირება
|
||||||
|
Identifier copied to clipboard!: იდენტიფიკატორი დაკოპირდა ბუფერში!
|
||||||
|
Imprint: იურიდიული ინფორმაცია
|
||||||
|
Information: ინფორმაცია
|
||||||
|
Language: ენა
|
||||||
|
Open: გახსნა
|
||||||
|
Open Link: ბმულის გახსნა
|
||||||
|
Options: პარამეტრები
|
||||||
|
Warning: გაფრთხილება
|
||||||
11
app/i18n/ui/kg.yaml
Normal file
11
app/i18n/ui/kg.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Mapona ya nkaka
|
||||||
|
Close: Kanga
|
||||||
|
Copy: Kopia
|
||||||
|
Identifier copied to clipboard!: Kinsinsu me kopiama!
|
||||||
|
Imprint: Nsangu ya nsiku
|
||||||
|
Information: Nsangu
|
||||||
|
Language: Ndinga
|
||||||
|
Open: Kangula
|
||||||
|
Open Link: Kangula nkangu
|
||||||
|
Options: Mapona
|
||||||
|
Warning: Lukebisu
|
||||||
11
app/i18n/ui/ki.yaml
Normal file
11
app/i18n/ui/ki.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Mathuura mangĩ
|
||||||
|
Close: Hinga
|
||||||
|
Copy: Kobia
|
||||||
|
Identifier copied to clipboard!: Kĩmenyithia nĩ kĩakobio!
|
||||||
|
Imprint: Ũhoro wa watho
|
||||||
|
Information: Ũhoro
|
||||||
|
Language: Rũthiomi
|
||||||
|
Open: Hingũra
|
||||||
|
Open Link: Hingũra kĩhoti
|
||||||
|
Options: Mathuura
|
||||||
|
Warning: Mũkaana
|
||||||
11
app/i18n/ui/kj.yaml
Normal file
11
app/i18n/ui/kj.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Omahoololo vali
|
||||||
|
Close: Pata
|
||||||
|
Copy: Shanga
|
||||||
|
Identifier copied to clipboard!: Edina la shangwa!
|
||||||
|
Imprint: Omauyelele opaveta
|
||||||
|
Information: Omauyelele
|
||||||
|
Language: Elaka
|
||||||
|
Open: Yeulula
|
||||||
|
Open Link: Yeulula ekwatakanifo
|
||||||
|
Options: Omahoololo
|
||||||
|
Warning: Elondwelo
|
||||||
11
app/i18n/ui/kk.yaml
Normal file
11
app/i18n/ui/kk.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Баламалар
|
||||||
|
Close: Жабу
|
||||||
|
Copy: Көшіру
|
||||||
|
Identifier copied to clipboard!: Идентификатор алмасу буферіне көшірілді!
|
||||||
|
Imprint: Құқықтық ақпарат
|
||||||
|
Information: Ақпарат
|
||||||
|
Language: Тіл
|
||||||
|
Open: Ашу
|
||||||
|
Open Link: Сілтемені ашу
|
||||||
|
Options: Параметрлер
|
||||||
|
Warning: Ескерту
|
||||||
11
app/i18n/ui/kl.yaml
Normal file
11
app/i18n/ui/kl.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Allat periarfissat
|
||||||
|
Close: Matuguk
|
||||||
|
Copy: Assiliiguk
|
||||||
|
Identifier copied to clipboard!: Kinaassusersiut assilineqarpoq!
|
||||||
|
Imprint: Inatsisitigut paasissutissat
|
||||||
|
Information: Paasissutissat
|
||||||
|
Language: Oqaatsit
|
||||||
|
Open: Ammaruk
|
||||||
|
Open Link: Aqqutissiaq ammaruk
|
||||||
|
Options: Periarfissat
|
||||||
|
Warning: Mianersoqqussut
|
||||||
11
app/i18n/ui/km.yaml
Normal file
11
app/i18n/ui/km.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: ជម្រើសផ្សេងទៀត
|
||||||
|
Close: បិទ
|
||||||
|
Copy: ចម្លង
|
||||||
|
Identifier copied to clipboard!: បានចម្លងអត្តសញ្ញាណទៅក្ដារតម្បៀតខ្ទាស់!
|
||||||
|
Imprint: ព័ត៌មានផ្លូវច្បាប់
|
||||||
|
Information: ព័ត៌មាន
|
||||||
|
Language: ភាសា
|
||||||
|
Open: បើក
|
||||||
|
Open Link: បើកតំណ
|
||||||
|
Options: ជម្រើស
|
||||||
|
Warning: ការព្រមាន
|
||||||
11
app/i18n/ui/kn.yaml
Normal file
11
app/i18n/ui/kn.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: ಪರ್ಯಾಯಗಳು
|
||||||
|
Close: ಮುಚ್ಚಿ
|
||||||
|
Copy: ನಕಲಿಸಿ
|
||||||
|
Identifier copied to clipboard!: ಗುರುತಿಸುವಿಕೆಯನ್ನು ಕ್ಲಿಪ್ಬೋರ್ಡ್ಗೆ ನಕಲಿಸಲಾಗಿದೆ!
|
||||||
|
Imprint: ಕಾನೂನು ಮಾಹಿತಿ
|
||||||
|
Information: ಮಾಹಿತಿ
|
||||||
|
Language: ಭಾಷೆ
|
||||||
|
Open: ತೆರೆಯಿರಿ
|
||||||
|
Open Link: ಲಿಂಕ್ ತೆರೆಯಿರಿ
|
||||||
|
Options: ಆಯ್ಕೆಗಳು
|
||||||
|
Warning: ಎಚ್ಚರಿಕೆ
|
||||||
11
app/i18n/ui/kr.yaml
Normal file
11
app/i18n/ui/kr.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Kəla gade
|
||||||
|
Close: Kaltə
|
||||||
|
Copy: Kopi
|
||||||
|
Identifier copied to clipboard!: Suna kopi dəwo!
|
||||||
|
Imprint: Labar shariya
|
||||||
|
Information: Labar
|
||||||
|
Language: Təla
|
||||||
|
Open: Buwo
|
||||||
|
Open Link: Link buwo
|
||||||
|
Options: Kəla
|
||||||
|
Warning: Dəwo
|
||||||
11
app/i18n/ui/ks.yaml
Normal file
11
app/i18n/ui/ks.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: مُتبادِل
|
||||||
|
Close: بنٛد کٔرِو
|
||||||
|
Copy: نقل کٔرِو
|
||||||
|
Identifier copied to clipboard!: شناخت کلپ بورڈس پیٹھ نقل کرنہٕ آمٕژ!
|
||||||
|
Imprint: قانوٗنی معلوٗمات
|
||||||
|
Information: معلوٗمات
|
||||||
|
Language: زبان
|
||||||
|
Open: کھولِو
|
||||||
|
Open Link: لِنک کھولِو
|
||||||
|
Options: اِختیار
|
||||||
|
Warning: خبردار
|
||||||
11
app/i18n/ui/ku.yaml
Normal file
11
app/i18n/ui/ku.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternatîf
|
||||||
|
Close: Bigire
|
||||||
|
Copy: Kopî bike
|
||||||
|
Identifier copied to clipboard!: Nasname li panoyê hate kopîkirin!
|
||||||
|
Imprint: Agahiyên qanûnî
|
||||||
|
Information: Agahî
|
||||||
|
Language: Ziman
|
||||||
|
Open: Veke
|
||||||
|
Open Link: Girêdanê veke
|
||||||
|
Options: Vebijark
|
||||||
|
Warning: Hişyarî
|
||||||
11
app/i18n/ui/kv.yaml
Normal file
11
app/i18n/ui/kv.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Мукӧд вариантъяс
|
||||||
|
Close: Пӧдлы
|
||||||
|
Copy: Копируйт
|
||||||
|
Identifier copied to clipboard!: Идентификатор копируйтӧма!
|
||||||
|
Imprint: Оланпас юӧр
|
||||||
|
Information: Юӧр
|
||||||
|
Language: Кыв
|
||||||
|
Open: Восьт
|
||||||
|
Open Link: Восьт ыстӧд
|
||||||
|
Options: Параметръяс
|
||||||
|
Warning: Висьтавлӧм
|
||||||
11
app/i18n/ui/kw.yaml
Normal file
11
app/i18n/ui/kw.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Dewisyow erel
|
||||||
|
Close: Deges
|
||||||
|
Copy: Dasskrifa
|
||||||
|
Identifier copied to clipboard!: An aswonnyas re beu dasskrifys!
|
||||||
|
Imprint: Kedhlow laghel
|
||||||
|
Information: Kedhlow
|
||||||
|
Language: Yeth
|
||||||
|
Open: Ygeri
|
||||||
|
Open Link: Ygeri an kolm
|
||||||
|
Options: Dewisyow
|
||||||
|
Warning: Gwarnyans
|
||||||
11
app/i18n/ui/ky.yaml
Normal file
11
app/i18n/ui/ky.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Альтернативалар
|
||||||
|
Close: Жабуу
|
||||||
|
Copy: Көчүрүү
|
||||||
|
Identifier copied to clipboard!: Идентификатор алмашуу буферине көчүрүлдү!
|
||||||
|
Imprint: Укуктук маалымат
|
||||||
|
Information: Маалымат
|
||||||
|
Language: Тил
|
||||||
|
Open: Ачуу
|
||||||
|
Open Link: Шилтемени ачуу
|
||||||
|
Options: Параметрлер
|
||||||
|
Warning: Эскертүү
|
||||||
11
app/i18n/ui/la.yaml
Normal file
11
app/i18n/ui/la.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternativae
|
||||||
|
Close: Claude
|
||||||
|
Copy: Exscribe
|
||||||
|
Identifier copied to clipboard!: Identificator in tabulam exscriptus est!
|
||||||
|
Imprint: Notitia legalis
|
||||||
|
Information: Informatio
|
||||||
|
Language: Lingua
|
||||||
|
Open: Aperi
|
||||||
|
Open Link: Aperi nexum
|
||||||
|
Options: Optiones
|
||||||
|
Warning: Monitum
|
||||||
11
app/i18n/ui/lb.yaml
Normal file
11
app/i18n/ui/lb.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternativen
|
||||||
|
Close: Zoumaachen
|
||||||
|
Copy: Kopéieren
|
||||||
|
Identifier copied to clipboard!: Identifikateur an d'Tëschenoflag kopéiert!
|
||||||
|
Imprint: Impressum
|
||||||
|
Information: Informatioun
|
||||||
|
Language: Sprooch
|
||||||
|
Open: Opmaachen
|
||||||
|
Open Link: Link opmaachen
|
||||||
|
Options: Optiounen
|
||||||
|
Warning: Warnung
|
||||||
11
app/i18n/ui/lg.yaml
Normal file
11
app/i18n/ui/lg.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Ebirala by'olondako
|
||||||
|
Close: Ggalawo
|
||||||
|
Copy: Koppa
|
||||||
|
Identifier copied to clipboard!: Akabonero kakoppeddwa!
|
||||||
|
Imprint: Ebikwata ku mateeka
|
||||||
|
Information: Ebikwata ku nsonga
|
||||||
|
Language: Olulimi
|
||||||
|
Open: Ggulawo
|
||||||
|
Open Link: Ggulawo link
|
||||||
|
Options: Eby'okulondako
|
||||||
|
Warning: Okulabula
|
||||||
11
app/i18n/ui/li.yaml
Normal file
11
app/i18n/ui/li.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternatieve
|
||||||
|
Close: Sloete
|
||||||
|
Copy: Kopiëre
|
||||||
|
Identifier copied to clipboard!: Identificatie nao 't klembord gekopieerd!
|
||||||
|
Imprint: Colofon
|
||||||
|
Information: Informatie
|
||||||
|
Language: Taal
|
||||||
|
Open: Opene
|
||||||
|
Open Link: Link opene
|
||||||
|
Options: Opties
|
||||||
|
Warning: Waorsjuwing
|
||||||
11
app/i18n/ui/ln.yaml
Normal file
11
app/i18n/ui/ln.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Maponi mosusu
|
||||||
|
Close: Kanga
|
||||||
|
Copy: Kopi
|
||||||
|
Identifier copied to clipboard!: Elembo ekopiami!
|
||||||
|
Imprint: Makambo ya mibeko
|
||||||
|
Information: Makambo
|
||||||
|
Language: Lokota
|
||||||
|
Open: Fungola
|
||||||
|
Open Link: Fungola lyɛ́n
|
||||||
|
Options: Maponi
|
||||||
|
Warning: Likebisi
|
||||||
11
app/i18n/ui/lo.yaml
Normal file
11
app/i18n/ui/lo.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: ທາງເລືອກອື່ນ
|
||||||
|
Close: ປິດ
|
||||||
|
Copy: ສຳເນົາ
|
||||||
|
Identifier copied to clipboard!: ສຳເນົາຕົວລະບຸໄປທີ່ຄລິບບອດແລ້ວ!
|
||||||
|
Imprint: ຂໍ້ມູນທາງກົດໝາຍ
|
||||||
|
Information: ຂໍ້ມູນ
|
||||||
|
Language: ພາສາ
|
||||||
|
Open: ເປີດ
|
||||||
|
Open Link: ເປີດລິ້ງ
|
||||||
|
Options: ຕົວເລືອກ
|
||||||
|
Warning: ຄຳເຕືອນ
|
||||||
11
app/i18n/ui/lt.yaml
Normal file
11
app/i18n/ui/lt.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternatyvos
|
||||||
|
Close: Uždaryti
|
||||||
|
Copy: Kopijuoti
|
||||||
|
Identifier copied to clipboard!: Identifikatorius nukopijuotas į iškarpinę!
|
||||||
|
Imprint: Teisinė informacija
|
||||||
|
Information: Informacija
|
||||||
|
Language: Kalba
|
||||||
|
Open: Atidaryti
|
||||||
|
Open Link: Atidaryti nuorodą
|
||||||
|
Options: Parinktys
|
||||||
|
Warning: Įspėjimas
|
||||||
11
app/i18n/ui/lu.yaml
Normal file
11
app/i18n/ui/lu.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Bisungula bikwabo
|
||||||
|
Close: Buikila
|
||||||
|
Copy: Kopia
|
||||||
|
Identifier copied to clipboard!: Tshimanyinu tshikopia!
|
||||||
|
Imprint: Malu a mikenji
|
||||||
|
Information: Malu
|
||||||
|
Language: Muakulu
|
||||||
|
Open: Bulula
|
||||||
|
Open Link: Bulula ditamba
|
||||||
|
Options: Bisungula
|
||||||
|
Warning: Dimanyisha
|
||||||
11
app/i18n/ui/lv.yaml
Normal file
11
app/i18n/ui/lv.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternatīvas
|
||||||
|
Close: Aizvērt
|
||||||
|
Copy: Kopēt
|
||||||
|
Identifier copied to clipboard!: Identifikators nokopēts starpliktuvē!
|
||||||
|
Imprint: Juridiskā informācija
|
||||||
|
Information: Informācija
|
||||||
|
Language: Valoda
|
||||||
|
Open: Atvērt
|
||||||
|
Open Link: Atvērt saiti
|
||||||
|
Options: Opcijas
|
||||||
|
Warning: Brīdinājums
|
||||||
11
app/i18n/ui/mg.yaml
Normal file
11
app/i18n/ui/mg.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Safidy hafa
|
||||||
|
Close: Hidio
|
||||||
|
Copy: Adikao
|
||||||
|
Identifier copied to clipboard!: Voadika tao amin'ny clipboard ny famantarana!
|
||||||
|
Imprint: Fampahafantarana ara-dalàna
|
||||||
|
Information: Fampahalalana
|
||||||
|
Language: Fiteny
|
||||||
|
Open: Sokafy
|
||||||
|
Open Link: Sokafy ny rohy
|
||||||
|
Options: Safidy
|
||||||
|
Warning: Fampitandremana
|
||||||
11
app/i18n/ui/mh.yaml
Normal file
11
app/i18n/ui/mh.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Kōmelele ko jet
|
||||||
|
Close: Kilōk
|
||||||
|
Copy: Kappi
|
||||||
|
Identifier copied to clipboard!: Kakōlle eo emōj kappi!
|
||||||
|
Imprint: Melele in kien
|
||||||
|
Information: Melele
|
||||||
|
Language: Kajin
|
||||||
|
Open: Kōpeļļo
|
||||||
|
Open Link: Kōpeļļo link
|
||||||
|
Options: Kōmelele
|
||||||
|
Warning: Kakkōļ
|
||||||
11
app/i18n/ui/mi.yaml
Normal file
11
app/i18n/ui/mi.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Kōwhiringa kē
|
||||||
|
Close: Katia
|
||||||
|
Copy: Tāruatia
|
||||||
|
Identifier copied to clipboard!: Kua tāruatia te tautuhi ki te papatopenga!
|
||||||
|
Imprint: Pārongo ā-ture
|
||||||
|
Information: Pārongo
|
||||||
|
Language: Reo
|
||||||
|
Open: Whakatuwhera
|
||||||
|
Open Link: Whakatuwhera hononga
|
||||||
|
Options: Kōwhiringa
|
||||||
|
Warning: Whakatūpato
|
||||||
11
app/i18n/ui/mk.yaml
Normal file
11
app/i18n/ui/mk.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Алтернативи
|
||||||
|
Close: Затвори
|
||||||
|
Copy: Копирај
|
||||||
|
Identifier copied to clipboard!: Идентификаторот е копиран во таблата!
|
||||||
|
Imprint: Правни информации
|
||||||
|
Information: Информации
|
||||||
|
Language: Јазик
|
||||||
|
Open: Отвори
|
||||||
|
Open Link: Отвори ја врската
|
||||||
|
Options: Опции
|
||||||
|
Warning: Предупредување
|
||||||
11
app/i18n/ui/ml.yaml
Normal file
11
app/i18n/ui/ml.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: ബദലുകൾ
|
||||||
|
Close: അടയ്ക്കുക
|
||||||
|
Copy: പകർത്തുക
|
||||||
|
Identifier copied to clipboard!: ഐഡന്റിഫയർ ക്ലിപ്പ്ബോർഡിലേക്ക് പകർത്തി!
|
||||||
|
Imprint: നിയമപരമായ വിവരങ്ങൾ
|
||||||
|
Information: വിവരങ്ങൾ
|
||||||
|
Language: ഭാഷ
|
||||||
|
Open: തുറക്കുക
|
||||||
|
Open Link: ലിങ്ക് തുറക്കുക
|
||||||
|
Options: ഓപ്ഷനുകൾ
|
||||||
|
Warning: മുന്നറിയിപ്പ്
|
||||||
11
app/i18n/ui/mn.yaml
Normal file
11
app/i18n/ui/mn.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Хувилбарууд
|
||||||
|
Close: Хаах
|
||||||
|
Copy: Хуулах
|
||||||
|
Identifier copied to clipboard!: Таних тэмдгийг санах ойд хууллаа!
|
||||||
|
Imprint: Хууль зүйн мэдээлэл
|
||||||
|
Information: Мэдээлэл
|
||||||
|
Language: Хэл
|
||||||
|
Open: Нээх
|
||||||
|
Open Link: Холбоос нээх
|
||||||
|
Options: Сонголтууд
|
||||||
|
Warning: Анхааруулга
|
||||||
11
app/i18n/ui/mr.yaml
Normal file
11
app/i18n/ui/mr.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: इतर पर्याय
|
||||||
|
Close: बंद करा
|
||||||
|
Copy: कॉपी करा
|
||||||
|
Identifier copied to clipboard!: ओळखकर्ता क्लिपबोर्डवर कॉपी केला!
|
||||||
|
Imprint: कायदेशीर माहिती
|
||||||
|
Information: माहिती
|
||||||
|
Language: भाषा
|
||||||
|
Open: उघडा
|
||||||
|
Open Link: दुवा उघडा
|
||||||
|
Options: पर्याय
|
||||||
|
Warning: चेतावणी
|
||||||
11
app/i18n/ui/ms.yaml
Normal file
11
app/i18n/ui/ms.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternatif
|
||||||
|
Close: Tutup
|
||||||
|
Copy: Salin
|
||||||
|
Identifier copied to clipboard!: Pengecam disalin ke papan keratan!
|
||||||
|
Imprint: Maklumat undang-undang
|
||||||
|
Information: Maklumat
|
||||||
|
Language: Bahasa
|
||||||
|
Open: Buka
|
||||||
|
Open Link: Buka pautan
|
||||||
|
Options: Pilihan
|
||||||
|
Warning: Amaran
|
||||||
11
app/i18n/ui/mt.yaml
Normal file
11
app/i18n/ui/mt.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: Alternattivi
|
||||||
|
Close: Agħlaq
|
||||||
|
Copy: Ikkopja
|
||||||
|
Identifier copied to clipboard!: L-identifikatur ġie kkupjat fil-clipboard!
|
||||||
|
Imprint: Informazzjoni legali
|
||||||
|
Information: Informazzjoni
|
||||||
|
Language: Lingwa
|
||||||
|
Open: Iftaħ
|
||||||
|
Open Link: Iftaħ il-link
|
||||||
|
Options: Għażliet
|
||||||
|
Warning: Twissija
|
||||||
11
app/i18n/ui/my.yaml
Normal file
11
app/i18n/ui/my.yaml
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
Alternatives: အခြားရွေးချယ်စရာများ
|
||||||
|
Close: ပိတ်ရန်
|
||||||
|
Copy: ကူးယူရန်
|
||||||
|
Identifier copied to clipboard!: သတ်မှတ်ချက်ကို ကလစ်ဘုတ်သို့ ကူးယူပြီးပါပြီ!
|
||||||
|
Imprint: ဥပဒေဆိုင်ရာ အချက်အလက်
|
||||||
|
Information: အချက်အလက်
|
||||||
|
Language: ဘာသာစကား
|
||||||
|
Open: ဖွင့်ရန်
|
||||||
|
Open Link: လင့်ခ်ဖွင့်ရန်
|
||||||
|
Options: ရွေးချယ်စရာများ
|
||||||
|
Warning: သတိပေးချက်
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user