Compare commits

..

No commits in common. "gh-pages" and "master" have entirely different histories.

5248 changed files with 1993478 additions and 385769 deletions

34
.github/codeql/codeql-config.yml vendored Normal file
View file

@ -0,0 +1,34 @@
name: "CodeQL config"
# Paths example; these are completely different from the same keywords when used for on.<push|pull_request>.paths in a workflow
# Restrict code scanning to files in specific directories by adding a paths array
paths:
- '**/*.js'
- '**/*.json'
- '**/*.htm*'
# # Exclude files in specific directories from analysis by adding a paths-ignore array
# paths-ignore:
# - src/node_modules
# - '**/*.test.js'
# # Scanner packs example
# packs:
# # Use these packs for JavaScript and TypeScript analysis
# javascript:
# - scope/js-pack1
# - scope/js-pack2
# # Query filters example
# query-filters:
# - exclude:
# problem.severity:
# - warning
# - recommendation
# # Query filters example 2
# query-filters:
# - exclude:
# id: js/redundant-assignment
# - exclude:
# id: js/useless-assignment-to-local

40
.github/issue_template vendored Normal file
View file

@ -0,0 +1,40 @@
# Issue template:
1. Please make sure that the issue subject starts with `<package-name>:`
2. Issues related to end of life (EOL) releases are not supported or maintained and will be closed
3. Remove lines from top till here and fill in the following questions
***
## Steps to reproduce:
**Example: Replace the following lines and remove this**
1. go to: Network → Interfaces → LAN (an interface with a static address) → DHCP server tab → IPv6 RA settings tab
2. set RA MTU and RA Hop Limit to arbitrary non-default value
3. Save & Apply
4. go to: IPv6 RA settings tab again
## Actual behavior:
**Example: Replace the following lines and remove this**
1. option ra_mtu '1500' is set correctly in /etc/config/dhcp
2. In LuCI though, RA MTU and RA Hop Limit are still displaying the default values in light gray font color.
## Expected behavior:
**Example: Replace the following lines and remove this**
```
RA MTU and RA Hop Limit are displaying the correct values found in /etc/config/dhcp in black font color.
```
## Additional Information:
OpenWrt version information from system `/etc/openwrt_release`
**Example: Replace the following lines and remove this**
```
DISTRIB_ID='OpenWrt'
DISTRIB_RELEASE='21.02.0-rc4'
DISTRIB_REVISION='r16256-2d5ee43dc6'
DISTRIB_TARGET='x86/64'
DISTRIB_ARCH='x86_64'
DISTRIB_DESCRIPTION='OpenWrt 21.02.0-rc4 r16256-2d5ee43dc6'
DISTRIB_TAINTS=''
```

38
.github/pull_request_template.md vendored Normal file
View file

@ -0,0 +1,38 @@
<!--
Thank you for your contribution to the luci repository.
Please read this before creating your PR.
Review https://github.com/openwrt/luci/blob/master/CONTRIBUTING.md
especially if this is your first time to contribute to this repo.
MUST NOT:
- add a PR from your *main* branch - put it on a separate branch
- add merge commits to your PR: rebase locally and force-push
MUST:
- increment any PKG_VERSION in the affected Makefile
- set to draft if this PR depends on other PRs to e.g. openwrt/openwrt
- each commit subject line starts with '<package name>: title'
- each commit has a valid `Signed-off-by: ` (S.O.B.) with a reachable email
* Forgot? `git commit --amend ; git push -f`
* Tip: use `git commit --signoff`
MAY:
- your S.O.B. *may* be a nickname
- delete the below *optional* entries that do not apply
- skip a `<package name>: title` first line subject if the commit is house-keeping or chore
-->
- [ ] This PR is not from my *main* or *master* branch :poop:, but a *separate* branch :white_check_mark:
- [ ] Each commit has a valid :black_nib: `Signed-off-by: <my@email.address>` row (via `git commit --signoff`)
- [ ] Each commit and PR title has a valid :memo: `<package name>: title` first line subject for packages
- [ ] Incremented :up: any `PKG_VERSION` in the Makefile
- [ ] Tested on: (architecture, openwrt version, browser) :white_check_mark:
- [ ] \( Preferred ) Mention: @ the original code author for feedback
- [ ] \( Preferred ) Screenshot or mp4 of changes:
- [ ] \( Optional ) Closes: e.g. openwrt/luci#issue-number
- [ ] \( Optional ) Depends on: e.g. openwrt/packages#pr-number in sister repo
- [ ] Description: (describe the changes proposed in this PR)

71
.github/workflows/build.yml vendored Normal file
View file

@ -0,0 +1,71 @@
name: Test Build
on:
pull_request:
jobs:
build:
name: Test ${{ matrix.arch }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- arch: x86_64
target: x86-64
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Determine branch name
run: |
BRANCH="${GITHUB_BASE_REF#refs/heads/}"
echo "Building for $BRANCH"
echo "BRANCH=$BRANCH" >> $GITHUB_ENV
- name: Determine changed packages
run: |
# only detect packages with changes
PKG_ROOTS=$(find . -name Makefile | \
grep -v ".*/src/Makefile" | \
sed -e 's@./\(.*\)/Makefile@\1/@')
CHANGES=$(git diff --diff-filter=d --name-only origin/$BRANCH)
for ROOT in $PKG_ROOTS; do
for CHANGE in $CHANGES; do
if [[ "$CHANGE" == "$ROOT"* ]]; then
PACKAGES+=$(echo "$ROOT" | sed -e 's@.*/\(.*\)/@\1 @')
break
fi
done
done
# fallback to test packages if nothing explicitly changes this is
# should run if other mechanics in packages.git changed
PACKAGES="${PACKAGES:-luci-app-attendedsysupgrade}"
echo "Building $PACKAGES"
echo "PACKAGES=$PACKAGES" >> $GITHUB_ENV
- name: Build
uses: openwrt/gh-action-sdk@v5
env:
ARCH: ${{ matrix.arch }}-${{ env.BRANCH }}
FEEDNAME: packages_ci
- name: Move created packages to project dir
run: cp bin/packages/${{ matrix.arch }}/packages_ci/*.ipk . || true
- name: Store packages
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.arch}}-packages
path: "*.ipk"
- name: Store logs
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.arch}}-logs
path: logs/

View file

@ -0,0 +1,15 @@
name: Check PR source branch
on:
pull_request_target:
types: [opened, synchronize]
jobs:
check-source-branch-is-not-main-or-master:
runs-on: ubuntu-latest
if: contains(fromJSON('["main", "master"]'), github.head_ref)
# or github.event.pull_request.head.ref
steps:
- run: |
echo "Error: Pull requests should not be from your 'main' or 'master' branch. :("
exit 1

26
.github/workflows/ci_helpers.sh vendored Normal file
View file

@ -0,0 +1,26 @@
#!/bin/sh
color_out() {
printf "\e[0;$1m$PKG_NAME: %s\e[0;0m\n" "$2"
}
success() {
color_out 32 "$1"
}
info() {
color_out 36 "$1"
}
err() {
color_out 31 "$1"
}
warn() {
color_out 33 "$1"
}
err_die() {
err "$1"
exit 1
}

100
.github/workflows/codeql.yml vendored Normal file
View file

@ -0,0 +1,100 @@
name: "LuCI repo CodeQL Analysis"
on:
push:
branches: [ "master" ]
paths:
# These help avoid unnecessary scans by limiting to those pushes (with commits) that contain JavaScript
- '**/*.js'
- '**/*.json'
- '**/*.htm*'
pull_request:
branches: [ "master" ]
# These paths(-ignore) set conditions that determine whether the actions in the workflow will run on a pull request.
# They do not determine what files will be analyzed when the actions *are* run.
paths:
# These help avoid unnecessary scans by limiting to those PRs (with commits) that contain JavaScript
- '**/*.js'
- '**/*.json'
- '**/*.htm*'
# paths-ignore:
# - '**/*.md'
# - '**/*.txt'
# Analyze also on a regular schedule
# schedule:
# Every Friday (5) at 13:33
# - cron: '33 13 * * 5'
jobs:
analyze:
name: Analyze JavaScript and JSON
# Runner size impacts CodeQL analysis time. To learn more, please see:
# - https://gh.io/recommended-hardware-resources-for-running-codeql
# - https://gh.io/supported-runners-and-hardware-resources
# - https://gh.io/using-larger-runners
# Consider using larger runners for possible analysis time improvements.
runs-on: ${{ 'ubuntu-latest' }}
timeout-minutes: ${{ 360 }}
permissions:
# required for all workflows
security-events: write
# only required for workflows in private repositories
# actions: read
# contents: read
strategy:
fail-fast: false
matrix:
language: [ 'javascript-typescript' ]
# CodeQL supports [ 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' ]
# Use only 'java-kotlin' to analyze code written in Java, Kotlin or both
# Use only 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
steps:
- name: Check out repository
uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
config-file: ./.github/codeql/codeql-config.yml
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality
# Config example:
# config: |
# disable-default-queries: true
# queries:
# - uses: security-extended
# query-filters:
# - exclude:
# tags: /cwe-020/
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
# If this step fails, then you should remove it and run the build manually (see below)
# For LuCI we likely do not need to build. JS just runs. Very little C in the repo.
# - name: Autobuild
# uses: github/codeql-action/autobuild@v3
# Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code. Please refer to the EXAMPLE below for guidance.
# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"

89
.github/workflows/formal.yml vendored Normal file
View file

@ -0,0 +1,89 @@
name: Test Formalities
on:
pull_request:
jobs:
build:
name: Test Formalities
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Determine branch name
run: |
BRANCH="${GITHUB_BASE_REF#refs/heads/}"
echo "Building for $BRANCH"
echo "BRANCH=$BRANCH" >> $GITHUB_ENV
- name: Test for merge commits, subject, S.O.B., and email
run: |
source .github/workflows/ci_helpers.sh
RET=0
for commit in $(git rev-list HEAD ^origin/$BRANCH); do
info "=== Checking commit '$commit'"
if git show --format='%P' -s $commit | grep -qF ' '; then
err "Pull request should not include merge commits"
RET=1
fi
authorname="$(git show -s --format=%aN $commit)"
if echo $authorname | grep -q '\S\+\s\+\S\+'; then
success "Author name ($authorname) seems ok"
elif echo $authorname | grep -q '\S\+'; then
success "Author name ($authorname) seems to be nick or alias"
else
err "Author name ($authorname) must be one of: real name 'firstname lastname' OR nickname/alias/handle "
RET=1
fi
committername="$(git show -s --format=%cN $commit)"
# Pattern \S\+\s\+\S\+ matches >= 2 names i.e. 3 and more e.g. "John Von Doe" also match
if echo $committername | grep -q '\S\+\s\+\S\+'; then
success "Committer name ($committername) seems ok"
elif echo $committername | grep -q '\S\+'; then
# Pattern \S\+ matches single names, typical of nicks or handles
success "Committer name ($committername) seems to be nick or alias"
else
err "Committer name ($committername) must be one of: real name 'firstname lastname' OR nickname/alias/handle "
RET=1
fi
subject="$(git show -s --format=%s $commit)"
if echo "$subject" | grep -q -e '^[0-9A-Za-z,+/_-]\+: ' -e '^Revert '; then
success "Commit subject line seems ok ($subject)"
elif echo "$subject" | grep -iq '^Translated using Weblate.*'; then
success "Weblate commit subject line exception OK: $subject"
elif echo "$subject" | grep -iq '^Added translation using Weblate.*'; then
success "Weblate commit subject line exception OK: $subject"
else
err "Commit subject line MUST start with '<package name>: ' ($subject)"
RET=1
fi
body="$(git show -s --format=%b $commit)"
authoremail="$(git show -s --format='<%aE>' $commit)"
sob="$(git show -s --format='Signed-off-by: %aN <%aE>' $commit)"
if echo "$body" | grep -qF "$sob"; then
success "Signed-off-by matches author"
elif echo "$authoremail" | grep -iqF "<hosted@weblate.org>"; then
success "Signed-off-by exception: authored by Weblate"
else
err "Signed-off-by is missing or doesn't match author (should be '$sob')"
RET=1
fi
if echo "$authoremail" | grep -iqF "users.noreply"; then
err "Real email address policy: please configure GitHub email ($authoremail) to a real one"
RET=1
fi
done
exit $RET

39
.github/workflows/jsdoc.yml vendored Normal file
View file

@ -0,0 +1,39 @@
name: GitHub pages
on:
push:
branches:
- master
paths:
# One day we might include all htdocs folders:
# - '**/htdocs/**'
# Until then, follow jsdoc.conf.json:source directive
- 'modules/luci-base/htdocs/luci-static/resources/**'
- 'docs/**'
jobs:
deploy:
if: endsWith( github.repository, 'luci' )
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install
run: npm install
- name: Build
run: npm run doc
- name: Archive docs as artifact
uses: actions/upload-artifact@v4
with:
name: docs
path: ./docs/
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/
enable_jekyll: true

19
.gitignore vendored Normal file
View file

@ -0,0 +1,19 @@
dist/
node_modules/
/host
*.o
*.so
*.swp
*.po~
*.mo
package-lock.json
modules/luci-base/src/po2lmo
modules/luci-base/src/jsmin
modules/luci-base/src/contrib/lemon
modules/luci-base/src/lib/plural_formula.c
modules/luci-base/src/lib/plural_formula.h
modules/luci-compat/src/contrib/lemon
modules/luci-compat/src/plural_formula.c
modules/luci-compat/src/plural_formula.h
docs/jsapi/*
!docs/jsapi/README.md

61
CONTRIBUTING.md Normal file
View file

@ -0,0 +1,61 @@
# Contributing Guidelines
## Patches and Pull requests:
If you want to contribute a change to LuCI, please either send a patch using git send-email
or open a "pull request" against the openwrt/luci repository.
Regardless of whether you send a patch or open a pull request, please try to follow these rules:
* Have a useful subject prefixed with the component name
(E.g.: "luci-mod-admin-full: fix wifi channel selection on multiple STA networks")
* Shortly explain the changes made and - if applicable - the reasoning behind them
* Commit message of each commit should include a Signed-off-by line
(See <https://openwrt.org/submitting-patches#sign_your_work>)
In case you like to send patches by mail, please use the [LuCI mailinglist](https://lists.subsignal.org/mailman/listinfo/luci)
or the [OpenWrt Development List](https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel).
If you send via the OpenWrt list, include a `[luci]` tag in your subject line.
For general information on patch submission, follow the [OpenWrt patch submission guideline](https://openwrt.org/submitting-patches).
## Advice on pull requests:
Pull requests are the easiest way to contribute changes to git repos at Github. They are the preferred contribution method, as they offer a nice way for commenting and amending the proposed changes.
* You need a local "fork" of the Github repo.
* Use a "feature branch" for your changes. That separates the changes in the pull request from your other changes and makes it easy to edit/amend commits in the pull request. Workflow using `feature_x` as the example:
- Update your local git fork to the tip (of the master, usually)
- Create the feature branch with `git checkout -b feature_x`
- Edit changes and commit them locally
- Push them to your Github fork by `git push -u origin feature_x`. That creates the `feature_x` branch at your Github fork and sets it as the remote of this branch
- When you now visit Github, you should see a proposal to create a pull request
* If you later need to add new commits to the pull request, you can simply commit the changes to the local branch and then use `git push` to automatically update the pull request.
* If you need to change something in the existing pull request (e.g. to add a missing signed-off-by line to the commit message), you can use `git push -f` to overwrite the original commits. That is easy and safe when using a feature branch. Example workflow:
- Checkout the feature branch by `git checkout feature_x`
- Edit changes and commit them locally. If you are just updating the commit message in the last commit, you can use `git commit --amend` to do that
- If you added several new commits or made other changes that require cleaning up, you can use `git rebase -i HEAD~X` (X = number of commits to edit) to possibly squash some commits
- Push the changed commits to Github with `git push -f` to overwrite the original commits in the "feature_x" branch with the new ones. The pull request gets automatically updated
## If you have commit access:
* Do NOT use `git push --force`.
* Use Pull Requests if you are unsure and to suggest changes to other developers.
## Gaining commit access:
* Commit access will be granted to responsible contributors who have made
useful pull requests and / or feedback or patches to this repository or
OpenWrt in general. Please include your request for commit access in your
next pull request or ticket.
## Release Branches:
* Branches named `openwrt-xx.yy` (e.g. `openwrt-18.06`) are release branches.
* These branches are built with the respective OpenWrt release and are created
during the release stabilisation phase.
* Please ONLY cherry-pick or commit security and bug-fixes to these branches.
* Do NOT add new packages and do NOT do major upgrades of packages here.
* If you are unsure if your change is suitable, please use a pull request.

View file

@ -1,4 +1,3 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
@ -199,4 +198,4 @@
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.

9
NOTICE Normal file
View file

@ -0,0 +1,9 @@
LuCI - Lua Configuration Interface
Copyright 2008 Steven Barth <steven@midlink.org>
Copyright 2008 Jo-Philipp Wich <jow@openwrt.org>
Licensed under the Apache License, Version 2.0.
Contains code from:
coxpcall - Copyright 2005 - Kepler Project (www.keplerproject.org)
ltn12/luasocket - Copyright 2004-2007 Diego Nehab
axTLS - Copyright 2008 Cameron Rich

View file

@ -1,24 +1,43 @@
# LuCI Documentation
# OpenWrt luci feed
See Wiki [LuCI Technical Reference](https://openwrt.org/docs/techref/luci)
[![Translation status](https://hosted.weblate.org/widgets/openwrt/-/svg-badge.svg)](https://hosted.weblate.org/engage/openwrt/?utm_source=widget)
## Description
This is the OpenWrt "luci"-feed containing LuCI - OpenWrt Configuration Interface.
## Usage
This feed is enabled by default. Your feeds.conf.default (or feeds.conf) should contain a line like:
```
src-git luci https://github.com/openwrt/luci.git
```
To install all its package definitions, run:
```
./scripts/feeds update luci
./scripts/feeds install -a -p luci
```
## API Reference
- [Client side JavaScript APIs](jsapi/)
- [How to i18n your module](i18n): internationalization via \*.po and \*.pot files
- [How to make LuCI JS Modules](https://github.com/openwrt/luci/tree/master/applications/luci-app-example): see the luci-app-example in the repo
- [How to use the JSON-RPC](JsonRpcHowTo)
- [How to make themes](ThemesHowTo)
- [LuCI Modules Reference](Modules): can be JS based or Lua (deprecated)
You can browse the generated API documentation directly on Github.
## Deprecated API Reference (older Lua based APIs)
- [Server side Lua APIs](http://openwrt.github.io/luci/api/index.html)
- [Client side JavaScript APIs](http://openwrt.github.io/luci/jsapi/index.html)
- [CBI models reference](CBI):CBI models are Lua files describing the structure of an UCI config file and the resulting HTML form to be evaluated by the CBI parser
- [How to make LuCI Lua Modules](ModulesHowTo): No new Lua modules for client side display are accepted, but some server side things are still done in Lua
- [LMO - Lua Machine Objects](LMO): to pack language strings into a more efficient form for Lua
- [Server side Lua APIs](api/index.html)
- [Templates](Templates): template processor which parses HTML-files to Lua functions and allows to store precompiled template files
## Development
## Archived
Documentation for developing and extending LuCI can be found [in the Wiki](https://github.com/openwrt/luci/wiki)
- [LuCI-0.10](LuCI-0.10): No longer used, but useful reference if you encounter older LuCI versions.
## License
See [LICENSE](LICENSE) file.
## Package Guidelines
See [CONTRIBUTING.md](CONTRIBUTING.md) file.
## Translation status
[![Translation status](https://hosted.weblate.org/widgets/openwrt/-/multi-auto.svg)](https://hosted.weblate.org/engage/openwrt/?utm_source=widget)

View file

@ -0,0 +1,10 @@
# This is free software, licensed under the Apache License, Version 2.0 .
include $(TOPDIR)/rules.mk
LUCI_TITLE:=LuCI account management module
LUCI_DEPENDS:=+luci-base
include ../../luci.mk
# call BuildPackage - OpenWrt buildroot signature

View file

@ -0,0 +1,339 @@
'use strict';
'require view';
'require dom';
'require fs';
'require ui';
'require uci';
'require form';
'require tools.widgets as widgets';
var aclList = {};
function globListToRegExp(section_id, option) {
var list = L.toArray(uci.get('rpcd', section_id, option)),
positivePatterns = [],
negativePatterns = [];
if (option == 'read')
list.push.apply(list, L.toArray(uci.get('rpcd', section_id, 'write')));
for (var i = 0; i < list.length; i++) {
var array, glob;
if (list[i].match(/^\s*!/)) {
glob = list[i].replace(/^\s*!/, '').trim();
array = negativePatterns;
}
else {
glob = list[i].trim(),
array = positivePatterns;
}
array.push(glob.replace(/[.*+?^${}()|[\]\\]/g, function(m) {
switch (m[0]) {
case '?':
return '.';
case '*':
return '.*';
default:
return '\\' + m[0];
}
}));
}
return [
new RegExp('^' + (positivePatterns.length ? '(' + positivePatterns.join('|') + ')' : '') + '$'),
new RegExp('^' + (negativePatterns.length ? '(' + negativePatterns.join('|') + ')' : '') + '$')
];
}
var cbiACLLevel = form.DummyValue.extend({
textvalue: function(section_id) {
var allowedAclMatches = globListToRegExp(section_id, this.option.match(/read/) ? 'read' : 'write'),
aclGroupNames = Object.keys(aclList),
matchingGroupNames = [];
for (var j = 0; j < aclGroupNames.length; j++)
if (allowedAclMatches[0].test(aclGroupNames[j]) && !allowedAclMatches[1].test(aclGroupNames[j]))
matchingGroupNames.push(aclGroupNames[j]);
if (matchingGroupNames.length == aclGroupNames.length)
return E('span', { 'class': 'label' }, [ _('full', 'All permissions granted') ]);
else if (matchingGroupNames.length > 0)
return E('span', { 'class': 'label' }, [ _('partial (%d/%d)', 'Some permissions granted').format(matchingGroupNames.length, aclGroupNames.length) ]);
else
return E('span', { 'class': 'label warning' }, [ _('denied', 'No permissions granted') ]);
}
});
var cbiACLSelect = form.Value.extend({
renderWidget: function(section_id) {
var readMatches = globListToRegExp(section_id, 'read'),
writeMatches = globListToRegExp(section_id, 'write');
var table = E('table', { 'class': 'table' }, [
E('tr', { 'class': 'tr' }, [
E('th', { 'class': 'th' }, [ _('ACL group') ]),
E('th', { 'class': 'th' }, [ _('Description') ]),
E('th', { 'class': 'th' }, [ _('Access level') ])
]),
E('tr', { 'class': 'tr' }, [
E('td', { 'class': 'td' }, [ '' ]),
E('td', { 'class': 'td' }, [ '' ]),
E('td', { 'class': 'td' }, [
_('Set all: ', 'Set all permissions in the table below to one of the given values'),
E('a', { 'href': '#', 'click': function() {
table.querySelectorAll('select').forEach(function(select) { select.value = select.options[0].value });
} }, [ _('denied', 'No permissions granted') ]), ' | ',
E('a', { 'href': '#', 'click': function() {
table.querySelectorAll('select').forEach(function(select) { select.value = 'read' });
} }, [ _('readonly', 'Only read permissions granted') ]), ' | ',
E('a', { 'href': '#', 'click': function() {
table.querySelectorAll('select').forEach(function(select) { select.value = 'write' });
} }, [ _('full', 'All permissions granted') ]),
])
])
]);
Object.keys(aclList).sort().forEach(function(aclGroupName) {
var isRequired = (aclGroupName == 'unauthenticated' || aclGroupName == 'luci-base'),
isReadable = (readMatches[0].test(aclGroupName) && !readMatches[1].test(aclGroupName)) || null,
isWritable = (writeMatches[0].test(aclGroupName) && !writeMatches[1].test(aclGroupName)) || null;
table.appendChild(E('tr', { 'class': 'tr' }, [
E('td', { 'class': 'td' }, [ aclGroupName ]),
E('td', { 'class': 'td' }, [ aclList[aclGroupName].description || '-' ]),
E('td', { 'class': 'td' }, [
E('select', { 'data-acl-group': aclGroupName }, [
isRequired ? E([]) : E('option', { 'value': '' }, [ _('denied', 'No permissions granted') ]),
E('option', { 'value': 'read', 'selected': isReadable }, [ _('readonly', 'Only read permissions granted') ]),
E('option', { 'value': 'write', 'selected': isWritable }, [ _('full', 'All permissions granted') ])
])
])
]));
});
return table;
},
formvalue: function(section_id) {
var node = this.map.findElement('data-field', this.cbid(section_id)),
data = {};
node.querySelectorAll('[data-acl-group]').forEach(function(select) {
var aclGroupName = select.getAttribute('data-acl-group'),
value = select.value;
if (!value)
return;
switch (value) {
case 'write':
data.write = data.write || [];
data.write.push(aclGroupName);
/* fall through */
case 'read':
data.read = data.read || [];
data.read.push(aclGroupName);
break;
}
});
return data;
},
write: function(section_id, value) {
uci.unset('rpcd', section_id, 'read');
uci.unset('rpcd', section_id, 'write');
if (L.isObject(value) && Array.isArray(value.read))
uci.set('rpcd', section_id, 'read', value.read);
if (L.isObject(value) && Array.isArray(value.write))
uci.set('rpcd', section_id, 'write', value.write);
}
});
return view.extend({
load: function() {
return L.resolveDefault(fs.list('/usr/share/rpcd/acl.d'), []).then(function(entries) {
var tasks = [
L.resolveDefault(fs.stat('/usr/sbin/uhttpd'), null),
fs.lines('/etc/passwd')
];
for (var i = 0; i < entries.length; i++)
if (entries[i].type == 'file' && entries[i].name.match(/\.json$/))
tasks.push(L.resolveDefault(fs.read('/usr/share/rpcd/acl.d/' + entries[i].name).then(JSON.parse)));
return Promise.all(tasks);
});
},
render: function(data) {
ui.addNotification(null, E('p', [
_('The LuCI ACL management is in an experimental stage! It does not yet work reliably with all applications')
]), 'warning');
var has_uhttpd = data[0],
known_unix_users = {};
for (var i = 0; i < data[1].length; i++) {
var parts = data[1][i].split(/:/);
if (parts.length >= 7)
known_unix_users[parts[0]] = true;
}
for (var i = 2; i < data.length; i++) {
if (!L.isObject(data[i]))
continue;
for (var aclName in data[i]) {
if (!data[i].hasOwnProperty(aclName))
continue;
aclList[aclName] = data[i][aclName];
}
}
var m, s, o;
m = new form.Map('rpcd', _('LuCI Logins'));
s = m.section(form.GridSection, 'login');
s.anonymous = true;
s.addremove = true;
s.modaltitle = function(section_id) {
return _('LuCI Logins') + ' » ' + (uci.get('rpcd', section_id, 'username') || _('New account'));
};
o = s.option(form.Value, 'username', _('Login name'));
o.rmempty = false;
o = s.option(form.ListValue, '_variant', _('Password variant'));
o.modalonly = true;
o.value('shadow', _('Use UNIX password in /etc/shadow'));
o.value('crypted', _('Use encrypted password hash'));
o.cfgvalue = function(section_id) {
var value = uci.get('rpcd', section_id, 'password') || '';
if (value.substring(0, 3) == '$p$')
return 'shadow';
else
return 'crypted';
};
o.write = function() {};
o = s.option(widgets.UserSelect, '_account', _('UNIX account'), _('The system account to use the password from'));
o.modalonly = true;
o.depends('_variant', 'shadow');
o.cfgvalue = function(section_id) {
var value = uci.get('rpcd', section_id, 'password') || '';
return value.substring(3);
};
o.write = function(section_id, value) {
uci.set('rpcd', section_id, 'password', '$p$' + value);
};
o.remove = function() {};
o = s.option(form.Value, 'password', _('Password value'));
o.modalonly = true;
o.password = true;
o.rmempty = false;
o.depends('_variant', 'crypted');
o.cfgvalue = function(section_id) {
var value = uci.get('rpcd', section_id, 'password') || '';
return (value.substring(0, 3) == '$p$') ? '' : value;
};
o.validate = function(section_id, value) {
var variant = this.map.lookupOption('_variant', section_id)[0];
switch (value.substring(0, 3)) {
case '$p$':
return _('The password may not start with "$p$".');
case '$1$':
variant.getUIElement(section_id).setValue('crypted');
break;
default:
if (variant.formvalue(section_id) == 'crypted' && value.length && !has_uhttpd)
return _('Cannot encrypt plaintext password since uhttpd is not installed.');
}
return true;
};
o.write = function(section_id, value) {
var variant = this.map.lookupOption('_variant', section_id)[0];
if (variant.formvalue(section_id) == 'crypted' && value.substring(0, 3) != '$1$')
return fs.exec('/usr/sbin/uhttpd', [ '-m', value ]).then(function(res) {
if (res.code == 0 && res.stdout)
uci.set('rpcd', section_id, 'password', res.stdout.trim());
else
throw new Error(res.stderr);
}).catch(function(err) {
throw new Error(_('Unable to encrypt plaintext password: %s').format(err.message));
});
uci.set('rpcd', section_id, 'password', value);
};
o.remove = function() {};
o = s.option(form.Value, 'timeout', _('Session timeout'));
o.default = '300';
o.datatype = 'uinteger';
o.textvalue = function(section_id) {
var value = uci.get('rpcd', section_id, 'timeout') || this.default;
return +value ? '%ds'.format(value) : E('em', [ _('does not expire') ]);
};
o = s.option(cbiACLLevel, '_read', _('Read access'));
o.modalonly = false;
o = s.option(cbiACLLevel, '_write', _('Write access'));
o.modalonly = false;
o = s.option(form.ListValue, '_level', _('Access level'));
o.modalonly = true;
o.value('write', _('full', 'All permissions granted'));
o.value('read', _('readonly', 'Only read permissions granted'));
o.value('individual', _('individual', 'Select individual permissions manually'));
o.cfgvalue = function(section_id) {
var readList = L.toArray(uci.get('rpcd', section_id, 'read')),
writeList = L.toArray(uci.get('rpcd', section_id, 'write'));
if (writeList.length == 1 && writeList[0] == '*')
return 'write';
else if (readList.length == 1 && readList[0] == '*')
return 'read';
else
return 'individual';
};
o.write = function(section_id) {
switch (this.formvalue(section_id)) {
case 'write':
uci.set('rpcd', section_id, 'read', ['*']);
uci.set('rpcd', section_id, 'write', ['*']);
break;
case 'read':
uci.set('rpcd', section_id, 'read', ['*']);
uci.unset('rpcd', section_id, 'write');
break;
}
};
o.remove = function() {};
o = s.option(cbiACLSelect, '_acl');
o.modalonly = true;
o.depends('_level', 'individual');
return m.render();
}
});

