Compare commits

..

No commits in common. "main" and "v1.1.0" have entirely different histories.
main ... v1.1.0

238 changed files with 363150 additions and 422666 deletions

7
.gitattributes vendored
View File

@ -1,5 +1,4 @@
# Exclude files related to git when generating an archive
.git* export-ignore .git* export-ignore
bin/ export-ignore # Exclude ci-only scripts when generating an archive
locale/**/icinga.po export-ignore bin/autoresolve export-ignore
src/ export-ignore
CONTRIBUTING.md export-ignore

View File

@ -1,5 +0,0 @@
blank_issues_enabled: false
contact_links:
- name: You found an error in the localization?
url: https://translate.icinga.com/projects/icinga/#search
about: Please look up the offending source or translation on translate.icinga.com and add a comment (you'll need to sign-in for that) in the respective scope.

1
.github/stats.json vendored Normal file
View File

@ -0,0 +1 @@
{"it_IT": "33%", "fi_FI": "4%", "es_AR": "38%", "uk_UA": "84%", "pt_BR": "11%", "ru_RU": "48%", "ar_SA": "27%", "ja_JP": "59%", "de_DE": "77%"}

View File

@ -13,9 +13,9 @@ jobs:
steps: steps:
- name: Merge ready PRs - name: Merge ready PRs
uses: pascalgn/automerge-action@v0.14.3 uses: pascalgn/automerge-action@135f0bdb927d9807b5446f7ca9ecc2c51de03c4a
env: env:
GITHUB_TOKEN: "${{ secrets.ICINGABOT_TOKEN }}" GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
MERGE_LABELS: "automation" MERGE_LABELS: "automation"
MERGE_METHOD: "squash" MERGE_METHOD: "squash"
MERGE_DELETE_BRANCH: "true" MERGE_DELETE_BRANCH: "true"

View File

@ -12,7 +12,7 @@ jobs:
steps: steps:
- name: Checkout code base - name: Checkout code base
uses: actions/checkout@v3 uses: actions/checkout@v2
with: with:
ssh-key: ${{ secrets.ICINGABOT_SSHKEY }} ssh-key: ${{ secrets.ICINGABOT_SSHKEY }}
ref: ${{ github.head_ref }} ref: ${{ github.head_ref }}

View File

@ -12,7 +12,7 @@ jobs:
steps: steps:
- name: Checkout code base - name: Checkout code base
uses: actions/checkout@v3 uses: actions/checkout@v2
- name: Setup dependencies - name: Setup dependencies
run: sudo apt-get -y install gettext run: sudo apt-get -y install gettext

24
.github/workflows/validate-locales.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: Locale Validation
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
validate:
name: Locale Validation
runs-on: ubuntu-latest
steps:
- name: Checkout code base
uses: actions/checkout@v2
- name: Setup dependencies
run: sudo apt-get -y install gettext
- name: Validate locale files
run: cd ./locale/ && ../bin/validate

View File

@ -1,15 +0,0 @@
name: Weblate Update
on:
push:
branches:
- main
jobs:
trigger-update:
name: Weblate Update Trigger
runs-on: ubuntu-latest
steps:
- name: Repository update
run: 'curl -d operation=pull -H "Authorization: Token ${{ secrets.WEBLATE_TOKEN }}" https://translate.icinga.com/api/projects/icinga/repository/'

View File

@ -1,6 +1,73 @@
# Contributing to Icinga L10n # Contributing to Icinga L10n
We manage translations now on [translate.icinga.com](https://translate.icinga.com). We don't accept If you are already familiar with [gettext](https://www.gnu.org/software/gettext/manual/gettext.html#Why),
pull requests on Github anymore. To report bugs in either source or translation strings, please also contributing here is rather straightforward.
head over there and [lookup](https://translate.icinga.com/projects/icinga/#search) the offending
string and add a comment to it in the respective scope. Assuming you already [forked](https://help.github.com/en/github/getting-started-with-github/fork-a-repo)
the repository you will find all important files in here:
* locale (Compiled catalogs and their source files)
* src (The template and intermediate catalogs)
The `locale` directory stores all current compiled translations. It also contains the
*.po* files used to compile them. These files must pass the validation checks and hence
must be error-free and must not contain fuzzy messages.
The `src` directory is where you will work on the translations. It contains the current
template and intermediate catalogs, which are automatically kept up to date on a daily
basis. To fetch the latest update just pull the `master` branch.
## Working on Translations
To start working on a translation, please use your favorite editor. Though, we highly
recommend [Poedit](https://poedit.net/) as we already prepared the intermediate catalogs
for it. It is easy to use as well.
When adding/updating translations for an existing language, please open the respective
*.po* file in e.g. `src/de_DE/LC_MESSAGES/icinga.po`. To start from scratch with a new
language, copy the template `src/icinga.pot` and use it to create a new catalog in e.g.
`src/zh_CN/LC_MESSAGES/icinga.po`.
When you are done please make sure your changes do not contain any errors or fuzzy
messages. You can then copy the file to the respective locale in `locale` together with
its compiled *.mo* file. (No *.mo* file? *Poedit* can automatically create them upon
saving, check its configuration.)
To send us your work please open a new [pull request](https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request)
and include the following files in it:
* `src/ll_CC/LC_MESSAGES/icinga.po`
* `locale/ll_CC/LC_MESSAGES/icinga.po`
* `locale/ll_CC/LC_MESSAGES/icinga.mo`
## Keeping Pull Requests up-to-date
As mentioned above, the master branch gets updated frequently. Once new messages get
introduced in a linked repository (such as Icinga Web 2) the template and source catalogs
will be updated. To get these new messages into your fork, just update it with our current
master. Github also lets you update your pull request right from the UI.
Though, sooner or later you will get conflicts, and a simple update of your pull request
is not possible anymore. You need to resolve the conflicts first then, in order to update.
Our source catalogs however are huge. A few conflicts may be fixable by hand, but many of
them can be a pain. We don't recommend fixing conflicts by hand, but provide a bot which
will take care of them automatically.
> **Note:**
>
> To utilize the bot, it is required to enable maintainer edits.
If you want the bot to resolve source catalog conflicts and update your pull request,
add a comment with `/resolve` in the first line.
![Resolve Command Comment](doc/screenshot/resolve-command.png "Resolve Command Comment")
The bot will then immediately attempt to fix your source catalog conflicts. Once the bot
finished its work, it will leave a comment. Pull its changes then and continue with the
translation.
Pulling the bot's changes is important. Once you trigger the bot, it's not only you
anymore who's working on the pull request. It's then also the bot which is adding
commits. To avoid conflicts in your working tree, it is recommended to pull the remote
branch first before continuing with the translation.

View File

View File

@ -1,9 +1,15 @@
<a href="http://translate.icinga.com/engage/icinga/">
<img src="http://translate.icinga.com/widgets/icinga/-/287x66-white.png" alt="Translation status" />
</a>
# Icinga - L10n # Icinga - L10n
![Saudi Arabic](https://img.shields.io/badge/dynamic/json?style=flat-square&color=b75dfd&label=ar_SA&query=%24.ar_SA&url=https%3A%2F%2Fraw.githubusercontent.com%2FIcinga%2FL10n%2Fmaster%2F.github%2Fstats.json&logo=data:image/svg%2bxml;base64,PHN2ZyBpZD0iQ2FwYV8xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgNTEyIDUxMiI+PHBhdGggc3R5bGU9ImZpbGw6IzZkYTU0NCIgZD0iTTAgODUuMzMxaDUxMnYzNDEuMzM3SDB6Ii8+PGc+PHBhdGggc3R5bGU9ImZpbGw6I2YwZjBmMCIgZD0iTTE4My41NDggMjg5LjM4NmMwIDEyLjI5NSA5LjczMSAyMi4yNjEgMjEuNzM2IDIyLjI2MWg2NS4yMDhjMCAxMC4yNDQgOC4xMSAxOC41NTEgMTguMTE0IDE4LjU1MWgyMS43MzZjMTAuMDA0LjAgMTguMTE0LTguMzA2IDE4LjExNC0xOC41NTF2LTIyLjI2MUgxODMuNTQ4eiIvPjxwYXRoIHN0eWxlPSJmaWxsOiNmMGYwZjAiIGQ9Ik0zMzAuMjY0IDE4MS43OTF2NTEuOTQyYzAgOC4xODMtNi41IDE0Ljg0LTE0LjQ5MSAxNC44NHYyMi4yNjFjMTkuOTc2LjAgMzYuMjI2LTE2LjY0MyAzNi4yMjYtMzcuMTAxdi01MS45NDJIMzMwLjI2NHYweiIvPjxwYXRoIHN0eWxlPSJmaWxsOiNmMGYwZjAiIGQ9Ik0xNzQuNDkxIDIzMy43MzRjMCA4LjE4My02LjUgMTQuODQtMTQuNDkxIDE0Ljg0djIyLjI2MWMxOS45NzYuMCAzNi4yMjYtMTYuNjQzIDM2LjIyNi0zNy4xMDF2LTUxLjk0MkgxNzQuNDlWMjMzLjczNHoiLz48cGF0aCBzdHlsZT0iZmlsbDojZjBmMGYwIiBkPSJNMjk3LjY2MSAxODEuNzg4aDIxLjczNnY1MS45NDJIMjk3LjY2MXoiLz48cGF0aCBzdHlsZT0iZmlsbDojZjBmMGYwIiBkPSJNMjY1LjA1NyAyMTEuNDczYzAgMi4wNDYtMS42MjUgMy43MS0zLjYyMyAzLjcxLTEuOTk4LjAtMy42MjMtMS42NjQtMy42MjMtMy43MXYtMjkuNjgyaC0yMS43MzZ2MjkuNjgyYzAgMi4wNDYtMS42MjUgMy43MS0zLjYyMyAzLjcxcy0zLjYyMy0xLjY2NC0zLjYyMy0zLjcxdi0yOS42ODJoLTIxLjczNnYyOS42ODJjMCAxNC4zMiAxMS4zNzYgMjUuOTcxIDI1LjM1OCAyNS45NzEgNS4zODUuMCAxMC4zOC0xLjczMyAxNC40OTEtNC42NzcgNC4xMSAyLjk0NCA5LjEwNiA0LjY3NyAxNC40OTEgNC42NzcgMS4wODQuMCAyLjE1LS4wNzggMy4yLS4yMTUtMS41NCA2LjQ5OS03LjI1NSAxMS4zNDUtMTQuMDY4IDExLjM0NXYyMi4yNjFjMTkuOTc2LjAgMzYuMjI2LTE2LjY0MyAzNi4yMjYtMzcuMTAxdi0yMi4yNjEtMjkuNjgyaC0yMS43MzZMMjY1LjA1NyAyMTEuNDczdjB6Ii8+PHBhdGggc3R5bGU9ImZpbGw6I2YwZjBmMCIgZD0iTTIwNy4wOTMgMjQ4LjU3aDMyLjYwMXYyMi4yNjFIMjA3LjA5M3oiLz48L2c+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PC9zdmc+ "Saudi Arabic")
![German](https://img.shields.io/badge/dynamic/json?style=flat-square&color=b75dfd&label=de_DE&query=%24.de_DE&url=https%3A%2F%2Fraw.githubusercontent.com%2FIcinga%2FL10n%2Fmaster%2F.github%2Fstats.json&logo=data:image/svg%2bxml;base64,CjxzdmcgaWQ9IkNhcGFfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTIiPjxwYXRoIHN0eWxlPSJmaWxsOiNkODAwMjciIGQ9Ik0wIDg1LjMzMWg1MTJ2MzQxLjMzN0gweiIvPjxwYXRoIGQ9Ik0wIDg1LjMzMWg1MTJ2MTEzLjc3NUgweiIvPjxwYXRoIHN0eWxlPSJmaWxsOiNmZmRhNDQiIGQ9Ik0wIDMxMi44ODJoNTEydjExMy43NzVIMHoiLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48L3N2Zz4= "German")
![Spanish (Argentina)](https://img.shields.io/badge/dynamic/json?style=flat-square&color=b75dfd&label=es_AR&query=%24.es_AR&url=https%3A%2F%2Fraw.githubusercontent.com%2FIcinga%2FL10n%2Fmaster%2F.github%2Fstats.json&logo=data:image/svg%2bxml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBmaWxsPSIjZjBmMGYwIiBkPSJNMCA4NS4zMzdoNTEydjM0MS4zMjZIMHoiLz48ZyBmaWxsPSIjMzM4YWYzIj48cGF0aCBkPSJNMCA4NS4zMzdoNTEydjExMy43NzVIMHpNMCAzMTIuODg4aDUxMnYxMTMuNzc1SDB6Ii8+PC9nPjxwYXRoIGZpbGw9IiNmZmRhNDQiIGQ9Ik0yOTYuODA5IDI1NmwtMTYuNjc2IDcuODQ0IDguODggMTYuMTQ5LTE4LjEwNy0zLjQ2NC0yLjI5NCAxOC4yOTFMMjU2IDI4MS4zNjdsLTEyLjYxMiAxMy40NTMtMi4yOTQtMTguMjkxLTE4LjEwNyAzLjQ2MyA4Ljg3OS0xNi4xNUwyMTUuMTkxIDI1NmwxNi42NzYtNy44NDQtOC44OC0xNi4xNDggMTguMTA2IDMuNDYzIDIuMjk1LTE4LjI5MUwyNTYgMjMwLjYzM2wxMi42MTItMTMuNDUzIDIuMjk0IDE4LjI5MSAxOC4xMDctMy40NjMtOC44NzkgMTYuMTQ5eiIvPjwvc3ZnPg== "Spanish (Argentina)")
![Finnish](https://img.shields.io/badge/dynamic/json?style=flat-square&color=b75dfd&label=fi_FI&query=%24.fi_FI&url=https%3A%2F%2Fraw.githubusercontent.com%2FIcinga%2FL10n%2Fmaster%2F.github%2Fstats.json&logo=data:image/svg%2bxml;base64,CjxzdmcgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHZpZXdCb3g9IjAgMCA1MTIuMDAxIDUxMi4wMDEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMi4wMDEgNTEyLjAwMSI+PHBhdGggc3R5bGU9ImZpbGw6I2Y1ZjVmNSIgZD0iTTUwMy4xNzIgNDIzLjcyNUg4LjgyOGMtNC44NzUuMC04LjgyOC0zLjk1My04LjgyOC04LjgyOFY5Ny4xMDRjMC00Ljg3NSAzLjk1My04LjgyOCA4LjgyOC04LjgyOGg0OTQuMzQ1YzQuODc1LjAgOC44MjggMy45NTMgOC44MjggOC44Mjh2MzE3Ljc5M0M1MTIgNDE5Ljc3MyA1MDguMDQ3IDQyMy43MjUgNTAzLjE3MiA0MjMuNzI1eiIvPjxwYXRoIHN0eWxlPSJmaWxsOiM0MTQ3OWIiIGQ9Ik01MTIgMjI5LjUxOEgyMTEuODYyVjg4LjI3N0gxNTguODk3VjIyOS41MThIMFYyODIuNDg0SDE1OC44OTdWNDIzLjcyNWg1Mi45NjVWMjgyLjQ4NEg1MTJ6Ii8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PC9zdmc+ "Finnish")
![Italian](https://img.shields.io/badge/dynamic/json?style=flat-square&color=b75dfd&label=it_IT&query=%24.it_IT&url=https%3A%2F%2Fraw.githubusercontent.com%2FIcinga%2FL10n%2Fmaster%2F.github%2Fstats.json&logo=data:image/svg%2bxml;base64,CjxzdmcgaWQ9IkNhcGFfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTIiPjxwYXRoIHN0eWxlPSJmaWxsOiNmMGYwZjAiIGQ9Ik0zNDEuMzM0IDg1LjMzSDE3MC42NjYuMFY0MjYuNjYySDE3MC42NjYgMzQxLjMzNCA1MTJWODUuMzN6Ii8+PHBhdGggc3R5bGU9ImZpbGw6IzZkYTU0NCIgZD0iTTAgODUuMzMzaDE3MC42NjN2MzQxLjMzN0gweiIvPjxwYXRoIHN0eWxlPSJmaWxsOiNkODAwMjciIGQ9Ik0zNDEuMzM3IDg1LjMzM0g1MTJ2MzQxLjMzN0gzNDEuMzM3eiIvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjwvc3ZnPg== "Italian")
![Japanese](https://img.shields.io/badge/dynamic/json?style=flat-square&color=b75dfd&label=ja_JP&query=%24.ja_JP&url=https%3A%2F%2Fraw.githubusercontent.com%2FIcinga%2FL10n%2Fmaster%2F.github%2Fstats.json&logo=data:image/svg%2bxml;base64,CjxzdmcgaWQ9IkNhcGFfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTIiPjxwYXRoIHN0eWxlPSJmaWxsOiNmMGYwZjAiIGQ9Ik0wIDg1LjMzMWg1MTJ2MzQxLjMzN0gweiIvPjxjaXJjbGUgc3R5bGU9ImZpbGw6I2Q4MDAyNyIgY3g9IjI1NiIgY3k9IjI1NS45OTQiIHI9Ijk2Ii8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PC9zdmc+ "Japanese")
![Brazilian Portuguese](https://img.shields.io/badge/dynamic/json?style=flat-square&color=b75dfd&label=pt_BR&query=%24.pt_BR&url=https%3A%2F%2Fraw.githubusercontent.com%2FIcinga%2FL10n%2Fmaster%2F.github%2Fstats.json&logo=data:image/svg%2bxml;base64,CjxzdmcgaWQ9IkNhcGFfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTIiPjxwYXRoIHN0eWxlPSJmaWxsOiM2ZGE1NDQiIGQ9Ik0wIDg1LjMzMWg1MTJ2MzQxLjMzN0gweiIvPjxwYXRoIHN0eWxlPSJmaWxsOiNmZmRhNDQiIGQ9Ik0yNTYgMTYxLjY3OGwxMjggOTQuMzE2TDI1NiAzNTAuMzEgMTI4IDI1NS45OTR6Ii8+PGNpcmNsZSBzdHlsZT0iZmlsbDojZjBmMGYwIiBjeD0iMjU2IiBjeT0iMjU1Ljk5NCIgcj0iNTMuODk0Ii8+PGc+PHBhdGggc3R5bGU9ImZpbGw6IzAwNTJiNCIgZD0iTTIyOS4wNTIgMjUyLjYyNmMtOS4zNzIuMC0xOC40MTYgMS40MjYtMjYuOTMgNC4wNy4zNzcgMjkuNDQgMjQuMzQ4IDUzLjE5MyA1My44NzcgNTMuMTkzIDE4LjI1OS4wIDM0LjM4Ni05LjA4OSA0NC4xMzQtMjIuOTgxQzI4My40NTcgMjY2LjAyOSAyNTcuNzkyIDI1Mi42MjYgMjI5LjA1MiAyNTIuNjI2eiIvPjxwYXRoIHN0eWxlPSJmaWxsOiMwMDUyYjQiIGQ9Ik0zMDguODk1IDI2Ni4zMmMuNjQ5LTMuMzQ0IDEtNi43OTMgMS0xMC4zMjYuMC0yOS43NjUtMjQuMTMtNTMuODk1LTUzLjg5NS01My44OTUtMjIuMjEuMC00MS4yNzUgMTMuNDM4LTQ5LjUyNyAzMi42MjMgNy4yOTMtMS41MSAxNC44NDUtMi4zMDcgMjIuNTc5LTIuMzA3QzI2MC4zNTYgMjMyLjQxNiAyODguNjc0IDI0NS40MjcgMzA4Ljg5NSAyNjYuMzJ6Ii8+PC9nPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjwvc3ZnPg== "Brazilian Portuguese")
![Russian](https://img.shields.io/badge/dynamic/json?style=flat-square&color=b75dfd&label=ru_RU&query=%24.ru_RU&url=https%3A%2F%2Fraw.githubusercontent.com%2FIcinga%2FL10n%2Fmaster%2F.github%2Fstats.json&logo=data:image/svg%2bxml;base64,CjxzdmcgaWQ9IkNhcGFfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTIiPjxwYXRoIHN0eWxlPSJmaWxsOiNmMGYwZjAiIGQ9Ik0wIDg1LjMzVjE5OS4xMDcgMzEyLjg4NSA0MjYuNjYySDUxMlYzMTIuODg1IDE5OS4xMDcgODUuMzN6Ii8+PHBhdGggc3R5bGU9ImZpbGw6IzAwNTJiNCIgZD0iTTAgODUuMzMzaDUxMnYzNDEuMzM3SDB6Ii8+PHBhdGggc3R5bGU9ImZpbGw6I2YwZjBmMCIgZD0iTTAgODUuMzMzaDUxMnYxMTMuNzc1SDB6Ii8+PHBhdGggc3R5bGU9ImZpbGw6I2Q4MDAyNyIgZD0iTTAgMzEyLjg4NGg1MTJ2MTEzLjc3NUgweiIvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjwvc3ZnPg== "Russian")
![Ukrainian](https://img.shields.io/badge/dynamic/json?style=flat-square&color=b75dfd&label=uk_UA&query=%24.uk_UA&url=https%3A%2F%2Fraw.githubusercontent.com%2FIcinga%2FL10n%2Fmaster%2F.github%2Fstats.json&logo=data:image/svg%2bxml;base64,CjxzdmcgaWQ9IkNhcGFfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTIiPjxwYXRoIHN0eWxlPSJmaWxsOiNmZmRhNDQiIGQ9Ik0wIDg1LjMzN2g1MTJ2MzQxLjMyNkgweiIvPjxwYXRoIHN0eWxlPSJmaWxsOiMzMzhhZjMiIGQ9Ik0wIDg1LjMzN2g1MTJWMjU2SDB6Ii8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PGcvPjxnLz48Zy8+PC9zdmc+ "Ukrainian")
L10n (short for *Localization*) is the central location for all translations available L10n (short for *Localization*) is the central location for all translations available
for Icinga. for Icinga.
@ -22,7 +28,5 @@ or the Icinga CLI: `ICINGAWEB_LOCALEDIR=/var/www/icinga/L10n/locale`
## Contributing ## Contributing
We manage translations now on [translate.icinga.com](https://translate.icinga.com/engage/icinga/). Want to contribute a new language or help complete an existing one? Head over to the
We don't accept pull requests on Github anymore. To report bugs in either source or translation [CONTRIBUTING.md](CONTRIBUTING.md) to help get you started!
strings, please also head over there and [lookup](https://translate.icinga.com/projects/icinga/#search)
the offending string and add a comment to it in the respective scope.

View File

@ -175,8 +175,8 @@ if [ "$manage_remote" == true ]; then
git checkout -b pull/$PR_NUMBER $PR_AUTHOR/$PR_BRANCH git checkout -b pull/$PR_NUMBER $PR_AUTHOR/$PR_BRANCH
fi fi
# Attempt to merge main, should fail # Attempt to merge master, should fail
git merge --no-ff --no-commit origin/main || true git merge --no-ff --no-commit origin/master || true
if [ ! -f .git/MERGE_HEAD ]; then if [ ! -f .git/MERGE_HEAD ]; then
echo "Merge aborted or succeeded for some unknown reason. Cancelling pull request resolution" echo "Merge aborted or succeeded for some unknown reason. Cancelling pull request resolution"
@ -207,7 +207,7 @@ while IFS= read -r line; do
done <<< "$GIT_STATUS" done <<< "$GIT_STATUS"
# Finish the merge # Finish the merge
echo -e "Update with base 'origin/main'\n\nResolves source catalog conflicts" > .git/MERGE_MSG echo -e "Update with base 'origin/master'\n\nResolves source catalog conflicts" > .git/MERGE_MSG
GIT_EDITOR=true git merge --continue GIT_EDITOR=true git merge --continue
if [ "$manage_remote" == true ]; then if [ "$manage_remote" == true ]; then

View File

@ -1,86 +0,0 @@
#!/bin/bash
declare -A CATALOGS=()
git_version=$(git describe --always)
HEADER_FIXER=$(cat << PYTHON
import sys, re
input = sys.stdin.read()
from datetime import datetime
m1 = re.match(r'# #-#-#-#-# icinga\.po #-#-#-#-#.*\nmsgid ""', input, re.DOTALL)
if m1: # Consists the header of multiple parts?
author_lines = set(re.findall(r'^# [^\n,]+,(?:(?: \d{4},)|(?: \d{4}.))+$', m1[0], re.MULTILINE))
# Collect all unique authors
author_map = {}
for author_line in author_lines:
m2 = re.match(r'# ([^<]+) <([^>]+)>,((?:(?: \d{4},)|(?: \d{4}.)))+', author_line)
if m2[2] not in author_map:
author_map[m2[2]] = {
'name': m2[1],
'years': []
}
for i in range(3, m2.lastindex + 1):
author_map[m2[2]]['years'].append(m2[i][1:5])
# Methods to extract sorting keys
def get_year(kv):
return max(kv[1]['years'])
def get_name(kv):
return kv[1]['name']
# Sort and render the authors list
authors = []
for author, data in sorted(sorted(author_map.items(), key=get_name), key=get_year):
authors.append('# ' + data['name'] + ' <' + author + '>, ' + ', '.join(set(sorted(data['years']))) + '.')
# The header values, of the first extracted header (Similar to --use-first of msgcat)
header_values = re.search(r'msgid ""\nmsgstr "".*?(("[^#][^"]+"\n)+)', input, re.DOTALL)[1]
# Edit/fill some header values
header_values = re.sub(r'(Project-Id-Version:)[^"]*', r'\1 ${git_version}\\\n', header_values)
header_values = re.sub(r'(PO-Revision-Date:)[^"]*',
r'\1 {:%Y-%m-%d %H:%M:%z}\\\n'.format(datetime.now().astimezone()), header_values)
result = re.search(r'(# #-#-#-#-# icinga.po #-#-#-#-#)\n(?!\1)(.*?)# Contributors:', m1[0], re.DOTALL)[2] \
+ "# Contributors:\n" \
+ "\n".join(authors) \
+ "\nmsgid \"\"\n" \
+ "msgstr \"\"\n" \
+ header_values \
+ input[input.index("\n#: "):]
else:
result = input
sys.stdout.write(result)
PYTHON
)
COMPONENTS=$(find . -mindepth 1 -maxdepth 1 -type d -not -name "sources.d" -printf "%P ")
for component_name in $COMPONENTS; do
echo "Checking $component_name for catalogs"
LOCALES=$(find $component_name -mindepth 1 -maxdepth 1 -type d -printf "%P ")
echo "Component locales found: $LOCALES"
for locale_name in $LOCALES; do
CATALOGS[$locale_name]+=" $component_name/$locale_name/LC_MESSAGES/icinga.po"
done
done
for locale_name in "${!CATALOGS[@]}"; do
echo "Compiling catalogs for $locale_name"
mkdir -p ../locale/$locale_name/LC_MESSAGES
rm ../locale/$locale_name/LC_MESSAGES/icinga.po
touch ../locale/$locale_name/LC_MESSAGES/icinga.po
for catalog in ${CATALOGS[$locale_name]}; do
msgattrib --translated --no-fuzzy --no-obsolete $catalog \
| msgcat -o ../locale/$locale_name/LC_MESSAGES/icinga.po --lang $locale_name \
../locale/$locale_name/LC_MESSAGES/icinga.po -
done
cat ../locale/$locale_name/LC_MESSAGES/icinga.po | python3 -c "$HEADER_FIXER" > temp; mv temp ../locale/$locale_name/LC_MESSAGES/icinga.po
msgfmt -o ../locale/$locale_name/LC_MESSAGES/icinga.mo -c ../locale/$locale_name/LC_MESSAGES/icinga.po
done

View File

@ -17,7 +17,7 @@ SOURCE_REPOSITORIES=(
icingaweb2-module-businessprocess icingaweb2-module-businessprocess
#icingaweb2-module-doc #icingaweb2-module-doc
#icingaweb2-module-fileshipper #icingaweb2-module-fileshipper
icingaweb2-module-jira #icingaweb2-module-jira
#icingaweb2-module-nagvis #icingaweb2-module-nagvis
icingaweb2-module-pdfexport icingaweb2-module-pdfexport
#icingaweb2-module-pnp #icingaweb2-module-pnp
@ -27,7 +27,7 @@ SOURCE_REPOSITORIES=(
icingaweb2-module-x509 icingaweb2-module-x509
#icingaweb2-module-toplevelview #icingaweb2-module-toplevelview
icingaweb2-module-audit icingaweb2-module-audit
#icingaweb2-module-elasticsearch icingaweb2-module-elasticsearch
#icingaweb2-module-eventdb #icingaweb2-module-eventdb
#icingaweb2-module-generictts #icingaweb2-module-generictts
#icingaweb2-module-lynxtechnik #icingaweb2-module-lynxtechnik
@ -38,55 +38,50 @@ FETCHED_REPOS=();
for repo_name in "${SOURCE_REPOSITORIES[@]}"; do for repo_name in "${SOURCE_REPOSITORIES[@]}"; do
if [ ! -d "sources.d/$repo_name" ]; then if [ ! -d "sources.d/$repo_name" ]; then
FETCHED_REPOS+=( $repo_name ); FETCHED_REPOS+=( $repo_name );
wget -q -O - https://github.com/Icinga/$repo_name/archive/master.tar.gz | tar xz
DEFAULT_BRANCH="master" mv $repo_name-master/ sources.d/$repo_name
HTTP_STATUS=$(curl -Is https://api.github.com/repos/Icinga/$repo_name/branches/master | head -n 1 | awk '{ print $2 }')
if [ "$HTTP_STATUS" == "301" ]; then
DEFAULT_BRANCH="main"
fi
wget -q -O - https://github.com/Icinga/$repo_name/archive/$DEFAULT_BRANCH.tar.gz | tar xz
mv $repo_name-$DEFAULT_BRANCH/ sources.d/$repo_name
fi fi
done done
for repo_name in "${SOURCE_REPOSITORIES[@]}"; do # Create a list of files xgettext should scan
if [ ! -d $repo_name ]; then find -L sources.d -regex ".*\.\(php\|phtml\)" ! -path "*/vendor/*" ! -path "*/test/*" > catalog.txt
mkdir $repo_name
fi
# Create a list of files xgettext should scan xgettext --language=PHP \
find -L sources.d/$repo_name -regex ".*\.\(php\|phtml\)" ! -path "*/vendor/*" ! -path "*/test/*" > $repo_name/catalog.txt --keyword=translate \
--keyword=translate:1,2c \
--keyword=translatePlural:1,2 \
--keyword=translatePlural:1,2,4c \
--keyword=mt:2 \
--keyword=mt:2,3c \
--keyword=mtp:2,3 \
--keyword=mtp:2,3,5c \
--keyword=t \
--keyword=t:1,2c \
--keyword=tp:1,2 \
--keyword=tp:1,2,4c \
--keyword=N_ \
--from-code=utf-8 \
--files-from=catalog.txt \
--sort-by-file \
--copyright-holder="Icinga GmbH" \
--package-name="Icinga L10n" \
--package-version=$(git describe --always) \
--msgid-bugs-address=https://github.com/Icinga/L10n/issues \
--default-domain=icinga \
--output=icinga.pot
xgettext --language=PHP \ # Re-add the PoEdit header extensions
--keyword=translate \ REPLACE_CODE=$(cat << PYTHON
--keyword=translate:1,2c \ import sys, re
--keyword=translatePlural:1,2 \ result = re.sub(
--keyword=translatePlural:1,2,4c \ r'msgid \"\"\nmsgstr \"\"(\n\".*\")+',
--keyword=mt:2 \ '\g<0>\n'
--keyword=mt:2,3c \ + '\"X-Poedit-Basepath: ../../../src\\\\\\\\n\"\n'
--keyword=mtp:2,3 \ + '\"X-Poedit-SearchPath-0: sources.d\\\\\\\\n\"',
--keyword=mtp:2,3,5c \ sys.stdin.read()
--keyword=t \ )
--keyword=t:1,2c \
--keyword=tp:1,2 \
--keyword=tp:1,2,4c \
--keyword=N_ \
--from-code=utf-8 \
--files-from=$repo_name/catalog.txt \
--sort-by-file \
--copyright-holder="Icinga GmbH" \
--package-name="Icinga L10n" \
--package-version=$(git describe --always) \
--default-domain=icinga \
--output=$repo_name/messages.pot
# Use current year in the copyright for new templates without one yet
REPLACE_CODE=$(cat << PYTHON
import sys
input = sys.stdin.read()
from datetime import date from datetime import date
result = input.replace( result = result.replace(
'# Copyright (C) YEAR Icinga GmbH', '# Copyright (C) YEAR Icinga GmbH',
'# Copyright (C) {0} Icinga GmbH'.format(date.today().year), '# Copyright (C) {0} Icinga GmbH'.format(date.today().year),
1 1
@ -94,13 +89,12 @@ result = input.replace(
sys.stdout.write(result) sys.stdout.write(result)
PYTHON PYTHON
) )
cat $repo_name/messages.pot | python3 -c "$REPLACE_CODE" > temp; mv temp $repo_name/messages.pot cat icinga.pot | python -c "$REPLACE_CODE" > temp; mv temp icinga.pot
# Cleanup created files and directories # Cleanup created files and directories
rm $repo_name/catalog.txt rm catalog.txt
if [[ " ${FETCHED_REPOS[*]} " =~ " ${repo_name} " ]]; then for repo_name in "${FETCHED_REPOS[@]}"; do
rm -rf sources.d/$repo_name rm -rf sources.d/$repo_name
fi
done done
# Check for changes (new messages) that need to be committed # Check for changes (new messages) that need to be committed
@ -112,8 +106,56 @@ git diff -U0 \
if [ $CHANGES -eq 0 ]; then if [ $CHANGES -eq 0 ]; then
echo "No new messages found."; echo "No new messages found.";
git checkout */messages.pot git checkout icinga.pot;
else else
STATS=""
# Update intermediate (in-progress) catalogs
LOCALES=$(find . -mindepth 1 -maxdepth 1 -type d -regextype grep -regex '\./[a-z]\{2\}_[A-Z]\{2\}' -printf "%P ")
for locale_name in $LOCALES; do
msgmerge --update --backup=none --lang=$locale_name --sort-by-file $locale_name/LC_MESSAGES/icinga.po icinga.pot
STATS_OUT=$(LC_ALL=C msgfmt --statistics $locale_name/LC_MESSAGES/icinga.po 2>&1 >/dev/null)
if [ -f "messages.mo" ]; then
rm "messages.mo"
fi
# TODO: Make this a function? (is also used in bin/validate)
TRANSLATED=0
UNTRANSLATED=0
FUZZY=0
RE="[0-9]+"
LAST_LINE=$(echo "$STATS_OUT" | tail -1)
for chars in $LAST_LINE; do
if [[ "$chars" =~ $RE ]] && [[ ${BASH_REMATCH[0]} ]]; then
LAST_CNT="${BASH_REMATCH[0]}"
else
case $chars in
"translated")
TRANSLATED=$LAST_CNT
;;
"fuzzy")
FUZZY=$LAST_CNT
;;
"untranslated")
UNTRANSLATED=$LAST_CNT
;;
esac
fi
done
PROGRESS=$(python -c "print (int(round(($TRANSLATED.0 / ($TRANSLATED + $UNTRANSLATED + $FUZZY)) * 100)))")
STATS+=" $locale_name:$PROGRESS%"
done
# Update locale statistics
python -c "import json; \
print ( \
json.dumps({k: v for k, v in (kv for kv in (s.split(':') for s in '$STATS'.strip().split()))}) \
) \
" > ../.github/stats.json
echo "New messages found!"; echo "New messages found!";
# Working tree is left dirty as the following step creates a new pull request # Working tree is left dirty as the following step creates a new pull request
fi fi

56
bin/validate Executable file
View File

@ -0,0 +1,56 @@
#!/bin/bash
FAIL=0
LOCALES=$(find . -mindepth 1 -maxdepth 1 -type d -regextype grep -regex '\./[a-z]\{2\}_[A-Z]\{2\}' -printf "%P ")
for locale_name in $LOCALES; do
echo "Checking locale $locale_name"
OUTPUT=$(LC_ALL=C msgfmt -cvf --statistics $locale_name/LC_MESSAGES/icinga.po 2>&1 >/dev/null)
ECODE=$?
if [ -f "messages.mo" ]; then
rm "messages.mo"
fi
echo "$OUTPUT"
if [ $ECODE -gt 0 ]; then
FAIL=1
fi
TRANSLATED=0
UNTRANSLATED=0
FUZZY=0
RE="[0-9]+"
LAST_LINE=$(echo "$OUTPUT" | tail -1)
for chars in $LAST_LINE; do
if [[ "$chars" =~ $RE ]] && [[ ${BASH_REMATCH[0]} ]]; then
LAST_CNT="${BASH_REMATCH[0]}"
else
case $chars in
"translated")
TRANSLATED=$LAST_CNT
;;
"fuzzy")
FUZZY=$LAST_CNT
;;
"untranslated")
UNTRANSLATED=$LAST_CNT
;;
esac
fi
done
if [ $FUZZY -gt 0 ]; then
echo "$locale_name still contains $FUZZY fuzzy messages"
FAIL=1
fi
PROGRESS=$(python -c "print (int(round(($TRANSLATED.0 / ($TRANSLATED + $UNTRANSLATED + $FUZZY)) * 100)))")
echo "$locale_name is at $PROGRESS%"
echo
done
exit $FAIL

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

23425
src/icinga.pot Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,106 +0,0 @@
# Icinga - Arabic translation (ar_SA)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Munzir Taha <munzirtaha@gmail.com>, 2016.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2020-04-27 14:37+0200\n"
"Last-Translator: Munzir Taha <munzirtaha@gmail.com>\n"
"Language-Team: English <trans-ar@lists.fedoraproject.org>\n"
"Language: ar_SA\n"
"MIME-Version: 1.0\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 && n%100<=99 ? 4 : 5);\n"
#: sources.d/icingaweb2-module-audit/application/controllers/ConfigController.php:16
msgid "Save Configuration"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/controllers/LogController.php:23
#: sources.d/icingaweb2-module-audit/configuration.php:17
msgid "Audit Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:18
msgid "Standard Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:19
msgid "Human-readable message log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:21
msgctxt "log.type"
msgid "None"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:22
msgid "File"
msgstr "ملف"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:32
msgid "Standard Log Path"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:33
msgid "The full path to the standard log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:42
msgid "Ident"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:43
msgid "The identifier to use for syslog messages"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:51
msgid "Facility"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:52
msgid "The facility to send syslog messages to"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:75
msgid "JSON Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:76
msgid "Machine-parsable JSON objects"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:86
msgid "JSON Log Path"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:87
msgid "The full path to the JSON log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/views/scripts/log/log-empty.phtml:7
msgid "No activity has been recorded yet."
msgstr ""
#: sources.d/icingaweb2-module-audit/configuration.php:9
msgid "Configuration"
msgstr "إعدادات"
#: sources.d/icingaweb2-module-audit/configuration.php:12
msgid "Allow access to the audit log"
msgstr ""
#: sources.d/icingaweb2-module-audit/configuration.php:16
msgid "Reporting"
msgstr ""
#~ msgid "System"
#~ msgstr "نظام"

View File

@ -1,123 +0,0 @@
# Icinga - German translation (de_DE)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# @hashfunktion <mail@jessereppin.de>, 2021.
# Philipp Dorschner <pdorschner@netways.de>, 2019.
# Bernd Arnold <wopfel@gmail.com>, 2019.
# Marian Rainer-Harbach <marian@rainer-harbach.at>, 2018.
# Christoph Niemann <kordolan@googlemail.com>, 2018.
# Markus Frosch <markus.frosch@icinga.com>, 2017.
# Michael Friedrich <michael.friedrich@icinga.com>, 2017.
# Noah Hilverling <noah.hilverling@icinga.com>, 2016.
# Alexander A. Klimov <alexander.klimov@icinga.com>, 2016.
# Ken Jungclaus <lum33n@web.de>, 2016.
# hailthemelody@rm-laptop04 <hailthemelody@rm-laptop04>, 2016.
# Marius Hein <marius.hein@netways.de>, 2016.
# Pieter Lexis <pieter.lexis@powerdns.com>, 2015.
# Cornelius Wachinger <cornelius@dercorn.com>, 2015.
# Eric Lippmann <eric.lippmann@icinga.com>, 2015.
# Gunnar Beutner <gunnar.beutner@netways.de>, 2014.
# Thomas Gelf <thomas.gelf@icinga.com>, 2014.
# Johannes Meyer <johannes.meyer@icinga.com>, 2014, 2022.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2022-07-08 13:43+0000\n"
"Last-Translator: Johannes Meyer <johannes.meyer@icinga.com>\n"
"Language-Team: German <https://translate.icinga.com/projects/icinga/"
"icingaweb2-module-audit/de/>\n"
"Language: de_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.9.1\n"
#: sources.d/icingaweb2-module-audit/application/controllers/ConfigController.php:16
msgid "Save Configuration"
msgstr "Konfiguration gespeichert"
#: sources.d/icingaweb2-module-audit/application/controllers/LogController.php:23
#: sources.d/icingaweb2-module-audit/configuration.php:17
msgid "Audit Log"
msgstr "Audit Log"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:18
msgid "Standard Log"
msgstr "Standard Log"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:19
msgid "Human-readable message log"
msgstr "Menschen-lesbares Nachrichten Log"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:21
msgctxt "log.type"
msgid "None"
msgstr "Nicht loggen"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:22
msgid "File"
msgstr "Datei"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:32
msgid "Standard Log Path"
msgstr "Standard Log Pfad"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:33
msgid "The full path to the standard log"
msgstr "Der vollständige Pfad zum Standard Log"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:42
msgid "Ident"
msgstr "Kennung"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:43
msgid "The identifier to use for syslog messages"
msgstr "Kennung zur Nutzung in Syslog Nachrichten"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:51
msgid "Facility"
msgstr "Facility"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:52
msgid "The facility to send syslog messages to"
msgstr "Syslog Facility zudem die Nachrichten gesendet werden sollen"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:75
msgid "JSON Log"
msgstr "JSON Log"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:76
msgid "Machine-parsable JSON objects"
msgstr "Maschinen verarbeitbare JSON Objekte"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:86
msgid "JSON Log Path"
msgstr "JSON Log Pfad"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:87
msgid "The full path to the JSON log"
msgstr "Der vollständige Pfad zum JSON Log"
#: sources.d/icingaweb2-module-audit/application/views/scripts/log/log-empty.phtml:7
msgid "No activity has been recorded yet."
msgstr "Bisher keine Aktivitäten aufgezeichnet."
#: sources.d/icingaweb2-module-audit/configuration.php:9
msgid "Configuration"
msgstr "Konfiguration"
#: sources.d/icingaweb2-module-audit/configuration.php:12
msgid "Allow access to the audit log"
msgstr "Erlaube Zugriff auf das Audit Log"
#: sources.d/icingaweb2-module-audit/configuration.php:16
msgid "Reporting"
msgstr "Reporting"
#~ msgid "System"
#~ msgstr "System"

View File

@ -1,107 +0,0 @@
# Icinga - Spanish (Argentina) translation (es_AR)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Juan Cruz Fernandez <juancruz.f87@gmail.com>, 2020.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2020-04-30 16:15+0200\n"
"Last-Translator: Juan Cruz Fernandez <juancruz.f87@gmail.com>\n"
"Language-Team: \n"
"Language: es_AR\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"
#: sources.d/icingaweb2-module-audit/application/controllers/ConfigController.php:16
msgid "Save Configuration"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/controllers/LogController.php:23
#: sources.d/icingaweb2-module-audit/configuration.php:17
msgid "Audit Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:18
msgid "Standard Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:19
msgid "Human-readable message log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:21
msgctxt "log.type"
msgid "None"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:22
msgid "File"
msgstr "Archivo"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:32
msgid "Standard Log Path"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:33
msgid "The full path to the standard log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:42
msgid "Ident"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:43
msgid "The identifier to use for syslog messages"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:51
msgid "Facility"
msgstr ""
"Facility [falta contexto, por favor crear una captura de pantalla cuando vea "
"el mensaje y enviar al administrador]"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:52
msgid "The facility to send syslog messages to"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:75
msgid "JSON Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:76
msgid "Machine-parsable JSON objects"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:86
msgid "JSON Log Path"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:87
msgid "The full path to the JSON log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/views/scripts/log/log-empty.phtml:7
msgid "No activity has been recorded yet."
msgstr ""
#: sources.d/icingaweb2-module-audit/configuration.php:9
msgid "Configuration"
msgstr "Configuración"
#: sources.d/icingaweb2-module-audit/configuration.php:12
msgid "Allow access to the audit log"
msgstr ""
#: sources.d/icingaweb2-module-audit/configuration.php:16
msgid "Reporting"
msgstr ""
#~ msgid "System"
#~ msgstr "Sistema"

View File

@ -1,105 +0,0 @@
# Icinga - Finnish translation (fi_FI)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Mikko Peltokangas <mikko@peltokangas.org>, 2015.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2020-04-27 14:34+0200\n"
"Last-Translator: Mikko Peltokangas <mikko@peltokangas.org>\n"
"Language-Team: \n"
"Language: fi_FI\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"
#: sources.d/icingaweb2-module-audit/application/controllers/ConfigController.php:16
msgid "Save Configuration"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/controllers/LogController.php:23
#: sources.d/icingaweb2-module-audit/configuration.php:17
msgid "Audit Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:18
msgid "Standard Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:19
msgid "Human-readable message log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:21
msgctxt "log.type"
msgid "None"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:22
msgid "File"
msgstr "Tiedosto"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:32
msgid "Standard Log Path"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:33
msgid "The full path to the standard log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:42
msgid "Ident"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:43
msgid "The identifier to use for syslog messages"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:51
msgid "Facility"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:52
msgid "The facility to send syslog messages to"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:75
msgid "JSON Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:76
msgid "Machine-parsable JSON objects"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:86
msgid "JSON Log Path"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:87
msgid "The full path to the JSON log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/views/scripts/log/log-empty.phtml:7
msgid "No activity has been recorded yet."
msgstr ""
#: sources.d/icingaweb2-module-audit/configuration.php:9
msgid "Configuration"
msgstr "Asetukset"
#: sources.d/icingaweb2-module-audit/configuration.php:12
msgid "Allow access to the audit log"
msgstr ""
#: sources.d/icingaweb2-module-audit/configuration.php:16
msgid "Reporting"
msgstr ""
#~ msgid "System"
#~ msgstr "System"

View File

@ -1,106 +0,0 @@
# Icinga - French translation (fr_FR)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Mathieu Lutfy <mathieu@symbiotic.coop>, 2015.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2021-07-13 14:54-0400\n"
"Last-Translator: Mathieu Lutfy <mathieu@symbiotic.coop>\n"
"Language-Team: \n"
"Language: fr_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"
#: sources.d/icingaweb2-module-audit/application/controllers/ConfigController.php:16
msgid "Save Configuration"
msgstr "Sauvegarder la configuration"
#: sources.d/icingaweb2-module-audit/application/controllers/LogController.php:23
#: sources.d/icingaweb2-module-audit/configuration.php:17
msgid "Audit Log"
msgstr "journal d'audit"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:18
msgid "Standard Log"
msgstr "journal standard"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:19
msgid "Human-readable message log"
msgstr "journal simplifié"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:21
msgctxt "log.type"
msgid "None"
msgstr "None"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:22
msgid "File"
msgstr "Fichier"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:32
msgid "Standard Log Path"
msgstr "Chemin du journal"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:33
msgid "The full path to the standard log"
msgstr "Le chemin absolu vers le journal"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:42
msgid "Ident"
msgstr "Utilisateur"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:43
msgid "The identifier to use for syslog messages"
msgstr "L'utilisateur pour les messages de syslog"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:51
msgid "Facility"
msgstr "Facility"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:52
#, fuzzy
msgid "The facility to send syslog messages to"
msgstr "La catégorie pour envoyer les messages syslog"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:75
msgid "JSON Log"
msgstr "Message au format JSON"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:76
msgid "Machine-parsable JSON objects"
msgstr "Objets JSON analysables"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:86
msgid "JSON Log Path"
msgstr "Chemin des messages au format JSON"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:87
msgid "The full path to the JSON log"
msgstr "Le chemin absolu vers les messages au format JSON"
#: sources.d/icingaweb2-module-audit/application/views/scripts/log/log-empty.phtml:7
msgid "No activity has been recorded yet."
msgstr "Aucune activité enregistrée."
#: sources.d/icingaweb2-module-audit/configuration.php:9
msgid "Configuration"
msgstr "Configuration"
#: sources.d/icingaweb2-module-audit/configuration.php:12
msgid "Allow access to the audit log"
msgstr "Autoriser l'accès au journal d'audit"
#: sources.d/icingaweb2-module-audit/configuration.php:16
msgid "Reporting"
msgstr ""
#~ msgid "System"
#~ msgstr "Système"

View File

@ -1,107 +0,0 @@
# Icinga - Italian translation (it_IT)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Francesco Mazzi <fmazzi@comune.genova.it>, 2018.
# Thomas Gelf <thomas.gelf@icinga.com>, 2015.
# Davide Demuru <davide.demuru@buongiorno.com>, 2015.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2020-04-27 14:45+0200\n"
"Last-Translator: Francesco Mazzi <fmazzi@comune.genova.it>\n"
"Language-Team: \n"
"Language: it_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"
#: sources.d/icingaweb2-module-audit/application/controllers/ConfigController.php:16
msgid "Save Configuration"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/controllers/LogController.php:23
#: sources.d/icingaweb2-module-audit/configuration.php:17
msgid "Audit Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:18
msgid "Standard Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:19
msgid "Human-readable message log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:21
msgctxt "log.type"
msgid "None"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:22
msgid "File"
msgstr "File"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:32
msgid "Standard Log Path"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:33
msgid "The full path to the standard log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:42
msgid "Ident"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:43
msgid "The identifier to use for syslog messages"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:51
msgid "Facility"
msgstr "Facility log"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:52
msgid "The facility to send syslog messages to"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:75
msgid "JSON Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:76
msgid "Machine-parsable JSON objects"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:86
msgid "JSON Log Path"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:87
msgid "The full path to the JSON log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/views/scripts/log/log-empty.phtml:7
msgid "No activity has been recorded yet."
msgstr ""
#: sources.d/icingaweb2-module-audit/configuration.php:9
msgid "Configuration"
msgstr "Configurazione"
#: sources.d/icingaweb2-module-audit/configuration.php:12
msgid "Allow access to the audit log"
msgstr ""
#: sources.d/icingaweb2-module-audit/configuration.php:16
msgid "Reporting"
msgstr ""
#~ msgid "System"
#~ msgstr "Sistema"

View File

@ -1,106 +0,0 @@
# Icinga - Japanese translation (ja_JP)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# papillon326 <udagawa@www2178ue.sakura.ne.jp>, 2019.
# chisatohasimoto <hasimoto@designet.co.jp>, 2019.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2020-04-27 14:54+0200\n"
"Last-Translator: papillon326 <udagawa@www2178ue.sakura.ne.jp>\n"
"Language-Team: \n"
"Language: ja_JP\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"
#: sources.d/icingaweb2-module-audit/application/controllers/ConfigController.php:16
msgid "Save Configuration"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/controllers/LogController.php:23
#: sources.d/icingaweb2-module-audit/configuration.php:17
msgid "Audit Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:18
msgid "Standard Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:19
msgid "Human-readable message log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:21
msgctxt "log.type"
msgid "None"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:22
msgid "File"
msgstr "ファイル"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:32
msgid "Standard Log Path"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:33
msgid "The full path to the standard log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:42
msgid "Ident"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:43
msgid "The identifier to use for syslog messages"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:51
msgid "Facility"
msgstr "ファシリティ"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:52
msgid "The facility to send syslog messages to"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:75
msgid "JSON Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:76
msgid "Machine-parsable JSON objects"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:86
msgid "JSON Log Path"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:87
msgid "The full path to the JSON log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/views/scripts/log/log-empty.phtml:7
msgid "No activity has been recorded yet."
msgstr ""
#: sources.d/icingaweb2-module-audit/configuration.php:9
msgid "Configuration"
msgstr "設定"
#: sources.d/icingaweb2-module-audit/configuration.php:12
msgid "Allow access to the audit log"
msgstr ""
#: sources.d/icingaweb2-module-audit/configuration.php:16
msgid "Reporting"
msgstr ""
#~ msgid "System"
#~ msgstr "システム"

View File

@ -1,100 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2025 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Icinga L10n be9bc90\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-04-03 08:30+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: sources.d/icingaweb2-module-audit/application/controllers/ConfigController.php:16
msgid "Save Configuration"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/controllers/LogController.php:23
#: sources.d/icingaweb2-module-audit/configuration.php:17
msgid "Audit Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:18
msgid "Standard Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:19
msgid "Human-readable message log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:21
msgctxt "log.type"
msgid "None"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:22
msgid "File"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:32
msgid "Standard Log Path"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:33
msgid "The full path to the standard log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:42
msgid "Ident"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:43
msgid "The identifier to use for syslog messages"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:51
msgid "Facility"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:52
msgid "The facility to send syslog messages to"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:75
msgid "JSON Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:76
msgid "Machine-parsable JSON objects"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:86
msgid "JSON Log Path"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:87
msgid "The full path to the JSON log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/views/scripts/log/log-empty.phtml:7
msgid "No activity has been recorded yet."
msgstr ""
#: sources.d/icingaweb2-module-audit/configuration.php:9
msgid "Configuration"
msgstr ""
#: sources.d/icingaweb2-module-audit/configuration.php:12
msgid "Allow access to the audit log"
msgstr ""
#: sources.d/icingaweb2-module-audit/configuration.php:16
msgid "Reporting"
msgstr ""

View File

@ -1,98 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
# Johannes Meyer <johannes.meyer@icinga.com>, 2022.
msgid ""
msgstr ""
"Project-Id-Version: Icinga L10n 1e71984\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: sources.d/icingaweb2-module-audit/application/controllers/ConfigController.php:16
msgid "Save Configuration"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/controllers/LogController.php:23
#: sources.d/icingaweb2-module-audit/configuration.php:17
msgid "Audit Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:18
msgid "Standard Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:19
msgid "Human-readable message log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:21
msgctxt "log.type"
msgid "None"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:22
msgid "File"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:32
msgid "Standard Log Path"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:33
msgid "The full path to the standard log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:42
msgid "Ident"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:43
msgid "The identifier to use for syslog messages"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:51
msgid "Facility"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:52
msgid "The facility to send syslog messages to"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:75
msgid "JSON Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:76
msgid "Machine-parsable JSON objects"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:86
msgid "JSON Log Path"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:87
msgid "The full path to the JSON log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/views/scripts/log/log-empty.phtml:7
msgid "No activity has been recorded yet."
msgstr ""
#: sources.d/icingaweb2-module-audit/configuration.php:9
msgid "Configuration"
msgstr ""
#: sources.d/icingaweb2-module-audit/configuration.php:12
msgid "Allow access to the audit log"
msgstr ""
#: sources.d/icingaweb2-module-audit/configuration.php:16
msgid "Reporting"
msgstr ""

View File

@ -1,106 +0,0 @@
# Icinga - Brazilian Portuguese translation (pt_BR)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Carlos Cesario <carloscesario@gmail.com>, 2014.
# Thomas Gelf <thomas.gelf@icinga.com>, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2020-04-27 14:55+0200\n"
"Last-Translator: Carlos Cesario <carloscesario@gmail.com>\n"
"Language-Team: \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"
#: sources.d/icingaweb2-module-audit/application/controllers/ConfigController.php:16
msgid "Save Configuration"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/controllers/LogController.php:23
#: sources.d/icingaweb2-module-audit/configuration.php:17
msgid "Audit Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:18
msgid "Standard Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:19
msgid "Human-readable message log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:21
msgctxt "log.type"
msgid "None"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:22
msgid "File"
msgstr "Arquivo"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:32
msgid "Standard Log Path"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:33
msgid "The full path to the standard log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:42
msgid "Ident"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:43
msgid "The identifier to use for syslog messages"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:51
msgid "Facility"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:52
msgid "The facility to send syslog messages to"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:75
msgid "JSON Log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:76
msgid "Machine-parsable JSON objects"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:86
msgid "JSON Log Path"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:87
msgid "The full path to the JSON log"
msgstr ""
#: sources.d/icingaweb2-module-audit/application/views/scripts/log/log-empty.phtml:7
msgid "No activity has been recorded yet."
msgstr ""
#: sources.d/icingaweb2-module-audit/configuration.php:9
msgid "Configuration"
msgstr "Configuração"
#: sources.d/icingaweb2-module-audit/configuration.php:12
msgid "Allow access to the audit log"
msgstr ""
#: sources.d/icingaweb2-module-audit/configuration.php:16
msgid "Reporting"
msgstr ""
#~ msgid "System"
#~ msgstr "Sistema"

View File

@ -1,107 +0,0 @@
# Icinga - Russian translation (ru_RU)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Yuri Konotopov <ykonotopov@gmail.com>, 2015.
# Dmitriy Q <dmitry@atsip.ru>, 2021.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2021-11-03 12:23+0500\n"
"Last-Translator: Dmitriy Q <dmitry@atsip.ru>\n"
"Language-Team: TranslAster <https://github.com/translaster>\n"
"Language: ru_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<12 || n%100>14) ? 1 : 2);\n"
#: sources.d/icingaweb2-module-audit/application/controllers/ConfigController.php:16
msgid "Save Configuration"
msgstr "Сохранение конфигурации"
#: sources.d/icingaweb2-module-audit/application/controllers/LogController.php:23
#: sources.d/icingaweb2-module-audit/configuration.php:17
msgid "Audit Log"
msgstr "Журнал аудита"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:18
msgid "Standard Log"
msgstr "Стандартный журнал"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:19
msgid "Human-readable message log"
msgstr "Удобочитаемый журнал сообщений"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:21
msgctxt "log.type"
msgid "None"
msgstr "Нет"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:22
msgid "File"
msgstr "Файл"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:32
msgid "Standard Log Path"
msgstr "Стандартный путь к логу"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:33
msgid "The full path to the standard log"
msgstr "Полный путь к стандартному журналу"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:42
msgid "Ident"
msgstr "Идентификатор"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:43
msgid "The identifier to use for syslog messages"
msgstr "Идентификатор, используемый для сообщений syslog"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:51
msgid "Facility"
msgstr "Объект"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:52
msgid "The facility to send syslog messages to"
msgstr "Средство для отправки сообщений в syslog"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:75
msgid "JSON Log"
msgstr "Журнал JSON"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:76
msgid "Machine-parsable JSON objects"
msgstr "Машиночитаемые объекты JSON"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:86
msgid "JSON Log Path"
msgstr "Путь к журналу JSON"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:87
msgid "The full path to the JSON log"
msgstr "Полный путь к логу JSON"
#: sources.d/icingaweb2-module-audit/application/views/scripts/log/log-empty.phtml:7
msgid "No activity has been recorded yet."
msgstr "Никакой активности пока не зафиксировано."
#: sources.d/icingaweb2-module-audit/configuration.php:9
msgid "Configuration"
msgstr "Настройки"
#: sources.d/icingaweb2-module-audit/configuration.php:12
msgid "Allow access to the audit log"
msgstr "Разрешить доступ к журналу аудита"
#: sources.d/icingaweb2-module-audit/configuration.php:16
msgid "Reporting"
msgstr "Отчёты"
#~ msgid "System"
#~ msgstr "Система"

View File

@ -1,108 +0,0 @@
# Icinga - Ukrainian translation (uk_UA)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Pavlo Kuznetsov <p4k81337@gmail.com>, 2019.
# p4k8 <pkuznetsunit@gmail.com>, 2022, 2023.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2023-04-11 12:23+0000\n"
"Last-Translator: p4k8 <pkuznetsunit@gmail.com>\n"
"Language-Team: Ukrainian <https://translate.icinga.com/projects/icinga/"
"icingaweb2-module-audit/uk/>\n"
"Language: uk_UA\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.16.4\n"
#: sources.d/icingaweb2-module-audit/application/controllers/ConfigController.php:16
msgid "Save Configuration"
msgstr "Зберегти конфігурацію"
#: sources.d/icingaweb2-module-audit/application/controllers/LogController.php:23
#: sources.d/icingaweb2-module-audit/configuration.php:17
msgid "Audit Log"
msgstr "Лог аудиту"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:18
msgid "Standard Log"
msgstr "Стандартний лог"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:19
msgid "Human-readable message log"
msgstr "Придатний для читання лог повідомлень"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:21
msgctxt "log.type"
msgid "None"
msgstr "Відсутній"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:22
msgid "File"
msgstr "Файл"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:32
msgid "Standard Log Path"
msgstr "Шлях до стандартного логу"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:33
msgid "The full path to the standard log"
msgstr "Повний шлях до стандартного логу"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:42
msgid "Ident"
msgstr "Відступ"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:43
msgid "The identifier to use for syslog messages"
msgstr "Ідентифікатор для використання у syslog повідомленнях"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:51
msgid "Facility"
msgstr "Категорія"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:52
msgid "The facility to send syslog messages to"
msgstr "Категорія до якої будуть надіслані повідомлення syslog"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:75
msgid "JSON Log"
msgstr "JSON лог"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:76
msgid "Machine-parsable JSON objects"
msgstr "Об'єкти JSON для машинного читання"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:86
msgid "JSON Log Path"
msgstr "Шлях до JSON логу"
#: sources.d/icingaweb2-module-audit/application/forms/Config/AuditLogConfigForm.php:87
msgid "The full path to the JSON log"
msgstr "Повний шлях до JSON логу"
#: sources.d/icingaweb2-module-audit/application/views/scripts/log/log-empty.phtml:7
msgid "No activity has been recorded yet."
msgstr "Не було зафіксовано жодних дій."
#: sources.d/icingaweb2-module-audit/configuration.php:9
msgid "Configuration"
msgstr "Налаштування"
#: sources.d/icingaweb2-module-audit/configuration.php:12
msgid "Allow access to the audit log"
msgstr "Дозволити доступ до логу аудиту"
#: sources.d/icingaweb2-module-audit/configuration.php:16
msgid "Reporting"
msgstr "Повідомлення"
#~ msgid "System"
#~ msgstr "Система"

View File

@ -1,150 +0,0 @@
# Icinga - Arabic translation (ar_SA)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Munzir Taha <munzirtaha@gmail.com>, 2016.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2020-04-27 14:37+0200\n"
"Last-Translator: Munzir Taha <munzirtaha@gmail.com>\n"
"Language-Team: English <trans-ar@lists.fedoraproject.org>\n"
"Language: ar_SA\n"
"MIME-Version: 1.0\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 && n%100<=99 ? 4 : 5);\n"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:36
#, php-format
msgid "Remove Key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:39
msgid ""
"If you still have any import sources referring to this key, you won't be "
"able to use them without changing the key."
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:53
#, php-format
msgid "Key \"%s\" successfully removed"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:71
#, php-format
msgid "Edit Key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:87
#, php-format
msgid "Key \"%s\" successfully updated"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:98
#, php-format
msgid "Key \"%s\" not found"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:109
msgid "Create New Key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:120
msgid "Key successfully created"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:33
msgid "Save Changes"
msgstr "حفظ التغييرات"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:76
#, php-format
msgid "A key with the name \"%s\" does already exist"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:143
msgid "Key Name"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:145
msgid "The name of this key that is used to differentiate it from others"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:154
msgid "Access Key ID"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:155
msgid "Your AWS access key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:164
msgid "Access Key Secret"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:165
msgid "The access key's secret"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:192
msgid "The configuration has been successfully validated."
msgstr "تم التحقق من الإعداد بنجاح."
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:19
msgid "Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:37
#, php-format
msgid "Edit key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:49
#, php-format
msgid "Remove key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:7
msgid "AWS Access Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:9
msgid "Add a AWS Access Key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:15
msgid "Create a new AWS access key"
msgstr ""
#: sources.d/icingaweb2-module-aws/configuration.php:4
msgid "Configure your AWS access keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/configuration.php:5
msgid "AWS Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:181
msgid ""
"Use IAM role credential, assume role or select your AWS key. This shows all "
"keys from your keys.ini. Please check the documentation if you miss the keys "
"in the list."
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:187
msgid "IAM assume role"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:189
msgid "IAM role credentials"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:206
msgid "AWS object type"
msgstr ""

View File

@ -1,174 +0,0 @@
# Icinga - German translation (de_DE)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# @hashfunktion <mail@jessereppin.de>, 2021.
# Philipp Dorschner <pdorschner@netways.de>, 2019.
# Bernd Arnold <wopfel@gmail.com>, 2019.
# Marian Rainer-Harbach <marian@rainer-harbach.at>, 2018.
# Christoph Niemann <kordolan@googlemail.com>, 2018.
# Markus Frosch <markus.frosch@icinga.com>, 2017.
# Michael Friedrich <michael.friedrich@icinga.com>, 2017.
# Noah Hilverling <noah.hilverling@icinga.com>, 2016.
# Alexander A. Klimov <alexander.klimov@icinga.com>, 2016.
# Ken Jungclaus <lum33n@web.de>, 2016.
# hailthemelody@rm-laptop04 <hailthemelody@rm-laptop04>, 2016.
# Marius Hein <marius.hein@netways.de>, 2016.
# Pieter Lexis <pieter.lexis@powerdns.com>, 2015.
# Cornelius Wachinger <cornelius@dercorn.com>, 2015.
# Eric Lippmann <eric.lippmann@icinga.com>, 2015.
# Gunnar Beutner <gunnar.beutner@netways.de>, 2014.
# Thomas Gelf <thomas.gelf@icinga.com>, 2014.
# Johannes Meyer <johannes.meyer@icinga.com>, 2014, 2022.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2022-05-31 09:37+0000\n"
"Last-Translator: Johannes Meyer <johannes.meyer@icinga.com>\n"
"Language-Team: German <https://translate.icinga.com/projects/icinga/"
"icingaweb2-module-aws/de/>\n"
"Language: de_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.9.1\n"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:36
#, php-format
msgid "Remove Key %s"
msgstr "Entferne Schlüssel %s"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:39
msgid ""
"If you still have any import sources referring to this key, you won't be "
"able to use them without changing the key."
msgstr ""
"Gibt es noch Import-Quellen die diesen Schlüssel referenzieren, können diese "
"nicht genutzt werden ohne den Schlüssel zu ändern."
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:53
#, php-format
msgid "Key \"%s\" successfully removed"
msgstr "Schlüssel „%s“ wurde erfolgreich entfernt"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:71
#, php-format
msgid "Edit Key %s"
msgstr "Ändere Schlüssel %s"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:87
#, php-format
msgid "Key \"%s\" successfully updated"
msgstr "Schlüssel „%s“ wurde erfolgreich aktualisiert"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:98
#, php-format
msgid "Key \"%s\" not found"
msgstr "Key „%s“ nicht gefunden"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:109
msgid "Create New Key"
msgstr "Neuen Schlüssel erstellen"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:120
msgid "Key successfully created"
msgstr "Schlüssel erfolgreich erstellt"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:33
msgid "Save Changes"
msgstr "Änderungen speichern"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:76
#, php-format
msgid "A key with the name \"%s\" does already exist"
msgstr "Ein Schlüssel mit dem Namen „%s“ existiert bereits"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:143
msgid "Key Name"
msgstr "Schlüssel Name"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:145
msgid "The name of this key that is used to differentiate it from others"
msgstr ""
"Der Name von diesem Schlüssel wird benutzt um ihn von anderen zu "
"unterscheiden"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:154
msgid "Access Key ID"
msgstr "Zugriffsschlüssel ID"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:155
msgid "Your AWS access key"
msgstr "AWS Zugriffsschlüssel"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:164
msgid "Access Key Secret"
msgstr "Zugriffschlüssel Geheimnis"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:165
msgid "The access key's secret"
msgstr "Das Geheimnis des Zugriffsschlüssels"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:192
msgid "The configuration has been successfully validated."
msgstr "Die Einstellungen wurden erfolgreich überprüft."
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:19
msgid "Keys"
msgstr "Schlüssel"
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:37
#, php-format
msgid "Edit key %s"
msgstr "Ändere Schlüssel %s"
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:49
#, php-format
msgid "Remove key %s"
msgstr "Entferne Schlüssel %s"
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:7
msgid "AWS Access Keys"
msgstr "AWS Zugriffsschlüssel"
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:9
msgid "Add a AWS Access Key"
msgstr "Füge einen AWS Zugriffsschlüssel hinzu"
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:15
msgid "Create a new AWS access key"
msgstr "Erstelle einen neuen AWS Zugriffsschlüssel"
#: sources.d/icingaweb2-module-aws/configuration.php:4
msgid "Configure your AWS access keys"
msgstr "Konfiguriere die AWS Zugriffsschlüssel"
#: sources.d/icingaweb2-module-aws/configuration.php:5
msgid "AWS Keys"
msgstr "AWS Schlüssel"
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:181
msgid ""
"Use IAM role credential, assume role or select your AWS key. This shows all "
"keys from your keys.ini. Please check the documentation if you miss the keys "
"in the list."
msgstr ""
"Benutze IAM Rollen-Zugangsdaten, übernehme die Rolle oder wähle einen AWS "
"Schlüssel. Es werden alle Schlüssel aus der keys.ini angezeigt. Bitte prüfe "
"die Dokumentation, falls Schlüssel in der Liste fehlen."
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:187
msgid "IAM assume role"
msgstr "IAM Rollen übernehmen"
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:189
msgid "IAM role credentials"
msgstr "IAM Rollen-Zugangsdaten"
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:206
msgid "AWS object type"
msgstr "AWS Objekttyp"

View File

@ -1,149 +0,0 @@
# Icinga - Spanish (Argentina) translation (es_AR)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Juan Cruz Fernandez <juancruz.f87@gmail.com>, 2020.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2020-04-30 16:15+0200\n"
"Last-Translator: Juan Cruz Fernandez <juancruz.f87@gmail.com>\n"
"Language-Team: \n"
"Language: es_AR\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"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:36
#, php-format
msgid "Remove Key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:39
msgid ""
"If you still have any import sources referring to this key, you won't be "
"able to use them without changing the key."
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:53
#, php-format
msgid "Key \"%s\" successfully removed"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:71
#, php-format
msgid "Edit Key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:87
#, php-format
msgid "Key \"%s\" successfully updated"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:98
#, php-format
msgid "Key \"%s\" not found"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:109
msgid "Create New Key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:120
msgid "Key successfully created"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:33
msgid "Save Changes"
msgstr "Guardar cambios"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:76
#, php-format
msgid "A key with the name \"%s\" does already exist"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:143
msgid "Key Name"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:145
msgid "The name of this key that is used to differentiate it from others"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:154
msgid "Access Key ID"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:155
msgid "Your AWS access key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:164
msgid "Access Key Secret"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:165
msgid "The access key's secret"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:192
msgid "The configuration has been successfully validated."
msgstr "La configuración fue validada de manera exitosa."
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:19
msgid "Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:37
#, php-format
msgid "Edit key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:49
#, php-format
msgid "Remove key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:7
msgid "AWS Access Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:9
msgid "Add a AWS Access Key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:15
msgid "Create a new AWS access key"
msgstr ""
#: sources.d/icingaweb2-module-aws/configuration.php:4
msgid "Configure your AWS access keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/configuration.php:5
msgid "AWS Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:181
msgid ""
"Use IAM role credential, assume role or select your AWS key. This shows all "
"keys from your keys.ini. Please check the documentation if you miss the keys "
"in the list."
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:187
msgid "IAM assume role"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:189
msgid "IAM role credentials"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:206
msgid "AWS object type"
msgstr ""

View File

@ -1,149 +0,0 @@
# Icinga - Finnish translation (fi_FI)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Mikko Peltokangas <mikko@peltokangas.org>, 2015.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2020-04-27 14:34+0200\n"
"Last-Translator: Mikko Peltokangas <mikko@peltokangas.org>\n"
"Language-Team: \n"
"Language: fi_FI\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"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:36
#, php-format
msgid "Remove Key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:39
msgid ""
"If you still have any import sources referring to this key, you won't be "
"able to use them without changing the key."
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:53
#, php-format
msgid "Key \"%s\" successfully removed"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:71
#, php-format
msgid "Edit Key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:87
#, php-format
msgid "Key \"%s\" successfully updated"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:98
#, php-format
msgid "Key \"%s\" not found"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:109
msgid "Create New Key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:120
msgid "Key successfully created"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:33
msgid "Save Changes"
msgstr "Tallenna muutokset"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:76
#, php-format
msgid "A key with the name \"%s\" does already exist"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:143
msgid "Key Name"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:145
msgid "The name of this key that is used to differentiate it from others"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:154
msgid "Access Key ID"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:155
msgid "Your AWS access key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:164
msgid "Access Key Secret"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:165
msgid "The access key's secret"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:192
msgid "The configuration has been successfully validated."
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:19
msgid "Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:37
#, php-format
msgid "Edit key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:49
#, php-format
msgid "Remove key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:7
msgid "AWS Access Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:9
msgid "Add a AWS Access Key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:15
msgid "Create a new AWS access key"
msgstr ""
#: sources.d/icingaweb2-module-aws/configuration.php:4
msgid "Configure your AWS access keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/configuration.php:5
msgid "AWS Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:181
msgid ""
"Use IAM role credential, assume role or select your AWS key. This shows all "
"keys from your keys.ini. Please check the documentation if you miss the keys "
"in the list."
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:187
msgid "IAM assume role"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:189
msgid "IAM role credentials"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:206
msgid "AWS object type"
msgstr ""

View File

@ -1,149 +0,0 @@
# Icinga - French translation (fr_FR)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Mathieu Lutfy <mathieu@symbiotic.coop>, 2015.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2021-07-13 14:54-0400\n"
"Last-Translator: Mathieu Lutfy <mathieu@symbiotic.coop>\n"
"Language-Team: \n"
"Language: fr_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"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:36
#, php-format
msgid "Remove Key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:39
msgid ""
"If you still have any import sources referring to this key, you won't be "
"able to use them without changing the key."
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:53
#, php-format
msgid "Key \"%s\" successfully removed"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:71
#, php-format
msgid "Edit Key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:87
#, php-format
msgid "Key \"%s\" successfully updated"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:98
#, php-format
msgid "Key \"%s\" not found"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:109
msgid "Create New Key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:120
msgid "Key successfully created"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:33
msgid "Save Changes"
msgstr "Enregistrer les changements"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:76
#, php-format
msgid "A key with the name \"%s\" does already exist"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:143
msgid "Key Name"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:145
msgid "The name of this key that is used to differentiate it from others"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:154
msgid "Access Key ID"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:155
msgid "Your AWS access key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:164
msgid "Access Key Secret"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:165
msgid "The access key's secret"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:192
msgid "The configuration has been successfully validated."
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:19
msgid "Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:37
#, php-format
msgid "Edit key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:49
#, php-format
msgid "Remove key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:7
msgid "AWS Access Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:9
msgid "Add a AWS Access Key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:15
msgid "Create a new AWS access key"
msgstr ""
#: sources.d/icingaweb2-module-aws/configuration.php:4
msgid "Configure your AWS access keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/configuration.php:5
msgid "AWS Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:181
msgid ""
"Use IAM role credential, assume role or select your AWS key. This shows all "
"keys from your keys.ini. Please check the documentation if you miss the keys "
"in the list."
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:187
msgid "IAM assume role"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:189
msgid "IAM role credentials"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:206
msgid "AWS object type"
msgstr ""

View File

@ -1,151 +0,0 @@
# Icinga - Italian translation (it_IT)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Francesco Mazzi <fmazzi@comune.genova.it>, 2018.
# Thomas Gelf <thomas.gelf@icinga.com>, 2015.
# Davide Demuru <davide.demuru@buongiorno.com>, 2015.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2020-04-27 14:45+0200\n"
"Last-Translator: Francesco Mazzi <fmazzi@comune.genova.it>\n"
"Language-Team: \n"
"Language: it_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"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:36
#, php-format
msgid "Remove Key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:39
msgid ""
"If you still have any import sources referring to this key, you won't be "
"able to use them without changing the key."
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:53
#, php-format
msgid "Key \"%s\" successfully removed"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:71
#, php-format
msgid "Edit Key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:87
#, php-format
msgid "Key \"%s\" successfully updated"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:98
#, php-format
msgid "Key \"%s\" not found"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:109
msgid "Create New Key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:120
msgid "Key successfully created"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:33
msgid "Save Changes"
msgstr "Salva Modifiche"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:76
#, php-format
msgid "A key with the name \"%s\" does already exist"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:143
msgid "Key Name"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:145
msgid "The name of this key that is used to differentiate it from others"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:154
msgid "Access Key ID"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:155
msgid "Your AWS access key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:164
msgid "Access Key Secret"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:165
msgid "The access key's secret"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:192
msgid "The configuration has been successfully validated."
msgstr "La configurazione è stata convalidata correttamente."
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:19
msgid "Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:37
#, php-format
msgid "Edit key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:49
#, php-format
msgid "Remove key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:7
msgid "AWS Access Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:9
msgid "Add a AWS Access Key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:15
msgid "Create a new AWS access key"
msgstr ""
#: sources.d/icingaweb2-module-aws/configuration.php:4
msgid "Configure your AWS access keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/configuration.php:5
msgid "AWS Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:181
msgid ""
"Use IAM role credential, assume role or select your AWS key. This shows all "
"keys from your keys.ini. Please check the documentation if you miss the keys "
"in the list."
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:187
msgid "IAM assume role"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:189
msgid "IAM role credentials"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:206
msgid "AWS object type"
msgstr ""

View File

@ -1,150 +0,0 @@
# Icinga - Japanese translation (ja_JP)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# papillon326 <udagawa@www2178ue.sakura.ne.jp>, 2019.
# chisatohasimoto <hasimoto@designet.co.jp>, 2019.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2020-04-27 14:54+0200\n"
"Last-Translator: papillon326 <udagawa@www2178ue.sakura.ne.jp>\n"
"Language-Team: \n"
"Language: ja_JP\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"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:36
#, php-format
msgid "Remove Key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:39
msgid ""
"If you still have any import sources referring to this key, you won't be "
"able to use them without changing the key."
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:53
#, php-format
msgid "Key \"%s\" successfully removed"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:71
#, php-format
msgid "Edit Key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:87
#, php-format
msgid "Key \"%s\" successfully updated"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:98
#, php-format
msgid "Key \"%s\" not found"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:109
msgid "Create New Key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:120
msgid "Key successfully created"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:33
msgid "Save Changes"
msgstr "変更を保存"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:76
#, php-format
msgid "A key with the name \"%s\" does already exist"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:143
msgid "Key Name"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:145
msgid "The name of this key that is used to differentiate it from others"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:154
msgid "Access Key ID"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:155
msgid "Your AWS access key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:164
msgid "Access Key Secret"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:165
msgid "The access key's secret"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:192
msgid "The configuration has been successfully validated."
msgstr "構成は正常に検証されました。"
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:19
msgid "Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:37
#, php-format
msgid "Edit key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:49
#, php-format
msgid "Remove key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:7
msgid "AWS Access Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:9
msgid "Add a AWS Access Key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:15
msgid "Create a new AWS access key"
msgstr ""
#: sources.d/icingaweb2-module-aws/configuration.php:4
msgid "Configure your AWS access keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/configuration.php:5
msgid "AWS Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:181
msgid ""
"Use IAM role credential, assume role or select your AWS key. This shows all "
"keys from your keys.ini. Please check the documentation if you miss the keys "
"in the list."
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:187
msgid "IAM assume role"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:189
msgid "IAM role credentials"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:206
msgid "AWS object type"
msgstr ""

View File

@ -1,147 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2025 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Icinga L10n be9bc90\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-04-03 08:30+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:36
#, php-format
msgid "Remove Key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:39
msgid ""
"If you still have any import sources referring to this key, you won't be "
"able to use them without changing the key."
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:53
#, php-format
msgid "Key \"%s\" successfully removed"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:71
#, php-format
msgid "Edit Key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:87
#, php-format
msgid "Key \"%s\" successfully updated"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:98
#, php-format
msgid "Key \"%s\" not found"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:109
msgid "Create New Key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:120
msgid "Key successfully created"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:33
msgid "Save Changes"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:76
#, php-format
msgid "A key with the name \"%s\" does already exist"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:143
msgid "Key Name"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:145
msgid "The name of this key that is used to differentiate it from others"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:154
msgid "Access Key ID"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:155
msgid "Your AWS access key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:164
msgid "Access Key Secret"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:165
msgid "The access key's secret"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:192
msgid "The configuration has been successfully validated."
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:19
msgid "Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:37
#, php-format
msgid "Edit key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:49
#, php-format
msgid "Remove key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:7
msgid "AWS Access Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:9
msgid "Add a AWS Access Key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:15
msgid "Create a new AWS access key"
msgstr ""
#: sources.d/icingaweb2-module-aws/configuration.php:4
msgid "Configure your AWS access keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/configuration.php:5
msgid "AWS Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:181
msgid ""
"Use IAM role credential, assume role or select your AWS key. This shows all "
"keys from your keys.ini. Please check the documentation if you miss the keys "
"in the list."
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:187
msgid "IAM assume role"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:189
msgid "IAM role credentials"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:206
msgid "AWS object type"
msgstr ""

View File

@ -1,145 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
# Johannes Meyer <johannes.meyer@icinga.com>, 2022.
msgid ""
msgstr ""
"Project-Id-Version: Icinga L10n 1e71984\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:36
#, php-format
msgid "Remove Key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:39
msgid ""
"If you still have any import sources referring to this key, you won't be "
"able to use them without changing the key."
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:53
#, php-format
msgid "Key \"%s\" successfully removed"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:71
#, php-format
msgid "Edit Key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:87
#, php-format
msgid "Key \"%s\" successfully updated"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:98
#, php-format
msgid "Key \"%s\" not found"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:109
msgid "Create New Key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:120
msgid "Key successfully created"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:33
msgid "Save Changes"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:76
#, php-format
msgid "A key with the name \"%s\" does already exist"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:143
msgid "Key Name"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:145
msgid "The name of this key that is used to differentiate it from others"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:154
msgid "Access Key ID"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:155
msgid "Your AWS access key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:164
msgid "Access Key Secret"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:165
msgid "The access key's secret"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:192
msgid "The configuration has been successfully validated."
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:19
msgid "Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:37
#, php-format
msgid "Edit key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:49
#, php-format
msgid "Remove key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:7
msgid "AWS Access Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:9
msgid "Add a AWS Access Key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:15
msgid "Create a new AWS access key"
msgstr ""
#: sources.d/icingaweb2-module-aws/configuration.php:4
msgid "Configure your AWS access keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/configuration.php:5
msgid "AWS Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:181
msgid ""
"Use IAM role credential, assume role or select your AWS key. This shows all "
"keys from your keys.ini. Please check the documentation if you miss the keys "
"in the list."
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:187
msgid "IAM assume role"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:189
msgid "IAM role credentials"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:206
msgid "AWS object type"
msgstr ""

View File

@ -1,150 +0,0 @@
# Icinga - Brazilian Portuguese translation (pt_BR)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Carlos Cesario <carloscesario@gmail.com>, 2014.
# Thomas Gelf <thomas.gelf@icinga.com>, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2020-04-27 14:55+0200\n"
"Last-Translator: Carlos Cesario <carloscesario@gmail.com>\n"
"Language-Team: \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"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:36
#, php-format
msgid "Remove Key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:39
msgid ""
"If you still have any import sources referring to this key, you won't be "
"able to use them without changing the key."
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:53
#, php-format
msgid "Key \"%s\" successfully removed"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:71
#, php-format
msgid "Edit Key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:87
#, php-format
msgid "Key \"%s\" successfully updated"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:98
#, php-format
msgid "Key \"%s\" not found"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:109
msgid "Create New Key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:120
msgid "Key successfully created"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:33
msgid "Save Changes"
msgstr "Salvar alterações"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:76
#, php-format
msgid "A key with the name \"%s\" does already exist"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:143
msgid "Key Name"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:145
msgid "The name of this key that is used to differentiate it from others"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:154
msgid "Access Key ID"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:155
msgid "Your AWS access key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:164
msgid "Access Key Secret"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:165
msgid "The access key's secret"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:192
msgid "The configuration has been successfully validated."
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:19
msgid "Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:37
#, php-format
msgid "Edit key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:49
#, php-format
msgid "Remove key %s"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:7
msgid "AWS Access Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:9
msgid "Add a AWS Access Key"
msgstr ""
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:15
msgid "Create a new AWS access key"
msgstr ""
#: sources.d/icingaweb2-module-aws/configuration.php:4
msgid "Configure your AWS access keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/configuration.php:5
msgid "AWS Keys"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:181
msgid ""
"Use IAM role credential, assume role or select your AWS key. This shows all "
"keys from your keys.ini. Please check the documentation if you miss the keys "
"in the list."
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:187
msgid "IAM assume role"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:189
msgid "IAM role credentials"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:206
msgid "AWS object type"
msgstr ""

View File

@ -1,153 +0,0 @@
# Icinga - Russian translation (ru_RU)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Yuri Konotopov <ykonotopov@gmail.com>, 2015.
# Dmitriy Q <dmitry@atsip.ru>, 2021.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2021-11-03 12:23+0500\n"
"Last-Translator: Dmitriy Q <dmitry@atsip.ru>\n"
"Language-Team: TranslAster <https://github.com/translaster>\n"
"Language: ru_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<12 || n%100>14) ? 1 : 2);\n"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:36
#, php-format
msgid "Remove Key %s"
msgstr "Удалить ключ %s"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:39
msgid ""
"If you still have any import sources referring to this key, you won't be "
"able to use them without changing the key."
msgstr ""
"Если у вас все еще есть какие-либо источники импорта, ссылающиеся на этот "
"ключ, вы не сможете использовать их без изменения ключа."
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:53
#, php-format
msgid "Key \"%s\" successfully removed"
msgstr "Ключ \"%s\" успешно удален"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:71
#, php-format
msgid "Edit Key %s"
msgstr "Редактировать ключ %s"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:87
#, php-format
msgid "Key \"%s\" successfully updated"
msgstr "Ключ \"%s\" обновлен успешно"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:98
#, php-format
msgid "Key \"%s\" not found"
msgstr "Ключ \"%s\" не найден"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:109
msgid "Create New Key"
msgstr "Создание нового ключа"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:120
msgid "Key successfully created"
msgstr "Ключ создан успешно"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:33
msgid "Save Changes"
msgstr "Сохранить изменения"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:76
#, php-format
msgid "A key with the name \"%s\" does already exist"
msgstr "Ключ с именем \"%s\" уже существует"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:143
msgid "Key Name"
msgstr "Название ключа"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:145
msgid "The name of this key that is used to differentiate it from others"
msgstr "Название этого ключа, используемое для отличия его от других"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:154
msgid "Access Key ID"
msgstr "ID ключа доступа"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:155
msgid "Your AWS access key"
msgstr "Ваш ключ доступа AWS"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:164
msgid "Access Key Secret"
msgstr "Пароль ключа доступа"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:165
msgid "The access key's secret"
msgstr "Пароль доступа к ключу"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:192
msgid "The configuration has been successfully validated."
msgstr "Конфигурация была успешно проверена."
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:19
msgid "Keys"
msgstr "Ключи"
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:37
#, php-format
msgid "Edit key %s"
msgstr "Редактировать ключ %s"
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:49
#, php-format
msgid "Remove key %s"
msgstr "Удалить ключ %s"
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:7
msgid "AWS Access Keys"
msgstr "Ключ доступа AWS"
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:9
msgid "Add a AWS Access Key"
msgstr "Добавить ключ доступа AWS"
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:15
msgid "Create a new AWS access key"
msgstr "Создание нового ключа доступа AWS"
#: sources.d/icingaweb2-module-aws/configuration.php:4
msgid "Configure your AWS access keys"
msgstr "Настройка ключей доступа AWS"
#: sources.d/icingaweb2-module-aws/configuration.php:5
msgid "AWS Keys"
msgstr "Ключ AWS"
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:181
msgid ""
"Use IAM role credential, assume role or select your AWS key. This shows all "
"keys from your keys.ini. Please check the documentation if you miss the keys "
"in the list."
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:187
msgid "IAM assume role"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:189
msgid "IAM role credentials"
msgstr ""
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:206
msgid "AWS object type"
msgstr "Тип объекта AWS"

View File

@ -1,157 +0,0 @@
# Icinga - Ukrainian translation (uk_UA)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Pavlo Kuznetsov <p4k81337@gmail.com>, 2019.
# p4k8 <pkuznetsunit@gmail.com>, 2022, 2023.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2023-04-15 08:23+0000\n"
"Last-Translator: p4k8 <pkuznetsunit@gmail.com>\n"
"Language-Team: Ukrainian <https://translate.icinga.com/projects/icinga/"
"icingaweb2-module-aws/uk/>\n"
"Language: uk_UA\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.16.4\n"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:36
#, php-format
msgid "Remove Key %s"
msgstr "Видалити ключ %s"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:39
msgid ""
"If you still have any import sources referring to this key, you won't be "
"able to use them without changing the key."
msgstr ""
"Якщо у вас все ще є джерела імпорту що посилаються на даний ключ, ви не "
"зможете їх використовувати без заміни ключа."
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:53
#, php-format
msgid "Key \"%s\" successfully removed"
msgstr "Ключ \"%s\" успішно видалено"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:71
#, php-format
msgid "Edit Key %s"
msgstr "Редагувати ключ %s"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:87
#, php-format
msgid "Key \"%s\" successfully updated"
msgstr "Ключ \"%s\" успішно оновлено"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:98
#, php-format
msgid "Key \"%s\" not found"
msgstr "Ключ \"%s\" не знайдено"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:109
msgid "Create New Key"
msgstr "Створити новий ключ"
#: sources.d/icingaweb2-module-aws/application/controllers/ConfigController.php:120
msgid "Key successfully created"
msgstr "Ключ успішно створено"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:33
msgid "Save Changes"
msgstr "Зберегти зміни"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:76
#, php-format
msgid "A key with the name \"%s\" does already exist"
msgstr "Ключ з ім'ям \"%s\" вже існує"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:143
msgid "Key Name"
msgstr "Назва ключа"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:145
msgid "The name of this key that is used to differentiate it from others"
msgstr "Назва ключа для розрізнення його від інших"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:154
msgid "Access Key ID"
msgstr "ID ключа доступу"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:155
msgid "Your AWS access key"
msgstr "Ваш ключ доступу AWS"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:164
msgid "Access Key Secret"
msgstr "Секрет ключа доступу"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:165
msgid "The access key's secret"
msgstr "Секрет ключа доступу"
#: sources.d/icingaweb2-module-aws/application/forms/Config/KeysForm.php:192
msgid "The configuration has been successfully validated."
msgstr "Конфігурацію було успішно валідовано."
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:19
msgid "Keys"
msgstr "Ключі"
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:37
#, php-format
msgid "Edit key %s"
msgstr "Редагувати ключ %s"
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys-list.phtml:49
#, php-format
msgid "Remove key %s"
msgstr "Видалити ключ %s"
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:7
msgid "AWS Access Keys"
msgstr "Ключі доступу AWS"
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:9
msgid "Add a AWS Access Key"
msgstr "Додати ключ доступу AWS"
#: sources.d/icingaweb2-module-aws/application/views/scripts/config/keys.phtml:15
msgid "Create a new AWS access key"
msgstr "Створити новий ключ доступу AWS"
#: sources.d/icingaweb2-module-aws/configuration.php:4
msgid "Configure your AWS access keys"
msgstr "Налаштувати ключі доступу AWS"
#: sources.d/icingaweb2-module-aws/configuration.php:5
msgid "AWS Keys"
msgstr "Ключі AWS"
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:181
msgid ""
"Use IAM role credential, assume role or select your AWS key. This shows all "
"keys from your keys.ini. Please check the documentation if you miss the keys "
"in the list."
msgstr ""
"Використати реквізити ролі IAM або обрати ключ AWS. Будуть показані всі "
"ключі з keys.ini. Зверніться до документації якщо ваші ключі відсутні у "
"списку."
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:187
msgid "IAM assume role"
msgstr "IAM роль для використання"
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:189
msgid "IAM role credentials"
msgstr "Реквізити ролі IAM"
#: sources.d/icingaweb2-module-aws/library/Aws/ProvidedHook/Director/ImportSource.php:206
msgid "AWS object type"
msgstr "Тип об'єкта AWS"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1,122 +0,0 @@
# Icinga - Arabic translation (ar_SA)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Munzir Taha <munzirtaha@gmail.com>, 2016.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2020-04-27 14:37+0200\n"
"Last-Translator: Munzir Taha <munzirtaha@gmail.com>\n"
"Language-Team: English <trans-ar@lists.fedoraproject.org>\n"
"Language: ar_SA\n"
"MIME-Version: 1.0\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 && n%100<=99 ? 4 : 5);\n"
#: sources.d/icingaweb2-module-cube/application/controllers/HostsController.php:43
#: sources.d/icingaweb2-module-cube/application/controllers/ServicesController.php:43
msgid "Adjust Filter"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:82
msgid "+ Add a dimension"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:116
msgid "Slice/Filter"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:130
#, php-format
msgid "Remove dimension \"%s\""
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:140
#, php-format
msgid "Move dimension \"%s\" up"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:151
#, php-format
msgid "Move dimension \"%s\" down"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:170
msgid "New dimension has been added"
msgstr ""
#: sources.d/icingaweb2-module-cube/configuration.php:5
msgid "Cube"
msgstr ""
#: sources.d/icingaweb2-module-cube/configuration.php:5
msgid "Reporting"
msgstr "التقارير"
#: sources.d/icingaweb2-module-cube/library/Cube/Hook/IcingaDbActionsHook.php:118
#: sources.d/icingaweb2-module-cube/library/Cube/Web/ActionLinks.php:54
msgid "No action links have been provided for this cube"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:35
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:33
msgid "Show hosts status"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:36
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:43
msgid "This shows all matching hosts and their current state in Icinga DB Web"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:42
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:47
msgid "Show services status"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:34
msgid ""
"This shows all matching hosts and their current state in the monitoring "
"module"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:48
msgid ""
"This shows all matching services and their current state in the monitoring "
"module"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:69
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:32
msgid "Cube details"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:87
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:51
#, php-format
msgid "Cube: %s"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:111
msgid "Value"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:112
msgid "Severity"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:289
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:190
msgid "Hosts"
msgstr "المضيفون"
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:293
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:194
msgid "Services"
msgstr "الخدمات"

View File

@ -1,154 +0,0 @@
# Icinga - German translation (de_DE)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# @hashfunktion <mail@jessereppin.de>, 2021.
# Philipp Dorschner <pdorschner@netways.de>, 2019.
# Bernd Arnold <wopfel@gmail.com>, 2019.
# Marian Rainer-Harbach <marian@rainer-harbach.at>, 2018.
# Christoph Niemann <kordolan@googlemail.com>, 2018.
# Markus Frosch <markus.frosch@icinga.com>, 2017.
# Michael Friedrich <michael.friedrich@icinga.com>, 2017.
# Noah Hilverling <noah.hilverling@icinga.com>, 2016.
# Alexander A. Klimov <alexander.klimov@icinga.com>, 2016.
# Ken Jungclaus <lum33n@web.de>, 2016.
# hailthemelody@rm-laptop04 <hailthemelody@rm-laptop04>, 2016.
# Marius Hein <marius.hein@netways.de>, 2016.
# Pieter Lexis <pieter.lexis@powerdns.com>, 2015.
# Cornelius Wachinger <cornelius@dercorn.com>, 2015.
# Eric Lippmann <eric.lippmann@icinga.com>, 2015.
# Gunnar Beutner <gunnar.beutner@netways.de>, 2014.
# Thomas Gelf <thomas.gelf@icinga.com>, 2014.
# Johannes Meyer <johannes.meyer@icinga.com>, 2014, 2022.
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2022-07-15 07:40+0000\n"
"Last-Translator: Johannes Meyer <johannes.meyer@icinga.com>\n"
"Language-Team: German <https://translate.icinga.com/projects/icinga/"
"icingaweb2-module-cube/de/>\n"
"Language: de_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.9.1\n"
#: sources.d/icingaweb2-module-cube/application/controllers/HostsController.php:43
#: sources.d/icingaweb2-module-cube/application/controllers/ServicesController.php:43
msgid "Adjust Filter"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:82
msgid "+ Add a dimension"
msgstr "+ Dimension hinzufügen"
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:116
msgid "Slice/Filter"
msgstr "Schneiden/Filtern"
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:130
#, php-format
msgid "Remove dimension \"%s\""
msgstr "Dimension entfernen „%s“"
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:140
#, php-format
msgid "Move dimension \"%s\" up"
msgstr "Dimension „%s“ nach oben verschieben"
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:151
#, php-format
msgid "Move dimension \"%s\" down"
msgstr "Dimension „%s“ nach unten verschieben"
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:170
msgid "New dimension has been added"
msgstr "Neue Dimension wurde hinzugefügt"
#: sources.d/icingaweb2-module-cube/configuration.php:5
msgid "Cube"
msgstr "Würfel"
#: sources.d/icingaweb2-module-cube/configuration.php:5
msgid "Reporting"
msgstr "Reporting"
#: sources.d/icingaweb2-module-cube/library/Cube/Hook/IcingaDbActionsHook.php:118
#: sources.d/icingaweb2-module-cube/library/Cube/Web/ActionLinks.php:54
msgid "No action links have been provided for this cube"
msgstr "Keine Aktion für diesen Würfel bereitgestellt"
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:35
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:33
msgid "Show hosts status"
msgstr "Zeige Host-Zustände an"
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:36
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:43
msgid "This shows all matching hosts and their current state in Icinga DB Web"
msgstr ""
"Das zeigt alle passenden Hosts und deren aktuellen Zustand in Icinga DB Web "
"an"
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:42
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:47
msgid "Show services status"
msgstr "Zeige Service-Zustände an"
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:34
msgid ""
"This shows all matching hosts and their current state in the monitoring "
"module"
msgstr ""
"Das zeigt alle passenden Hosts und deren aktuellen Zustand im Monitoring-"
"Modul an"
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:48
msgid ""
"This shows all matching services and their current state in the monitoring "
"module"
msgstr ""
"Das zeigt alle passenden Services und deren aktuellen Zustand im Monitoring-"
"Modul an"
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:69
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:32
msgid "Cube details"
msgstr "Würfel Details"
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:87
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:51
#, php-format
msgid "Cube: %s"
msgstr "Würfel: %s"
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:111
msgid "Value"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:112
msgid "Severity"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:289
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:190
msgid "Hosts"
msgstr "Hosts"
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:293
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:194
msgid "Services"
msgstr "Services"
#~ msgid "- please choose -"
#~ msgstr "- bitte wählen -"
#~ msgid "Submit"
#~ msgstr "Absenden"
#~ msgid "Form has successfully been sent"
#~ msgstr "Formular wurde erfolgreich abgeschickt"

View File

@ -1,121 +0,0 @@
# Icinga - Spanish (Argentina) translation (es_AR)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Juan Cruz Fernandez <juancruz.f87@gmail.com>, 2020.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2020-04-30 16:15+0200\n"
"Last-Translator: Juan Cruz Fernandez <juancruz.f87@gmail.com>\n"
"Language-Team: \n"
"Language: es_AR\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"
#: sources.d/icingaweb2-module-cube/application/controllers/HostsController.php:43
#: sources.d/icingaweb2-module-cube/application/controllers/ServicesController.php:43
msgid "Adjust Filter"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:82
msgid "+ Add a dimension"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:116
msgid "Slice/Filter"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:130
#, php-format
msgid "Remove dimension \"%s\""
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:140
#, php-format
msgid "Move dimension \"%s\" up"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:151
#, php-format
msgid "Move dimension \"%s\" down"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:170
msgid "New dimension has been added"
msgstr ""
#: sources.d/icingaweb2-module-cube/configuration.php:5
msgid "Cube"
msgstr ""
#: sources.d/icingaweb2-module-cube/configuration.php:5
msgid "Reporting"
msgstr "Reportando"
#: sources.d/icingaweb2-module-cube/library/Cube/Hook/IcingaDbActionsHook.php:118
#: sources.d/icingaweb2-module-cube/library/Cube/Web/ActionLinks.php:54
msgid "No action links have been provided for this cube"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:35
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:33
msgid "Show hosts status"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:36
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:43
msgid "This shows all matching hosts and their current state in Icinga DB Web"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:42
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:47
msgid "Show services status"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:34
msgid ""
"This shows all matching hosts and their current state in the monitoring "
"module"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:48
msgid ""
"This shows all matching services and their current state in the monitoring "
"module"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:69
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:32
msgid "Cube details"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:87
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:51
#, php-format
msgid "Cube: %s"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:111
msgid "Value"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:112
msgid "Severity"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:289
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:190
msgid "Hosts"
msgstr "Huéspedes"
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:293
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:194
msgid "Services"
msgstr "Servicios"

View File

@ -1,121 +0,0 @@
# Icinga - Finnish translation (fi_FI)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Mikko Peltokangas <mikko@peltokangas.org>, 2015.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2020-04-27 14:34+0200\n"
"Last-Translator: Mikko Peltokangas <mikko@peltokangas.org>\n"
"Language-Team: \n"
"Language: fi_FI\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"
#: sources.d/icingaweb2-module-cube/application/controllers/HostsController.php:43
#: sources.d/icingaweb2-module-cube/application/controllers/ServicesController.php:43
msgid "Adjust Filter"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:82
msgid "+ Add a dimension"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:116
msgid "Slice/Filter"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:130
#, php-format
msgid "Remove dimension \"%s\""
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:140
#, php-format
msgid "Move dimension \"%s\" up"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:151
#, php-format
msgid "Move dimension \"%s\" down"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:170
msgid "New dimension has been added"
msgstr ""
#: sources.d/icingaweb2-module-cube/configuration.php:5
msgid "Cube"
msgstr ""
#: sources.d/icingaweb2-module-cube/configuration.php:5
msgid "Reporting"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Hook/IcingaDbActionsHook.php:118
#: sources.d/icingaweb2-module-cube/library/Cube/Web/ActionLinks.php:54
msgid "No action links have been provided for this cube"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:35
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:33
msgid "Show hosts status"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:36
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:43
msgid "This shows all matching hosts and their current state in Icinga DB Web"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:42
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:47
msgid "Show services status"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:34
msgid ""
"This shows all matching hosts and their current state in the monitoring "
"module"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:48
msgid ""
"This shows all matching services and their current state in the monitoring "
"module"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:69
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:32
msgid "Cube details"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:87
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:51
#, php-format
msgid "Cube: %s"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:111
msgid "Value"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:112
msgid "Severity"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:289
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:190
msgid "Hosts"
msgstr "Hostit"
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:293
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:194
msgid "Services"
msgstr "Palvelut"

View File

@ -1,124 +0,0 @@
# Icinga - French translation (fr_FR)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Mathieu Lutfy <mathieu@symbiotic.coop>, 2015.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2021-07-13 14:54-0400\n"
"Last-Translator: Mathieu Lutfy <mathieu@symbiotic.coop>\n"
"Language-Team: \n"
"Language: fr_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"
#: sources.d/icingaweb2-module-cube/application/controllers/HostsController.php:43
#: sources.d/icingaweb2-module-cube/application/controllers/ServicesController.php:43
msgid "Adjust Filter"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:82
msgid "+ Add a dimension"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:116
msgid "Slice/Filter"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:130
#, php-format
msgid "Remove dimension \"%s\""
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:140
#, php-format
msgid "Move dimension \"%s\" up"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:151
#, php-format
msgid "Move dimension \"%s\" down"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:170
msgid "New dimension has been added"
msgstr ""
#: sources.d/icingaweb2-module-cube/configuration.php:5
msgid "Cube"
msgstr ""
#: sources.d/icingaweb2-module-cube/configuration.php:5
msgid "Reporting"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Hook/IcingaDbActionsHook.php:118
#: sources.d/icingaweb2-module-cube/library/Cube/Web/ActionLinks.php:54
msgid "No action links have been provided for this cube"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:35
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:33
msgid "Show hosts status"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:36
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:43
msgid "This shows all matching hosts and their current state in Icinga DB Web"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:42
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:47
msgid "Show services status"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:34
msgid ""
"This shows all matching hosts and their current state in the monitoring "
"module"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:48
msgid ""
"This shows all matching services and their current state in the monitoring "
"module"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:69
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:32
msgid "Cube details"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:87
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:51
#, php-format
msgid "Cube: %s"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:111
msgid "Value"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:112
msgid "Severity"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:289
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:190
msgid "Hosts"
msgstr "Hôtes"
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:293
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:194
msgid "Services"
msgstr "Services"
#~ msgid "Submit"
#~ msgstr "Soumettre"

View File

@ -1,132 +0,0 @@
# Icinga - Italian translation (it_IT)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Francesco Mazzi <fmazzi@comune.genova.it>, 2018.
# Thomas Gelf <thomas.gelf@icinga.com>, 2015.
# Davide Demuru <davide.demuru@buongiorno.com>, 2015.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2020-04-27 14:45+0200\n"
"Last-Translator: Francesco Mazzi <fmazzi@comune.genova.it>\n"
"Language-Team: \n"
"Language: it_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"
#: sources.d/icingaweb2-module-cube/application/controllers/HostsController.php:43
#: sources.d/icingaweb2-module-cube/application/controllers/ServicesController.php:43
msgid "Adjust Filter"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:82
msgid "+ Add a dimension"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:116
msgid "Slice/Filter"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:130
#, php-format
msgid "Remove dimension \"%s\""
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:140
#, php-format
msgid "Move dimension \"%s\" up"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:151
#, php-format
msgid "Move dimension \"%s\" down"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:170
msgid "New dimension has been added"
msgstr ""
#: sources.d/icingaweb2-module-cube/configuration.php:5
msgid "Cube"
msgstr ""
#: sources.d/icingaweb2-module-cube/configuration.php:5
msgid "Reporting"
msgstr "Reportistica"
#: sources.d/icingaweb2-module-cube/library/Cube/Hook/IcingaDbActionsHook.php:118
#: sources.d/icingaweb2-module-cube/library/Cube/Web/ActionLinks.php:54
msgid "No action links have been provided for this cube"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:35
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:33
msgid "Show hosts status"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:36
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:43
msgid "This shows all matching hosts and their current state in Icinga DB Web"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:42
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:47
msgid "Show services status"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:34
msgid ""
"This shows all matching hosts and their current state in the monitoring "
"module"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:48
msgid ""
"This shows all matching services and their current state in the monitoring "
"module"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:69
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:32
msgid "Cube details"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:87
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:51
#, php-format
msgid "Cube: %s"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:111
msgid "Value"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:112
msgid "Severity"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:289
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:190
msgid "Hosts"
msgstr "Hosts"
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:293
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:194
msgid "Services"
msgstr "Servizi"
#~ msgid "- please choose -"
#~ msgstr "- prego scegliere -"
#~ msgid "Submit"
#~ msgstr "Invia a"
#~ msgid "Form has successfully been sent"
#~ msgstr "Il modulo è stato inviato con successo"

View File

@ -1,131 +0,0 @@
# Icinga - Japanese translation (ja_JP)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# papillon326 <udagawa@www2178ue.sakura.ne.jp>, 2019.
# chisatohasimoto <hasimoto@designet.co.jp>, 2019.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2020-04-27 14:54+0200\n"
"Last-Translator: papillon326 <udagawa@www2178ue.sakura.ne.jp>\n"
"Language-Team: \n"
"Language: ja_JP\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"
#: sources.d/icingaweb2-module-cube/application/controllers/HostsController.php:43
#: sources.d/icingaweb2-module-cube/application/controllers/ServicesController.php:43
msgid "Adjust Filter"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:82
msgid "+ Add a dimension"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:116
msgid "Slice/Filter"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:130
#, php-format
msgid "Remove dimension \"%s\""
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:140
#, php-format
msgid "Move dimension \"%s\" up"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:151
#, php-format
msgid "Move dimension \"%s\" down"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:170
msgid "New dimension has been added"
msgstr ""
#: sources.d/icingaweb2-module-cube/configuration.php:5
msgid "Cube"
msgstr ""
#: sources.d/icingaweb2-module-cube/configuration.php:5
msgid "Reporting"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Hook/IcingaDbActionsHook.php:118
#: sources.d/icingaweb2-module-cube/library/Cube/Web/ActionLinks.php:54
msgid "No action links have been provided for this cube"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:35
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:33
msgid "Show hosts status"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:36
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:43
msgid "This shows all matching hosts and their current state in Icinga DB Web"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:42
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:47
msgid "Show services status"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:34
msgid ""
"This shows all matching hosts and their current state in the monitoring "
"module"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:48
msgid ""
"This shows all matching services and their current state in the monitoring "
"module"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:69
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:32
msgid "Cube details"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:87
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:51
#, php-format
msgid "Cube: %s"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:111
msgid "Value"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:112
msgid "Severity"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:289
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:190
msgid "Hosts"
msgstr "ホスト"
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:293
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:194
msgid "Services"
msgstr "サービス"
#~ msgid "- please choose -"
#~ msgstr "- 選択してください -"
#~ msgid "Submit"
#~ msgstr "送信"
#~ msgid "Form has successfully been sent"
#~ msgstr "フォームは正常に送信されました"

View File

@ -1,119 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2025 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Icinga L10n be9bc90\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-04-03 08:30+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: sources.d/icingaweb2-module-cube/application/controllers/HostsController.php:43
#: sources.d/icingaweb2-module-cube/application/controllers/ServicesController.php:43
msgid "Adjust Filter"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:82
msgid "+ Add a dimension"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:116
msgid "Slice/Filter"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:130
#, php-format
msgid "Remove dimension \"%s\""
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:140
#, php-format
msgid "Move dimension \"%s\" up"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:151
#, php-format
msgid "Move dimension \"%s\" down"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:170
msgid "New dimension has been added"
msgstr ""
#: sources.d/icingaweb2-module-cube/configuration.php:5
msgid "Reporting"
msgstr ""
#: sources.d/icingaweb2-module-cube/configuration.php:6
msgid "Cube"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Hook/IcingaDbActionsHook.php:118
#: sources.d/icingaweb2-module-cube/library/Cube/Web/ActionLinks.php:54
msgid "No action links have been provided for this cube"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:35
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:33
msgid "Show hosts status"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:36
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:43
msgid "This shows all matching hosts and their current state in Icinga DB Web"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:42
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:47
msgid "Show services status"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:34
msgid ""
"This shows all matching hosts and their current state in the monitoring "
"module"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:48
msgid ""
"This shows all matching services and their current state in the monitoring "
"module"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:69
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:32
msgid "Cube details"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:87
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:51
#, php-format
msgid "Cube: %s"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:111
msgid "Value"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:112
msgid "Severity"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:290
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:190
msgid "Hosts"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:294
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:194
msgid "Services"
msgstr ""

View File

@ -1,117 +0,0 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2022 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
# Johannes Meyer <johannes.meyer@icinga.com>, 2022.
msgid ""
msgstr ""
"Project-Id-Version: Icinga L10n 1e71984\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: sources.d/icingaweb2-module-cube/application/controllers/HostsController.php:43
#: sources.d/icingaweb2-module-cube/application/controllers/ServicesController.php:43
msgid "Adjust Filter"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:82
msgid "+ Add a dimension"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:116
msgid "Slice/Filter"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:130
#, php-format
msgid "Remove dimension \"%s\""
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:140
#, php-format
msgid "Move dimension \"%s\" up"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:151
#, php-format
msgid "Move dimension \"%s\" down"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:170
msgid "New dimension has been added"
msgstr ""
#: sources.d/icingaweb2-module-cube/configuration.php:5
msgid "Cube"
msgstr ""
#: sources.d/icingaweb2-module-cube/configuration.php:5
msgid "Reporting"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Hook/IcingaDbActionsHook.php:118
#: sources.d/icingaweb2-module-cube/library/Cube/Web/ActionLinks.php:54
msgid "No action links have been provided for this cube"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:35
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:33
msgid "Show hosts status"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:36
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:43
msgid "This shows all matching hosts and their current state in Icinga DB Web"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:42
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:47
msgid "Show services status"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:34
msgid ""
"This shows all matching hosts and their current state in the monitoring "
"module"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:48
msgid ""
"This shows all matching services and their current state in the monitoring "
"module"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:69
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:32
msgid "Cube details"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:87
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:51
#, php-format
msgid "Cube: %s"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:111
msgid "Value"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:112
msgid "Severity"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:289
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:190
msgid "Hosts"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:293
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:194
msgid "Services"
msgstr ""

View File

@ -1,122 +0,0 @@
# Icinga - Brazilian Portuguese translation (pt_BR)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Carlos Cesario <carloscesario@gmail.com>, 2014.
# Thomas Gelf <thomas.gelf@icinga.com>, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2020-04-27 14:55+0200\n"
"Last-Translator: Carlos Cesario <carloscesario@gmail.com>\n"
"Language-Team: \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"
#: sources.d/icingaweb2-module-cube/application/controllers/HostsController.php:43
#: sources.d/icingaweb2-module-cube/application/controllers/ServicesController.php:43
msgid "Adjust Filter"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:82
msgid "+ Add a dimension"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:116
msgid "Slice/Filter"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:130
#, php-format
msgid "Remove dimension \"%s\""
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:140
#, php-format
msgid "Move dimension \"%s\" up"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:151
#, php-format
msgid "Move dimension \"%s\" down"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:170
msgid "New dimension has been added"
msgstr ""
#: sources.d/icingaweb2-module-cube/configuration.php:5
msgid "Cube"
msgstr ""
#: sources.d/icingaweb2-module-cube/configuration.php:5
msgid "Reporting"
msgstr "Relatórios"
#: sources.d/icingaweb2-module-cube/library/Cube/Hook/IcingaDbActionsHook.php:118
#: sources.d/icingaweb2-module-cube/library/Cube/Web/ActionLinks.php:54
msgid "No action links have been provided for this cube"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:35
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:33
msgid "Show hosts status"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:36
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:43
msgid "This shows all matching hosts and their current state in Icinga DB Web"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:42
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:47
msgid "Show services status"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:34
msgid ""
"This shows all matching hosts and their current state in the monitoring "
"module"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:48
msgid ""
"This shows all matching services and their current state in the monitoring "
"module"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:69
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:32
msgid "Cube details"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:87
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:51
#, php-format
msgid "Cube: %s"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:111
msgid "Value"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:112
msgid "Severity"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:289
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:190
msgid "Hosts"
msgstr "Hosts"
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:293
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:194
msgid "Services"
msgstr "Serviços"

View File

@ -1,129 +0,0 @@
# Icinga - Russian translation (ru_RU)
# Copyright (C) 2020 Icinga GmbH
# This file is distributed under the same license as the Icinga L10n package.
#
# Contributors:
# Yuri Konotopov <ykonotopov@gmail.com>, 2015.
# Dmitriy Q <dmitry@atsip.ru>, 2021.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-04-30 10:29+0000\n"
"PO-Revision-Date: 2021-11-03 12:23+0500\n"
"Last-Translator: Dmitriy Q <dmitry@atsip.ru>\n"
"Language-Team: TranslAster <https://github.com/translaster>\n"
"Language: ru_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<12 || n%100>14) ? 1 : 2);\n"
#: sources.d/icingaweb2-module-cube/application/controllers/HostsController.php:43
#: sources.d/icingaweb2-module-cube/application/controllers/ServicesController.php:43
msgid "Adjust Filter"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:82
msgid "+ Add a dimension"
msgstr "+ Добавить измерение"
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:116
msgid "Slice/Filter"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:130
#, php-format
msgid "Remove dimension \"%s\""
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:140
#, php-format
msgid "Move dimension \"%s\" up"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:151
#, php-format
msgid "Move dimension \"%s\" down"
msgstr ""
#: sources.d/icingaweb2-module-cube/application/forms/DimensionsForm.php:170
msgid "New dimension has been added"
msgstr ""
#: sources.d/icingaweb2-module-cube/configuration.php:5
msgid "Cube"
msgstr ""
#: sources.d/icingaweb2-module-cube/configuration.php:5
msgid "Reporting"
msgstr "Отчёты"
#: sources.d/icingaweb2-module-cube/library/Cube/Hook/IcingaDbActionsHook.php:118
#: sources.d/icingaweb2-module-cube/library/Cube/Web/ActionLinks.php:54
msgid "No action links have been provided for this cube"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:35
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:33
msgid "Show hosts status"
msgstr "Показать состояние узлов"
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:36
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:43
msgid "This shows all matching hosts and their current state in Icinga DB Web"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/IcingaDbActions.php:42
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:47
msgid "Show services status"
msgstr "Показать состояние служб"
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:34
msgid ""
"This shows all matching hosts and their current state in the monitoring "
"module"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/ProvidedHook/Cube/MonitoringActions.php:48
msgid ""
"This shows all matching services and their current state in the monitoring "
"module"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:69
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:32
msgid "Cube details"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:87
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:51
#, php-format
msgid "Cube: %s"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:111
msgid "Value"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:112
msgid "Severity"
msgstr ""
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:289
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:190
msgid "Hosts"
msgstr "Узлы"
#: sources.d/icingaweb2-module-cube/library/Cube/Web/Controller.php:293
#: sources.d/icingaweb2-module-cube/library/Cube/Web/IdoController.php:194
msgid "Services"
msgstr "Службы"
#~ msgid "- please choose -"
#~ msgstr "- пожалуйста выберите -"
#~ msgid "Submit"
#~ msgstr "Принять"

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