View file

@ -0,0 +1,146 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-03-08 13:04+0000\n"
"Last-Translator: Mohammed Abu Hassan <medo94125@gmail.com>\n"
"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/ar/>\n"
"Language: ar\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Generator: Weblate 4.5.1\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "اعدادات ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "اعدادات ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "مستوى الصلاحية"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr "لا يمكن تشفيرالنص المجرد لكلمة السر لأن uhttpd غير مثبت."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "الوصف"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "منح الوصول إلى تهيئة قائمة التحكم بالوصول (ACL)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "اسم المستخدم"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "ولوج LuCi"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "حساب جديد"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "كلمة السر"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "متغير كلمة المرور"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "صلاحيات للقراءة"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "نفاذ وقت الجلسة"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "تعيين كافة:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"إدارة LuCI ACL في مرحلة تجريبية! لا يعمل بشكل موثوق حتى الآن مع جميع "
"التطبيقات"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "لا يجوز أن تبدأ كلمة المرور بـ \"$ p $\"."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "حساب النظام المراد استخدام كلمة المرور منه"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "حساب UNIX"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "تعذر تشفير كلمة مرور النص العادي:٪ s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "استخدم كلمة مرور UNIX في / etc / shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "استخدم تجزئة كلمة المرور المشفرة"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "صلاحيات للتعديل"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "رفض"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "لا تنتهي صلاحيتها"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "كامل"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "فرد"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "جزئي (٪ d /٪ d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "قراءة فقط"
#~ msgid "Use plain password"
#~ msgstr "استخدم كلمة مرور عادية"

View file

@ -0,0 +1,148 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2020-05-22 12:40+0000\n"
"Last-Translator: Stefan M <sm@voip-office.eu>\n"
"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/bg/>\n"
"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.1-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "Настройки ACL (списъци за контрол на достъпа)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "ACL група (списъци за контрол на достъпа)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Ниво на достъп"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
"Текстът на паролата не може да бъде кодиран, защото uhttpd не е инсталиран."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Описание"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Позволи достъп до ACL конфигурацията (списъци за контрол на достъпа)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Потребителско име"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "LuCI Потребителски имена"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Нов акаунт"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Стойност на паролата"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Вариант на паролата"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Достъп за четене"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Прекъсване на сесията след"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Промени всички:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"Управлението на ACL (списъци за контрол на достъпа) в LuCI е все още в "
"експериментална фаза! Все още не работи надеждно при всички приложения"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "Паролата не може да започва с \"$p$\"."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Системния акаунт от който да се използва паролата"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "UNIX акаунт"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Текстовата парола не може да се кодира: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Използвай UNIX паролата от /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Използвай кодиран password hash"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Достъп за променяне"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "отказан"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "не изгубва валидност"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "пълен"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "индивидуален"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "частичен (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "само четене"
#~ msgid "Use plain password"
#~ msgstr "Използвай не-кодирана парола"

View file

@ -0,0 +1,142 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-10-08 17:53+0000\n"
"Last-Translator: Rayhan Nabi <rayhanjanam@gmail.com>\n"
"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/"
"openwrt/luciapplicationsacl/bn_BD/>\n"
"Language: bn_BD\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.9-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "ACL সেটিংস"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "ACL গ্রুপ"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "অ্যাক্সেস লেভেল"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr "প্লেইনটেক্সট পাসওয়ার্ড এনক্রিপ্ট হচ্ছে না যেহেতু uhttpd ইনস্টল করা নেই।"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "বর্ণনা"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "ACL কনফিগারেশনে অ্যাক্সেস মঞ্জুর করুন"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "লগইন নাম"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "LuCI লগইন"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "নতুন একাউন্ট"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "পাসওয়ার্ডের মান"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "পাসওয়ার্ডের প্রকারভেদ"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "পড়ার অনুমতি"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "সময়সীমা শেষ"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "সব সেট করুন:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"LuCI ACL ব্যবস্থাপনা পরীক্ষামূলক পর্যায়ে রয়েছে! এটি এখনও সব অ্যাপ্লিকেশনের "
"সাথে নির্ভরতার সাথে কাজ করেনা"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "পাসওয়ার্ডের শুরুতে \"$p$\" পরিহার করুন।"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "যে সিস্টেম অ্যাকাউন্টের পাসওয়ার্ড ব্যবহার করবেন"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "UNIX অ্যাকাউন্ট"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "এই প্লেইনটেক্সট পাসওয়ার্ড এনক্রিপ্ট করা যাচ্ছে না: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "/etc/shadow তে UNIX পাসওয়ার্ড ব্যবহার করুন"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "এনক্রিপ্টেড পাসওয়ার্ড হ্যাশ ব্যবহার করুন"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "পরিবর্তনের অ্যাক্সেস"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "অস্বীকৃত"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "চিরস্থায়ী"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "সব"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "পৃথকভাবে"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "আংশিক (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "শুধুমাত্র পাঠযোগ্য"

View file

@ -0,0 +1,144 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-09-22 10:48+0000\n"
"Last-Translator: Dino Mesic <undeene@gmail.com>\n"
"Language-Team: Bosnian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/bs/>\n"
"Language: bs\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.9-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "ACL Postavke"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "ACL Grupa"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Nivo pristupa"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
"Ne može se šifrirati lozinka otvorenog teksta jer uhttpd nije instaliran."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Opis"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Dozvoli pristup ACL postavkama"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Ime za prijavu"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "LuCI prijave"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Novi racun"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Vrijednost lozinke"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Varijanta lozinke"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Pristup za citanje"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Vremensko ogranicenje sesije"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Postavi sve:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"Upravljanje LuCI ACL-om je u eksperimentalnoj fazi! Još ne radi pouzdano sa "
"svim aplikacijama"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "Lozinka ne moze poceti sa \"$p$\"."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Sistemski račun za korištenje lozinke"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "UNIX racun"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Nije moguće šifrirati lozinku otvorenog teksta: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Koristi UNIX lozinku u /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Koristite šifrirani hash lozinke"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Pristup za pisanje"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "Odbijeno"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "ne istice"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "sve"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "zasebno"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "djelimicno (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "samo za citanje"

View file

@ -0,0 +1,151 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2020-04-30 05:51+0000\n"
"Last-Translator: Roger Pueyo Centelles <weblate@rogerpueyo.com>\n"
"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/ca/>\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.0.2\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "Paràmetres d'ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "Grup ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Nivell d'accés"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
"No s'ha pogut encriptar la contrasenya perquè l'uhttpd no està instal·lat."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Descripció"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Atorgar accés a la configuració de l'ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Nom d'inici de sessió"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "Inicis de sessió a LuCI"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Nou compte"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Valor de la contrasenya"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Variant de la contrasenya"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Accés de lectura"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Temps d'espera de la sessió"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Establir tot:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"La gestió de l'ACL de LuCI es troba en fase experimental! Encara no funciona "
"fiablement amb totes les aplicacions"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "La contrasenya no hauria de començar amb \"$p$."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Compte del sistema del qual emprar la contrasenya"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "Compte UNIX"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "No s'ha pogut encriptar la contrasenya en text pla: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Empra la contrasenya UNIX a /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Fes servir el resum (hash) de la contrasenya xifrada"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Accés d'escriptura"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "denegat"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "no caduca"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "complet"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "individual"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "parcial (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "només-lectura"
#~ msgid "Use plain password"
#~ msgstr "Fes servir una contrasenya en clar"
#~ msgid "Acess level"
#~ msgstr "Nivell d'accés"

View file

@ -0,0 +1,147 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2021-02-05 14:57+0000\n"
"Last-Translator: Karel Riesner <riesner@gmail.com>\n"
"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/cs/>\n"
"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 4.5-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "Nastavení ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "ACL skupina"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Přístupová úroveň"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr "Nemohu zašifrovat textové heslo protože uhttpd není nainstalovaný."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Popis"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Povolit přístup k nastavení ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Přihlašovací jméno"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "LuCI přihlášení"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Nový účet"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Hodnota hesla"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Varianta hesla"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Přístup ke čtení"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Časový limit relace"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Nastavit vše:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"Správa LuCI ACL je v experimentální fázi! Prozatím nefunguje spolehlivě se "
"všemi aplikacemi"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "Heslo nesmí začínat \"$p$\"."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Systémový účet, ze kterého se má použít heslo"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "Účet UNIX"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Nelze zašifrovat heslo ve formátu prostého textu: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Použití hesla systému UNIX v /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Použít šifrovaný hash hesla"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Přístup pro zápis"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "zamítnuto"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "nevyprší"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "plný"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "individuální"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "částečné (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "pouze pro čtení"
#~ msgid "Use plain password"
#~ msgstr "Použít prosté heslo"

View file

@ -0,0 +1,148 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-01-23 03:57+0000\n"
"Last-Translator: Gareth Vaughan Jones <garethvjones@me.com>\n"
"Language-Team: Welsh <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/cy/>\n"
"Language: cy\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=(n==0) ? 0 : (n==1) ? 1 : (n==2) ? 2 : "
"(n==3) ? 3 :(n==6) ? 4 : 5;\n"
"X-Generator: Weblate 4.5-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "Gosodiadau ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "Grwp ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Lefel mynediad"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
"Nid yw'n bosib amgryptio cyfrinair sydd mewn plaintext. Nid yw uhttpd wedi "
"ei osod."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Disgrifiad"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Caniatau mynediad i gyfluniadau ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Enw mewngofnodi"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "Mewngyfnodion LuCI"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Cyfrif newydd"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Gwerth cyfrinair"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Amrywiad y cyfrinair"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Mynediad darllen"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Mae y sesiwn wedi amseru allan"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Gosod pop:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"Mae rheolaeth ACL LuCI mewn cyfnod arbrofol! Nid yw'n gweithio yn ddibynadwy "
"eto gyda phob meddalwedd"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "Ni all y cyfrinair ddechrau gyda \"$p$\"."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Mae cyfrif y system yn mynd i ddefnyddio y cyfrinair o"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "Cyfrif UNIX"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Nid yw'n bosib amgryptio cyfrinair plaintext: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Defnyddio cyfrinair UNIX yn /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Defnyddio'r cyfrinair sydd wedi ei amgryptio"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Hawliau mynediad ysgrifennu"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "gwadu"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "nid yw'n darfod"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "llawn"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "unigol"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "rhannol (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "darllen yn unig"
#~ msgid "Use plain password"
#~ msgstr "Defnyddio cyfrinair plaen"

View file

@ -0,0 +1,144 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-11-15 17:49+0000\n"
"Last-Translator: drax red <drax@outlook.dk>\n"
"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/da/>\n"
"Language: da\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.9.1-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "ACL Indstillinger"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "ACL Gruppe"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Adgangs Niveau"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
"Kan ikke kryptere almindelig tekst adgangskode, da uhttpd ikke er "
"installeret."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Beskrivelse"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Giv adgang til ACL-konfiguration"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Login-navn"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "LuCI Log ind"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Ny Konto"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Adgangskodeværdi"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Adgangskodevariant"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Læseadgang"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Session udløbet"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Indstil alle:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"LuCI ACL-administration er i en eksperimentel fase! Det fungerer endnu ikke "
"pålideligt med alle applikationer"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "Adgangskoden starter muligvis ikke med \"$p$\"."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Systemkontoen hvor adgangskoden skal bruges fra"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "UNIX konto"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Kan ikke kryptere almindelig tekstadgangskode: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Brug UNIX adgangskode i /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Brug krypteret adgangskode-hash"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Skriveadgang"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "nægtet"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "udløber ikke"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "fuld"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "individuel"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "delvis (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "Læs kun"

View file

@ -0,0 +1,152 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2020-04-20 07:11+0000\n"
"Last-Translator: ce4 <chregger@gmail.com>\n"
"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.0.2-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "ACL-Einstellungen"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "ACL-Gruppe"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Zugriffsebene"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
"Klartextpassword konnte nicht verschlüsselt werden, da uhttpd nicht "
"installiert ist."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Beschreibung"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Zugriff auf ACL-Konfiguration gewähren"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Loginname"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "LuCI-Logins"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Neues Konto"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Passwort"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Passwort-Variante"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Lesezugriff"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Timeout der Sitzung"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Für alle setzen:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"Die LuCI-ACL-Rechteverwaltung befindet sich noch in einem experimentellen "
"Stadium und funktioniert noch nicht mit allen Anwendungen zuverlässig!"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "Das Passwort darf nicht mit \"$p$\" beginnen."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Das Systemkonto, dessen Passwort genutzt wird"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "UNIX-Konto"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Konnte Klartextpasswort nicht verschlüsseln: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Verwende das UNIX-Passwort in /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Verwende einen verschlüsselten Passwort-Hash"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Schreibzugriff"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "verwehrt"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "läuft niemals ab"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "voll"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "individuell"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "teilweise (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "nur Leserechte"
#~ msgid "Use plain password"
#~ msgstr "Verwende Klartextpasswörter"
#~ msgid "Acess level"
#~ msgstr "Zugriffsebene"

View file

@ -0,0 +1,153 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2020-05-23 15:41+0000\n"
"Last-Translator: george k <norhorn@gmail.com>\n"
"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/el/>\n"
"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.1-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "Ρυθμίσεις ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "Ομάδα ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Επίπεδο πρόσβασης"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
"Δεν είναι δυνατή η κρυπτογράφηση του κωδικού πρόσβασης απλού κειμένου, "
"επειδή δεν είναι εγκατεστημένο το uhttpd."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Περιγραφή"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Έγκριση πρόσβασης στην ρύθμιση ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Όνομα σύνδεσης"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "Συνδέσεις LuCI"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Νέος λογαριασμός"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Κωδικός"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Παραλλαγή κωδικού"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Μόνο ανάγνωση"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Λήξη σύνδεσης"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Ορισμός όλων:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"Η διαχείριση του LuCI ACL βρίσκεται σε πειραματικό στάδιο! Δεν λειτουργεί "
"ακόμα αξιόπιστα με όλες τις εφαρμογές"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "Ο κωδικός πρόσβασης δεν πρέπει να ξεκινά με \"$p$\"."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Ο λογαριασμός συστήματος με χρήση του κωδικού από"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "Λογαριασμός UNIX"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr ""
"Δεν είναι δυνατή η κρυπτογράφηση του κωδικού πρόσβασης απλού κειμένου: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Χρήση κωδικού πρόσβασης UNIX στο /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Χρήση κρυπτογραφημένου κωδικού"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Πρόσβαση εγγραφής"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "αρνήθηκε"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "χωρίς λήξη"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "Πλήρη"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "επιμέρους"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "μερική (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "μόνο για ανάγνωση"
#~ msgid "Use plain password"
#~ msgstr "Χρήση απλού κωδικού πρόσβασης"
#~ msgid "Acess level"
#~ msgstr "Επίπεδο πρόσβασης"

View file

@ -0,0 +1,147 @@
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: en\n"
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "ACL Settings"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "ACL group"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Access level"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr "Cannot encrypt plaintext password since uhttpd is not installed."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Description"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Grant access to ACL configuration"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Login name"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "LuCI Logins"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "New account"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Password value"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Password variant"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Read access"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Session timeout"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Set all:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "The password may not start with \"$p$\"."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "The system account to use the password from"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "UNIX account"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Unable to encrypt plaintext password: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Use UNIX password in /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Use encrypted password hash"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Write access"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "denied"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "does not expire"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "full"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "individual"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "partial (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "readonly"
#~ msgid "Use plain password"
#~ msgstr "Use plain password"
#~ msgid "Acess level"
#~ msgstr "Acess level"

View file

@ -0,0 +1,152 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2020-04-18 22:41+0000\n"
"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n"
"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/es/>\n"
"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.0.2-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "Configuraciones de ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "Grupo ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Nivel de acceso"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
"No se puede cifrar la contraseña de texto sin formato ya que uhttpd no está "
"instalado."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Descripción"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Conceder acceso a la configuración de ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Nombre de inicio de sesión"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "Inicios de sesión en LuCI"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Nueva cuenta"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Valor de la contraseña"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Variante de contraseña"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Acceso de lectura"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Tiempo de espera de sesión"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Establecer todos:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"¡La gestión de ACL de LuCI está en una etapa experimental! Todavía no "
"funciona de manera confiable con todas las aplicaciones"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "La contraseña puede no comenzar con \"$p$\"."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "La cuenta del sistema para usar la contraseña de"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "Cuenta UNIX"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "No se puede cifrar la contraseña de texto sin formato: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Utilice la contraseña de UNIX en /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Usar hash de contraseña cifrada"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Acceso de escritura"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "denegado"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "no expira"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "completo"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "individual"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "parcial (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "solo lectura"
#~ msgid "Use plain password"
#~ msgstr "Usar contraseña simple"
#~ msgid "Acess level"
#~ msgstr "Nivel de acceso"

View file

@ -0,0 +1,142 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-11-26 17:59+0000\n"
"Last-Translator: Pegah_fars <ashkanull@gmail.com>\n"
"Language-Team: Persian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/fa/>\n"
"Language: fa\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.2.1-rc\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "تنظیمات ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "گروه ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "سطح دسترسی"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr "تا زمان عدم نصب سرویس uhttpd امکان رمز نگاری متن ساده وجود ندارد."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "شرح"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "اعطای دسترسی برای کانفیگ ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "نام ورود"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "لاگین های LUCI"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "حساب کاربری جدید"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "مقدار رمز"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "رمز متغیر"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "خواندن دسترسی"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "بسته شدن SESSION"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "تنظیم همه :"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"ACL مربوط به LUCI در وضعیت تست می باشد ! در نتیجه ممکن است به خوبی با تمام "
"اپلیکیشن ها کار نکند"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "ممکن است پسورد با\"$p$\" شروع نشده باشد ."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "حساب کاربری سیستم برای استفاده از رمز"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "حساب کاربری UNIX"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "عدم امکان رمزنگاری یک رمز ساده : %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "استفاده از رمز UNIX در /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "استفاده از هش پسورد رمزنگاری شده"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "نوشتن دسترسی"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "غیر مجاز"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "منقضی نشده"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "پر"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "فردی"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "بخش (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "فقط قابل خواندن"

View file

@ -0,0 +1,148 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2022-03-12 13:29+0000\n"
"Last-Translator: Jiri Grönroos <jiri.gronroos@iki.fi>\n"
"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/fi/>\n"
"Language: fi\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.12-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "ACL-asetukset"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "ACL-ryhmä"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Pääsytaso"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr "Salasanaa ei voi salata koska uhttpd on asentamatta."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Kuvaus"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Salli pääsy ACL-määrityksiin"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Käyttäjätunnus"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "LuCI-kirjautumiset"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Uusi tili"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Salasanan arvo"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Salasanan muoto"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Salli luku"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Istunnon aikakatkaisu"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Aseta kaikki:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"LuCI:n käyttöoikeuksien hallintajärjestelmä (ACL) on testausvaiheessa! Se ei "
"välttämättä toimi kaikissa tilanteissa oikein"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "Salasana ei voi alkaa merkkijonolla \"$p$\"."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Järjestelmä käyttää salasanaa kohteelta"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "UNIX-käyttäjätunnus"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Salasanan salaaminen epäonnistui: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Käytä UNIX-salasanaa tiedostosta /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Käytä salattua salasanan tarkistussummaa"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Salli kirjoitus"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "evätty"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "ei vanhene"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "täysi"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "yksittäiset"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "osittainen (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "vain luku"
#~ msgid "Use plain password"
#~ msgstr "Kaytä salaamatonta salasanaa"
#~ msgid "Acess level"
#~ msgstr "Pääsytaso"

View file

@ -0,0 +1,151 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2020-04-22 19:41+0000\n"
"Last-Translator: NEOX <exitneox+weblate@outlook.com>\n"
"Language-Team: French <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/fr/>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.0.2-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "Paramètres ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "Groupe ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Niveau dAccès"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
"Impossible de crypter le mot de passe en clair car uhttpd n'est pas installé."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Description"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Accès complète à la configuration du ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Login nom"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "Luci Logins"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Nouv. compte"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Valeur Password"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Variant Password"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Accès en Lecture"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Durée de la session"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Définir tout:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"La gestion de LuCI ACL est en phase expérimentale ! Elle ne fonctionne pas "
"encore de manière fiable avec toutes les applications"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "Le mot de passe ne doit pas commencer par \"$p$\"."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Le compte du système pour utiliser le mot de passe de"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "UNIX account"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Impossible de crypter le mot de passe en texte clair : %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Utiliser le password UNIX dans /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Utiliser un hachage de mot de passe crypté"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Accès en Ecriture"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "refusée"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "n'expire pas"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "Complète"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "individuel"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "partielle (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "lecture seul"
#~ msgid "Use plain password"
#~ msgstr "Utiliser un mot de passe simple"
#~ msgid "Acess level"
#~ msgstr "Niveau d'accès"

View file

@ -0,0 +1,142 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2021-01-15 22:31+0000\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/he/>\n"
"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 4.5-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "תיאור"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "הגדר הכל:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr ""

View file

@ -0,0 +1,138 @@
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr ""
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr ""

View file

@ -0,0 +1,149 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2020-08-10 12:32+0000\n"
"Last-Translator: Balázs Úr <balazs@urbalazs.hu>\n"
"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/hu/>\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.2-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "ACL beállítások"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "ACL csoport"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Hozzáférési szint"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
"Nem lehet titkosítani az egyszerű szöveges jelszót, mivel az uhttpd nincs "
"telepítve."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Leírás"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Hozzáférés biztosítása az ACL beállításhoz"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Bejelentkezési név"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "LuCI bejelentkezések"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Új fiók"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Jelszóérték"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Jelszóváltozat"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Olvasási hozzáférés"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Munkamenet-időkorlát"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Összes beállítása:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"A LuCI ACL kezelés kísérleti szakaszban van! Még nem működik megbízhatóan az "
"összes alkalmazásnál"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "A jelszó nem kezdődhet „$p$” értékkel."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Az a rendszerfiók, amelytől a jelszót használja"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "UNIX fiók"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Nem lehet titkosítani az egyszerű szöveges jelszót: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Az /etc/shadow fájlban lévő UNIX jelszó használata"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Titkosított jelszókivonat használata"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Írási hozzáférés"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "megtagadva"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "nem jár le"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "teljes"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "egyéni"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "részleges (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "csak olvasható"
#~ msgid "Use plain password"
#~ msgstr "Egyszerű jelszó használata"

View file

@ -0,0 +1,147 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-01-30 17:01+0000\n"
"Last-Translator: Paul Dee <itsascambutmailmeanyway@gmail.com>\n"
"Language-Team: Indonesian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/id/>\n"
"Language: id\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.4-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "Pengaturan Daftar Kontrol Akses"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "Grup Daftar Kontrol Akses"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Tingkat akses"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
"Tidak dapat mengenkripsi kata sandi teks biasa karena uhttpd tidak diinstal."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Deskripsi"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Beri akses ke konfigurasi Daftar Kontrol Akses"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Nama login"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "Login LuCI"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Akun baru"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Nilai kata sandi"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Varian kata sandi"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Akses baca"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Batas waktu sesi"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Atur semua:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"Manajemen ACL LuCI masih dalam tahap eksperimen! Belum berfungsi sepenuhnya. "
"Dengan aplikasi-aplikasi tertentu, manajemen ACL LuCI masih belum dapat "
"diandalkan sepenuhnya"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "Kata sandi tidak boleh dimulai dengan \"$p$\"."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Akun sistem untuk menggunakan kata sandi dari"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "Akun UNIX"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Tidak dapat mengenkripsi kata sandi teks biasa: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Gunakan kata sandi UNIX di /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Gunakan kata sandi hash terenkripsi"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Akses tulis"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "ditolak"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "tidak kedaluwarsa"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "penuh"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "individu"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "sebagian (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "hanya baca"
#~ msgid "Use plain password"
#~ msgstr "Gunakan kata sandi biasa"

View file

@ -0,0 +1,147 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2023-07-03 08:57+0000\n"
"Last-Translator: random r <epsilin@yopmail.com>\n"
"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/it/>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.0-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "Impostazioni ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "Gruppi ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Livello di accesso"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr "Impossibile crittografare la password perché uhttpd non è installato."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Descrizione"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Permetti accesso alla configurazione ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Nome di accesso"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "Accessi a LuCI"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Nuovo account"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Password"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Variante password"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Accesso in lettura"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Scadenza sessione"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Imposta tutto:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"La gestione delle ACL via LuCI è in fase sperimentale! Non funziona ancora "
"in modo affidabile con tutte le applicazioni"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "La password non può iniziare con \"$p$\"."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "L'account di sistema da cui utilizzare la password"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "Account UNIX"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Impossibile crittografare la password in chiaro: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Usa password UNIX in /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Usa l'hash della password crittografata"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Accesso in scrittura"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "negato"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "non scade"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "completo"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "individuale"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "parziale (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "sola lettura"
#~ msgid "Use plain password"
#~ msgstr "Usa password semplice"

View file

@ -0,0 +1,149 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2021-07-15 11:43+0000\n"
"Last-Translator: Nobuhiro Iwamatsu <iwamatsu@gmail.com>\n"
"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/ja/>\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.7.2-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "ACL 設定"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "ACL グループ"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "アクセスレベル"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
"uhttpdがインストールされていないため、プレーンテキストのパスワードを暗号化で"
"きません。"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "説明"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "ACL 構成へのアクセスを許可"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "ログイン名"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "LuCI ログイン"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "新規アカウント"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "パスワード値"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "パスワードヴァリアント"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "読み取りアクセス"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "セッション・タイムアウト"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "すべて設定:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"LuCI ACL管理はまだ実験段階ですすべてのアプリケーションで確実に機能するわけ"
"ではありません"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "パスワードは \"$p$\" で始まらない場合があります。"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "パスワードを使用するシステムアカウント"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "UNIX アカウント"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "平文パスワードを暗号化できません: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "/etc/shadow の UNIX パスワードを使用"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "暗号化されたパスワードハッシュを使用"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "書き込みアクセス"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "拒否"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "有効期限なし"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "すべて"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "個別"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "部分的 (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "読み取り専用"
#~ msgid "Use plain password"
#~ msgstr "平文パスワードを使用"

View file

@ -0,0 +1,148 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2021-06-06 14:38+0000\n"
"Last-Translator: thenist <p717394@gmail.com>\n"
"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/ko/>\n"
"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.7-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "ACL 설정"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "ACL 그룹"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "접근 레벨"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
"uhttpd가 설치되어 있지 않기 때문에 일반 텍스트 암호를 암호화할 수 없습니다."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "설명"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "ACL 설정에 접근 허가"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "로그인 이름"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "LuCI 로그인"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "새로운 계정"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "암호 값"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "암호 종류"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "읽기 권한"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "세션 타임아웃"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "모두 설정:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"LuCI ACL 관리는 실험 단계에 있습니다! 아직 모든 애플리케이션에서 안정적으로 "
"작동하지는 않습니다"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "암호는 \"$p$\"로 시작할 수 없습니다."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "암호를 쓸 시스템 계정"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "UNIX 계정"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "일반 텍스트 암호를 암호화 할 수 없습니다: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "/etc/shadow 안 Unix 암호 사용하기"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "암호화된 암호 해쉬 사용하기"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "쓰기 권한"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "거부됨"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "만료되지 않음"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "꽉찬"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "각"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "일부 (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "읽기전용"
#~ msgid "Use plain password"
#~ msgstr "일반 암호 사용"

View file

@ -0,0 +1,148 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2024-02-13 04:40+0000\n"
"Last-Translator: Džiugas J <dziugas1959@hotmail.com>\n"
"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/lt/>\n"
"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > "
"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? "
"1 : 2);\n"
"X-Generator: Weblate 5.4-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "„ACL“ nustatymai"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "„ACL“ grupė"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Prieigos lygis"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
"Negalima užšifruoti tiesioginio teksto slaptažodžio, nes „uhttpd“ nėra "
"įdiegtas."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Aprašymas"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Duoti prieigą „ACL configuration“"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Prisijungimo vardas"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "„LuCI“ prisijungimai"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Nauja paskyra"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Slaptažodžio vertė/skaičiaus įvestis"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Slaptažodžio variantas"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Perskaitymo prieiga"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Sesijos laikas pasibaigė"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Nustatyti viską:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"„LuCI ACL“ valdymas yra eksperimentiniame etape! Šis neveikia stabiliai su "
"visomis aplikacijomis/programomis"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "Slaptažodis negali prasidėti su „$p$“."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Sistemos paskyros naudotinas slaptažodis iš"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "„UNIX“ paskyra"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Nepavyko užšifruoti tiesioginio teksto slaptažodžio: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Naudoti „UNIX“ slaptažodį randamą: „/etc/shadow“"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Naudoti užšifruota slaptažodžio maišą"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Rašymo teisė"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "neleista"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "nepasibaigiantis galiojimas"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "pilnas"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "individualus"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "dalinis (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "tik skaitymui"

View file

@ -0,0 +1,147 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2020-10-01 08:41+0000\n"
"Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n"
"Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/mr/>\n"
"Language: mr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.3-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "एसीएल सेटिंग्ज"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "एसीएल गट"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "प्रवेश स्तर"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr "Uhttpd स्थापित केलेला नसल्यामुळे साधा मजकूर संकेतशब्द कूटबद्ध करू शकत नाही."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "वर्णन"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "एसीएल कॉन्फिगरेशनमध्ये प्रवेश मंजूर करा"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "लॉगिन नाव"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "LuCI लॉगिन"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "नवीन खाते"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "संकेतशब्द मूल्य"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "संकेतशब्द प्रकार"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "वाचन प्रवेश"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "सत्र कालबाह्य वेळ"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "सर्व सेट करा:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"LuCI ACL व्यवस्थापन प्रायोगिक अवस्थेत आहे! हे अद्याप सर्व अनुप्रयोगांसह विश्वसनीयरित्या "
"कार्य करत नाही"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "संकेतशब्द \"$p$\" ने प्रारंभ होणार नाही."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "ज्यातून संकेतशब्द वापरायचा असे सिस्टिम खाते"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "UNIX खाते"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "साधा मजकूर : %s संकेतशब्द कूटबद्ध करण्यात अक्षम"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "UNIX संकेतशब्द /etc/shadow मधून वापरा"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "कूटबद्ध संकेतशब्द हॅश वापरा"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "लेखन प्रवेश"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "नाकारले"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "कालबाह्य होत नाही"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "संपूर्ण"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "वैयक्तिक"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "आंशिक (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "फक्त वाचा"
#~ msgid "Use plain password"
#~ msgstr "साधा संकेतशब्द वापरा"

View file

@ -0,0 +1,142 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2024-01-22 09:21+0000\n"
"Last-Translator: Abdul Muizz Bin Abdul Jalil <abmuizz@gmail.com>\n"
"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/ms/>\n"
"Language: ms\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.4-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "Kumpulan ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr ""
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Akaun baru"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Nilai kata laluan"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "Akaun UNIX"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "Penuh"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "individu"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "separa (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr ""

View file

@ -0,0 +1,147 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2021-03-09 06:26+0000\n"
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/nb_NO/>\n"
"Language: nb_NO\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.5.1\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "ACL-innstillinger"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "ACL-gruppe"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Tilgangsnivå"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr "Kan ikke kryptere klartekstpassord, siden uhttpd ikke er installert."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Beskrivelse"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Innvilg tilgang til ACL-oppsett"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Innloggingsnavn"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "LuCI-innlogginger"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Ny konto"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Passordsverdi"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Passordsvariant"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Lesetilgang"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Tidsavbrudd for økt"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Sett alle:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"LuCI ACL-håntering er i eksperimentelt stadie. Det fungerer ikke pålitelig "
"med alle programmer"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "Passordet kan ikke starte med «$p$»."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Systemkontoen å bruke passord fra"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "UNIX-konto"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Kunne ikke kryptere klartekst-passord: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Bruk UNIX-passord i /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Bruk kryptert passord-sjekksum"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Skrivetilgang"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "avslått"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "utløper ikke"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "full"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "individuell"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "delvis (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "skrivebeskyttet"
#~ msgid "Use plain password"
#~ msgstr "Bruk klartekstpassord"

View file

@ -0,0 +1,142 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-05-06 12:52+0000\n"
"Last-Translator: xtz1983 <xtz1983@gmail.com>\n"
"Language-Team: Dutch <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/nl/>\n"
"Language: nl\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.18-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "ACL-instellingen"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "ACL-groep"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Toegangsniveau"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr "Kan wachtwoord niet versleutelen omdat uhttpd niet geïnstalleerd is."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Beschrijving"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Toegang tot ACL configuratie"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Gebruikersnaam"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "LuCI login"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Nieuw account"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Wachtwoord waarde"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Wachtwoord variant"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Lees toegang"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Sessie Time-out"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Zet alle:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"De LuCI ACL configuratie zit in een experimentele fase! Nog niet alle "
"applicaties werken naar behoren"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "Het wachtwoord mag niet beginnen met “p$”."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Het systeemaccount om het wachtwoord van te gebruiken"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "UNIX account"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Niet gelukt om het wachtwoord te encrypten: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Gebruik het UNIX wachtwoord in /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Gebruik de versleutelde wachtwoord hash"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Schrijf toegang"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "geweigerd"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "verloopt niet"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "vol"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "individueel"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "gedeeltelijk (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "Alleen lezen"

View file

@ -0,0 +1,153 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2024-01-04 07:07+0000\n"
"Last-Translator: Matthaiks <kitynska@gmail.com>\n"
"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/pl/>\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 5.4-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "Ustawienia ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "Grupa ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Poziom dostępu"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
"Nie można zaszyfrować zwykłego hasła tekstowego, ponieważ uhttpd nie jest "
"zainstalowany."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Opis"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Udziel dostępu do konfiguracji ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Nazwa użytkownika"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "Loginy LuCI"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Nowe konto"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Wartość hasła"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Wariant hasła"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Dostęp do odczytu"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Limit czasu sesji"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Ustaw wszystko:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"Zarządzanie LuCI ACL jest na etapie eksperymentalnym! Nie działa jeszcze "
"niezawodnie we wszystkich aplikacjach"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "Hasło nie może zaczynać się od \"$p$\"."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Konto systemowe do używania hasła z"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "Konto UNIX"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Nie można zaszyfrować zwykłego hasła tekstowego: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Użyj hasła UNIX w /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Użyj szyfrowanego hasła hash"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Dostęp do zapisu"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "Odmowa dostępu"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "Nie wygasa"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "Pełne"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "Indywidualne"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "Częściowe (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "Tylko do odczytu"
#~ msgid "Use plain password"
#~ msgstr "Użyj zwykłego hasła"
#~ msgid "Acess level"
#~ msgstr "Poziom dostępu"

View file

@ -0,0 +1,152 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2020-05-02 10:22+0000\n"
"Last-Translator: ssantos <ssantos@web.de>\n"
"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/pt/>\n"
"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.1-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "Configurações ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "Grupo ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Nível de acesso"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
"Não é possível encriptar a palavra-passe em texto puro, pois o uhttpd não "
"está instalado."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Descrição"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Conceder acesso à configuração ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Nome de autenticação"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "Autenticações LuCI"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Nova conta"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Valor da palavra-passe"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Variante da palavra-passe"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Permissão de leitura"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Tempo limite da sessão"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Definir todos:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"A gestão da LuCI ACL está numa fase experimental! Ainda não funciona de "
"forma confiável com todas as aplicações"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "A palavra-passe não deve começar com \"$p$\"."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "A conta do sistema da qual usar a palavra-passe"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "Conta UNIX"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Impossível encriptar a palavra-passe em texto simples: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Usar a palavra-passe UNIX em /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Usar o hash de palavra-passe criptografada"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Permissão de escrita"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "negado"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "não expira"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "completo"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "individual"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "parcial (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "somente leitura"
#~ msgid "Use plain password"
#~ msgstr "Usar uma palavra-passe simples"
#~ msgid "Acess level"
#~ msgstr "Nível de acesso"

View file

@ -0,0 +1,152 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2020-04-20 07:11+0000\n"
"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n"
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
"openwrt/luciapplicationsacl/pt_BR/>\n"
"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.0.2-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "Configurações ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "Grupo ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Nível de acesso"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
"Não é possível encriptar senhas em texto puro pois o uhttpd não está "
"instalado."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Descrição"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Garantir acesso a configuração ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Nome de autenticação"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "Autenticações LuCI"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Nova conta"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Valor da senha"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Variação da senha"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Permissão de leitura"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Tempo limite da sessão"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Definir todos:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"O gerenciamento do LuCI ACL está em um estágio experimental! Ainda não "
"funciona de maneira confiável com todos os aplicativos"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "A senha não pode começar com \"$p$\"."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "A conta do sistema para usar a senha de"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "Conta UNIX"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Não é possível criptografar a senha em texto puro: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Use a senha UNIX em /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Usar o hash da senha criptografada"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Permissão de escrita"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "negado"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "não expira"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "completo"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "individual"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "parcial (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "Leitura apenas"
#~ msgid "Use plain password"
#~ msgstr "Usar um senha simples"
#~ msgid "Acess level"
#~ msgstr "Nível de acesso"

View file

@ -0,0 +1,145 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2021-12-07 19:35+0000\n"
"Last-Translator: Simona Iacob <s@zp1.net>\n"
"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/ro/>\n"
"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2;\n"
"X-Generator: Weblate 4.10-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "Setări ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "Grup ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Nivel de acces"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr "Nu se poate cripta parola în clar deoarece uhttpd nu este instalat."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Descriere"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Acordarea accesului la configurarea ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Nume de autentificare"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "Autentificări LuCI"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Cont nou"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Valoarea parolei"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Varianta parolei"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Accesul pentru citire"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Timpul de expirare a sesiunii"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Setează tot:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"Managementul ACL LuCI este în fază experimentală! Nu funcționează încă în "
"mod fiabil cu toate aplicațiile"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "Parola nu poate începe cu \"$p$\"."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Contul de sistem pentru a utiliza parola de la"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "Cont UNIX"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Nu se poate cripta parola în clar: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Utilizați parola UNIX în /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Utilizați parola criptată hash"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Acces la scriere"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "interzis"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "nu expiră"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "complet"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "individuală"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "parțial (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "doar citire"

View file

@ -0,0 +1,153 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2020-04-28 13:41+0000\n"
"Last-Translator: Anton Kikin <a.a.kikin@gmail.com>\n"
"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/ru/>\n"
"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<="
"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.0.2\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "Настройки ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "ACL группа"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Уровень доступа"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
"Невозможно зашифровать простой текстовый пароль, так как uhttpd не "
"установлен."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Описание"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Предоставить доступ к конфигурации ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Имя пользователя"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "Пользователи LuCI"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Новый аккаунт"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Пароль"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Вариант пароля"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Доступ для чтения"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Таймаут сессии"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Установить все:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"Управление LuCI ACL находится в экспериментальной стадии! Оно еще не "
"работает должным образом со всеми приложениями"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "Пароль может не начинаться с «$p$»."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Системная учетная запись для использования пароля"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "UNIX аккаунт"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Невозможно зашифровать простой текстовый пароль: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Использовать пароль UNIX из /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Использовать зашифрованный хэш пароля"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Доступ для записи"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "запрещено"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "не истекает"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "полный"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "индивидуальный"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "частичный (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "только чтение"
#~ msgid "Use plain password"
#~ msgstr "Использовать простой (открытый) пароль"
#~ msgid "Acess level"
#~ msgstr "Уровень доступа"

View file

@ -0,0 +1,140 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-07-21 13:32+0000\n"
"Last-Translator: HelaBasa <R45XvezA@protonmail.ch>\n"
"Language-Team: Sinhala <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/si/>\n"
"Language: si\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.7.2-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "ප්‍රවේශ මට්ටම"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "සවිස්තරය"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "නව ගිණුම"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "මුරපද ප්‍රභේදය"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr ""

View file

@ -0,0 +1,147 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2020-06-09 21:41+0000\n"
"Last-Translator: Miloš Leškanič <leskanic@gmail.com>\n"
"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/sk/>\n"
"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 4.1-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "Nastavenia ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "ACL skupina"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Úroveň prístupu"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr "Nemožno zašifrovať heslo, pretože uhttpd nie je nainštalované."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Popis"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Povoliť prístup k ACL konfigurácii"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Prihlasovacie meno"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "LuCI prihlásenia"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Nový účet"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Hodnota hesla"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Variant hesla"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Čítanie"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Relácia vypršala"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Nastaviť všetky:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"Správa ACL v LuCI je experimentálna! Nefunguje spoľahlivo so všetkými "
"aplikáciami"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "Heslo nemôže začínať na \"$p$\"."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Systémový účet, z ktorého použiť heslo"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "UNIX účet"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Nemožno zašifrovať otvorené heslo: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Použiť UNIX heslo v /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Použiť šifrovaný hash hesla"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Zápis"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "zamietnutý"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "neexpiruje"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "plný"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "jednotlivé"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "čiastočné (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "Iba čítanie"
#~ msgid "Use plain password"
#~ msgstr "Použiť otvorené heslo"

View file

@ -0,0 +1,143 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-12-06 14:03+0000\n"
"Last-Translator: Dejan <dejan@pekidi.com>\n"
"Language-Team: Slovenian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/sl/>\n"
"Language: sl\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
"%100==4 ? 2 : 3;\n"
"X-Generator: Weblate 4.10-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "ACL Nastavitve"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "ACL Skupina"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Nivo dostopa"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr "Gesla za golo besedilo ni mogoče šifrirati, ker uhttpd ni nameščen."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Opis"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Omogočite dostop do konfiguracije ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Ime za prijavo"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "LuCI prijave"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Novi račun"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Geslo"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Geslo"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Pravice za branje"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Časovna omejitev seje"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Nastavi vse:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"Upravljanje LuCI ACL je v eksperimentalni fazi! Še ne deluje zanesljivo z "
"vsemi aplikacijami"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "Geslo se ne sme začeti z \"$p$\"."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Sistemski račun za uporabo gesla"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "UNIX račun"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Gesla za golo besedilo ni mogoče šifrirati: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Uporabi UNIX geslo v /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Uporabite šifrirano zgoščeno geslo"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Dostop za pisanje"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "Zavrnjeno"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "Ne poteče"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "vse"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "zasebno"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "delno (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "samo za branje"

View file

@ -0,0 +1,149 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2021-11-04 17:37+0000\n"
"Last-Translator: Paul Dee <itsascambutmailmeanyway+weblate@gmail.com>\n"
"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/sv/>\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.9-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "ACL Inställningar"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "ACL Grupp"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Åtkomstnivå"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
"Kan inte kryptera lösenord i klartext på grund av att uhttpd inte är "
"installerad."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Beskrivning"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Ge åtkomst till ACL konfiguration"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Inloggningsnamn"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "LuCI Inloggningar"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Nytt konto"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Lösenordsvärde"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Lösenordsvariant"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Läsåtkomst"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Sessionstiden är slut"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Sätt alla:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"LuCI ACL hantering är i experimentstadiet. Det fungerar ännu inte säkert med "
"alla applikationer"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "Lösenordet får inte inledas med \"$p$\"."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Systemkontot att använda lösenordet från"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "UNIX konto"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Kan inte kryptera lösenord i klartext: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Använd UNIX lösenord i /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Använd krypterade lösenords hash"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Skrivåtkomst"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "nekad"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "utan bäst-före datum"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "full"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "individuell"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "delvis (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "skrivskyddad"
#~ msgid "Use plain password"
#~ msgstr "Använd lösenord i klartext"

View file

@ -0,0 +1,131 @@
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr ""
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr ""
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr ""

View file

@ -0,0 +1,148 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2021-04-09 08:05+0000\n"
"Last-Translator: Oğuz Ersen <oguzersen@protonmail.com>\n"
"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/tr/>\n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.6-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "ACL Ayarları"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "ACL grubu"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Yetki düzeyi"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
"uhttpd kurulu olmadığı için düz metin biçimindeki parola şifrelenemiyor."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Açıklama"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "ACL yapılandırmasına erişim izni verin"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Kullanıcı adı"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "LuCI Girişleri"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Yeni kullanıcı hesabı"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Şifre değeri"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Şifre türü"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Okuma erişimi"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Oturum zaman aşımı"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Hepsini ayarla:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"LuCI ACL yönetimi deneysel bir aşamada! Şuanlık bütün uygulamalarda "
"güvenilir bir şekilde çalışmıyor"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "Şifreler \"$p$\" ile başlayamaz."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Şifresi kullanılacak sistem hesabı"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "UNIX hesabı"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Düz metin şifre şifrelenemedi: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "/etc/shadow konumundaki UNIX şifresini kullan"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Şifrelenmiş şifre hash'ı kullan"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Yazma erişimi"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "reddedildi"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "süresi dolmaz"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "tam"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "Bireysel"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "kısmi (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "salt okunur"
#~ msgid "Use plain password"
#~ msgstr "Düz şifre kullan"

View file

@ -0,0 +1,147 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2022-12-29 23:53+0000\n"
"Last-Translator: Dan <denqwerta@gmail.com>\n"
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/uk/>\n"
"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 4.15.1-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "Налаштування ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "Група ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Рівень доспупу"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr ""
"Не вдається зашифрувати пароль відкритого тексту, оскільки uhttpd не "
"встановлено."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Опис"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Надати доступ до конфігурації ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Логін"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "Входи LuCI"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Новий акаунт"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Значення пароля"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Варіант пароля"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Доступ для читання"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Час очікування сеансу"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Встановити все:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"Управління LuCI ACL знаходиться на експериментальній стадії! Він ще не "
"працює надійно з усіма застосунками"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "Пароль не може починатись з \"$p$\"."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Системний обліковий запис для використання пароля від"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "Обліковий запис UNIX"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Не вдається зашифрувати пароль відкритого тексту: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Використовуйте пароль UNIX у /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Використовуйте зашифрований хеш пароля"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Доступ на запис"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "відмовлено"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "не закінчується"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "повний"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "окремі"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "частково (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "лише для читання"

View file

@ -0,0 +1,144 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2023-06-19 15:37+0000\n"
"Last-Translator: Mashiro <michio.haiyaku@gmail.com>\n"
"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacl/vi/>\n"
"Language: vi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.18.1\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "Cài đặt ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "Nhóm ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "Cấp độ truy cập"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr "Không thể mã hóa mật khẩu đơn vị văn bản vì uhttpd chưa được cài đặt."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "Mô tả"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "Cấp quyền truy cập vào cấu hình ACL"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "Tên đăng nhập"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "Đăng nhập LuCI"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "Tài khoản mới"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "Giá trị mật khẩu"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "Biến thể mật khẩu"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "Quyền truy cập đọc"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "Thời gian kết thúc phiên"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "Đặt tất cả:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr ""
"Quản lý LuCI ACL đang ở giai đoạn thử nghiệm! Hiện nó chưa hoạt động đáng "
"tin cậy với tất cả các ứng dụng"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "Mật khẩu không thể bắt đầu bằng \"$p$\"."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "Tài khoản hệ thống sử dụng mật khẩu từ"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "Tài khoản UNIX"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "Không thể mã hóa mật khẩu đơn vị văn bản: %s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "Sử dụng mật khẩu UNIX trong /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "Sử dụng băm mật khẩu đã mã hóa"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "Quyền truy cập ghi"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "bị từ chối"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "không hết hạn"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "đầy đủ"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "cá nhân"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "một phần (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "chỉ đọc"

View file

@ -0,0 +1,146 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-11-13 19:55+0000\n"
"Last-Translator: MkQtS <MkQtS@users.noreply.hosted.weblate.org>\n"
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
"openwrt/luciapplicationsacl/zh_Hans/>\n"
"Language: zh_Hans\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.2-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "ACL 设置"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "ACL 组"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "访问权限"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr "由于未安装 uhttpd,因此无法加密明文密码."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "描述"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "授予访问 ACL 配置的权限"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "登录名"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "LuCI 登录"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "新账户"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "密码值"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "密码变体"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "读取权限"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "会话超时"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "设置全部:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr "LuCI ACL 管理处于实验阶段!它还不能可靠地在所有应用程序中工作"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "密码不能以\"$p$\"开头."
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "系统帐户使用的密码"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "UNIX 帐户"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "无法加密明文密码:%s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "使用UNIX密码在 /etc/shadow"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "使用加密的密码哈希值"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "写入权限"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "拒绝"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "永不过期"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "完全"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "单独"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "部分 (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "只读"
#~ msgid "Use plain password"
#~ msgstr "使用明文密码"
#~ msgid "Acess level"
#~ msgstr "访问权限"

View file

@ -0,0 +1,143 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-01-28 10:32+0000\n"
"Last-Translator: akibou <jinwenxin1997@icloud.com>\n"
"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/"
"openwrt/luciapplicationsacl/zh_Hant/>\n"
"Language: zh_Hant\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.5-dev\n"
#: applications/luci-app-acl/root/usr/share/luci/menu.d/luci-app-acl.json:3
msgid "ACL Settings"
msgstr "ACL 設定"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:78
msgid "ACL group"
msgstr "ACL 群組"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:80
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:302
msgid "Access level"
msgstr "存取級別"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:266
msgid "Cannot encrypt plaintext password since uhttpd is not installed."
msgstr "由於未安裝 uHTTPd因此無法加密明文密碼。"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:79
msgid "Description"
msgstr "描述"
#: applications/luci-app-acl/root/usr/share/rpcd/acl.d/luci-app-acl.json:3
msgid "Grant access to ACL configuration"
msgstr "授予 ACL 組態擁有存取的權限"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:215
msgid "Login name"
msgstr "登入名稱"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:205
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "LuCI Logins"
msgstr "LuCI 登入"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:212
msgid "New account"
msgstr "新帳號"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:244
msgid "Password value"
msgstr "密碼值"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:218
msgid "Password variant"
msgstr "密碼變體"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:296
msgid "Read access"
msgstr "讀取權限"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:288
msgid "Session timeout"
msgstr "工作階段逾時值"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:86
msgctxt "Set all permissions in the table below to one of the given values"
msgid "Set all:"
msgstr "設定全部:"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:178
msgid ""
"The LuCI ACL management is in an experimental stage! It does not yet work "
"reliably with all applications"
msgstr "LuCI ACL 管理處於實驗階段!它尚無法確保在所有應用程式中工作之可靠性"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:258
msgid "The password may not start with \"$p$\"."
msgstr "密碼不能以 \"$p$\" 開頭。"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "The system account to use the password from"
msgstr "使用該密碼的系統帳號"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:232
msgid "UNIX account"
msgstr "UNIX 帳號"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:281
msgid "Unable to encrypt plaintext password: %s"
msgstr "無法加密明文密碼(訊息:%s"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:220
msgid "Use UNIX password in /etc/shadow"
msgstr "使用 /etc/shadow 檔案中的 UNIX 密碼"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:221
msgid "Use encrypted password hash"
msgstr "使用雜湊加密的密碼"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:299
msgid "Write access"
msgstr "寫入權限"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:67
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:89
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:110
msgctxt "No permissions granted"
msgid "denied"
msgstr "已拒絕"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:293
msgid "does not expire"
msgstr "永不過期"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:63
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:95
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:112
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:304
msgctxt "All permissions granted"
msgid "full"
msgstr "完全"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:306
msgctxt "Select individual permissions manually"
msgid "individual"
msgstr "個別"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:65
msgctxt "Some permissions granted"
msgid "partial (%d/%d)"
msgstr "部分 (%d/%d)"
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:92
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:111
#: applications/luci-app-acl/htdocs/luci-static/resources/view/system/acl.js:305
msgctxt "Only read permissions granted"
msgid "readonly"
msgstr "唯讀"
#~ msgid "Use plain password"
#~ msgstr "使用明文密碼"

View file

@ -0,0 +1,14 @@
{
"admin/system/acl": {
"title": "ACL Settings",
"order": 10,
"action": {
"type": "view",
"path": "system/acl"
},
"depends": {
"acl": [ "luci-app-acl" ],
"uci": { "rpcd": true }
}
}
}

View file

@ -0,0 +1,19 @@
{
"luci-app-acl": {
"description": "Grant access to ACL configuration",
"read": {
"cgi-io": [ "list", "read" ],
"file": {
"/etc/passwd": [ "read" ],
"/usr/sbin/uhttpd": [ "list" ],
"/usr/sbin/uhttpd -m *": [ "exec" ],
"/usr/share/rpcd/acl.d": [ "list" ],
"/usr/share/rpcd/acl.d/*.json": [ "read" ]
},
"uci": [ "rpcd" ]
},
"write": {
"uci": [ "rpcd" ]
}
}
}

View file

@ -0,0 +1,18 @@
#
# Copyright (C) 2010 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
include $(TOPDIR)/rules.mk
LUCI_TITLE:=ACME package - LuCI interface
LUCI_DEPENDS:=+luci-base +acme
PKG_MAINTAINER:=Toke Høiland-Jørgensen <toke@toke.dk>
PKG_LICENSE:=GPL-3.0-or-later
include ../../luci.mk
# call BuildPackage - OpenWrt buildroot signature

View file

@ -0,0 +1,606 @@
'use strict';
'require form';
'require fs';
'require uci';
'require view';
return view.extend({
load: function() {
return L.resolveDefault(fs.list('/etc/ssl/acme/'), []).then(function(entries) {
var certs = [];
for (var i = 0; i < entries.length; i++) {
if (entries[i].type == 'file' && entries[i].name.match(/\.key$/)) {
certs.push(entries[i]);
}
}
return certs;
});
},
render: function (certs) {
let wikiUrl = 'https://github.com/acmesh-official/acme.sh/wiki/';
var wikiInstructionUrl = wikiUrl + 'dnsapi';
var m, s, o;
m = new form.Map("acme", _("ACME certificates"),
_("This configures ACME (Letsencrypt) automatic certificate installation. " +
"Simply fill out this to have the router configured with Letsencrypt-issued " +
"certificates for the web interface. " +
"Note that the domain names in the certificate must already be configured to " +
"point at the router's public IP address. " +
"Once configured, issuing certificates can take a while. " +
"Check the logs for progress and any errors.") + '<br/>' +
_("Cert files are stored in") + ' <em>/etc/ssl/acme<em>'
);
s = m.section(form.TypedSection, "acme", _("ACME global config"));
s.anonymous = true;
o = s.option(form.Value, "account_email", _("Account email"),
_('Email address to associate with account key.') + '<br/>' +
_('If a certificate wasn\'t renewed in time then you\'ll receive a notice at 20 days before expiry.')
)
o.rmempty = false;
o.datatype = "minlength(1)";
o = s.option(form.Flag, "debug", _("Enable debug logging"));
o.rmempty = false;
s = m.section(form.GridSection, "cert", _("Certificate config"))
s.anonymous = false;
s.addremove = true;
s.nodescriptions = true;
o = s.tab("general", _("General Settings"));
o = s.tab('challenge_webroot', _('Webroot Challenge Validation'));
o = s.tab('challenge_dns', _('DNS Challenge Validation'));
o = s.tab("advanced", _('Advanced Settings'));
o = s.taboption('general', form.Flag, "enabled", _("Enabled"));
o.rmempty = false;
o = s.taboption('general', form.DynamicList, "domains", _("Domain names"),
_("Domain names to include in the certificate. " +
"The first name will be the subject name, subsequent names will be alt names. " +
"Note that all domain names must point at the router in the global DNS."));
o.datatype = "list(string)";
o = s.taboption('general', form.ListValue, 'validation_method', _('Validation method'),
_("Standalone mode will use the built-in webserver of acme.sh to issue a certificate. " +
"Webroot mode will use an existing webserver to issue a certificate. " +
"DNS mode will allow you to use the DNS API of your DNS provider to issue a certificate."));
o.value("standalone", _("Standalone"));
o.value("webroot", _("Webroot"));
o.value("dns", _("DNS"));
o.default = 'webroot';
o = s.taboption('challenge_webroot', form.Value, 'webroot', _('Webroot directory'),
_("Webserver root directory. Set this to the webserver " +
"document root to run Acme in webroot mode. The web " +
"server must be accessible from the internet on port 80.") + '<br/>' +
_("Default") + " <em>/var/run/acme/challenge/</em>"
);
o.optional = true;
o.depends("validation_method", "webroot");
o.modalonly = true;
o = s.taboption('challenge_dns', form.ListValue, 'dns', _('DNS API'),
_("To use DNS mode to issue certificates, set this to the name of a DNS API supported by acme.sh. " +
"See https://github.com/acmesh-official/acme.sh/wiki/dnsapi for the list of available APIs. " +
"In DNS mode, the domain name does not have to resolve to the router IP. " +
"DNS mode is also the only mode that supports wildcard certificates. " +
"Using this mode requires the acme-dnsapi package to be installed."));
o.depends("validation_method", "dns");
// List of supported DNS API. Names are same as file names in acme.sh for easier search.
// May be outdated but not changed too often.
o.value('', '')
o.value('dns_acmedns', 'ACME DNS API github.com/joohoi/acme-dns');
o.value('dns_acmeproxy', 'ACME Proxy github.com/mdbraber/acmeproxy');
o.value('dns_1984hosting', '1984.is');
o.value('dns_active24', 'Active24.com');
o.value('dns_ad', 'Alwaysdata.com');
o.value('dns_ali', 'Alibaba Cloud Aliyun.com');
o.value('dns_anx', 'Anexia.com');
o.value('dns_arvan', 'ArvanCloud.ir');
o.value('dns_aurora', 'AuroraDNS.eu');
o.value('dns_autodns', 'autoDNS (InternetX)');
o.value('dns_aws', 'Amazon AWS Route53');
o.value('dns_azion', 'Azion.com');
o.value('dns_azure', 'Azure');
o.value('dns_bunny', 'Bunny.net');
o.value('dns_cf', 'CloudFlare.com');
o.value('dns_clouddns', 'CloudDNS vshosting.cz');
o.value('dns_cloudns', 'ClouDNS.net');
o.value('dns_cn', 'Core-Networks.de');
o.value('dns_conoha', 'ConoHa.io');
o.value('dns_constellix', 'constellix.com');
o.value('dns_cpanel', 'CPanel');
o.value('dns_curanet', 'curanet.dk scannet.dk wannafind.dk dandomain.dk');
o.value('dns_cyon', 'cayon.ch');
o.value('dns_da', 'DirectAdmin Panel');
o.value('dns_ddnss', 'DDNSS.de');
o.value('dns_desec', 'deSEC.io');
o.value('dns_df', 'DynDnsFree.de');
o.value('dns_dgon', 'DigitalOcean.com');
o.value('dns_dnshome', 'dnsHome.de');
o.value('dns_dnsimple', 'DNSimple.com');
o.value('dns_dnsservices', 'dns.services');
o.value('dns_doapi', 'Domain-Offensive do.de');
o.value('dns_domeneshop', 'DomeneShop.no');
o.value('dns_dp', 'DNSPod.cn');
o.value('dns_dpi', 'DNSPod.com');
o.value('dns_dreamhost', 'DreamHost.com');
o.value('dns_duckdns', 'DuckDNS.org');
o.value('dns_durabledns', 'DurableDNS.com');
o.value('dns_dyn', 'Dyn.com');
o.value('dns_dynu', 'Dynu.com');
o.value('dns_dynv6', 'DynV6.com');
o.value('dns_easydns', 'EasyDNS.net');
o.value('dns_edgedns', 'Akamai Edge DNS');
o.value('dns_euserv', 'euserv.eu');
o.value('dns_exoscale', 'Exoscale.com');
o.value('dns_fornex', 'fornex.com');
o.value('dns_freedns', 'FreeDNS.afraid.org');
o.value('dns_gandi_livedns', 'LiveDNS.Gandi.net');
// o.value('dns_gcloud', 'Google Cloud gcloud client');
o.value('dns_gcore', 'Gcore.com');
o.value('dns_gd', 'GoDaddy.com');
o.value('dns_geoscaling', 'Geoscaling.com');
o.value('dns_googledomains', 'Google Domains');
o.value('dns_he', 'he.net');
o.value('dns_hetzner', 'Hetzner.com');
o.value('dns_hexonet', 'Hexonet.net');
o.value('dns_hostingde', 'Hosting.de');
o.value('dns_huaweicloud', 'MyHuaweiCloud.com');
o.value('dns_infoblox', 'Infoblox');
o.value('dns_infomaniak', 'InfoManiak.com');
o.value('dns_internetbs', 'InternetBS.net');
o.value('dns_inwx', 'inwx.de');
o.value('dns_ionos', 'IONOS.com');
o.value('dns_ipv64', 'ipv64.net');
o.value('dns_ispconfig', 'ISPConfig Server');
o.value('dns_jd', 'JDCloud.com');
o.value('dns_joker', 'Joker.com');
o.value('dns_kappernet', 'kapper.net');
o.value('dns_kas', 'kasserver.com');
o.value('dns_kinghost', 'KingHost.net');
o.value('dns_la', 'dns.la');
o.value('dns_leaseweb', 'leaseweb.com');
// o.value('dns_lexicon', 'Lexicon client');
o.value('dns_linode_v4', 'Linode.com');
o.value('dns_loopia', 'Loopia.se');
o.value('dns_lua', 'LuaDNS.com');
// o.value('dns_maradns', 'MaraDNS Server zone file');
o.value('dns_me', 'DNSMadeEasy.com');
// o.value('dns_miab', 'Mail-in-a-Box Server API');
o.value('dns_misaka', 'misaka.io');
o.value('dns_mydevil', 'MyDevil.net');
o.value('dns_mydnsjp', 'MyDNS.JP');
o.value('dns_mythic_beasts', 'Mythic-Beasts.com');
o.value('dns_namecheap', 'NameCheap.com');
o.value('dns_namecom', 'Name.com');
o.value('dns_namesilo', 'NameSilo.com');
o.value('dns_nanelo', 'Nanelo.com');
o.value('dns_nederhost', 'NederHost.nl');
o.value('dns_neodigit', 'Neodigit.net');
o.value('dns_netcup', 'netcup.eu netcup.de');
o.value('dns_netlify', 'Netlify.com');
o.value('dns_nic', 'nic.ru');
o.value('dns_njalla', 'Njalla njal.la');
o.value('dns_nm', 'NameMaster.de');
// o.value('dns_nsd', 'NSD Server zone file');
o.value('dns_nsone', 'NS1 nsone.net');
o.value('dns_nsupdate', 'nsupdate (RFC2136) Server');
o.value('dns_nw', 'Nexcess.net');
o.value('dns_oci', 'Oracle Cloud Infrastructure (OCI)');
o.value('dns_one', 'one.com');
o.value('dns_online', 'online.net');
o.value('dns_openprovider', 'OpenProvider.com');
// o.value('dns_openstack', 'OpenStack Client');
o.value('dns_opnsense', 'OPNsense Bind API');
o.value('dns_ovh', 'OVH ovh.com ovhcloud.com kimsufi.com soyoustart.com');
o.value('dns_pdns', 'PowerDNS Server');
o.value('dns_pleskxml', 'plesk.com XML API');
o.value('dns_pointhq', 'PointDNS pointhq.com');
o.value('dns_porkbun', 'Porkbun.com');
o.value('dns_rackcorp', 'RackCorp.com');
o.value('dns_rackspace', 'RackSpace rackspacecloud.com');
o.value('dns_rage4', 'rage4.com');
o.value('dns_rcode0', 'Rcode0 rcodezero.at');
o.value('dns_regru', 'Reg.ru');
o.value('dns_scaleway', 'Scaleway.com');
o.value('dns_schlundtech', 'Schlundtech.de');
o.value('dns_selectel', 'Selectel.ru');
o.value('dns_selfhost', 'selfhost.de');
o.value('dns_servercow', 'servercow.de');
o.value('dns_simply', 'Simply.com');
o.value('dns_tele3', 'tele3.cz');
o.value('dns_transip', 'transip.nl');
o.value('dns_udr', 'ud-reselling.com');
o.value('dns_ultra', 'UltraDNS.com');
o.value('dns_variomedia', 'variomedia.de');
o.value('dns_veesp', 'veesp.com');
o.value('dns_vercel', 'Vercel.com');
o.value('dns_vscale', 'vscale.io');
o.value('dns_vultr', 'vultr.com');
o.value('dns_websupport', 'websupport.sk');
o.value('dns_world4you', 'World4You.com');
o.value('dns_yandex', 'Yandex DNS dns.yandex.ru');
o.value('dns_yc', 'Yandex Cloud cloud.yandex.net');
o.value('dns_zilore', 'zilore.com');
o.value('dns_zone', 'Zone.ee');
o.value('dns_zonomi', 'Zonomi.com');
o.modalonly = true;
o.onchange = L.bind(_handleCheckService, o, s);
o = s.taboption('challenge_dns', form.DummyValue, '_wiki_url', _('See instructions'), '');
o.rawhtml = true;
o.default = '<a id="wikiInstructionUrl" href="%s" target="_blank" rel="noreferrer">Acme Wiki DNS API</a>'
.format(wikiInstructionUrl);
o.depends('validation_method', 'dns');
o.modalonly = true;
_addDnsProviderField(s, 'dns_1984hosting', 'One984HOSTING_Username', '1984.is Username', '');
_addDnsProviderField(s, 'dns_1984hosting', 'One984HOSTING_Password', '1984.is Password', '');
_addDnsProviderField(s, 'dns_acmedns', 'ACMEDNS_BASE_URL', 'ACMEDNS URL', '');
_addDnsProviderField(s, 'dns_acmedns', 'ACMEDNS_USERNAME', 'ACMEDNS User', '');
_addDnsProviderField(s, 'dns_acmedns', 'ACMEDNS_PASSWORD', 'ACMEDNS Password', '');
_addDnsProviderField(s, 'dns_acmedns', 'ACMEDNS_SUBDOMAIN', 'ACMEDNS Subdomain', '');
_addDnsProviderField(s, 'dns_ali', 'Ali_Key', 'Ali Key', '');
_addDnsProviderField(s, 'dns_ali', 'Ali_Secret', 'Ali Secret', '');
_addDnsProviderField(s, 'dns_aws', 'AWS_ACCESS_KEY_ID', 'AWS access key id', '');
_addDnsProviderField(s, 'dns_aws', 'AWS_SECRET_ACCESS_KEY', 'AWS secret access key', '');
_addDnsProviderField(s, 'dns_azure', 'AZUREDNS_SUBSCRIPTIONID', 'Azure Subscription ID', '');
_addDnsProviderField(s, 'dns_azure', 'AZUREDNS_TENANTID', 'Azure Tenant ID', '');
_addDnsProviderField(s, 'dns_azure', 'AZUREDNS_APPID', 'Azure App ID', '');
_addDnsProviderField(s, 'dns_azure', 'AZUREDNS_CLIENTSECRET', 'Azure Client Secret', '');
_addDnsProviderField(s, 'dns_bunny', 'BUNNY_API_KEY', 'Bunny API Key', '');
_addDnsProviderField(s, 'dns_cf', 'CF_Key', 'CF Key', '');
_addDnsProviderField(s, 'dns_cf', 'CF_Email', 'CF Email', '');
_addDnsProviderField(s, 'dns_cf', 'CF_Token', 'CF Token', '');
_addDnsProviderField(s, 'dns_cf', 'CF_Account_ID', 'CF Account ID', '');
_addDnsProviderField(s, 'dns_cf', 'CF_Zone_ID', 'CF Zone ID', '');
_addDnsProviderField(s, 'dns_ddnss', 'DDNSS_Token', 'DDNSS.de Token', '');
_addDnsProviderField(s, 'dns_desec', 'DEDYN_TOKEN', 'deSEC.io Token', '');
_addDnsProviderField(s, 'dns_duckdns', 'DuckDNS_Token', 'DuckDNS Token',
_('Open <a href="https://www.duckdns.org/">DuckDNS</a> and copy a token here')
);
_addDnsProviderField(s, 'dns_dynv6', 'DYNV6_TOKEN', 'DynV6 Token', '');
_addDnsProviderField(s, 'dns_dnsimple', 'DNSimple_OAUTH_TOKEN', 'DNSimple OAuth TOKEN', '');
_addDnsProviderField(s, 'dns_dgon', 'DO_API_KEY', 'Digital Ocean API Key', '');
_addDnsProviderField(s, 'dns_dreamhost', 'DH_API_KEY', 'DreamHost.com API Key', '');
_addDnsProviderField(s, 'dns_df', 'DF_user', 'DynDnsFree.de Username', '');
_addDnsProviderField(s, 'dns_df', 'DF_password', 'DynDnsFree.de Password', '');
_addDnsProviderField(s, 'dns_gandi_livedns', 'GANDI_LIVEDNS_KEY', 'Gandi LiveDNS Key', '');
_addDnsProviderField(s, 'dns_gcore', 'GCORE_Key', 'GCore Key', '');
_addDnsProviderField(s, 'dns_gd', 'GD_Key', 'GoDaddy.com Key', '');
_addDnsProviderField(s, 'dns_gd', 'GD_Secret', 'GoDaddy.com Secret', '');
_addDnsProviderField(s, 'dns_geoscaling', 'GEOSCALING_Username', 'Geoscaling.com Username',
_('This is usually NOT an email address')
);
_addDnsProviderField(s, 'dns_geoscaling', 'GEOSCALING_Password', 'Geoscaling.com Password', '');
_addDnsProviderField(s, 'dns_googledomains', 'GOOGLEDOMAINS_ACCESS_TOKEN', 'Google Domains Access Token', '');
_addDnsProviderField(s, 'dns_googledomains', 'GOOGLEDOMAINS_ZONE', 'Google Domains Zone', '');
_addDnsProviderField(s, 'dns_he', 'HE_Username', 'dns.he.net Username', '');
_addDnsProviderField(s, 'dns_he', 'HE_Password', 'dns.he.net Password', '');
_addDnsProviderField(s, 'dns_hetzner', 'HETZNER_Token', 'Hetzner Token', '');
_addDnsProviderField(s, 'dns_he', 'dns_hexonet', 'Hexonet.net Login', 'username!roleId');
_addDnsProviderField(s, 'dns_he', 'dns_hexonet', 'Hexonet.net Password', '');
_addDnsProviderField(s, 'dns_huaweicloud', 'HUAWEICLOUD_Username', 'MyHuaweiCloud.com Username', '');
_addDnsProviderField(s, 'dns_huaweicloud', 'HUAWEICLOUD_Password', 'MyHuaweiCloud.com Password', '');
_addDnsProviderField(s, 'dns_huaweicloud', 'HUAWEICLOUD_DomainName', 'MyHuaweiCloud.com Domain Name', '');
_addDnsProviderField(s, 'dns_infomaniak', 'INFOMANIAK_API_TOKEN', 'InfoManiak Token', '');
_addDnsProviderField(s, 'dns_ipv64', 'IPv64_Token', 'ipv64.net Token', '');
_addDnsProviderField(s, 'dns_jd', 'JD_ACCESS_KEY_ID', 'JDCloud.com Access Key ID', '');
_addDnsProviderField(s, 'dns_jd', 'JD_ACCESS_KEY_SECRET', 'JDCloud.com Access Key Secret', '');
_addDnsProviderField(s, 'dns_jd', 'JD_REGION', 'JDCloud.com Region', 'cn-north-1');
_addDnsProviderField(s, 'dns_joker', 'JOKER_USERNAME', 'Joker.com User', '');
_addDnsProviderField(s, 'dns_joker', 'JOKER_PASSWORD', 'Joker.com Password', '');
_addDnsProviderField(s, 'dns_freedns', 'FREEDNS_User', 'FreeDNS User', '');
_addDnsProviderField(s, 'dns_freedns', 'FREEDNS_Password', 'FreeDNS Password', '');
_addDnsProviderField(s, 'dns_la', 'LA_Id', 'dns.la Id', '');
_addDnsProviderField(s, 'dns_la', 'LA_Key', 'dns.la Key', '');
_addDnsProviderField(s, 'dns_linodev4', 'LINODE_V4_API_KEY', 'Linode API Key', '');
_addDnsProviderField(s, 'dns_loopia', 'LOOPIA_User', 'Loopia User', '');
_addDnsProviderField(s, 'dns_loopia', 'LOOPIA_Password', 'Loopia Password', '');
_addDnsProviderField(s, 'dns_lua', 'LUA_Email', 'luadns.com email', '');
_addDnsProviderField(s, 'dns_lua', 'LUA_Key', 'luadns.com Key', '');
_addDnsProviderField(s, 'dns_mydnsjp', 'MYDNSJP_MasterID', 'MyDNS.jp MasterID', '');
_addDnsProviderField(s, 'dns_mydnsjp', 'MYDNSJP_Password', 'MyDNS.jp Password', '');
_addDnsProviderField(s, 'dns_me', 'ME_Key', 'DNSMadeEasy Key', '');
_addDnsProviderField(s, 'dns_me', 'ME_Secret', 'DNSMadeEasy Secret', '');
_addDnsProviderField(s, 'dns_namecom', 'Namecom_Username', 'Name.com Username', '');
_addDnsProviderField(s, 'dns_namecom', 'Namecom_Token', 'Name.com Token', '');
_addDnsProviderField(s, 'dns_namecheap', 'NAMECHEAP_API_KEY', 'NameCheap API Key', '');
_addDnsProviderField(s, 'dns_namecheap', 'NAMECHEAP_USERNAME', 'NameCheap User', '');
_addDnsProviderField(s, 'dns_namecheap', 'NAMECHEAP_SOURCEIP', 'NameCheap Source IP', '');
_addDnsProviderField(s, 'dns_nic', 'NIC_ClientID', 'Nic.ru ClientID', '');
_addDnsProviderField(s, 'dns_nic', 'NIC_ClientSecret', 'Nic.ru ClientSecret', '');
_addDnsProviderField(s, 'dns_nic', 'NIC_Username', 'Nic.ru Username', '');
_addDnsProviderField(s, 'dns_nic', 'NIC_Password', 'Nic.ru Password', '');
_addDnsProviderField(s, 'dns_netlify', 'NETLIFY_ACCESS_TOKEN', 'Netlify Access Token', '');
_addDnsProviderField(s, 'dns_nsone', 'NS1_Key', 'nsone.net Key', '');
_addDnsProviderField(s, 'dns_nsupdate', 'NSUPDATE_SERVER', 'nsupdate server address', '');
_addDnsProviderField(s, 'dns_nsupdate', 'NSUPDATE_SERVER_PORT', 'nsupdate server port', '');
_addDnsProviderField(s, 'dns_nsupdate', 'NSUPDATE_KEY', 'nsupdate key file path', '');
_addDnsProviderField(s, 'dns_nsupdate', 'NSUPDATE_ZONE', 'nsupdate zone', '');
_addDnsProviderField(s, 'dns_nsupdate', 'OCI_CLI_TENANCY', 'OCI Tenancy',
_('OCID of tenancy that contains the target DNS zone')
);
_addDnsProviderField(s, 'dns_nsupdate', 'OCI_CLI_USER', 'OCI User',
_('OCID of user with permission to add/remove records from zones')
);
_addDnsProviderField(s, 'dns_nsupdate', 'OCI_CLI_REGION', 'OCI Region',
_('Should point to the tenancy home region')
);
_addDnsProviderField(s, 'dns_nsupdate', 'OCI_CLI_KEY_FILE', 'OCI Key file',
_('Path to private API signing key file in PEM format')
);
_addDnsProviderField(s, 'dns_nsupdate', 'OCI_CLI_KEY', 'OCI Key',
_('The private API signing key in PEM format')
);
_addDnsProviderField(s, 'dns_ovh', 'OVH_AK', 'OVH Application Key', '');
_addDnsProviderField(s, 'dns_ovh', 'OVH_AS', 'OVH Application Secret', '');
_addDnsProviderField(s, 'dns_ovh', 'OVH_CK', 'OVH Consumer Key', '');
_addDnsProviderField(s, 'dns_ovh', 'OVH_END_POINT', 'OVH Region/Endpoint',
'ovh-eu, ovh-us, ovh-ca, kimsufi-eu, kimsufi-ca, soyoustart-eu, soyoustart-ca'
);
_addDnsProviderField(s, 'dns_pdns', 'PDNS_Url', 'PDNS API URL', '');
_addDnsProviderField(s, 'dns_pdns', 'PDNS_ServerId', 'PDNS Server ID', '');
_addDnsProviderField(s, 'dns_pdns', 'PDNS_Token', 'PDNS Token', '');
_addDnsProviderField(s, 'dns_pdns', 'PDNS_Ttl', 'PDNS Default TTL', '60');
_addDnsProviderField(s, 'dns_porkbun', 'PORKBUN_API_KEY', 'Porkbun API Key', '');
_addDnsProviderField(s, 'dns_porkbun', 'PORKBUN_SECRET_API_KEY', 'Porkbun API Secret', '');
_addDnsProviderField(s, 'dns_rackspace', 'RACKSPACE_Apikey', 'RackSpace API Key', '');
_addDnsProviderField(s, 'dns_rackspace', 'RACKSPACE_Username', 'Porkbun Username', '');
_addDnsProviderField(s, 'dns_regru', 'REGRU_API_Username', 'reg.ru Username', '');
_addDnsProviderField(s, 'dns_regru', 'REGRU_API_Password', 'reg.ru Password', '');
_addDnsProviderField(s, 'dns_selectel', 'SL_Key', 'Selectel API Key', '');
_addDnsProviderField(s, 'dns_selfhost', 'SELFHOSTDNS_USERNAME', 'SelfHost.de Username', '');
_addDnsProviderField(s, 'dns_selfhost', 'SELFHOSTDNS_PASSWORD', 'SelfHost.de Password', '');
_addDnsProviderField(s, 'dns_selfhost', 'SELFHOSTDNS_MAP', 'SelfHost.de Domains map',
_('E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</code>')
);
_addDnsProviderField(s, 'dns_simply', 'SIMPLY_AccountName', 'Simply.com account name', '');
_addDnsProviderField(s, 'dns_simply', 'SIMPLY_ApiKey', 'Simply.com API Key', '');
_addDnsProviderField(s, 'dns_tele3', 'TELE3_Key', 'tele3.cz API Key', '');
_addDnsProviderField(s, 'dns_tele3', 'TELE3_Secret', 'tele3.cz API Secret', '');
_addDnsProviderField(s, 'dns_vultr', 'VULTR_API_KEY', 'Vultr API Secret', '');
_addDnsProviderField(s, 'dns_vscale', 'VSCALE_API_KEY', 'vscale.io API Key', '');
_addDnsProviderField(s, 'dns_yandex', 'PDD_Token', 'Yandex DNS API Token', '');
_addDnsProviderField(s, 'dns_yandex', 'PDD_Token', 'Yandex DNS API Token', '');
_addDnsProviderField(s, 'dns_yc', 'YC_Zone_ID', 'Yandex Cloud: DNS Zone ID', '');
_addDnsProviderField(s, 'dns_yc', 'YC_Folder_ID', 'Yandex Cloud: YC Folder ID', '');
_addDnsProviderField(s, 'dns_yc', 'YC_SA_ID', 'Yandex Cloud: Service Account ID', '');
_addDnsProviderField(s, 'dns_yc', 'YC_SA_Key_ID', 'Yandex Cloud: Service Account IAM Key ID', '');
_addDnsProviderField(s, 'dns_yc', 'YC_SA_Key_File_Path', 'Yandex Cloud: Path to private key', '');
_addDnsProviderField(s, 'dns_yc', 'YC_SA_Key_File_PEM_b64', 'Yandex Cloud: PEM of private key',
_('Base64 content of private key. Use instead of YC_SA_Key_File_Path')
);
_addDnsProviderField(s, 'dns_zilore', 'Zilore_Key', 'Zilore API Key', '');
_addDnsProviderField(s, 'dns_zone', 'ZONE_Username', 'Zone.ee Username', '');
_addDnsProviderField(s, 'dns_zone', 'ZONE_Key', 'Zone.ee API Key', '');
_addDnsProviderField(s, 'dns_zonomi', 'ZM_Key', 'Zonomi.com API Key', '');
o = s.taboption('challenge_dns', form.DynamicList, 'credentials', _('DNS API credentials'),
_("The credentials for the DNS API mode selected above. " +
"See https://github.com/acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required by each API. " +
"Add multiple entries here in KEY=VAL shell variable format to supply multiple credential variables."))
o.datatype = "list(string)";
o.depends("validation_method", "dns");
o.modalonly = true;
o = s.taboption('challenge_dns', form.Value, 'calias', _('Challenge Alias'),
_("The challenge alias to use for ALL domains. " +
"See https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode for the details of this process. " +
"LUCI only supports one challenge alias per certificate."));
o.depends("validation_method", "dns");
o.modalonly = true;
o = s.taboption('challenge_dns', form.Value, 'dalias', _('Domain Alias'),
_("The domain alias to use for ALL domains. " +
"See https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode for the details of this process. " +
"LUCI only supports one challenge domain per certificate."));
o.depends("validation_method", "dns");
o.modalonly = true;
o = s.taboption('advanced', form.Flag, 'use_staging', _('Use staging server'),
_(
'Get certificate from the Letsencrypt staging server ' +
'(use for testing; the certificate won\'t be valid).'
)
);
o.rmempty = false;
o.modalonly = true;
o = s.taboption('advanced', form.ListValue, 'key_type', _('Key type'),
_('Key size (and type) for the generated certificate.')
);
o.value('rsa2048', _('RSA 2048 bits'));
o.value('rsa3072', _('RSA 3072 bits'));
o.value('rsa4096', _('RSA 4096 bits'));
o.value('ec256', _('ECC 256 bits'));
o.value('ec384', _('ECC 384 bits'));
o.rmempty = false;
o.optional = true;
o.modalonly = true;
o.cfgvalue = function(section_id, set_value) {
var keylength = uci.get('acme', section_id, 'keylength');
if (keylength) {
// migrate the old keylength to a new keytype
switch (keylength) {
case '2048': return 'rsa2048';
case '3072': return 'rsa3072';
case '4096': return 'rsa4096';
case 'ec-256': return 'ec256';
case 'ec-384': return 'ec384';
default: return ''; // bad value
}
}
return set_value;
};
o.write = function(section_id, value) {
// remove old keylength
uci.unset('acme', section_id, 'keylength');
uci.set('acme', section_id, 'key_type', value);
};
o = s.taboption('advanced', form.Flag, "use_acme_server",
_("Custom ACME CA"), _("Use a custom CA instead of Let's Encrypt."));
o.depends("use_staging", "0");
o.default = false;
o.modalonly = true;
o = s.taboption('advanced', form.Value, "acme_server", _("ACME server URL"),
_("Custom ACME server directory URL."));
o.depends("use_acme_server", "1");
o.placeholder = "https://api.buypass.com/acme/directory";
o.optional = true;
o.modalonly = true;
o = s.taboption('advanced', form.Value, 'days', _('Days until renewal'));
o.optional = true;
o.placeholder = 90;
o.datatype = 'uinteger';
o.modalonly = true;
s = m.section(form.GridSection, '_certificates');
s.render = L.bind(_renderCerts, this, certs);
return m.render();
}
})
function _addDnsProviderField(s, provider, env, title, desc) {
let o = s.taboption('challenge_dns', form.Value, '_' + env, _(title),
_(desc));
o.depends('dns', provider);
o.modalonly = true;
o.cfgvalue = function (section_id, stored_val) {
var creds = this.map.data.get(this.map.config, section_id, 'credentials');
return _extractParamValue(creds, env);
};
o.write = function (section_id, value) {
this.map.data.set('acme', section_id, 'credentials', [env + '="' + value + '"']);
};
return o;
}
/**
* @param {string[]} paramsKeyVals
* @param {string} paramName
* @returns {string}
*/
function _extractParamValue(paramsKeyVals, paramName) {
if (!paramsKeyVals) {
return '';
}
for (let i = 0; i < paramsKeyVals.length; i++) {
var paramKeyVal = paramsKeyVals[i];
var parts = paramKeyVal.split('=');
if (parts.lenght < 2) {
continue;
}
var name = parts[0];
var val = parts[1];
if (name == paramName) {
// unquote
return val.substring(0, val.length-1).substring(1);
}
}
return '';
}
function _handleCheckService(c, event, curVal, newVal) {
document.getElementById('wikiInstructionUrl').href = 'https://github.com/acmesh-official/acme.sh/wiki/dnsapi#' + newVal;
}
function _renderCerts(certs) {
var table = E('table', {'class': 'table cbi-section-table', 'id': 'certificates_table'}, [
E('tr', {'class': 'tr table-titles'}, [
E('th', {'class': 'th'}, _('Main Domain')),
E('th', {'class': 'th'}, _('Private Key')),
E('th', {'class': 'th'}, _('Public Certificate')),
E('th', {'class': 'th'}, _('Issued on')),
])
]);
var rows = certs.map(function (cert) {
let domain = cert.name.substring(0, cert.name.length - 4);
let issueDate = new Date(cert.mtime * 1000).toLocaleDateString();
return [
domain,
'/etc/ssl/acme/' + domain + '.key',
'/etc/ssl/acme/' + domain + '.fullchain.crt',
issueDate,
];
});
cbi_update_table(table, rows);
return E('div', {'class': 'cbi-section cbi-tblsection'}, [
E('h3', _('Certificates')), table]);
}

View file

@ -0,0 +1,330 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-03-08 13:04+0000\n"
"Last-Translator: Mohammed Abu Hassan <medo94125@gmail.com>\n"
"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/ar/>\n"
"Language: ar\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
"X-Generator: Weblate 4.5.1\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr " شهادات بيئة إدارة الشهادات التلقائية"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "التكوين العالمي لبيئة إدارة الشهادات التلقائية"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "عنوان URL لخادم ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "حساب البريد الإلكتروني"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "إعدادات متقدمة"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "حيث يتم حفظ شهادات وملفات الدولة الأخرى."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "تكوين الشهادة"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "الاسم المستعار لاعتراض"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "مخصص ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "عنوان URL مخصص لدليل خادم ACME."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "نظام أسماء النطاقات"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "واجهة برمجة تطبيقات لنظام أسماء النطاقات"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "مؤهلات واجهة برمجة تطبيقات لنظام أسماء النطاقات"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS التحقق من صحة التحدي"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "الأيام حتى التجديد"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "الاسم المستعار للنطاق"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "أسماء النطاقات"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"أسماء النطاقات المراد تضمينها في الشهادة. سيكون الاسم الأول هو اسم الموضوع، "
"وستكون الأسماء اللاحقة أسماء بديلة. لاحظ أن جميع أسماء النطاقات يجب أن تشير "
"إلى جهاز التوجيه في نظام أسماء النطاقات العام."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC 256 بت"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC 384 بت"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "عنوان البريد الإلكتروني لربطه بمفتاح الحساب."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "مكن السجل للتصحيح البرمجي"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "مفعل"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "الاعدادات العامة"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"احصل على شهادة من خادم Let's Encrypt المرحلي (استخدم للاختبار. الشهادة لن "
"تكون صالحة)."
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "منح الوصول فريد معرف العميل ل luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "حجم المفتاح (والنوع) للشهادة التي تم إنشاؤها."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "حجم المفتاح"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA 2048 بت"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA 3072 بت"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA 4096 بت"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "مستقل"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"سيستخدم الوضع المستقل خادم الويب المدمج في acme.sh لإصدار شهادة. سيستخدم وضع "
"Webroot خادم ويب موجودًا لإصدار شهادة. سيسمح لك وضع DNS باستخدام DNS API "
"لمزود DNS الخاص بك لإصدار شهادة."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
"الاسم المستعار الاعتراضي لاستخدامه لكل أسماء النقابات. انظرإلى https://"
"github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode للاطلاع على تفاصيل "
"هذه العملية. يدعم LUCI اسمًا مستعارًا واحدًا فقط للاعتراض لكل شهادة."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
"بيانات اعتماد وضع واجهة برمجة تطبيقات نظام اسم المجال المحدد أعلاه. راجع "
"https://github.com/acmesh-official/acme.sh/wiki/dnsapi لتنسيق بيانات "
"الاعتماد التي تتطلبها كل واجهة برمجة تطبيقات. أضف إدخالات متعددة هنا في "
"تنسيق متغير shell \"KEY = VAL\" لتوفير متغيرات اعتماد متعددة."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
"اسم النطاق المستعار لاستخدامها في جميع المجالات. انظر https://github.com/"
"acmesh-official/acme.sh/wiki/DNS-alias-mode عن تفاصيل هذه العملية. لوسي يدعم "
"فقط واحد التحدي المجال لكل شهادة."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
"يؤدي هذا إلى تهيئة تثبيت الشهادة من بروتوكول بيئة إدارة الشهادات المؤتمتة. "
"ما عليك سوى ملء هذا لتكوين واجهة الويب بالشهادات الصادرة من Let's Encrypt. "
"يرجى ملاحظة أنه يجب بالفعل تكوين أسماء النطاقات في الشهادة للإشارة إلى عنوان "
"بروتوكول الإنترنت العام لجهاز التوجيه. بمجرد التكوين ، يمكن أن يستغرق إصدار "
"الشهادات بعض الوقت. يمكنك التحقق من سجلات التقدم وأية أخطاء."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
"لاستخدام وضع DNS لإصدار الشهادات ، قم بتعيين هذا على اسم API DNS المدعوم من "
"acme.sh. راجع https://github.com/acmesh-official/acme.sh/wiki/dnsapi للحصول "
"على قائمة واجهات برمجة التطبيقات المتاحة. في وضع DNS ، لا يلزم حل اسم المجال "
"إلى IP الخاص بالموجه. وضع DNS هو أيضًا الوضع الوحيد الذي يدعم شهادات أحرف "
"البدل. يتطلب استخدام هذا الوضع تثبيت حزمة acme-dnsapi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr "استخدم مرجع مصدق (CA) مخصصًا بدلاً من Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr "استخدم خادم الترحيل"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr "طريقة التحقق من الصحة"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot التحقق من صحة التحدي"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "دليل Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""
"الدليل الجذر لخادم الويب. اضبط هذا على جذر وثيقة خادم الويب لتشغيل Acme في "
"وضع webroot. يجب الوصول إلى خادم الويب من الإنترنت على المنفذ 80."

View file

@ -0,0 +1,299 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-02-28 14:29+0000\n"
"Last-Translator: Boyan Alexiev <nneauu@gmail.com>\n"
"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/bg/>\n"
"Language: bg\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.5-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "ACME сертификати"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "ACME глобални настройки"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "URL на ACME сървър"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "Имейл на акаунта"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Разширени настройки"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Директория със сертификати"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Конфигурация на сертификат"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "Персонализиран ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "DNS API креденшъли"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Проверка на предизвикателство"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "Дни до подновяване"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Имена на домейни"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Разрешен"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Общи настройки"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Проверка на предизвикателство"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""

View file

@ -0,0 +1,323 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-10-08 18:54+0000\n"
"Last-Translator: Rayhan Nabi <rayhanjanam@gmail.com>\n"
"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/"
"openwrt/luciapplicationsacme/bn_BD/>\n"
"Language: bn_BD\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.9-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "ACME সার্টিফিকেট"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "ACME গ্লোবাল কনফিগ"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "ACME সার্ভার URL"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "অ্যাকাউন্ট ইমেইল"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "উন্নত সেটিংস"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "সার্টিফিকেট কনফিগারেশন"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "চ্যালেঞ্জ উপনাম"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "কাস্টম ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "কাস্টম ACME সার্ভার ডিরেক্টরি URL।"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "ডিএনএস"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "DNS API ক্রিডেনশিয়াল"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS চ্যালেঞ্জ বৈধতা"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "নবায়ন পর্যন্ত দিন"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "ডোমেইন উপনাম"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "ডোমেইন উপনাম"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"সার্টিফিকেটে অন্তর্ভুক্ত করার জন্য ডোমেইন নাম। প্রথম নাম হবে বিষয়ের নাম, পরবর্তী নাম "
"হবে বিকল্প নাম। মনে রাখবেন যে সমস্ত ডোমেইন নাম অবশ্যই বৈশ্বিক DNS- এর রাউটারে "
"নির্দেশ করতে হবে।"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC 256 বিট"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC 384 বিট"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "অ্যাকাউন্ট কী এর সাথে যুক্ত করার জন্য ইমেইল ঠিকানা।"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "ডিবাগ লগিং সক্রিয় করুন"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "সক্রিয়"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "সাধারণ সেটিংস"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"Letsencrypt স্টেজিং সার্ভার থেকে সার্টিফিকেট নিন (পরীক্ষার জন্য ব্যবহার করুন, "
"সার্টিফিকেটটি বৈধ হবে না)।"
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "Luci-app-acme এর জন্য UCI অ্যাক্সেস প্রদান করুন"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "সার্টিফিকেট উৎপন্ন করার জন্য কী সাইজ (এবং প্রকার)।"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "কী সাইজ"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA 2048 বিট"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA 3072 বিট"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA 4096 বিট"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "স্বতন্ত্র"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"স্বতন্ত্র মোড সার্টিফিকেট ইস্যু করার জন্য acme.sh এর অন্তর্নির্মিত ওয়েব সার্ভার ব্যবহার "
"করবে। ওয়েবরুট মোড সার্টিফিকেট ইস্যু করার জন্য একটি বিদ্যমান ওয়েব সার্ভার ব্যবহার "
"করবে। ডিএনএস মোড আপনার ডিএনএস প্রদানকারীর ডিএনএস এপিআই ব্যবহার করে সার্টিফিকেট "
"ইস্যু করবে।"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
"সমস্ত ডোমেইনের জন্য চ্যালেঞ্জ উপনাম। এই প্রক্রিয়ার বিস্তারিত জানার জন্য https://"
"github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode দেখুন। LUCI শুধুমাত্র "
"একটি সার্টিফিকেট চ্যালেঞ্জ উপনাম সমর্থন করে।"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
"উপরে নির্বাচিত DNS API মোডের ক্রিডেনশিয়াল।প্রতিটি API- এর প্রয়োজনীয় ক্রিডেনশিয়াল "
"ফরম্যাটের জন্য দেখুন https://github.com/acmesh-official/acme.sh/wiki/dnsapi। "
"একাধিক ক্রিডেনশিয়াল ভেরিয়েবল সরবরাহ করতে এখানে KEY = VAL শেল ভেরিয়েবল ফরম্যাটে "
"একাধিক এন্ট্রি যুক্ত করুন।"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
"সমস্ত ডোমেইনের জন্য ব্যবহৃত ডোমেইন উপনাম। এই প্রক্রিয়ার বিস্তারিত জানার জন্য দেখুন "
"https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode। LUCI শুধুমাত্র "
"একটি সার্টিফিকেট চ্যালেঞ্জ ডোমেইন সমর্থন করে।"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
"এটি ACME (Letsencrypt) স্বয়ংক্রিয় সার্টিফিকেট ইনস্টলেশন কনফিগার করে। ওয়েব "
"ইন্টারফেসের জন্য Letsencrypt-ইস্যু করা সার্টিফিকেট দিয়ে রাউটার কনফিগার করার জন্য "
"এটি পূরণ করুন। লক্ষ্য করুন যে সার্টিফিকেটের ডোমেইন নামগুলি রাউটারের সর্বজনীন আইপি "
"ঠিকানায় নির্দেশ করার জন্য কনফিগার করা আবশ্যক। একবার কনফিগার হয়ে গেলে, "
"সার্টিফিকেট ইস্যু করতে কিছু সময় লাগতে পারে। অগ্রগতি এবং কোন ত্রুটির জন্য লগ চেক করুন।"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot চ্যালেঞ্জ বৈধতা"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""

View file

@ -0,0 +1,299 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-03-20 23:20+0000\n"
"Last-Translator: Toomoch <vallsfustearnau@gmail.com>\n"
"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/ca/>\n"
"Language: ca\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.5.2-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Configuració avançada"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Activat"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Paràmetres generals"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""

View file

@ -0,0 +1,341 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-09-18 15:45+0000\n"
"Last-Translator: David Rapaň <david@rapan.cz>\n"
"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/cs/>\n"
"Language: cs\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 5.0.2\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "Certifikáty ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "Globální konfigurace ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "URL serveru ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "E-mail k účtu"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Pokročilá nastavení"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr "Base64 obsah soukromého klíče. Použití namísto YC_SA_Key_File_Path"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Certifikáty jsou uloženy v"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Konfigurace certifikátu"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr "Certifikáty"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "Aliasy"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "Vlastní ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "Adresář URL vlastního serveru ACME."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "DNS API pověření"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Validace"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "Dny do obnovení"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr "Výchozí"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "Alias domény"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Doménové názvy"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"Doménové názvy, které se mají zahrnout do certifikátu. První název je název/"
"jméno subjektu, další jsou alternativní názvy. Mějte na paměti, že všechny "
"doménové názvy musejí v globálním DNS ukazovat na router."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
"Např. <code>_acme-challenge.example.com:12345:98765 alias.example."
"com:11111</code>"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC 256 bitů"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC 384 bitů"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "E-mailová adresa pro přiřazení ke klíči účtu."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "Povolit ladicí protokolování"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Zapnuto"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Obecná nastavení"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"Získat certifikát z pracovního serveru Letsencrypt (používá se k testování, "
"certifikát nebude platný)."
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "Udělit přístup UCI pro luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
"Pokud nebyl certifikát obnoven včas, obdržíte upozornění 20 dní před "
"vypršením."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr "Vydáno"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "Velikost (a typ) klíče pro generovaný certifikát."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Velikost klíče"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr "Hlavní doména"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr "OCID nájmu, který obsahuje cílovou DNS zónu"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr "OCID uživatele s povolením přidat/odstranit záznamy ze zón"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
"Otevřete <a href=\"https://www.duckdns.org/\">DuckDNS</a> a zkopírujte token "
"zde"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr "Cesta k soukromému API podpisovému klíči v PEM formátu"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr "Soukromý klíč"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr "Veřejný certifikát"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA 2048 bitů"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA 3072 bitů"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA 4096 bitů"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr "Zobrazit pokyny"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr "Mělo by ukazovat na domovský region pronájmu"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "Samostatný"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"Samostatný režim bude vydávání certifikátů používat vestavěný webový server "
"acme.sh. Režim webroot bude používat existující webový server. DNS režim "
"bude umožňovat použití DNS API vašeho poskytovatele DNS."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
"Alias výzvy, který se má použít pro VŠECHNY domény. Podrobnosti o tomto "
"procesu naleznete na adrese https://github.com/acmesh-official/acme.sh/wiki/"
"DNS-alias-mode. Rozhraní LUCI podporuje pouze jeden alias výzvy na "
"certifikát."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
"Přihlašovací údaje pro zvolený režim DNS API. Podívejte se na adresu https://"
"github.com/acmesh-official/acme.sh/wiki/dnsapi, jaký formát přihlašovacích "
"údajů je požadován pro každé API. Přidejte zde více položek v formátu "
"proměnné shellu KLÍČ=HODNOTA, abyste mohli poskytnout více přihlašovacích "
"proměnných."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
"Doménový alias k použití pro VŠECHNY domény. Viz https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode pro více informací o tomto procesu. "
"LUCI podporuje jen jednu challenge doménu pro každý certifikát."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr "Soukromý API podpisový klíč v PEM formátu"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
"Konfiguruje ACME (Letsencrypt) pro automatickou instalaci certifikátu. "
"Jednoduše toto vyplňte, abyste měli router nakonfigurován pro certifikáty od "
"Letsencrypt pro webové rozhraní. Nezapomeňte, že doménové názvy v "
"certifikátu už musejí být nakonfigurovány tak, aby ukazovaly na veřejnou IP "
"adresu routeru. Jakmile bude konfigurace dokončena, vydávání certifikátů "
"bude chvíli trvat. Kontrolujte protokoly, kde uvidíte průběh a jakékoli "
"chyby."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr "Toto obvykle NENÍ e-mailová adresa"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
"Aby bylo možné vydávání certifikátů pomocí režimu DNS, nastavte název DNS "
"API podporovaného aplikací acme.sh. Seznam dostupných API naleznete na "
"adrese https://github.com/acmesh-official/acme.sh/wiki/dnsapi. V režimu DNS "
"nemusí být doménové jméno přeloženo na IP adresu směrovače. Režim DNS je "
"také jediným režimem, který podporuje vydávání wildcard certifikátů. Použití "
"tohoto režimu vyžaduje instalaci balíčku acme-dnsapi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Namísto Let's Encrypt použít vlastní CA."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr "Použijte pracovní server"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr "Metoda ověření"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr "Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Validace"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "Adresář Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""
"Kořenový adresář webového serveru. Pro spuštění ACME v režimu webroot "
"nastavte tento adresář jako kořen webu ve webovém serveru. Server musí být "
"přístupný z Internetu na portu 80."

View file

@ -0,0 +1,342 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-01-25 02:53+0000\n"
"Last-Translator: drax red <drax@outlook.dk>\n"
"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/da/>\n"
"Language: da\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.4-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "ACME-certifikater"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "ACME global konfiguration"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "URL til ACME-serveren"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "Konto e-mail"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Avancerede indstillinger"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr "Base64 indhold af privat nøgle. Brug i stedet for YC_SA_Key_File_Path"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Cert-filer gemmes i"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Certifikatkonfiguration"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr "Certifikater"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "Udfordr Alias"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "Brugerdefineret ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "Brugerdefineret URL til ACME-serverens mappe."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "DNS-API legitimationsoplysninger"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Udfordringsvalidering"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "Antal dage indtil fornyelse"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr "Standard"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "Domænealias"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Domænenavne"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"Domænenavne, der skal medtages i certifikatet. Det første navn vil være "
"emnet, de efterfølgende navne vil være alt-navne. Bemærk, at alle "
"domænenavne skal pege på routeren i den globale DNS."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
"f. eks. <code>_acme-challenge.example.com:12345:98765 alias.example."
"com:11111</code>"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC 256 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC 384 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "E-mail-adresse, der skal knyttes til kontonøglen."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "Aktivér debug logning"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Aktiveret"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Generelle indstillinger"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"Hent certifikatet fra den staging server Letsencrypt-server (bruges til "
"test, certifikatet er ikke gyldigt)."
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "Giv UCI-adgang til luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
"Hvis et certifikat ikke blev fornyet i tide, vil du modtage en meddelelse på "
"20 dage før udløbet."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr "udstedt den"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "Nøglestørrelse (og -type) for det genererede certifikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Nøglestørrelse"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr "Hoveddomæne"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr "OCID af tenancy, der indeholder mål DNS zonen"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
"OCID af brugeren med tilladelse til at tilføje / fjerne poster fra zoner"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
"Åbn <a href=\"https://www.duckdns.org/\">DuckDNS</a> og kopiere en token her"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr "Sti til privat API underskrift nøglefil i PEM format"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr "Privat nøgle"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr "Offentligt certifikat"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA 2048 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA 3072 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA 4096 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr "Se instruktioner"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr "Skal pege på den lejede hjemme region"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "Standalone"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"Standalone-tilstand vil bruge den indbyggede webserver i acme.sh til at "
"udstede et certifikat. Webroot-tilstand vil bruge en eksisterende webserver "
"til at udstede et certifikat. DNS-tilstand giver dig mulighed for at bruge "
"DNS API'et hos din DNS-udbyder til at udstede et certifikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
"Det alias for udfordring, der skal bruges til ALLE domæner. Se https://"
"github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode for nærmere "
"oplysninger om denne proces. LUCI understøtter kun ét udfordringsalias pr. "
"certifikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
"Angivelserne for den valgte DNS API-tilstand ovenfor. Se https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for formatet af de "
"legitimationsoplysninger, der kræves af hvert API. Tilføj flere poster her i "
"formatet KEY=VAL shellvariabel for at angive flere legitimationsvariabler."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
"Det domænealias, der skal bruges for ALLE domæner. Se https://github.com/"
"acmesh-official/acme.sh/wiki/DNS-alias-mode for nærmere oplysninger om denne "
"proces. LUCI understøtter kun ét udfordringsdomæne pr. certifikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr "Den private API signeringsnøgle i PEM-format"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
"Dette konfigurerer ACME's (Letsencrypt) automatiske certifikatinstallation. "
"Du skal blot udfylde dette for at få routeren konfigureret med Letsencrypt-"
"udstedte certifikater til webgrænsefladen. Bemærk, at domænenavnene i "
"certifikatet allerede skal være konfigureret til at pege på routerens "
"offentlige IP-adresse. Når det er konfigureret, kan udstedelsen af "
"certifikater tage et stykke tid. Kontroller logfilerne for fremskridt og "
"eventuelle fejl."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr "Dette er normalt IKKE en e-mailadresse"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
"Hvis du vil bruge DNS-tilstand til at udstede certifikater, skal du angive "
"navnet på et DNS-API, der understøttes af acme.sh, til dette. Se https://"
"github.com/acmesh-official/acme.sh/wiki/dnsapi for en liste over "
"tilgængelige API'er. I DNS-tilstand behøver domænenavnet ikke at blive "
"opløst til routerens IP-adresse. DNS-tilstand er også den eneste tilstand, "
"der understøtter wildcard-certifikater. Brug af denne tilstand kræver, at "
"pakken acme-dnsapi er installeret."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Brug en brugerdefineret CA i stedet for Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr "Brug staging-server"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr "Valideringsmetode"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Udfordringsvalidering"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "Webroot-mappen"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""
"Webserverens rodmappe. Indstil denne til webserverens dokumentrod for at "
"køre Acme i webroot-tilstand. Webserveren skal være tilgængelig fra "
"internettet på port 80."

View file

@ -0,0 +1,346 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-01-01 19:12+0000\n"
"Last-Translator: ssantos <ssantos@web.de>\n"
"Language-Team: German <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/de/>\n"
"Language: de\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.4-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "ACME-Zertifikate"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "Globale ACME-Einstellungen"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "ACME-Server URL"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "Account E-Mail"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Erweiterte Einstellungen"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
"Base64-Inhalt des privaten Schlüssels. Verwendung anstelle von "
"YC_SA_Key_File_Path"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Wo Zertifikate und andere Statusdateien aufbewahrt werden."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Zertifikateinstellungen"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr "Zertifikate"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "Challenge-Alias"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "Individuelles ACME-Zertifikat"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "Benutzerdefinierte ACME-Serververzeichnis URL."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "DNS API Zugangsdaten"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Challenge-Verifizierung"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "Tage bis zur Erneuerung"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr "Standard"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "Domain-Alias"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Domainnamen"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"Domänennamen, die in das Zertifikat aufgenommen werden sollen. Der erste "
"Eintrag ist der Betreff, nachfolgende Namen sind Alternativnamen. Beachten "
"Sie, dass alle Domainamen im globalen DNS auf den Router zeigen müssen."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
"Z.B. <code>_acme-challenge.example.com:12345:98765 alias.example."
"com:11111</code>"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC 256 Bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC 384 Bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "E-Mail Adresse, welche mit dem Account Key verknüpft wird."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "Aktiviere Debug-Protokollierung"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Aktiviert"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Allgemeine Einstellungen"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"Zertifikat vom Letsencrypt-Staging-Server abrufen (zum Testen verwenden; das "
"Zertifikat ist ungültig)."
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "UCI Zugriff auf luci-app-acme erlauben"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
"Wird ein Zertifikat nicht rechtzeitig erneuert, erhältst du 20 Tage vor "
"dessen Ablauf eine Benachrichtigung."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr "Ausgestellt am"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "Schlüsselgröße (und Typ) für das generierte Zertifikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Schlüsselgröße"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr "Hauptdomain"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr "OCID do locatário que contém a zona DNS de destino"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
"OCID do utilizador com permissão para adicionar/remover registos de zonas"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
"Öffne <a href=\"https://www.duckdns.org/\">DuckDNS</a> und kopiere ein Token "
"hier her"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr "Pfad zur Private-API-Signierschlüsseldatei im PEM-Format"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr "Private Key"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr "öffentliches Zertifikat"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA 2048 Bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA 3072 Bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA 4096 Bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr "Siehe Anleitung"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr "Deve apontar para a região de origem do arrendamento"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "Eigenständig"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"Der eigenständige Modus nutzt den in acme.sh integrierten Webserver, um das "
"Zertifikat zu erhalten. Im Webroot-Modus wird ein bereits vorhandener "
"Webserver genutzt. Der DNS-Modus erlaubt es, die API deines DNS-Providers "
"für die Zertifikatausstellung zu verwenden."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
"Der Challenge-Alias für ALLE Domänen. Weitere Informationen zu diesem "
"Vorgang finden Sie unter https://github.com/acmesh-official/acme.sh/wiki/DNS-"
"alias-mode. LUCI unterstützt nur einen Challenge-Alias pro Zertifikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
"Die Anmeldeinformationen für den oben ausgewählten DNS-API-Modus. Unter "
"https://github.com/acmesh-official/acme.sh/wiki/dnsapi finden Sie das Format "
"der für jede API erforderlichen Anmeldeinformationen. Fügen Sie hier mehrere "
"Einträge im Shell-Variablenformat KEY = VAL hinzu, um mehrere "
"Anmeldeinformationsvariablen bereitzustellen."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
"Der für ALLE Domänen zu nutzende Alias. Siehe https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode für Details zu diesem Prozess. LUCI "
"unterstützt nur eine Domänenanforderung pro Zertifikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr "Der private API-Signierschlüssel im PEM-Format"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
"Dadurch wird die automatische Zertifikatinstallation von ACME (Letsencrypt) "
"konfiguriert. Füllen Sie dies einfach aus, damit der Router mit von "
"Letsencrypt ausgestellten Zertifikaten für die Weboberfläche konfiguriert "
"wird. Beachten Sie, dass die Domänennamen im Zertifikat bereits so "
"konfiguriert sein müssen, dass sie auf die öffentliche IP-Adresse des "
"Routers verweisen. Nach der Konfiguration kann die Ausstellung von "
"Zertifikaten eine Weile dauern. Überprüfen Sie die Protokolle auf "
"Fortschritt und Fehler."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr "Dies ist normalerweise KEINE E-Mail-Adresse"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
"Um den DNS-Modus zum Ausstellen von Zertifikaten zu verwenden, setzen Sie "
"diesen auf den Namen einer von acme.sh unterstützten DNS-API. Eine Liste der "
"verfügbaren APIs finden Sie unter https://github.com/acmesh-official/acme.sh/"
"wiki/dnsapi. Im DNS-Modus muss der Domänenname nicht in die Router-IP "
"aufgelöst werden. Der DNS-Modus ist auch der einzige Modus, der "
"Platzhalterzertifikate unterstützt. Für die Verwendung dieses Modus muss das "
"acme-dnsapi-Paket installiert sein."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Nutze individuelles Zertifikat statt Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr "Staging-Server verwenden"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr "Überprüfungsmethode"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr "Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Challenge-Verifizierung"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "Webroot-Verzeichnis"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""
"Webserver-Stammverzeichnis. Stellen Sie dies auf den Webserver-Dokumentstamm "
"ein, um Acme im Webroot-Modus auszuführen. Der Webserver muss über Port 80 "
"über das Internet erreichbar sein."

View file

@ -0,0 +1,299 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-01-23 03:57+0000\n"
"Last-Translator: Savvas Sfantos <savvassfa@gmail.com>\n"
"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/el/>\n"
"Language: el\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.5-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "ACME πιστοποιητικά"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "Λογαριασμός email"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Ρυθμίσεις για προχωρημένους"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "Μέρες μέχρι την ανανέωση"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC 256 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC 384 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Ενεργοποιήθηκε"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Γενικές ρυθμίσεις"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA 2048 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA 3072 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA 4096 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr "Μέθοδος επιβεβαίωσης"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""

View file

@ -0,0 +1,349 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-11-30 14:34+0000\n"
"Last-Translator: rygle <pittos@post.com>\n"
"Language-Team: English <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/en/>\n"
"Language: en\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.3-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "ACME certificates"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "ACME global config"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "ACME server URL"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "Account email"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Advanced Settings"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
"Base64 content of private key. Use instead of YC_SA_Key_File_Path (Yandex "
"Cloud Service Account Key File Path)"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Certificate files are stored in"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Certificate configuration"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr "Certificates"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "Challenge Alias"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
#, fuzzy
msgid "Custom ACME CA"
msgstr "Custom ACME CA (Certificate Authority)"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "Custom ACME server directory URL"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS (Domain Name System)"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "DNS API credentials"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Challenge Validation"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "Days until renewal"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr "Default"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "Domain Alias"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Domain names"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt ermate names. Note that all "
"domain names must point at the router in the global DNS."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example."
"com:11111</code>"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
#, fuzzy
msgid "ECC 256 bits"
msgstr "ECC (Elliptic Curve) 256 bit Encryption"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
#, fuzzy
msgid "ECC 384 bits"
msgstr "ECC (Elliptic Curve) 384 bit Encryption"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "Email address to associate with account key."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "Enable debug logging"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Enabled"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "General Settings"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"Get a certificate from the Letsencrypt staging server (use for testing only; "
"the certificate won't be valid)."
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "Grant UCI access for luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr "Issued on"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "Key size (and type) for the generated certificate."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Key type"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr "Main Domain"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
#, fuzzy
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
"OCID (Oracle Cloud Identifier) of tenancy that contains the target DNS zone"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
#, fuzzy
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
"OCID (Oracle Cloud Identifier) of user with permission to add/remove records "
"from zones"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr "Path to private API signing key file in PEM format"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
#, fuzzy
msgid "Private Key"
msgstr "Private Key"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr "Public Certificate"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA 2048 bit Encryption"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA 3072 bit Encryption"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA 4096 bit Encryption"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr "See instructions"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr "Should point to the tenancy home region"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "Standalone"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
"The challenge alias to use for ALL domains. See https://github.com/"
"acmesh-official/acme.sh/wiki/DNS-alias-mode for the details of this process. "
"LUCI only supports one challenge alias per certificate."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
"The domain alias to use for ALL domains. See https://github.com/"
"acmesh-official/acme.sh/wiki/DNS-alias-mode for the details of this process. "
"LUCI only supports one challenge domain per certificate."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr "The private API signing key in PEM format"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill in the required information to have the router configured with "
"Letsencrypt-issued certificates for the web interface. Note that the domain "
"names in the certificate must already be configured to point at the router's "
"public IP address. Once configured, issuing certificates can take a while. "
"Check the logs for progress and any errors."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr "This is usually NOT an email address"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Use a custom CA (Certificate Authority) instead of Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr "Use a staging server"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr "Validation method"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Challenge Validation"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "Webroot directory"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."

View file

@ -0,0 +1,346 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-02-18 16:53+0000\n"
"Last-Translator: Salvador Peña <salvadorp74@hotmail.com>\n"
"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/es/>\n"
"Language: es\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.4\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "Certificados ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "Configuración global de ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "URL del servidor ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "Cuenta de email"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Ajustes Avanzados"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
"El contenido Base64 de la clave privada. Usar en lugar de YC_SA_Key_File_Path"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Los archivos Cert se almacenan en"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Configuración de certificado"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr "Certificados"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "Alias de desafío"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "CA ACME personalizado"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "URL del directorio del servidor ACME personalizado."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "API de DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "Credenciales de API de DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Validación de desafío"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "Días hasta la renovación"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr "Por defecto"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "Alias de dominio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Nombres de dominio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"Nombres de dominio para incluir en el certificado. El primer nombre será el "
"nombre del sujeto, los nombres posteriores serán nombres alternativos. Tenga "
"en cuenta que todos los nombres de dominio deben apuntar al enrutador en el "
"DNS global."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
"Por ejemplo, <code>_acme-challenge.example.com:12345:98765 alias.example."
"com:11111</code>"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC de 256 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC de 384 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr ""
"Dirección de correo electrónico para asociar con la clave de la cuenta."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "Activar el registro de depuración"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Activado"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Ajustes Generales"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"Obtenga el certificado del servidor de ensayo Letsencrypt (utilícelo para "
"realizar pruebas; el certificado no será válido)."
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "Conceder acceso UCI para luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
"Si un certificado no se ha renovado a tiempo, recibirás un aviso 20 días "
"antes de su expiración."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr "Publicado el"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "Tamaño de clave (y tipo) para el certificado generado."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Tamaño de clave"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr "Dominio principal"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
"El OCID del contrato de arrendamiento que contiene la zona DNS de destino"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
"OCID del usuario con permiso para agregar/eliminar los registros de las zonas"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
"Abre <a href=\"https://www.duckdns.org/\">DuckDNS</a> y copia un token aquí"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
"Ruta al archivo de la clave de la firma de la API privada en formato PEM"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr "Clave privada"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr "Certificado público"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA de 2048 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA de 3072 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA de 4096 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr "Ver las instrucciones"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr "Debes señalar a la región de origen del inquilino"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "Ser único"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"El modo autónomo utilizará el servidor web integrado de acme.sh para emitir "
"un certificado. El modo Webroot utilizará un servidor web existente para "
"emitir un certificado. El modo DNS le permitirá utilizar la API de DNS de su "
"proveedor de DNS para emitir un certificado."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
"El alias de desafío para usar en TODOS los dominios. Consulte https://github."
"com/acmesh-official/acme.sh/wiki/DNS-alias-mode para obtener detalles sobre "
"este proceso. LUCI solo admite un alias de desafío por certificado."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
"Las credenciales para el modo API de DNS seleccionado anteriormente. "
"Consulte https://github.com/acmesh-official/acme.sh/wiki/dnsapi para ver el "
"formato de credenciales requerido por cada API. Agregue varias entradas aquí "
"en formato de variable de shell KEY=VAL para proporcionar múltiples "
"variables de credenciales."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
"El alias de dominio que se usará para TODOS los dominios. Consulte https://"
"github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode para obtener detalles "
"sobre este proceso. LUCI solo admite un dominio de desafío por certificado."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr "La clave de la firma privada de la API en formato PEM"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
"Esto configura la instalación automática de certificados ACME (Letsencrypt). "
"Simplemente complete esto para configurar el enrutador con certificados "
"emitidos por Letsencrypt para la interfaz web. Tenga en cuenta que los "
"nombres de dominio en el certificado ya deben estar configurados para "
"apuntar a la dirección IP pública del enrutador. Una vez configurado, la "
"emisión de certificados puede demorar un tiempo. Verifique los registros de "
"progreso y cualquier error."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr "Normalmente NO es una dirección de correo electrónico"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
"Para usar el modo DNS para emitir certificados, configúralo con el nombre de "
"una API DNS compatible con acme.sh. Consulte https://github.com/acmesh-"
"official/acme.sh/wiki/dnsapi para ver la lista de API disponibles. En modo "
"DNS, el nombre de dominio no tiene que resolverse en la dirección IP del "
"enrutador. El modo DNS también es el único modo que admite certificados "
"comodín. El uso de este modo requiere que se instale el paquete acme-dnsapi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Utilice una CA personalizada en lugar de Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr "Usar servidor de ensayo"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr "Método de validación"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr "Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Validación de desafío"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "Directorio Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""
"Directorio raíz del servidor web. Configure esto en la raíz del documento "
"del servidor web para ejecutar Acme en modo webroot. El servidor web debe "
"ser accesible desde internet en el puerto 80."

View file

@ -0,0 +1,306 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-12-01 07:32+0000\n"
"Last-Translator: Ashkan Jazayeri <ashkanull@gmail.com>\n"
"Language-Team: Persian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/fa/>\n"
"Language: fa\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.3-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "گواهینامه های ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "پیکربندی جهانی ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "آدرس سرور ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "حساب ایمیل"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "تنظیمات پیشرفته"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr "محتوای Base64 کلید خصوصی. به جای YC_SA_Key_File_Path استفاده کنید"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "فایل های گواهی ذخیره می شوند در"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "پیکربندی گواهی"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr "گواهینامه ها"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "نام مستعار چالش"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "ACME CA سفارشی"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "آدرس سفارشی دایرکتوری سرور ACME ."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "احراز هویت DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "اعتبار سنجی چالش DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "روز تا تمدید"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr "پیشفرض"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "نام مستعار دامنه"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "نام دامنه ها"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"نام های دامنه برای درج در گواهی. اولین نام، نام موضوع است و همه نام های بعدی،"
" نام های جایگزین خواهد بود. توجه داشته باشید که DNS همه دامنه ها باید به "
"روتر اشاره کنند."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example."
"com:11111</code>"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC 256 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC 384 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "آدرس ایمیل برای مرتبط کردن با کلید حساب."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "ثبت اشکال زدایی را فعال کنید"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "فعال"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "پیکربندی عمومی"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"گواهی را از سرور آزمایشی Letsencrypt دریافت کنید (برای آزمایش استفاده کنید؛ "
"گواهی معتبر نخواهد بود)."
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "اجازه دسترسی به UCI برای luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""

View file

@ -0,0 +1,306 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-01-06 10:09+0000\n"
"Last-Translator: Hannu Nyman <hannu.nyman@iki.fi>\n"
"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/fi/>\n"
"Language: fi\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.4-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "ACME-sertifikaatit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "ACME-yleisasetukset"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "ACME-palvelimen osoite"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "Sähköpostitili"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Lisäasetukset"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Sertifikaatin asetukset"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr "Varmenteet"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "Haaste - alias"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "DNS API:n kirjautumistiedot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS-haastevalidointi"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "Päiviä uusimiseen"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr "Oletus"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "Verkkonimen alias"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Verkkonimet"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"Sertifikaattiin sisällytettävät verkkotunnukset. Ensimmäinen nimi merkataan "
"\"subject name\"-kenttään, loput vaihtoehtoisiksi nimiksi. Huomioi, että "
"kaikkien verkkotunnusten pitää osoittaa reitittimeen globaalissa DNS-"
"järjestelmässä."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
"Esim. <code>_acme-challenge.example.com:12345:98765 alias.example."
"com:11111</code>"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC 256 bittiä"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC 384 bittiä"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "Avaimeen liitettävä sähköpostiosoite."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "Ota vieanetsintälokkaus käyttöön"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Käytössä"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Yleiset asetukset"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "Salli pääsy acme-asetuksiin"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr "Myönnetty"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "Avaimen koko (ja tyyppi) luotavassa sertifikaatissa."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Avaimen koko"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
"Avaa <a href=\"https://www.duckdns.org/\">DuckDNS</a> ja kopioi token tähän"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr "Yksityinen avain"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr "Julkinen varmenne"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA 2048 bittiä"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA 3072 bittiä"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA 4096 bittiä"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr "Katso ohjeet"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr "Tämä EI yleensä ole sähköpostiosoite"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr "Käytä staging-palvelimeen"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr "Validointitapa"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""

View file

@ -0,0 +1,345 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-02-01 22:49+0000\n"
"Last-Translator: ButterflyOfFire <boffire@users.noreply.hosted.weblate.org>\n"
"Language-Team: French <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/fr/>\n"
"Language: fr\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.4-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "Certificats ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "Configuration globale ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "URL du serveur ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "Compte email"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Paramètres avancés"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
"Contenu de la clé privée en Base 64. À utiliser à la place de "
"YC_SA_Key_File_Path"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Emplacement de sauvegarde des certificats et des fichiers états"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Configuration du certificat"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr "Certificats"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "Alias du challenge"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "CA ACME personnalisé"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "URL du répertoire du serveur ACME personnalisé."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "API du DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "Identités de API du DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Validation du challenge"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "Nombre de jour avant renouvellement"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr "Par défaut"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "Alias du Domaine"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Noms de domaine"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"Noms de domaine à inclure dans le certificat. Le premier nom sera le sujet "
"principal, les noms suivants seront les noms alternatifs. Notez que tous les "
"noms de domaine doivent pointer sur le router dans le DNS global."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
"Ex. : <code>_acme-challenge.example.com:12345:98765 alias.example."
"com:11111</code>"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC 256 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC 384 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "Adresse email à associer avec la clé du compte."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "Activer les logs de type debug"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Activé"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Réglages généraux"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"Obtenir le certificat Letsencrypt depuis le serveur de test (à n'utiliser "
"que pour vos tests, le certificat ne sera pas valide)."
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "Autoriser les accès UCI pour luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
"Si un certificat n'a pas été renouvelé dans les temps, vous recevrez un avis "
"20 jours avant expiration."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr "Date d'émission"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "Longueur de clé (et type) du certificat généré."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Longueur de clé"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr "Domaine principal"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
"OCID de l'utilisateur possédant la permission d'ajouter/supprimer des "
"entrées sur les zones"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
"Ouvrir <a href=\"https://www.duckdns.org/\">DuckDNS</a> et copier un token "
"ici"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr "Chemin d'accès vers la clé privée de signature de l'API (au format PEM)"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr "Clé Privée"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr "Certificat Publique"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA 2048 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA 3072 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA 4096 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr "Voir les instructions"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "Autonome"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"Le mode autonome utilise le serveur web intégré du script acme.sh pour "
"générer le certificat. Le mode Webroot utilise un serveur web préexistant "
"pour le générer. Le mode DNS vous permet d'utiliser l 'API DNS de votre "
"fournisseur de DNS pour générer le certificat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
"L'alias du challenge à utiliser pour TOUS les domaines. Voir https://github."
"com/acmesh-official/acme.sh/wiki/DNS-alias-mode pour les détails de ce "
"processus. LUCI supporte un seul alias par certificat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
"Les identifiants pour le mode DNS API sélectionné précédemment. Voir https://"
"github.com/acmesh-official/acme.sh/wiki/dnsapi pour le format à utiliser "
"pour chaque API. Ajouter toutes vos variables d'identification ici sous le "
"format CLÉ=VALEUR."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
"Alias de domaine à utiliser pour TOUS les domaines. Voir https://github.com/"
"acmesh-official/acme.sh/wiki/DNS-alias-mode pour plus de détail. LUCI ne "
"supporte qu'un seul domaine par certificat pour le challenge."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr "Clé privée de signature de l'API au format PEM"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
"Cela configure l'installation automatique du certificat ACME (Letsencrypt). "
"Remplissez simplement ceci pour que le routeur soit configuré avec les "
"certificats émis par Letsencrypt pour l'interface Web. Notez que les noms de "
"domaine dans le certificat doivent déjà être configurés pour pointer vers "
"l'adresse IP publique du routeur. Une fois configurés, l'émission de "
"certificats peut prendre un certain temps. Vérifiez les journaux pour la "
"progression et les erreurs."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr "La plupart du temp, ce n'est PAS une adresse email"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
"Pour utiliser le mode DNS afin d'émettre des certificats, inscrivez ici le "
"nom d'un API DNS supportant acme.sh. Visitez https://github.com/acmesh-"
"official/acme.sh/wiki/dnsapi pour obtenir une liste des APIs disponibles. "
"Dans le mode DNS, il n'est pas requis que le nom du domaine soit résolu à "
"l'IP du routeur. Le mode DNS est aussi l'unique mode supportant les "
"certificats génériques (wildcard). L'utilisation de ce mode requiert "
"l'installation du paquet acme-dnsapi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Utiliser un CA personnalisé à la place de celui de Let's Encryt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr "Utiliser le serveur de qualification"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr "Méthode de validation"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr "Racine web"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Validation du challenge"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "Répertoire racine web"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""
"Répertoire racine du serveur web. Définir ce champ avec l'emplacement de la "
"racine du serveur Web pour utiliser ACME en mode Racine (webroot). Le "
"serveur web doit être accessible depuis internet sur le port 80."

View file

@ -0,0 +1,300 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-09-07 05:53+0000\n"
"Last-Translator: Oren Bahar <shavitbit@gmail.com>\n"
"Language-Team: Hebrew <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/he/>\n"
"Language: he\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && "
"n % 10 == 0) ? 2 : 3));\n"
"X-Generator: Weblate 5.0.1-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "הגדרות מתקדמות"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "הגדרות כלליות"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""

View file

@ -0,0 +1,293 @@
msgid ""
msgstr ""
"Language: hi\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""

View file

@ -0,0 +1,338 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-10-06 08:29+0000\n"
"Last-Translator: Norbert Szentner <upd6la1j@duck.com>\n"
"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/hu/>\n"
"Language: hu\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.1-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "ACME tanúsítványok"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "ACME globális beállítás"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "ACME szerver URL"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "Fiók e-mail"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
#, fuzzy
msgid "Advanced Settings"
msgstr "Haladó Beállítások"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Ahol a tanúsítványok és egyéb állapotfájlok tárolva vannak."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Tanúsítvány beállítása"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "Kihívás álneve"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "Egyéni ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "Testreszabott ACME szerver könyvtár URL."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "DNS API hitelesítési adatok"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Kihívás érvényesítése"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "Napok megújításig"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "Tartományálnév"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Tartománynevek"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"A tanúsítványba felvenni kívánt tartománynevek. Az első név lesz a tárgy "
"neve, az azt követő nevek lesznek az alternatív nevek. Ne feledje, hogy az "
"összes tartománynévnek az útválasztóra kell mutatnia a globális DNS-ben."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "256 bites ECC"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "384 bites ECC"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "A fiók kulcsához rendelendő e-mail cím."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "Hibakeresési naplózás engedélyezése"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Engedélyezve"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Általános Beállítások"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"Tanúsítvány beszerzése a Lets Encrypt előkészítő kiszolgálójától "
"(teszteléshez használja, a tanúsítvány nem lesz érvényes)."
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "UCI hozzáférés megadása a luci-app-acme alkalmazásnak"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "Kulcsméret (és típus) az előállított tanúsítványhoz."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Kulcsméret"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "2048 bites RSA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "3072 bites RSA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "4096 bites RSA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "Önálló"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"Az önálló üzemmód az acme.sh beépített web szerverét fogja használni, hogy "
"kiállítson egy tanusítványt. A webroot üzemmód egy meglévő web szervert fog "
"használni, hogy kiállítson egy tanusítványt. A DNS üzemmód megengedélyezi a "
"DNS szolgáltatód DNS API-ja használatát, hogy kiállítson egy tanusítványt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
"Az ÖSSZES tartománynál használandó kihívási álnév. Nézze meg a https://"
"github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode oldalt a folyamat "
"részleteiért. A LuCI csak egy kihívási álnevet támogat tanúsítványonként."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
"A fent kiválasztott DNS API mód hitelesítési adatai. Nézze meg a https://"
"github.com/acmesh-official/acme.sh/wiki/dnsapi oldalt az egyes API-k által "
"igényel hitelesítési adatok formátumához. Adjon hozzá több bejegyzést itt "
"KULCS=ÉRTÉK parancsértelmező változóformátumban a több hitelesítési adat "
"változójának támogatásához."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
"Az ÖSSZES tartománynál használandó tartományálnév. Nézze meg a https://"
"github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode oldalt a folyamat "
"részleteiért. A LuCI csak egy tartományálnevet támogat tanúsítványonként."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
"Ez beállítja az ACME (Lets Encrypt) automatikus tanúsítványtelepítést. "
"Egyszerűen töltse ki ezt, hogy az útválasztó be legyen állítva a Lets "
"Encrypt által kibocsátott tanúsítványokkal a webes felülethez. Ne feledje, "
"hogy a tanúsítványban lévő tartományneveknek már beállítva kell lenniük, "
"hogy az útválasztó nyilvános IP-címére mutassanak. Ha be lett állítva, akkor "
"a tanúsítványok kibocsátása eltarthat egy ideig. Nézze meg a naplókat a "
"folyamat előrehaladásához és a hibákhoz."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
"A tanúsítványok kibocsátásához történő DNS mód használatához állítsa be ezt "
"az acme.sh által támogatott DNS API nevére. Nézze meg a https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi oldalt az elérhető API-k listájához. DNS "
"módban a tartománynevet nem kell feloldani az útválasztó IP-címére. A DNS "
"mód az egyetlen olyan mód, amely támogatja az altartományokra is kibővített "
"tanúsítványokat. Ezen mód használatához az szükséges, hogy az acme-dnsapi "
"csomag telepítve legyen."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr "Előkészítő kiszolgáló használata"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr "Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Kihívás érvényesítése"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "Webgyökér könyvtár"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""
"A webkiszolgáló gyökérkönyvtára. Állítsa be ezt a webkiszolgáló "
"dokumentumgyökerére az ACME webgyökér módban történő futtatásához. A "
"webkiszolgálónak elérhetőnek kell lennie az internetről a 80-as porton."

View file

@ -0,0 +1,333 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-12-15 04:45+0000\n"
"Last-Translator: Reza Almanda <rezaalmanda27@gmail.com>\n"
"Language-Team: Indonesian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/id/>\n"
"Language: id\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.3\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "Sertifikat ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "Konfigurasi global ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "URL server ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "Akun e-mail"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Setelan Lanjutan"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr "Konten base64 dari kunci pribadi. Gunakan YC_SA_Key_File_Path"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "File sertifikat disimpan di"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Konfigurasi sertifikat"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr "Sertifikat"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "Tantangan Alias"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "CA ACME khusus"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "URL direktori server ACME khusus."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "Kredensial API DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Validasi Tantangan"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "Hari sampai perpanjangan"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr "Bawaan"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "Alias Domain"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Nama domain"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"Nama domain untuk disertakan dalam sertifikat. Nama depan akan menjadi nama "
"subjek, nama berikutnya akan menjadi nama alternatif. Perhatikan bahwa semua "
"nama domain harus mengarah ke router di DNS global."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC 256 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC 384 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "Alamat email untuk dikaitkan dengan kunci akun."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "Aktifkan pencatatan debug"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Diaktifkan"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Setelan Umum"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"Dapatkan sertifikat dari server pementasan Letsencrypt (gunakan untuk "
"pengujian; sertifikat tidak akan valid)."
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "Berikan akses UCI untuk luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "Ukuran kunci (dan jenis) untuk sertifikat yang dihasilkan."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Ukuran kunci"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr "Kunci Pribadi"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr "Sertifikat Publik"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA 2048 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA 3072 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA 4096 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr "Lihat instruksi"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "Mandiri"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"Mode mandiri akan menggunakan server web bawaan acme.sh untuk mengeluarkan "
"sertifikat. Mode webroot akan menggunakan server web yang ada untuk "
"mengeluarkan sertifikat. Mode DNS akan memungkinkan Anda untuk menggunakan "
"API DNS dari penyedia DNS Anda untuk mengeluarkan sertifikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
"Alias tantangan untuk digunakan untuk SEMUA domain. Lihat https://github.com/"
"acmesh-official/acme.sh/wiki/DNS-alias-mode untuk detail proses ini. LUCI "
"hanya mendukung satu alias tantangan per sertifikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
"Kredensial untuk mode DNS API yang dipilih di atas. Lihat https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi untuk format kredensial yang diperlukan "
"oleh setiap API. Tambahkan beberapa entri di sini dalam format variabel "
"shell KEY=VAL untuk memasok beberapa variabel kredensial."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
"Alias domain yang akan digunakan untuk SEMUA domain. Lihat https://github."
"com/acmesh-official/acme.sh/wiki/DNS-alias-mode untuk detail proses ini. "
"LUCI hanya mendukung satu domain tantangan per sertifikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
"Ini mengonfigurasi instalasi sertifikat otomatis ACME (Letsencrypt). Cukup "
"isi ini agar router dikonfigurasi dengan sertifikat yang dikeluarkan "
"Letsencrypt untuk antarmuka web. Perhatikan bahwa nama domain dalam "
"sertifikat harus sudah dikonfigurasi untuk menunjuk ke alamat IP publik "
"router. Setelah dikonfigurasi, penerbitan sertifikat dapat memakan waktu "
"cukup lama. Periksa log untuk kemajuan dan kesalahan apa pun."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr "Ini biasanya BUKAN alamat email"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
"Untuk menggunakan mode DNS untuk menerbitkan sertifikat, setel ini ke nama "
"API DNS yang didukung oleh acme.sh. Lihat https://github.com/acmesh-official/"
"acme.sh/wiki/dnsapi untuk daftar API yang tersedia. Dalam mode DNS, nama "
"domain tidak harus diselesaikan ke IP router. Mode DNS juga merupakan satu-"
"satunya mode yang mendukung sertifikat wildcard. Menggunakan mode ini "
"memerlukan paket acme-dnsapi untuk diinstal."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Gunakan CA khusus sebagai ganti Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr "Metode validasi"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Validasi Tantangan"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "Direktori webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""
"Direktori root server web. Setel ini ke root dokumen server web untuk "
"menjalankan Acme dalam mode webroot. Server web harus dapat diakses dari "
"internet pada port 80."

View file

@ -0,0 +1,344 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-10-16 16:56+0000\n"
"Last-Translator: Frankie McEyes <mceyes@protonmail.com>\n"
"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/it/>\n"
"Language: it\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.1\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "Certificati ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "Configurazione globale ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "URL server ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "E-mail dell'account"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Impostazioni avanzate"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
"Codice Base64 della chiave privata. Usalo in alternativa a "
"YC_SA_Key_File_Path"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "I certificati sono salvati in"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Configurazione certificato"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr "Certificati"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "Alias challenge"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "CA ACME personalizzato"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "URL personalizzata cartella server ACME."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "API DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "Credenziali API DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Validazione challenge"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "giorni al rinnovo"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr "Predefinito"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "Alias di dominio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Nomi di dominio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"Nomi di dominio da includere nel certificato. Il primo nome sarà il nome del "
"soggetto, i successivi saranno nomi alternativi. Nota che tutti i nomi di "
"dominio devono puntare al router nel DNS globale."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
"Es. <code>_acme-challenge.example.com:12345:98765 alias.example."
"com:11111</code>"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC 256 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC 384 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "Indirizzo e-mail da associare alla chiave dell'account."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "Attiva i log di debug"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Attivato"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Impostazioni generali"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"Ottieni il certificato dal server di prova Letsencrypt (da usare a scopo di "
"test; il certificato non sarà valido)."
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "Concedi l'accesso UCI a luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
"Se un certificato non viene rinnovato in tempo, riceverai una notifica 20 "
"giorni prima della scadenza."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr "Emesso il"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "Dimensione chiave (e tipo) per il certificato generato."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Dimensione chiave"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr "Dominio Principale"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
"OCID (Oracle Cloud Identifier) della tenancy che contiene la zona DNS di "
"destinazione"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
"OCID dell'utente con il permesso di aggiungere/rimuovere i record dalle zone"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
"Apri <a href=\"https://www.duckdns.org/\">DuckDNS</a> e copia un token qui"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr "Percorso della chiave API privata in formato PEM"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr "Chiave Privata"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr "Certificato Pubblico"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA 2048 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA 3072 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA 4096 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr "Vedi le istruzioni"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr "Dovrebbe puntare alla regione in cui è ospitato"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "Autonoma"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"La modalità autonoma userà il server Web integrato di acme.sh per emettere "
"un certificato. La modalità Webroot userà un server Web esistente per "
"emettere un certificato. La modalità DNS ti consentirà di usare l'API DNS "
"del tuo provider DNS per emettere un certificato."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
"L'alias challenge da usare per TUTTI i domini. Per i dettagli di questo "
"processo vedi https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-"
"mode . LUCI supporta solo un alias challenge per certificato."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
"Le credenziali per la modalità API DNS selezionata sopra. Per il formato "
"delle credenziali richieste da ciascuna API vedi https://github.com/acmesh-"
"official/acme.sh/wiki/dnsapi . Aggiungi più voci qui nel formato variabile "
"shell CHIAVE=VALORE per fornire variabili credenziali multiple."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
"L'alias di dominio da usare per TUTTI i domini. Per i dettagli di questo "
"processo vedi https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-"
"mode . LUCI supporta solo un dominio challenge per certificato."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr "Chiave di autenticazione API privata in formato PEM"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
"Questo configura l'installazione automatica del certificato ACME "
"(Letsencrypt). È sufficiente compilarlo per configurare il router con i "
"certificati per l'interfaccia web emessi da Letsencrypt. Tieni presente che "
"i nomi di dominio nel certificato devono essere già configurati per puntare "
"all'indirizzo IP pubblico del router. Una volta configurato, l'emissione dei "
"certificati può richiedere del tempo. Controlla i registri eventi per "
"verificare lo stato di avanzamento e gli eventuali errori."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr "Solitamente NON è un indirizzo email"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
"Per usare la modalità DNS per emettere certificati, impostalo sul nome di "
"un'API DNS supportata da acme.sh. Per l'elenco delle API disponibili vedi "
"https://github.com/acmesh-official/acme.sh/wiki/dnsapi . In modalità DNS, il "
"nome di dominio non deve essere risolto nell'IP del router. La modalità DNS "
"è anche l'unica modalità che supporta i certificati con caratteri jolly. "
"L'uso di questa modalità richiede l'installazione del pacchetto acme-dnsapi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Usa una CA personalizzata invece di Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr "Usa server di prova"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr "Metodo validazione"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr "Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Validazione challenge"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "Cartella webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""
"Cartella principale del server web. Impostala sulla root del documento del "
"server web per eseguire Acme in modalità webroot. Il server web deve essere "
"accessibile da internet sulla porta 80."

View file

@ -0,0 +1,306 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-06-24 06:32+0000\n"
"Last-Translator: Satoru Yoshida <ramat@ram.ne.jp>\n"
"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/ja/>\n"
"Language: ja\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.7.1-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "ACME証明書"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "ACMEグローバル設定"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "ACMEサーバーのURL"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "アカウントのメールアドレス"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "詳細設定"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "証明書設定"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "カスタムACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "カスタムACMEサーバーディレクトリのURL。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "DNS API資格情報"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "更新までの日数"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "ドメインエイリアス"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "ドメイン名"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"証明書に含めるドメイン名です。最初の名前はサブジェクト名、その次は代替名で"
"す。すべてのドメイン名はグローバルDNSのルーターを指す必要があります。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC256ビット"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC384ビット"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "アカウントに関連付けるメールアドレスです。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "デバッグロギングを有効化"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "有効"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "一般設定"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"Letsencryptのステージングサーバーから証明書を取得します(テスト用、証明書は有"
"効になりません)。"
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "luci-app-acmeにUCIアクセスを許可"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "生成された証明書の鍵の大きさ(およびタイプ)。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "鍵の大きさ"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA2048ビット"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA3072ビット"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA4096ビット"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "スタンドアロン"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"スタンドアロンモードでは、acme.shの組み込みWebサーバーを使用して証明書を発行"
"します。 Webrootモードでは、既存のWebサーバーを使用して証明書を発行します。 "
"DNSモードでは、DNSプロバイダーのDNSAPIを使用して証明書を発行できます。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Let'sEncryptの代わりにカスタムCAを使用する。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr "ステージングサーバーを使用"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "Webrootディレクトリ"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""

View file

@ -0,0 +1,330 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2022-12-27 13:49+0000\n"
"Last-Translator: somni <me@somni.one>\n"
"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/ko/>\n"
"Language: ko\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.15.1-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "ACME 인증서"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "ACME 전역 구성"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "ACME 서버 URL"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "계정 이메일"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "고급 설정"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "인증서와 기타 상태 파일이 저장되는 경로입니다."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "인증서 구성"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "챌린지 별칭"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "사용자 지정 ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "사용자 지정 ACME 서버 디렉터리 URL."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "DNS API 자격 증명"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS 챌린지 확인"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "갱신일"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "도메인 별칭"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "도메인 네임"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"인증서에 포함하는 도메인 네임입니다. 첫 번째 도메인이 주 도메인이 되고, 후속 "
"도메인이 부 도메인이 됩니다. 주의할 점은 모든 도메인 네임들이 반드시 글로벌 "
"DNS의 라우터를 가리키도록 하셔야 합니다."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC 256비트"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC 384비트"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "계정 키에 연결할 이메일 주소입니다."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "디버그 로깅 사용"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "활성화"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "기본 설정"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"Let's Encrypt 테스트 서버에서 인증서를 가져옵니다 (테스트 용이며, 발급된 인증"
"서는 유효하지 않음)."
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "luci-app-acme에 UCI 액세스 허용"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "생성된 인증서의 키 크기(및 유형)."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "키 크기"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA 2048비트"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA 3072비트"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA 4096비트"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "독립형"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"인증서를 발행하기 위해 독립형 모드에서는 내부에 설치된 acme.sh의 웹서버를 사"
"용하게 됩니다. 웹루트(Webroot) 모드에서는 인증서 발행에 기존의 웹서버를 사용"
"합니다. DNS 모드는 인증서 발행에 DNS 를 제공하는 업체의 DNS API를 사용하게 됩"
"니다."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
"\"모든\" 도메인에 사용될 챌린지 별칭입니다. https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode 에서 자세한 내용을 확인하세요. LuCI에서"
"는 개별 인증서마다 하나의 챌린지 별칭만 지원합니다."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
"위에서 선택한 DNS API 모드에서 사용될 자격 증명입니다. 각 API마다 필요한 자"
"격 증명의 포맷은 https://github.com/acmesh-official/acme.sh/wiki/dnsapi 에서 "
"참고해주세요. KEY=VAL 쉘 변수 포맷에 따라 여러 개의 자격 증명을 추가할 수 있"
"습니다."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
"\"모든\" 도메인에 사용될 도메인 별칭입니다. https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode 에서 자세한 내용을 확인하세요. LuCI에서"
"는 개별 인증서마다 하나의 챌린지 도메인만 지원합니다."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
"라우터 웹 인터페이스에서 Let's Encrypt SSL 인증서를 사용하기 위해 여기에서 "
"ACME (Let's Encrypt) 인증서 자동 설치를 구성할 수 있습니다. 인증서의 도메인 "
"네임은 라우터의 공인 IP 주소를 가리키도록 이미 설정되어 있어야 합니다. 처음 "
"구성하는 경우, 인증서 발급에 시간이 걸릴 수 있습니다. 진행 상황 및 오류는 로"
"그에서 확인할 수 있습니다."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
"acme.sh에서 지원하는 DNS API의 명칭을 입력하세요. 사용 가능한 API 목록은 "
"https://github.com/acmesh-official/acme.sh/wiki/dnsapi 에서 참고하실 수 있습"
"니다. DNS 모드에서는 도메인 네임이 라우터의 IP를 가리키지 않아도 되며, 와일드"
"카드 인증서를 지원합니다. DNS 모드를 사용하기 위해선 acme-dnsapi 패키지가 설"
"치되어 있어야 합니다."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Let's Encrypt 대신 사용자 지정 CA를 사용합니다."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr "테스트 서버 사용"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr "유효성 검증 방법"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot 챌린지 확인"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "Webroot 디렉터리"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""
"ACME를 웹루트(Webroot) 모드로 실행하기 위해선 웹 서버 문서 루트 디렉터리를 설"
"정하세요. 웹 서버는 80번 포트에서 인터넷 접근이 가능해야 합니다."

View file

@ -0,0 +1,307 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2024-01-18 05:15+0000\n"
"Last-Translator: Džiugas J <dziugas1959@hotmail.com>\n"
"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/lt/>\n"
"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > "
"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? "
"1 : 2);\n"
"X-Generator: Weblate 5.4-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "„ACME“ sertifikatai"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "Visuotinė „ACME“ konfigūracija"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "„ACME“ serverio „URL Saitas“"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "Paskyros el. paštas"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Pažangūs nustatymai"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Sertifikato konfigūracija"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr "Sertifikatai"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "Pasirinktinis „ACME CA“"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "Pasirinktinis „ACME“ serverio katalogo „URL Saitas“."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "„DNS“"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "„DNS API“"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr "Numatyta/-as"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Domenų-Sričių pavadinimai"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
"Pvz: „<code>_acme-challenge.example.com:12345:98765 alias.example."
"com:11111</code>“"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "„ECC 256“ bitai"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "„ECC 384“ bitai"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "Įjungti/Įgalinti derinimo/trukdžių šalinimo žurnalinimą"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Įjungta/-as"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Bendri nustatymai"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "Suteikti „UCI“ prieigą „luci-app-acme“"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr "Įteiktas"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "Rakto dydis (ir tipas) sugeneruotam sertifikatui."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Rakto tipas"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr "Pagrindinis domenas-sritis"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
"Atidaryti „<a href=\"https://www.duckdns.org/\">DuckDNS</a>“ ir kopijuokite "
"žetoną čia"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr "Privatus raktas"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr "Viešasis sertifikatas"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "„RSA 2048“ bitai"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "„RSA 3072“ bitai"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "„RSA 4096“ bitai"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr "Privatus „API“ pasirašymo raktas „PEM“ formatu"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Naudoti pasirinktinį „CA“ vietoj „Let's Encrypt“."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "„Webroot“ katalogas"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""

View file

@ -0,0 +1,299 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2020-10-15 00:31+0000\n"
"Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n"
"Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/mr/>\n"
"Language: mr\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.3-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "ACME प्रमाणपत्रे"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "ACME ग्लोबल कॉन्फिगरेशन"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "खाते ईमेल"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "प्रमाणपत्र कॉन्फिगरेशन"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "आव्हान उपनाम"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "डीएनएस एपीआय"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "खाते किल्लीशी संलग्न करण्यासाठी ईमेल पत्ता."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "डीबग लॉगिंग सक्षम करा"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "सक्षम केले"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""

View file

@ -0,0 +1,299 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-01-22 09:21+0000\n"
"Last-Translator: Abdul Muizz Bin Abdul Jalil <abmuizz@gmail.com>\n"
"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/ms/>\n"
"Language: ms\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.4-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "E-mel akaun"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Tetapan Lanjutan"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Dibolehkan"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""

View file

@ -0,0 +1,299 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-01-03 18:37+0000\n"
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/nb_NO/>\n"
"Language: nb_NO\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.4-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "ACME-sertifikater"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "ACME global konfigurasjon"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "URL til ACME-serveren"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "Konto epost"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Avanserte innstillinger"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr "Base64 inhold av privatnøkkel. Bruk istedenfor YC_SA_Key_File_Path"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Sert-filer er lagret i"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Sertifikatkonfigurasjon"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Domenenavn"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Påskrudd"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Generelle innstillinger"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Nøkkelstørrelse"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""

View file

@ -0,0 +1,298 @@
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""

View file

@ -0,0 +1,345 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-11-07 22:37+0000\n"
"Last-Translator: Matthaiks <kitynska@gmail.com>\n"
"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/pl/>\n"
"Language: pl\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 5.2-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "Certyfikaty ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "Konfiguracja globalna ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "Adres URL serwera ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "Konto e-mail"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Ustawienia zaawansowane"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
"Zawartość klucza prywatnego w formacie Base64. Użyj zamiast "
"YC_SA_Key_File_Path"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Pliki certyfikatów są przechowywane w"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Konfiguracja certyfikatu"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr "Certyfikaty"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "Alias wyzwania"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "Niestandardowy CA ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "Niestandardowy adres URL katalogu serwera ACME."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "API DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "Poświadczenia interfejsu API DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "Walidacja wyzwania DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "Dni do czasu odnowienia"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr "Domyślne"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "Alias domeny"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Nazwy domen"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"Nazwy domen, które mają być zawarte w certyfikacie. Pierwszy nazwa to nazwa "
"podmiotu, kolejne nazwy są nazwami alternatywnymi. Pamiętaj, że wszystkie "
"nazwy domen w globalnym DNS muszą wskazywać na router."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
"Np. <code>_acme-challenge.example.com:12345:98765 alias.example."
"com:11111</code>"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC 256 bitów"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC 384 bity"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "Adres e-mail do powiązania z kluczem konta."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "Włącz rejestrowanie debugowania"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Włączone"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Ustawienia główne"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"Uzyskaj certyfikat z serwera pomostowego Let's Encrypt (użyj go do "
"testowania; certyfikat nie będzie ważny)."
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "Przyznaj luci-app-acme dostęp do UCI"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
"Jeśli certyfikat nie został odnowiony na czas, otrzymasz powiadomienie na 20 "
"dni przed wygaśnięciem."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr "Wystawiono dnia"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "Rozmiar klucza (i typ) dla wygenerowanego certyfikatu."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Rozmiar klucza"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr "Domena główna"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr "OCID dzierżawcy, który zawiera docelową strefę DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
"OCID użytkownika z uprawnieniami do dodawania/usuwania rekordów ze stref"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
"Otwórz <a href=\"https://www.duckdns.org/\">DuckDNS</a> i skopiuj tutaj token"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
"Ścieżka do pliku prywatnego klucza podpisywania interfejsu API w formacie PEM"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr "Klucz prywatny"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr "Certyfikat publiczny"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA 2048 bitów"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA 3072 bity"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA 4096 bitów"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr "Zobacz instrukcje"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr "Powinien wskazywać region macierzysty dzierżawy"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "Autonomiczny"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"W trybie autonomicznym do wystawienia certyfikatu zostanie użyty wbudowany "
"serwer WWW acme.sh. Tryb Webroot wykorzysta istniejący serwer WWW do "
"wystawienia certyfikatu. Tryb DNS pozwala na użycie API DNS dostawcy DNS do "
"wystawienia certyfikatu."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
"Alias wyzwania do użycia dla WSZYSTKICH domen. Zobacz https://github.com/"
"acmesh-official/acme.sh/wiki/DNS-alias-mode, aby uzyskać szczegółowe "
"informacje na temat tego procesu. LuCI obsługuje tylko jeden alias wyzwania "
"na certyfikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
"Poświadczenia dla wybranego powyżej trybu API DNS. Zobacz https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi, aby uzyskać informacje na temat formatu "
"poświadczeń wymaganych przez każdy interfejs API. Dodaj tutaj wiele wpisów w "
"formacie zmiennej powłoki KEY=VAL, aby podać wiele zmiennych referencji."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
"Alias domeny używany dla WSZYSTKICH domen. Zobacz https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode, aby uzyskać szczegółowe informacje na "
"temat tego procesu. LUCI obsługuje tylko jedną domenę wyzwania na certyfikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr "Prywatny klucz podpisywania interfejsu API w formacie PEM"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
"To konfiguruje automatyczną instalację certyfikatu ACME (Let's Encrypt). "
"Wystarczy wypełnić to, aby router skonfigurował certyfikaty wydane przez "
"Let's Encrypt dla interfejsu internetowego. Pamiętaj, że nazwy domen w "
"certyfikacie muszą być już skonfigurowane tak, aby wskazywały na publiczny "
"adres IP routera. Po skonfigurowaniu wydawanie certyfikatów może chwilę "
"potrwać. Sprawdź dzienniki pod kątem postępu i ewentualnych błędów."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr "Zwykle NIE jest to adres e-mail"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
"Aby używać trybu DNS do wydawania certyfikatów, ustaw na nazwę interfejsu "
"API DNS obsługiwanego przez acme.sh. Zobacz https://github.com/acmesh-"
"official/acme.sh/wiki/dnsapi, aby uzyskać listę dostępnych interfejsów API. "
"W trybie DNS nazwa domeny nie musi być tłumaczona na adres IP routera. Tryb "
"DNS jest także jedynym trybem obsługującym certyfikaty wieloznaczne. "
"Korzystanie z tego trybu wymaga zainstalowania pakietu acme-dnsapi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Użyj niestandardowego CA zamiast Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr "Użyj serwera pomostowego"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr "Metoda walidacji"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr "Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Walidacja wyzwania Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "Katalog Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""
"Katalog główny serwera WWW. Ustaw to na katalog główny serwera WWW, aby "
"uruchomić ACME w trybie Webroot. Serwer WWW musi być dostępny z Internetu na "
"porcie 80."

View file

@ -0,0 +1,347 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-08-29 17:33+0000\n"
"Last-Translator: Version8504 <mc_4991_safeweb_589n98+hostedweblateorg@outlook"
".com>\n"
"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/pt/>\n"
"Language: pt\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.0.1-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "Certificados ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "Configuração global de ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "URL do servidor ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "Conta de e-mail"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Configurações avançadas"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
"Conteúdo base64 da chave privada. Utilizar em vez de YC_SA_Key_File_Path"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Os ficheiros Cert são armazenados em"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Configuração do certificado"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr "Certificados"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "Aliás do Desafio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "AC de ACME personalizada"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "URL personalizada do diretório do servidor ACME."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "API do DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "Credenciais do API do DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Validação do desafio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "Dias até à renovação"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr "Predefinição"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "Aliás do Domínio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Nomes de domínio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"Os nomes de domínio a incluir no certificado. O primeiro nome será o nome do "
"assunto, os nomes subsequentes serão nomes alternativos. Note que todos os "
"nomes de domínio devem apontar para o roteador no DNS global."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
"Por exemplo: <code>_acme-challenge.example.com:12345:98765 alias.example."
"com:11111</code>"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC 256 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC 384 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "O endereço de email para associar à chave da conta."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "Ativar o registo de depuração"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Ativado"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Configurações gerais"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"Obtenha um certificado do servidor de estágio Letsencrypt (utilização para "
"testes; o certificado não será válido)."
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "Conceder acesso UCI ao luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
"Se um certificado não tiver sido renovado a tempo, receberá um aviso 20 dias "
"antes do seu termo."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr "Emitido em"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "Tamanho (e tipo) da chave para o certificado gerado."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Tamanho da chave"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr "Domínio principal"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr "OCID do locatário que contém a zona DNS de destino"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
"OCID do utilizador com permissão para adicionar/remover registos de zonas"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
"Aberto <a href=\"https://www.duckdns.org/\">DuckDNS</a> e copiar um token "
"aqui"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
"Caminho para o ficheiro da chave de assinatura da API privada em formato PEM"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr "Chave privada"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr "Certificado público"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA 2048 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA 3072 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA 4096 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr "Ver instruções"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr "Deve apontar para a região de origem do arrendamento"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "Autónomo"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"O modo autónomo usará o servidor web integrado de acme.sh para emitir um "
"certificado. O modo Webroot usará um servidor web existente para emitir um "
"certificado. O modo DNS permitirá que use a API DNS do seu provedor de DNS "
"para emitir um certificado."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
"O aliás do desafio usado em TODOS os domínios. Veja em https://github.com/"
"acmesh-official/acme.sh/wiki/DNS-alias-mode para obter mais detalhes sobre "
"este processo. O LUCI é compatível apenas com um desafio aliás por "
"certificado."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
"As credenciais para o modo da API de DNS selecionado acima. Consulte https://"
"github.com/acmesh-official/acme.sh/wiki/dnsapi para obter o formato das "
"credenciais exigidas por cada API. Adicione várias entradas aqui no formato "
"como variável da shell KEY=VAL suprindo múltiplas variáveis para as "
"credenciais."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
"O aliás do domínio usado em TODOS os domínios. Veja em https://github.com/"
"acmesh-official/acme.sh/wiki/DNS-alias-mode para obter mais detalhes sobre "
"este processo. O LUCI é compatível apenas com um desafio aliás por "
"certificado."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr "A chave de assinatura privada da API no formato PEM"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
"Isso configura a instalação automática do certificado ACME (Letsencrypt). "
"Preencha isso para que a interface web do roteador seja configurado com os "
"certificados emitidos pelo Letsencrypt. Observe que os nomes de domínio no "
"certificado já devem estar configurados para apontar para o endereço IP "
"público do roteador. Uma vez configurados, a emissão dos certificados pode "
"demorar um pouco. Verifique os registos log para ver o progresso e quaisquer "
"erros."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr "Normalmente, NÃO se trata de um endereço de correio eletrónico"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
"Para usar o modo DNS para emitir certificados, defina isto oo nome de uma "
"API de DNS suportada pelo acme.sh. Veja em https://github.com/acmesh-"
"official/acme.sh/wiki/dnsapi para obter a lista de APIs disponíveis. No modo "
"DNS, o nome do domínio não tem de ser resolvido para o IP do router. O modo "
"DNS é também o único modo que suporta certificados curinga. A utilização "
"deste modo requer a instalação do pacote acme-dnsapi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Use uma AC personalizada em vez de Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr "Use o servidor de estágio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr "Método de validação"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr "Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Validação do desafio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "Diretório webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""
"Diretório raiz do Webserver. Defina isto para o documento raiz do webserver "
"para executar o Acme em modo webroot. O servidor web deve estar acessível da "
"Internet na porta 80."

View file

@ -0,0 +1,344 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-08-08 18:51+0000\n"
"Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n"
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
"openwrt/luciapplicationsacme/pt_BR/>\n"
"Language: pt_BR\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 5.0-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "Certificados ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "Configuração global ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "URL do Servidor ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "E-mail da conta"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Configurações avançadas"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr "Conteúdo Base64 da chave privada. Use em vez do YC_SA_Key_File_Path"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Onde os certificados são armazenados"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Configuração do certificado"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr "Certificados"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "Aliás do Desafio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "CA ACME Customizado"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "URL do Servidor ACME Customizado."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "API do DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "Credenciais do API DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Validação do Desafio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "Dias até a renovação"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr "Padrão"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "Aliás do Domínio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Nomes de domínio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"Os nomes de domínio para incluir no certificado. O primeiro nome será o nome "
"do assunto, os nomes subsequentes serão nomes alternativos. Observe que "
"todos os nomes de domínio devem apontar para o roteador no DNS global."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
"Ex. <code>_acme-challenge.example.com:12345:98765 alias.example."
"com:111</code>"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC 256 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC 384 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "O endereço de email para associar à chave da conta."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "Ativar o registro de depuração"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Ativado"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Configurações gerais"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"Obtenha o certificado do servidor de estágio Letsencrypt (use para testes; o "
"certificado não será válido)."
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "Conceda acesso UCI para o luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
"Se um certificado não foi renovado a tempo, antes de expirar, você receberá "
"um aviso em 20 dias."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr "Emitido em"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "Tamanho (e tipo) da chave para o certificado gerado."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Tamanho da chave"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr "Domínio principal"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr "O OCID do locatário que contém a zona de DNS de destino"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
"OCID do usuário com permissão para adicionar ou remover os registros das "
"zonas"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
"Abra o <a href=\"https://www.duckdns.org/\">DuckDNS</a> e copie um token aqui"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr "Caminho para API privada assinando o arquivo chave em formato PEM"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr "Chave privada"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr "Certificado público"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA 2048 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA 3072 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA 4096 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr "Consulte as instruções"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr "Deve apontar para a região do domicílio do locatário"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "Independente"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"O modo Independente usará o servidor web integrado do acme.sh para solicitar "
"um certificado. O modo Webroot usará um servidor web existente para "
"solicitar um certificado. O modo DNS permitirá vocÊ a usar a API de DNS do "
"seu provedor DNS para solicitar um certificado."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
"O aliás do desafio usado em TODOS os domínios. Consulte https://github.com/"
"acmesh-official/acme.sh/wiki/DNS-alias-mode para obter mais detalhes sobre "
"este processo. O LUCI é compatível apenas com um desafio aliás por "
"certificado."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
"As credenciais para o modo da API DNS selecionado acima. Consulte https://"
"github.com/acmesh-official/acme.sh/wiki/dnsapi para obter o formato das "
"credenciais exigidas por cada API. Adicione várias entradas aqui no formato "
"como variável da shell KEY=VAL suprindo múltiplas variáveis para as "
"credenciais."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
"O aliás do desafio usado em TODOS os domínios. Consulte https://github.com/"
"acmesh-official/acme.sh/wiki/DNS-alias-mode para obter mais detalhes sobre "
"este processo. O LUCI é compatível apenas com um desafio aliás por "
"certificado."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr "A chave de assinatura da API privada no formato PEM"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
"Isso configura a instalação automática do certificado ACME (Letsencrypt). "
"Preencha isso para que a interface web do roteador seja configurado com os "
"certificados emitidos pelo Letsencrypt. Observe que os nomes de domínio no "
"certificado já devem estar configurados para apontar para o endereço IP "
"público do roteador. Uma vez configurados, a emissão dos certificados pode "
"demorar um pouco. Verifique os registros log para ver os progressos e "
"quaisquer outros erros."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr "Geralmente isso não é um endereço de e-mail"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
"Para usar o modo DNS para emitir certificados, defina-o como o nome de uma "
"API DNS compatível pelo acme.sh. Consulte https://github.com/acmesh-official/"
"acme.sh/wiki/dnsapi para obter uma lista de todas as APIs disponíveis. No "
"modo DNS, o nome do domínio não precisa ser resolvido para o IP do roteador. "
"O modo DNS também é o único modo que é compatível com certificados curinga. "
"O uso desse modo requer que o pacote acme-dnsapi esteja instalado."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Use uma CA customizada em vez do Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr "Use o servidor de encenação"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr "Método de Validação"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr "Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Validação do Desafio"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "Diretório Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""
"Diretório raiz do servidor web. Defina isso como raiz do documento do "
"servidor da web para executar o Acme em modo webroot. O servidor web deve "
"estar acessível na internet na porta 80."

View file

@ -0,0 +1,348 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-08-14 00:51+0000\n"
"Last-Translator: Simona Iacob <s@zp1.net>\n"
"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/ro/>\n"
"Language: ro\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2;\n"
"X-Generator: Weblate 5.0-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "Certificate ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "Configurare globală ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "Adresa URL a server-ului ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "Adresa de e-mail a contului"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Setări avansate"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
"Conținutul Base64 al cheii private. A se utiliza în locul lui "
"YC_SA_Key_File_Path"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Unde se păstrează certificatele și alte dosare de stat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Configurarea certificatului"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr "Certificate"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "Alias de provocare"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "Certificat ACME personalizat"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "URL-ul personalizat al directorului serverului ACME."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "credențiale DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Validarea provocării"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "Zile până la reînnoire"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr "Implicit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "Aliasul domeniului"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Numele domeniului"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"Numele domeniului ce sunt incluse în certificat. Primul nume va fi cel al "
"subiectului, următoarele nume vor fi alternative. Ține minte că toate numele "
"domeniului trebuie să ducă la router în DNS-ul global."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC 256 biți"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC 384 biți"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "Adresa de email ce va fi asociată cu cheia contului."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "Activați jurnalizarea de depanare"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "activat"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Setări generale"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"Obțineți certificatul de pe serverul de pregătire Letsencrypt (utilizați "
"pentru testare; certificatul nu va fi valabil)."
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "Acordă acces la UCI pentru luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
"Dacă un certificat nu a fost reînnoit la timp, veți primi o notificare cu 20 "
"de zile înainte de expirare."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr "Emis la"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "Dimensiunea (și tipul) cheii pentru certificatul generat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Dimensiunea cheii"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr "Domeniul principal"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr "OCID al locației care conține zona DNS țintă"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
"OCID al utilizatorului care are permisiunea de a adăuga/elimina înregistrări "
"din zone"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
"Deschideți <a href=\"https://www.duckdns.org/\">DuckDNS</a> și copiați un "
"token aici"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr "Calea către fișierul cu cheia privată de semnare API în format PEM"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr "Cheia privată"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr "Certificat public"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA 2048 biți"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA 3072 biți"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA 4096 biți"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr "Vedeți instrucțiunile"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr "Ar trebui să indice regiunea de domiciliu a chiriașilor"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "De sine stătător"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"Modul de sine stătător va folosi webserverul incorporat al acme.sh pentru a "
"emite un certificat. Modul webroot va folosi un webserver existent pentru a "
"emite un certificat. Modul DNS îți va permite să folosești API-ul DNS al "
"provider-ului DNS pentru a emite un certificat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
"Aliasul de provocare care trebuie utilizat pentru TOATE domeniile. "
"Consultați https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode "
"pentru detalii despre acest proces. LUCI acceptă doar un singur alias de "
"provocare pentru fiecare certificat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
"Datele de identificare pentru modul API DNS selectat mai sus. Consultați "
"https://github.com/acmesh-official/acme.sh/wiki/dnsapi pentru formatul "
"acreditărilor solicitate de fiecare API. Adăugați mai multe intrări aici în "
"formatul variabilei de shell KEY=VAL pentru a furniza mai multe variabile de "
"acreditare."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
"Aliasul de domeniu care trebuie utilizat pentru TOATE domeniile. Consultați "
"https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode pentru "
"detalii despre acest proces. LUCI acceptă doar un singur domeniu de "
"provocare pentru fiecare certificat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr "Cheia privată de semnare API în format PEM"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
"Aceasta configurează instalarea automată a certificatului ACME "
"(Letsencrypt). Pur și simplu completați această rubrică pentru ca routerul "
"să fie configurat cu certificate emise de Letsencrypt pentru interfața web. "
"Rețineți că numele de domeniu din certificat trebuie să fie deja configurate "
"pentru a indica adresa IP publică a routerului. Odată configurată, emiterea "
"certificatelor poate dura ceva timp. Verificați jurnalele pentru a vedea "
"progresul și eventualele erori."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr "Aceasta NU este, de obicei, o adresă de e-mail"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
"Pentru a utiliza modul DNS pentru a emite certificate, setați-l la numele "
"unui API DNS acceptat de acme.sh. Consultați https://github.com/acmesh-"
"official/acme.sh/wiki/dnsapi pentru lista API-urilor disponibile. În modul "
"DNS, numele de domeniu nu trebuie să se rezolve la IP-ul routerului. Modul "
"DNS este, de asemenea, singurul mod care acceptă certificate wildcard. "
"Utilizarea acestui mod necesită instalarea pachetului acme-dnsapi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Utilizați un CA personalizat în loc de Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr "Utilizați serverul staging"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr "Metoda de validare"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Validarea provocării"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "Directorul webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""
"Directorul rădăcină al serverului web. Setați acest lucru la rădăcina "
"documentului serverului web pentru a rula Acme în modul webroot. Serverul "
"web trebuie să fie accesibil de pe internet pe portul 80."

View file

@ -0,0 +1,344 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-01-19 12:37+0000\n"
"Last-Translator: st7105 <st7105@gmail.com>\n"
"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/ru/>\n"
"Language: ru\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 5.4-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "Сертификаты ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "Глобальная конфигурация ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "URL сервера ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "Электронная почта учётной записи"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Дополнительные настройки"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
"Base64 содержимое приватного ключа. Используйте вместо YC_SA_Key_File_Path"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Сертификаты сохраняются в папку"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Конфигурация сертификата"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr "Сертификаты"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "Псевдонимы вызова"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "Персонализированный ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "URL-адрес пользовательского каталога сервера ACME."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "Данные для доступа к DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS подтверждение"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "Дней до продления"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr "По умолчанию"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "Псевдоним домена"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Доменные имена"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"Доменные имена для включения в сертификат. Первое имя — имя субъекта "
"(subject name), следующие имена — дополнительные (alt names). Все доменные "
"имена должны указывать на маршрутизатор в глобальной DNS."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
"Например: <code>_acme-challenge.example.com:12345:98765 alias.example."
"com:11111</code>"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC 256 бит"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC 384 бита"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "E-mail адрес для привязки ключа аккаунта."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "Записывать в журнал данные для отладки"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Включено"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Основные настройки"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"Получить сертификат с тестового сервера Letsencrypt (пригоден только для "
"тестирования; сертификат не будет действительным)."
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "Предоставить UCI доступ для luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
"Если сертификат не был перевыпущен вовремя то вы получите уведомление за 20 "
"дней до истечения срока действия."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr "Выпущен"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "Размер (и тип) ключа для сгенерированного сертификата."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Размер ключа"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr "Главный домен"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr "OCID арендатора, содержащего целевую зону DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr "OCID пользователя, имеющего право добавлять/удалять записи из зон"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
"Зайдите на <a href=\"https://www.duckdns.org/\">DuckDNS</a> и скопируйте "
"токен сюда"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr "Путь к ключу приватного API в PEM формате"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr "Приватный ключ"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr "Публичный сертификат"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA 2048 бит"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA 3072 бита"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA 4096 бит"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr "Смотрите инструкции"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr "Должен указывать на домашний регион арендатора"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "Самостоятельно"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"В Самостоятельном режиме для выдачи сертификата будет использоваться "
"встроенный веб-сервер acme.sh. Подтверждение через Webroot будет "
"использовать существующий веб-сервер для выдачи сертификата. Подтверждение "
"через DNS позволит вам использовать API DNS вашего провайдера DNS для "
"выпуска сертификата."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
"Псевдоним вызова, который будет использоваться для ВСЕХ доменов. Подробности "
"этого процесса см. на сайте https://github.com/acmesh-official/acme.sh/wiki/"
"DNS-alias-mode. LUCI поддерживает только один псевдоним вызова для каждого "
"сертификата."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
"Учетные данные для выбранного выше режима DNS API. Формат учетных данных, "
"требуемых для каждого API, см. на сайте https://github.com/acmesh-official/"
"acme.sh/wiki/dnsapi. Добавьте сюда несколько записей в формате переменной "
"оболочки KEY=VAL, чтобы предоставить несколько переменных учетных данных."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
"Псевдоним домена для ВСЕХ доменов. Подробнее об этом процессе см. https://"
"github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode. LUCI поддерживает "
"только один контрольный домен для каждого сертификата."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr "Приватный ключ подписи API в PEM формате"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
"При этом настраивается автоматическая установка сертификатов ACME "
"(Letsencrypt). Просто заполните эту форму, чтобы маршрутизатор был настроен "
"с сертификатами, выданными Letsencrypt для веб-интерфейса. Обратите "
"внимание, что доменные имена в сертификате уже должны быть настроены так, "
"чтобы указывать на общедоступный IP-адрес маршрутизатора. После настройки "
"выдача сертификатов может занять некоторое время. Проверьте журналы на "
"наличие прогресса и ошибок."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr "Обычно это НЕ адрес электронной почты"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
"Чтобы использовать режим DNS для выдачи сертификатов, задайте для этого "
"параметра имя DNS API, поддерживаемого acme.sh. Список доступных API см. в "
"https://github.com/acmesh-official/acme.sh/wiki/dnsapi. В режиме DNS имя "
"домена не должно разрешаться в IP-адрес маршрутизатора. Режим DNS также "
"является единственным режимом, поддерживающий подстановочные сертификаты. "
"Для использования этого режима необходимо установить пакет acme-dnsapi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Использовать сторонний центр сертификации вместо Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr "Использовать тестовый сервер"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr "Метод проверки"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot подтверждение"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "Каталог Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""
"Укажите здесь корневой каталог веб-сервера, чтобы запустить Acme в режиме "
"webroot. Веб-сервер должен быть доступен из интернета на 80 порту."

View file

@ -0,0 +1,299 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2021-03-01 07:55+0000\n"
"Last-Translator: HelaBasa <R45XvezA@protonmail.ch>\n"
"Language-Team: Sinhala <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/si/>\n"
"Language: si\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.5\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "ව.නා.ප."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "වසම් නාම"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""

View file

@ -0,0 +1,308 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2022-09-19 10:18+0000\n"
"Last-Translator: Jose Riha <jose1711@gmail.com>\n"
"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/sk/>\n"
"Language: sk\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Weblate 4.14.1\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "ACME certifikáty"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "ACME globálna konfigurácia"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "E-mail účtu"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Konfigurácia certifikátov"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "Prihlasovacie údaje DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "Alias domény"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Domény"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"Domény v certifikáte. Prvá bude názov subjektu, ďalšie budú alternatívne "
"názvy. Všetky domény musia smerovať na router v globálnom DNS."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "E-mailová adresa k účtu."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "Povoliť detailné záznamy"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Zapnuté"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
#, fuzzy
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"Získať certifikát z Letsencrypt staging servera (len na testovanie; "
"certifikát nebude platný)."
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "Povoliť luci-app-acme prístup k UCI"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "Dĺžka (a typ) kľúča pre generovaný certifikát."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Dĺžka kľúča"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
#, fuzzy
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
"Prihlasovacie údaje pre vyššie zvolený DNS API mód. Viď https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi pre formát údajov požadovaný každým API. "
"Pre zadanie viacerých údajov tu pridaj hodnoty v tvare KĽÚČ=HODNOTA."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""

View file

@ -0,0 +1,314 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-09-20 08:01+0000\n"
"Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n"
"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/sv/>\n"
"Language: sv\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.1-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "ACME-certifikat"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "Global konfiguration för ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "URL för ACME-servern"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "E-postkonto"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Avancerade inställningar"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
"Base64-innehåll av den privata nyckeln. Använd istället för "
"YC_SA_Key_File_Path"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Där certifikat och andra tillståndsfiler sparas."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Konfiguration för certifikatet"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr "Certifikat"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "Alias för utmaningen"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "Anpassad ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "Anpassad URL för katalogen till ACME-servern."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "API för DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "Dagar till förnyelse"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr "Standard"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "Alias för domänen"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Domännamn"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"Domännamn att inkludera i certifikatet. Det första namnet blir subjektnamn. "
"Efterföljande namn blir alternativa namn. Notera att alla domännamn måste "
"peka på routern i den globala DNS:en."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
"T.ex. <code>_acme-challenge.example.com:12345:98765 alias.example."
"com:11111</code>"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC 256 bitar"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC 384 bitar"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "E-postadress att koppla till kontonyckeln."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "Aktivera logg för avlusning"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Aktiverad"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Generella inställningar"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"Hämta certifikat från Letsencrypts iscensättningsserver (använd i testsyfte; "
"certifikatet kommer inte vara giltigt)."
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "Bevilja UCI-tillgång till luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
"Om ett certifikat inte förnyades i tid så kommer du att få en avisering 20 "
"dagar före utgångstiden."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr "Utfärdades den"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "Nyckelstorlek (och typ) för det genererade certifikatet."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Nyckelstorlek"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr "Huvuddomän"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr "Genväg till den privata API'ns signeringsnyckel i PEM-format"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr "Privat nyckel"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr "Publikt certifikat"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA 2048 bitar"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA 3072 bitar"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA 4096 bitar"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr "Läs instruktionerna"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "Fristående"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"I fristående läge används den inbyggda webbservern i acme.sh till att "
"utfärda ett certifikat. Webbrotsläge använder en befintlig webbserver till "
"att utfärda ett. DNS-lägen tillåter dig att använde din DNS-tjänsts DNS API "
"för att utfärda ett certifikat."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr "Den privata API'ns signeringsnyckel i PEM-format"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr "Det här är vanligtvis INTE en e-postadress"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Använd en anpassad CA istället för Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr "Använd iscensättningsserver"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr "Valideringsmetod"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr "Webbrot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "Webbrotskatalog"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""

View file

@ -0,0 +1,290 @@
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""

View file

@ -0,0 +1,340 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-10-29 19:41+0000\n"
"Last-Translator: semih <semiht@gmail.com>\n"
"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/tr/>\n"
"Language: tr\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.2-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "ACME sertifikaları"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "ACME evrensel yapılandırma"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "ACME sunucu URL'si"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "Hesap e-postası"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Gelişmiş Ayarlar"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr "Özel anahtarın Base64 içeriği. YC_SA_Key_File_Path yerine kullanın"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Sertifikaların ve diğer dosyaların tutulduğu yer"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Sertifika yapılandırması"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr "Sertifikalar"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "Challenge Takma Adı"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "Özel ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "Özel ACME sunucu dizini URL'si."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "DNS API bilgileri"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Zorluk Doğrulaması"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "Yenilemeye kalan gün sayısı"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr "Varsayılan"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "Alan Takma Adı"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Alan adları"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"Sertifikaya eklenecek alan adları. İlk isim ana ad, sonraki isimler ise "
"alternatif adlar olacak. Domain adlarının evrensel DNS'de router'ı "
"göstermesi gerektiğini unutmayın."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
"Örneğin. <code>_acme-challenge.example.com:12345:98765 alias.example."
"com:11111</code>"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC 256 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC 384 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "Hesap anahtarına bağlanacak e-posta adresi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "Hata ayıklama günlüğünü etkinleştir"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Etkin"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Genel Ayarlar"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"Letsencrypt'in hazırlık sunucusundan sertifika al (test için kullanın; "
"sertifika geçerli olmayacaktır)."
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "luci-app-acme için UCI erişimi verin"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
"Sertifika zamanında yenilenmediyse, geçerlilik süresinin bitiminden 20 gün "
"önce bir bildirim alırsınız."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr "Yayınlandığı tarih"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "Oluşturulmuş sertifika için anahtar boyutu (ve türü)."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Anahtar boyutu"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr "Ana Etki Alanı"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr "Hedef DNS bölgesini içeren kiracılığın OCID'si"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr "Bölgelere kayıt ekleme/kaldırma iznine sahip kullanıcının OCID'si"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
"<a href=\"https://www.duckdns.org/\">DuckDNS</a>'yi açın ve buraya bir token "
"kopyalayın"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr "PEM biçiminde özel API imzalama anahtarı dosyasının yolu"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr "Özel anahtar"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr "Herkese Açık Sertifika"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA 2048 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA 3072 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA 4096 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr "Talimatlara bakın"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr "Kiracının bulunduğu bölgeyi işaret etmelidir"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "Bağımsız"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"Bağımsız mod, sertifika vermek için acme.sh'nin yerleşik web sunucusunu "
"kullanır. Webroot modu, bir sertifika vermek için mevcut bir web sunucusunu "
"kullanır. DNS modu, bir sertifika vermek için DNS sağlayıcınızın DNS "
"API'sini kullanmanıza izin verir."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
"Tüm alan adlarında kullanılacak challenge takma adı. Detaylı bilgi için "
"https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode adresine göz "
"atın. LUCI sertifika başına sadece bir tane challenge takma adını destekler."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
"Yukarda seçilen DNS API modu için bilgiler. Her API için gereken kimlik "
"bilgileri formatı için https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi adresine bakın. Birden çok kimlik bilgisi değişkeni sağlamak için "
"buraya birden çok KEY = VAL olarak shell değişkeni ekleyin."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
"TÜM alanlar için kullanılacak olan alan takma adı. Bu işlemin ayrıntıları "
"için https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode adresine "
"göz atın. LUCI, sertifika başına yalnızca bir challenge alanını destekler."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr "PEM biçimindeki özel API imzalama anahtarı"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
"Bu, ACME (Letsencrypt) otomatik sertifika kurulumunu yapılandırır. "
"Yönlendiricinin web arayüzünün Letsencrypt tarafından verilen sertifikalarla "
"yapılandırılması için bunu doldurmanız yeterlidir. Sertifikadaki etki alanı "
"adlarının, yönlendiricinin genel IP adresini gösterecek şekilde önceden "
"yapılandırılmış olması gerektiğini unutmayın. Yapılandırıldıktan sonra "
"sertifikaların verilmesi biraz zaman alabilir. İlerleme ve herhangi bir hata "
"için günlük kayıtlarına bakın."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr "Bu genellikle bir e-posta adresi DEĞİLDİR"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
"Sertifikaları vermek üzere DNS modunu kullanmak için, bunu acme.sh "
"tarafından desteklenen bir DNS API'sinin adına ayarlayın. Kullanılabilir "
"API'lerin listesi için https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi adresine bakın. DNS modunda, etki alanı adı yönlendirici IP'sini "
"çözümlemesi gerekmez. DNS modu, joker karakter sertifikalarını destekleyen "
"tek moddur. Bu modu kullanmak, acme-dnsapi paketinin yüklenmesini gerektirir."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Let's Encrypt yerine özel bir CA kullanın."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr "Aşama sunucusu kullan"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr "Doğrulama yöntemi"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Zorluk Doğrulaması"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "Webroot dizini"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""
"Web sunucusu kök dizini. Acme'yi webroot modunda çalıştırmak için bunu web "
"sunucusu belge köküne ayarlayın. Web sunucusuna 80 numaralı bağlantı "
"noktasından internetten erişilebilmelidir."

View file

@ -0,0 +1,339 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-02-25 06:41+0000\n"
"Last-Translator: Костянтин Серьогін <seryoginki@gmail.com>\n"
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/uk/>\n"
"Language: uk\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 5.5-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "Сертифікати ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "Глобальні налаштування ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "URL-адреса сервера ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "Електронна адреса пошти облікового запису"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Розширені налаштування"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "Сертифікати зберігаються у каталог"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Параметри сертифіката"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr "Сертифікати"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "Псевдоніми виклику"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "Користувацький ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "URL-адреса каталогу користувацького сервера ACME."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "Облікові дані DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Перевірка викликів"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "Днів до поновлення"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr "За замовчуванням"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "Псевдонім домену"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Імена домену"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"Доменні імена для включення в сертифікат. Перше ім'я буде ім'ям суб'єкта "
"(subject name), наступні імена будуть альтернативними (alt names). "
"Запримітьте, що всі доменні імена повинні вказувати на маршрутизатор у "
"глобальному DNS."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC 256 біт"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC 384 біт"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr ""
"Адреса електронної пошти, яку потрібно зв’язати з ключем облікового запису."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "Увімкнути системний журнал"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Увімкнено"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Загальні налаштування"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"Отримати сертифікат з проміжного сервера Letsencrypt (використовується для "
"тестування; сертифікат не буде дійсним)."
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "Надати UCI доступ для luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
"Якщо сертифікат не було оновлено вчасно, ви отримаєте сповіщення за 20 днів "
"до закінчення терміну дії."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr "Видано на"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "Розмір (і тип) ключа для згенерованого сертифіката."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Тип ключа"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr "Основний домен"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA 2048 біт"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA 3072 біт"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA 4096 біт"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "Автономний"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"Автономний режим використовуватиме вбудований веб-сервер acme.sh для видачі "
"сертифіката. У режимі webroot використовуватиметься існуючий веб-сервер для "
"видачі сертифіката. Режим DNS дозволить вам використовувати API DNS вашого "
"постачальника DNS для видачі сертифіката."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
"Псевдонім виклику для ВСІХ доменів. Дивіться https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode, щоб дізнатися більше про цей процес. "
"LUCI підтримує лише один псевдонім виклику на сертифікат."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
"Облікові дані для режиму DNS API, вибраного вище. Див. https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi для формату облікових даних, необхідних "
"для кожного API. Додайте тут кілька записів у форматі змінної оболонки "
"KEY=VAL, щоб надати декілька змінних облікових даних."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
"Псевдонім домену для ВСІХ доменів. Дивіться https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode, щоб дізнатися більше про цей процес. "
"LUCI підтримує лише один псевдонім виклику на сертифікат."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
"Це налаштовує автоматичне встановлення сертифіката ACME (Letsencrypt). "
"Просто заповніть цю форму, щоб налаштувати маршрутизатор із сертифікатами, "
"виданими Letsencrypt, для веб-інтерфейсу. Зауважте, що доменні імена в "
"сертифікаті вже мають бути налаштовані так, щоб вони вказували на публічну "
"IP-адресу маршрутизатора. Після налаштування видача сертифікатів може "
"зайняти деякий час. Перевірте журнали на наявність прогресу та будь-яких "
"помилок."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
"Щоб використовувати режим DNS для видачі сертифікатів, встановіть ім’я DNS "
"API, який підтримує acme.sh. Перегляньте https://github.com/acmesh-official/"
"acme.sh/wiki/dnsapi для отримання списку доступних API. У режимі DNS доменне "
"ім’я не повинно дозволятися в IP-адресу маршрутизатора. Режим DNS також є "
"єдиним режимом, який підтримує підстановочні сертифікати. Для використання "
"цього режиму потрібно встановити пакет acme-dnsapi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Використовувати інший ЦС замість Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr "Використовувати проміжний сервер"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr "Метод перевірки"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Перевірка викликів"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "Тека Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""
"Коренева тека веб-сервера. Встановіть для цього параметра кореневу теку "
"документа веб-сервера, щоб запустити Acme в режимі webroot. Веб-сервер "
"повинен бути доступний з Інтернету через порт 80."

View file

@ -0,0 +1,334 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2024-01-26 16:51+0000\n"
"Last-Translator: Hứa Đức Quân <huaducquan14@gmail.com>\n"
"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsacme/vi/>\n"
"Language: vi\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.4-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "Chứng chỉ ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "Cấu hình ACME toàn cầu"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "Đường dẫn máy chủ ACME"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "Tài khoản email"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "Cài đặt Nâng cao"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "Cấu hình chứng chỉ"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "Bí danh"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "Tùy chỉnh ACME CA"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "Tùy chỉnh đường dẫn máy chủ ACME."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "Thông tin đăng nhập DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS Thẩm định"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "Cho đến ngày được làm mới"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "Tên miền bí danh"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "Tên miền"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"Tên miền để bao gồm trong chứng chỉ. Tên đầu tiên sẽ là tên chủ đề, các tên "
"tiếp theo sẽ là tên thay thế. Lưu ý rằng tất cả các tên miền phải trỏ đến bộ "
"định tuyến trong DNS."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC 256 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC 384 bit"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "Tài khoản email phải được kết hợp với chìa khóa của tài khoản."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "Kích hoạt nhật ký bug"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "Kích Hoạt"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "Các cài đặt chung"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr ""
"Nhận chứng chỉ từ máy chủ tổ chức Letsencrypt (dùng để thử nghiệm; chứng chỉ "
"sẽ không hợp lệ)."
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "Cấp quyền truy cập cho luci-app-acme"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "Kích thước khóa cho chứng chỉ được tạo."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "Kích thước khóa"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA kích thước 2048 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA kích thước 3072 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA kích thước 4096 bits"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "Biệt lập"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"Chế độ độc lập sẽ sử dụng máy chủ web tích hợp của acme.sh để cấp chứng chỉ. "
"Chế độ Webroot sẽ sử dụng máy chủ web hiện có để cấp chứng chỉ. Chế độ DNS "
"sẽ cho phép bạn sử dụng API DNS của nhà cung cấp DNS của bạn để cấp chứng "
"chỉ."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
"Bí danh thử thách để sử dụng cho TẤT CẢ các miền. Xem https://github.com/"
"acmesh-official/acme.sh/wiki/DNS-alias-mode để biết chi tiết về quy trình "
"này. LUCI chỉ hỗ trợ một bí danh thách thức cho mỗi chứng chỉ."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
"Thông tin đăng nhập cho chế độ API DNS đã chọn ở trên. Xem https://github."
"com/acmesh-official/acme.sh/wiki/dnsapi để biết định dạng thông tin xác thực "
"mà mỗi API yêu cầu. Thêm nhiều mục vào đây ở định dạng biến hệ vỏ KEY=VAL để "
"cung cấp nhiều biến thông tin xác thực."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
"Bí danh tên miền để sử dụng cho TẤT CẢ tên miền. Xem https://github.com/"
"acmesh-official/acme.sh/wiki/DNS-alias-mode để biết chi tiết về quy trình "
"này. LUCI chỉ hỗ trợ một miền thử thách cho mỗi chứng chỉ."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
"Thao tác này sẽ định cấu hình cài đặt chứng chỉ tự động ACME (Letsencrypt). "
"Chỉ cần điền vào phần này để cấu hình bộ định tuyến với các chứng chỉ do "
"Letsencrypt cấp cho giao diện web. Lưu ý rằng các tên miền trong chứng chỉ "
"phải được định cấu hình để trỏ đến địa chỉ IP công cộng của bộ định tuyến. "
"Sau khi được định cấu hình, việc cấp chứng chỉ có thể mất một lúc. Kiểm tra "
"nhật ký để biết tiến độ và bất kỳ lỗi nào."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
"Để sử dụng chế độ DNS để cấp chứng chỉ, hãy đặt tên này thành tên của API "
"DNS được acme.sh hỗ trợ. Xem https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi để biết danh sách các API có sẵn. Trong chế độ DNS, tên miền không "
"phải phân giải thành IP của bộ định tuyến. Chế độ DNS cũng là chế độ duy "
"nhất hỗ trợ chứng chỉ ký tự đại diện. Sử dụng chế độ này yêu cầu phải cài "
"đặt gói acme-dnsapi."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr "Sử dụng tùy chỉnh nhà cung cấp chứng chỉ thay cho Let's Encrypt."
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr "Sử dụng máy chủ tạm"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr "Phương thức thẩm định"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr ""
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot Thẩm định"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "Đường dẫn Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""
"Thư mục gốc của máy chủ web. Đặt cái này thành gốc tài liệu máy chủ web để "
"chạy Acme ở chế độ gốc web. Máy chủ web phải có thể truy cập được từ "
"internet trên cổng 80."

View file

@ -0,0 +1,324 @@
msgid ""
msgstr ""
"PO-Revision-Date: 2023-08-08 12:50+0000\n"
"Last-Translator: Eric <hamburger2048@users.noreply.hosted.weblate.org>\n"
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
"openwrt/luciapplicationsacme/zh_Hans/>\n"
"Language: zh_Hans\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Weblate 5.0-dev\n"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:25
#: applications/luci-app-acme/root/usr/share/luci/menu.d/luci-app-acme.json:3
msgid "ACME certificates"
msgstr "ACME 证书"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:36
msgid "ACME global config"
msgstr "ACME 全局配置"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:514
msgid "ACME server URL"
msgstr "ACME 服务器 URL"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:39
msgid "Account email"
msgstr "电子邮件帐户"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:57
msgid "Advanced Settings"
msgstr "高级设置"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:433
msgid "Base64 content of private key. Use instead of YC_SA_Key_File_Path"
msgstr "私钥的 Base64 格式内容,不使用 YC_SA_Key_File_Path"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:33
msgid "Cert files are stored in"
msgstr "证书存放位置"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:49
msgid "Certificate config"
msgstr "证书配置"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:605
msgid "Certificates"
msgstr "证书"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:452
msgid "Challenge Alias"
msgstr "质询别名"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Custom ACME CA"
msgstr "自定义 ACME 证书颁发机构"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:515
msgid "Custom ACME server directory URL."
msgstr "自定义 ACME 服务器目录 URL。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:74
msgid "DNS"
msgstr "DNS"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:87
msgid "DNS API"
msgstr "DNS API"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:444
msgid "DNS API credentials"
msgstr "DNS API 凭证"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:56
msgid "DNS Challenge Validation"
msgstr "DNS 质询验证"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:521
msgid "Days until renewal"
msgstr "续约前天数"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:81
msgid "Default"
msgstr "默认"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:459
msgid "Domain Alias"
msgstr "域名别名"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:62
msgid "Domain names"
msgstr "域名"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:63
msgid ""
"Domain names to include in the certificate. The first name will be the "
"subject name, subsequent names will be alt names. Note that all domain names "
"must point at the router in the global DNS."
msgstr ""
"证书中要包含的域名。第一个名字将是主题名,后面的名字将是主题备用名称。请注"
"意,所有域名都必须在路由中指向全局 DNS。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:410
msgid ""
"E.g. <code>_acme-challenge.example.com:12345:98765 alias.example.com:11111</"
"code>"
msgstr ""
"如,<code>_acme-challenge.example.com:12345:98765 alias.example."
"com:11111</code>"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:482
msgid "ECC 256 bits"
msgstr "ECC 256 位"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:483
msgid "ECC 384 bits"
msgstr "ECC 384 位"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:40
msgid "Email address to associate with account key."
msgstr "与帐户密钥关联的电子邮件地址。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:46
msgid "Enable debug logging"
msgstr "启用调试日志记录"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:59
msgid "Enabled"
msgstr "已启用"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:54
msgid "General Settings"
msgstr "常规设置"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:469
msgid ""
"Get certificate from the Letsencrypt staging server (use for testing; the "
"certificate won't be valid)."
msgstr "从 Letsencrypt 临时服务器获取证书(用于测试;证书无效)。"
#: applications/luci-app-acme/root/usr/share/rpcd/acl.d/luci-app-acme.json:3
msgid "Grant UCI access for luci-app-acme"
msgstr "为 luci-app-acme 授予 UCI 的访问权限"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:41
msgid ""
"If a certificate wasn't renewed in time then you'll receive a notice at 20 "
"days before expiry."
msgstr "如未及时续签证书你会在到期前20天收到通知。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:587
msgid "Issued on"
msgstr "颁发于"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:477
msgid "Key size (and type) for the generated certificate."
msgstr "生成的证书的密钥长度(和类型)。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:476
msgid "Key type"
msgstr "密钥长度"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:584
msgid "Main Domain"
msgstr "主域"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:369
msgid "OCID of tenancy that contains the target DNS zone"
msgstr "包含目标 DNS 区域的租约的 OCID"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:372
msgid "OCID of user with permission to add/remove records from zones"
msgstr "有权从区域删除记录/将记录添加到区域的的用户的 OCID"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:275
msgid ""
"Open <a href=\"https://www.duckdns.org/\">DuckDNS</a> and copy a token here"
msgstr "打开 <a href=\"https://www.duckdns.org/\">DuckDNS</a> 并在此复制令牌"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:378
msgid "Path to private API signing key file in PEM format"
msgstr "PEM 格式的私密 API 签名密钥文件的路径"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:585
msgid "Private Key"
msgstr "私钥"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:586
msgid "Public Certificate"
msgstr "公钥证书"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:479
msgid "RSA 2048 bits"
msgstr "RSA 2048 位"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:480
msgid "RSA 3072 bits"
msgstr "RSA 3072 位"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:481
msgid "RSA 4096 bits"
msgstr "RSA 4096 位"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:236
msgid "See instructions"
msgstr "见操作指南"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:375
msgid "Should point to the tenancy home region"
msgstr "应指向租约主区域"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:72
msgid "Standalone"
msgstr "独立"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:69
msgid ""
"Standalone mode will use the built-in webserver of acme.sh to issue a "
"certificate. Webroot mode will use an existing webserver to issue a "
"certificate. DNS mode will allow you to use the DNS API of your DNS provider "
"to issue a certificate."
msgstr ""
"独立模式将使用 acme.sh 的内置 Web 服务器来颁发证书。Webroot 模式将使用现有的 "
"Web 服务器来颁发证书。DNS 模式将允许您使用 DNS 提供商的 DNS API 颁发证书。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:453
msgid ""
"The challenge alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge alias per certificate."
msgstr ""
"用于所有域名的质询别名(challenge alias)。有关此过程的详细信息,请参阅 "
"https://github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode。LUCI 每个证书"
"只支持一个质询别名。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:445
msgid ""
"The credentials for the DNS API mode selected above. See https://github.com/"
"acmesh-official/acme.sh/wiki/dnsapi for the format of credentials required "
"by each API. Add multiple entries here in KEY=VAL shell variable format to "
"supply multiple credential variables."
msgstr ""
"上面选择的 DNS API 模式的凭据。请参阅 https://github.com/acmesh-official/"
"acme.sh/wiki/dnsapi 以了解每个 API 所需的凭据格式。在此处以 KEY=VAL shell 变"
"量格式添加多个条目,以提供多个凭据变量。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:460
msgid ""
"The domain alias to use for ALL domains. See https://github.com/acmesh-"
"official/acme.sh/wiki/DNS-alias-mode for the details of this process. LUCI "
"only supports one challenge domain per certificate."
msgstr ""
"用于所有域名的别名(domain alias)。有关此过程的详细信息,请参阅 https://"
"github.com/acmesh-official/acme.sh/wiki/DNS-alias-mode。LUCI 每个证书只支持一"
"个质询别名。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:381
msgid "The private API signing key in PEM format"
msgstr "PEM 格式的私密 API 签名密钥"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:26
msgid ""
"This configures ACME (Letsencrypt) automatic certificate installation. "
"Simply fill out this to have the router configured with Letsencrypt-issued "
"certificates for the web interface. Note that the domain names in the "
"certificate must already be configured to point at the router's public IP "
"address. Once configured, issuing certificates can take a while. Check the "
"logs for progress and any errors."
msgstr ""
"这将配置 ACME (Letsencrypt) 自动证书安装。只需填写此内容即可为路由器配置由 "
"Letsencrypt 颁发的 Web 界面证书。请注意,证书中的域名必须已经配置为指向路由器"
"的公网 IP 地址。配置完成后,颁发证书可能需要一段时间。从日志中查看签署进度和"
"错误。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:297
msgid "This is usually NOT an email address"
msgstr "这通常不是一个电子邮箱地址"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:88
msgid ""
"To use DNS mode to issue certificates, set this to the name of a DNS API "
"supported by acme.sh. See https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi for the list of available APIs. In DNS mode, the domain name does not "
"have to resolve to the router IP. DNS mode is also the only mode that "
"supports wildcard certificates. Using this mode requires the acme-dnsapi "
"package to be installed."
msgstr ""
"若要使用 DNS 模式颁发证书,请将其设置为 acme.sh 支持的 DNS API 的名称。有关可"
"用 API 的列表,请参阅 https://github.com/acmesh-official/acme.sh/wiki/"
"dnsapi。在 DNS 模式下域名不必解析为路由器IP。DNS 模式也是唯一支持通配符证书"
"的模式。使用此模式需要安装 acme-dnsapi 包。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:509
msgid "Use a custom CA instead of Let's Encrypt."
msgstr "使用自定义证书颁发机构代替 Let's Encrypt。"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:467
msgid "Use staging server"
msgstr "使用临时服务器"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:68
msgid "Validation method"
msgstr "验证方式"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:73
msgid "Webroot"
msgstr "Webroot"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:55
msgid "Webroot Challenge Validation"
msgstr "Webroot 质询验证"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:77
msgid "Webroot directory"
msgstr "Webroot 文件夹"
#: applications/luci-app-acme/htdocs/luci-static/resources/view/acme.js:78
msgid ""
"Webserver root directory. Set this to the webserver document root to run "
"Acme in webroot mode. The web server must be accessible from the internet on "
"port 80."
msgstr ""
"Webserver 根目录。设置为 Web 服务器文档根目录,在 webroot 模式下运行 Acme。"
"Web 服务器必须允许从互联网上使用80端口访问。"

Some files were not shown because too many files have changed in this diff Show more