diff --git a/.github/ISSUE_TEMPLATE/ask-for-help.yaml b/.github/ISSUE_TEMPLATE/ask-for-help.yaml
deleted file mode 100644
index a708dbf23..000000000
--- a/.github/ISSUE_TEMPLATE/ask-for-help.yaml
+++ /dev/null
@@ -1,75 +0,0 @@
-name: "❓ Ask for help"
-description: "Submit any question related to Uptime Kuma"
-#title: "[Help] "
-labels: [help]
-body:
- - type: checkboxes
- id: no-duplicate-issues
- attributes:
- label: "⚠️ Please verify that this question has NOT been raised before."
- description: "Search in the issues sections by clicking [HERE](https://github.com/louislam/uptime-kuma/issues?q=)"
- options:
- - label: "I checked and didn't find similar issue"
- required: true
- - type: checkboxes
- attributes:
- label: "🛡️ Security Policy"
- description: Please review the security policy before reporting security related issues/bugs.
- options:
- - label: I agree to have read this project [Security Policy](https://github.com/louislam/uptime-kuma/security/policy)
- required: true
- - type: textarea
- id: steps-to-reproduce
- validations:
- required: true
- attributes:
- label: "📝 Describe your problem"
- description: "Please walk us through it step by step. Include all important details and add screenshots where appropriate"
- placeholder: "Describe what are you asking for..."
- - type: textarea
- id: error-msg
- validations:
- required: false
- attributes:
- label: "📝 Error Message(s) or Log"
- - type: input
- id: uptime-kuma-version
- attributes:
- label: "🐻 Uptime-Kuma Version"
- description: "Which version of Uptime-Kuma are you running? Please do NOT provide the docker tag such as latest or 1"
- placeholder: "Ex. 1.10.0"
- validations:
- required: true
- - type: input
- id: operating-system
- attributes:
- label: "💻 Operating System and Arch"
- description: "Which OS is your server/device running on? (For Replit, please do not report this bug)"
- placeholder: "Ex. Ubuntu 20.04 x86"
- validations:
- required: true
- - type: input
- id: browser-vendor
- attributes:
- label: "🌐 Browser"
- description: "Which browser are you running on? (For Replit, please do not report this bug)"
- placeholder: "Ex. Google Chrome 95.0.4638.69"
- validations:
- required: true
- - type: textarea
- id: deployment-info
- attributes:
- label: "🖥️ Deployment Environment"
- description: |
- examples:
- - **Runtime**: Docker 20.10.9 / nodejs 14.18.0 / K8S via ... v1.3.3 / ..
- - **Database**: sqlite/embedded mariadb/external mariadb
- - **Filesystem used to store the database on**: Windows/ZFS/btrfs/NFSv3 on a SSD/HDD/eMMC
- - **number of monitors**: 42
- value: |
- - Runtime:
- - Database:
- - Filesystem used to store the database on:
- - number of monitors:
- validations:
- required: true
diff --git a/.github/ISSUE_TEMPLATE/ask_for_help.yml b/.github/ISSUE_TEMPLATE/ask_for_help.yml
new file mode 100644
index 000000000..45bd046e5
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/ask_for_help.yml
@@ -0,0 +1,120 @@
+---
+name: ❓ Ask for help
+description: |
+ Submit any question related to Uptime Kuma
+#title: "[Help]"
+labels: ["help", "P3-low"]
+body:
+ - type: markdown
+ attributes:
+ value: |
+ 🚫 **We kindly ask you to refrain from pinging maintainers unless absolutely necessary. Pings are reserved for critical/urgent issues that require immediate attention.**
+
+ **Why**: Reserving pings for urgent matters ensures maintainers can prioritize critical tasks effectively
+
+ - type: checkboxes
+ id: no-duplicate-question
+ attributes:
+ label: ⚠️ Please verify that your question has not already been reported
+ description: |
+ To avoid duplicate reports, please search for any existing issues before submitting a new one. You can find the list of existing issues **[HERE](https://github.com/louislam/uptime-kuma/issues?q=is%3Aissue%20sort%3Acreated-desc%20)**.
+ options:
+ - label: |
+ I have searched the [existing issues](https://github.com/louislam/uptime-kuma/issues?q=is%3Aissue%20sort%3Acreated-desc%20) and found no similar reports.
+ required: true
+
+ - type: checkboxes
+ id: security-policy
+ attributes:
+ label: 🛡️ Security Policy
+ description: |
+ Please review and acknowledge the Security Policy before reporting any security-related issues or bugs. You can find the full Security Policy **[HERE](https://github.com/louislam/uptime-kuma/security/policy)**.
+ options:
+ - label: |
+ I have read and agree to Uptime Kuma's [Security Policy](https://github.com/louislam/uptime-kuma/security/policy).
+ required: true
+
+ - type: textarea
+ id: steps-to-reproduce
+ validations:
+ required: true
+ attributes:
+ label: 📝 Describe your problem
+ description: |
+ Please walk us through it step by step. Include all important details and add screenshots where appropriate
+ placeholder: |
+ Describe what are you asking for ...
+
+ - type: textarea
+ id: error-msg
+ attributes:
+ label: 📝 Error Message(s) or Log
+ description: |
+ Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
+ render: bash session
+ validations:
+ required: false
+
+ - type: input
+ id: uptime-kuma-version
+ attributes:
+ label: 🐻 Uptime-Kuma Version
+ description: |
+ What version of Uptime-Kuma are you running? Please do not provide Docker tags like `latest` or `1`.
+ placeholder: |
+ e.g., 1.23.16 or 2.0.0-beta.2
+ validations:
+ required: true
+
+ - type: input
+ id: operating-system
+ attributes:
+ label: 💻 Operating System and Arch
+ description: |
+ Which OS is your server/device running on? (For Replit, please do not report this bug)
+ placeholder: |
+ e.g., Ubuntu Server 24.04.2 LTS (GNU/Linux 6.8.0-55-generic x86_64)
+ validations:
+ required: true
+
+ - type: input
+ id: browser-vendor
+ attributes:
+ label: 🌐 Browser
+ description: |
+ Which browser are you running on? (For Replit, please do not report this bug)
+ placeholder: |
+ e.g., Google Chrome 134.0.6998.183 (Official Build) (64-bit)
+ validations:
+ required: true
+
+ - type: textarea
+ id: deployment-info
+ attributes:
+ label: 🖥️ Deployment Environment
+ description: |
+ Provide details about the deployment environment, including runtime components, databases, and storage configurations. This will
+ help assess the infrastructure and identify any potential compatibility requirements.
+
+ **Remove any fields that do not apply to your setup.**
+ value: |
+ - **Runtime Environment**:
+ - Docker: Version `X.X.X` (Build `Y.Y.Y`)
+ - Docker Compose: Version `X.X.X`
+ - Portainer (BE/CE): Version `X.X.X` (LTS: Yes/No)
+ - MariaDB: Version `X.X.X` (LTS: Yes/No)
+ - Node.js: Version `X.X.X` (LTS: Yes/No)
+ - Kubernetes (K3S/K8S): Version `X.X.X` (LTS: Yes/No, via `[method/tool]`)
+ - **Database**:
+ - SQLite: Embedded
+ - MariaDB: Embedded/External
+ - **Database Storage**:
+ - **Filesystem**:
+ - Linux: ext4/XFS/Btrfs/ZFS/F2FS
+ - macOS: APFS/ HFS+
+ - Windows: NTFS/ReFS
+ - **Storage Medium**: HDD/eMMC/SSD/NVMe
+ - **Uptime Kuma Setup**:
+ - Number of monitors: `X`
+ validations:
+ required: true
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml
deleted file mode 100644
index 9745a76a6..000000000
--- a/.github/ISSUE_TEMPLATE/bug_report.yaml
+++ /dev/null
@@ -1,100 +0,0 @@
-name: "🐛 Bug Report"
-description: "Submit a bug report to help us improve"
-#title: "[Bug] "
-labels: [bug]
-body:
- - type: textarea
- id: related-issues
- validations:
- required: true
- attributes:
- label: "📑 I have found these related issues/pull requests"
- description: "Search related issues by clicking [HERE](https://github.com/louislam/uptime-kuma/issues?q=) and explain what the difference between them or explain that you are unable to find any related issues"
- placeholder: "Related to #1 by also touching the ... system. They should not be merged because ..."
- - type: checkboxes
- attributes:
- label: "🛡️ Security Policy"
- description: Please review the security policy before reporting security related issues/bugs.
- options:
- - label: I agree to have read this project [Security Policy](https://github.com/louislam/uptime-kuma/security/policy)
- required: true
- - type: textarea
- id: description
- validations:
- required: false
- attributes:
- label: "Description"
- description: "You could also upload screenshots"
- - type: textarea
- id: steps-to-reproduce
- validations:
- required: true
- attributes:
- label: "👟 Reproduction steps"
- description: "How do you trigger this bug? Please walk us through it step by step. Include all important details and add screenshots where appropriate"
- placeholder: "..."
- - type: textarea
- id: expected-behavior
- validations:
- required: true
- attributes:
- label: "👀 Expected behavior"
- description: "What did you think would happen?"
- placeholder: "..."
- - type: textarea
- id: actual-behavior
- validations:
- required: true
- attributes:
- label: "😓 Actual Behavior"
- description: "What actually happen?"
- placeholder: "..."
- - type: input
- id: uptime-kuma-version
- attributes:
- label: "🐻 Uptime-Kuma Version"
- description: "Which version of Uptime-Kuma are you running? Please do NOT provide the docker tag such as latest or 1"
- placeholder: "Ex. 1.10.0"
- validations:
- required: true
- - type: input
- id: operating-system
- attributes:
- label: "💻 Operating System and Arch"
- description: "Which OS is your server/device running on? (For Replit, please do not report this bug)"
- placeholder: "Ex. Ubuntu 20.04 x64 "
- validations:
- required: true
- - type: input
- id: browser-vendor
- attributes:
- label: "🌐 Browser"
- description: "Which browser are you running on?"
- placeholder: "Ex. Google Chrome 95.0.4638.69"
- validations:
- required: true
- - type: textarea
- id: deployment-info
- attributes:
- label: "🖥️ Deployment Environment"
- description: |
- examples:
- - **Runtime**: Docker 20.10.9 / nodejs 18.17.1 / K8S via ... v1.3.3 / ..
- - **Database**: sqlite/embedded mariadb/external mariadb
- - **Filesystem used to store the database on**: Windows/ZFS/btrfs/NFSv3 on a SSD/HDD/eMMC
- - **number of monitors**: 42
- value: |
- - Runtime:
- - Database:
- - Filesystem used to store the database on:
- - number of monitors:
- validations:
- required: true
- - type: textarea
- id: logs
- attributes:
- label: "📝 Relevant log output"
- description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
- render: shell
- validations:
- required: false
diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml
new file mode 100644
index 000000000..31cd6faf6
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug_report.yml
@@ -0,0 +1,154 @@
+---
+name: 🐛 Bug Report
+description: |
+ Submit a bug report to help us improve
+#title: "[Bug]"
+labels: ["bug", "P2-medium"]
+body:
+ - type: markdown
+ attributes:
+ value: |
+ 🚫 **We kindly ask you to refrain from pinging maintainers unless absolutely necessary. Pings are reserved for critical/urgent issues that require immediate attention.**
+
+ **Why**: Reserving pings for urgent matters ensures maintainers can prioritize critical tasks effectively
+
+ - type: textarea
+ id: related-issues
+ validations:
+ required: true
+ attributes:
+ label: 📑 I have found these related issues/pull requests
+ description: |
+ Please search for related **[ISSUES](https://github.com/louislam/uptime-kuma/issues?q=is%3Aissue%20sort%3Acreated-desc)**
+ and **[PULL REQUESTS](https://github.com/louislam/uptime-kuma/pulls?q=is%3Apr+sort%3Acreated-desc+)**.
+ Explain the differences between them or clarify if you were unable to find any related issues/pull requests.
+ placeholder: |
+ Example: This relates to issue #1, which also affects the ... system. It should not be merged because ...
+
+ - type: checkboxes
+ id: security-policy
+ attributes:
+ label: 🛡️ Security Policy
+ description: |
+ Please review and acknowledge the Security Policy before reporting any security-related issues or bugs. You can find the full Security Policy **[HERE](https://github.com/louislam/uptime-kuma/security/policy)**.
+ options:
+ - label: |
+ I have read and agree to Uptime Kuma's [Security Policy](https://github.com/louislam/uptime-kuma/security/policy).
+ required: true
+
+ - type: textarea
+ id: description
+ validations:
+ required: false
+ attributes:
+ label: 📝 Description
+ description: |
+ You could also upload screenshots
+
+ - type: textarea
+ id: steps-to-reproduce
+ validations:
+ required: true
+ attributes:
+ label: 👟 Reproduction steps
+ description: |
+ How do you trigger this bug? Please walk us through it step by step. Include all important details and add screenshots where appropriate
+ placeholder: |
+ ...
+
+ - type: textarea
+ id: expected-behavior
+ validations:
+ required: true
+ attributes:
+ label: 👀 Expected behavior
+ description: |
+ What did you think would happen?
+ placeholder: |
+ ...
+
+ - type: textarea
+ id: actual-behavior
+ validations:
+ required: true
+ attributes:
+ label: 😓 Actual Behavior
+ description: |
+ What actually happen?
+ placeholder: |
+ ...
+
+ - type: input
+ id: uptime-kuma-version
+ attributes:
+ label: 🐻 Uptime-Kuma Version
+ description: |
+ What version of Uptime-Kuma are you running? Please do not provide Docker tags like `latest` or `1`.
+ placeholder: |
+ e.g., 1.23.16 or 2.0.0-beta.2
+ validations:
+ required: true
+
+ - type: input
+ id: operating-system
+ attributes:
+ label: 💻 Operating System and Arch
+ description: |
+ Which OS is your server/device running on? (For Replit, please do not
+ report this bug)
+ placeholder: |
+ e.g., Ubuntu Server 24.04.2 LTS (GNU/Linux 6.8.0-55-generic x86_64)
+ validations:
+ required: true
+
+ - type: input
+ id: browser-vendor
+ attributes:
+ label: 🌐 Browser
+ description: |
+ Which browser are you running on?
+ placeholder: |
+ e.g., Google Chrome 134.0.6998.183 (Official Build) (64-bit)
+ validations:
+ required: true
+
+ - type: textarea
+ id: deployment-info
+ attributes:
+ label: 🖥️ Deployment Environment
+ description: |
+ Provide details about the deployment environment, including runtime components, databases, and storage configurations. This will
+ help assess the infrastructure and identify any potential compatibility requirements.
+
+ **Remove any fields that do not apply to your setup.**
+ value: |
+ - **Runtime Environment**:
+ - Docker: Version `X.X.X` (Build `Y.Y.Y`)
+ - Docker Compose: Version `X.X.X`
+ - Portainer (BE/CE): Version `X.X.X` (LTS: Yes/No)
+ - MariaDB: Version `X.X.X` (LTS: Yes/No)
+ - Node.js: Version `X.X.X` (LTS: Yes/No)
+ - Kubernetes (K3S/K8S): Version `X.X.X` (LTS: Yes/No, via `[method/tool]`)
+ - **Database**:
+ - SQLite: Embedded
+ - MariaDB: Embedded/External
+ - **Database Storage**:
+ - **Filesystem**:
+ - Linux: ext4/XFS/Btrfs/ZFS/F2FS
+ - macOS: APFS/ HFS+
+ - Windows: NTFS/ReFS
+ - **Storage Medium**: HDD/eMMC/SSD/NVMe
+ - **Uptime Kuma Setup**:
+ - Number of monitors: `X`
+ validations:
+ required: true
+
+ - type: textarea
+ id: logs
+ attributes:
+ label: 📝 Relevant log output
+ description: |
+ Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
+ render: bash session
+ validations:
+ required: false
diff --git a/.github/ISSUE_TEMPLATE/feature_request.yaml b/.github/ISSUE_TEMPLATE/feature_request.yaml
deleted file mode 100644
index 531a2c25e..000000000
--- a/.github/ISSUE_TEMPLATE/feature_request.yaml
+++ /dev/null
@@ -1,66 +0,0 @@
-name: 🚀 Feature Request
-description: "Submit a proposal for a new feature"
-#title: "[Feature] "
-labels: [feature-request]
-body:
- - type: textarea
- id: related-issues
- validations:
- required: true
- attributes:
- label: "📑 I have found these related issues/pull requests"
- description: "Search related issues by clicking [HERE](https://github.com/louislam/uptime-kuma/issues?q=) and explain what the difference between them or explain that you are unable to find any related issues"
- placeholder: "Related to #1 by also touching the ... system. They should not be merged because ..."
- - type: dropdown
- id: feature-area
- attributes:
- label: "🏷️ Feature Request Type"
- description: "What kind of feature request is this?"
- multiple: true
- options:
- - API / automation options
- - New notification-provider
- - Change to existing notification-provider
- - New monitor
- - Change to existing monitor
- - Dashboard
- - Status-page
- - Maintenance
- - Deployment
- - Certificate expiry
- - Settings
- - Other
- validations:
- required: true
- - type: textarea
- id: feature-description
- validations:
- required: true
- attributes:
- label: "🔖 Feature description"
- description: "A clear and concise description of what the feature request is."
- placeholder: "You should add ..."
- - type: textarea
- id: solution
- validations:
- required: true
- attributes:
- label: "✔️ Solution"
- description: "A clear and concise description of what you want to happen."
- placeholder: "In my use-case, ..."
- - type: textarea
- id: alternatives
- validations:
- required: false
- attributes:
- label: "❓ Alternatives"
- description: "A clear and concise description of any alternative solutions or features you've considered."
- placeholder: "I have considered ..."
- - type: textarea
- id: additional-context
- validations:
- required: false
- attributes:
- label: "📝 Additional Context"
- description: "Add any other context or screenshots about the feature request here."
- placeholder: "..."
diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml
new file mode 100644
index 000000000..c9ec4d093
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/feature_request.yml
@@ -0,0 +1,106 @@
+---
+name: 🚀 Feature Request
+description: |
+ Submit a proposal for a new feature
+# title: "[Feature]"
+labels: ["feature-request", "P3-low"]
+body:
+ - type: markdown
+ attributes:
+ value: |
+ ## ❗Important Announcement
+
+ ### 🚧 Temporary Delay in Feature Requests and Pull Request Reviews
+
+ **At this time, we may be slower to respond to new feature requests and review pull requests. Existing requests and PRs will remain in the backlog but may not be prioritized immediately.**
+
+ - **Reason**: Our current focus is on addressing bugs, improving system performance, and implementing essential updates. This will help stabilize the project and ensure smoother management.
+ - **Impact**: While no new feature requests or pull requests are being outright rejected, there may be significant delays in reviews. We encourage the community to help by reviewing PRs or assisting other users in the meantime.
+ - **What You Can Do**: If you're interested in contributing, reviewing open PRs by following our [Review Guidelines](https://github.com/louislam/uptime-kuma/blob/master/.github/REVIEW_GUIDELINES.md) or offering help to other users is greatly appreciated. All feature requests and PRs will be revisited once the suspension period is lifted.
+
+ We appreciate your patience and understanding as we continue to improve Uptime Kuma.
+
+ ### 🚫 Please Avoid Unnecessary Pinging of Maintainers
+
+ **We kindly ask you to refrain from pinging maintainers unless absolutely necessary. Pings are reserved for critical/urgent pull requests that require immediate attention.**
+
+ **Why**: Reserving pings for urgent matters ensures maintainers can prioritize critical tasks effectively.
+ - type: textarea
+ id: related-issues
+ validations:
+ required: true
+ attributes:
+ label: 📑 I have found these related issues/pull requests
+ description: |
+ Please search for related **[ISSUES](https://github.com/louislam/uptime-kuma/issues?q=is%3Aissue%20sort%3Acreated-desc)**
+ and **[PULL REQUESTS](https://github.com/louislam/uptime-kuma/pulls?q=is%3Apr+sort%3Acreated-desc+)**.
+ Explain the differences between them or clarify if you were unable to find any related issues/pull requests.
+ placeholder: |
+ Example: This relates to issue #1, which also affects the ... system. It should not be merged because ...
+
+ - type: dropdown
+ id: feature-area
+ attributes:
+ label: 🏷️ Feature Request Type
+ description: |
+ What kind of feature request is this?
+ multiple: true
+ options:
+ - API / automation options
+ - New notification-provider
+ - Change to existing notification-provider
+ - New monitor
+ - Change to existing monitor
+ - Dashboard
+ - Status-page
+ - Maintenance
+ - Deployment
+ - Certificate expiry
+ - Settings
+ - Other
+ validations:
+ required: true
+
+ - type: textarea
+ id: feature-description
+ validations:
+ required: true
+ attributes:
+ label: 🔖 Feature description
+ description: |
+ A clear and concise description of what the feature request is.
+ placeholder: |
+ You should add ...
+
+ - type: textarea
+ id: solution
+ validations:
+ required: true
+ attributes:
+ label: ✔️ Solution
+ description: |
+ A clear and concise description of what you want to happen.
+ placeholder: |
+ In my use-case, ...
+
+ - type: textarea
+ id: alternatives
+ validations:
+ required: false
+ attributes:
+ label: ❓ Alternatives
+ description: |
+ A clear and concise description of any alternative solutions or features you've considered.
+ placeholder: |
+ I have considered ...
+
+ - type: textarea
+ id: additional-context
+ validations:
+ required: false
+ attributes:
+ label: 📝 Additional Context
+ description: |
+ Add any other context or screenshots about the feature request here.
+ placeholder: |
+ ...
diff --git a/.github/ISSUE_TEMPLATE/security_issue.yml b/.github/ISSUE_TEMPLATE/security_issue.yml
index 0104f9c3c..d49c0aaf5 100644
--- a/.github/ISSUE_TEMPLATE/security_issue.yml
+++ b/.github/ISSUE_TEMPLATE/security_issue.yml
@@ -1,19 +1,19 @@
---
-name: "🛡️ Security Issue"
+name: 🛡️ Security Issue
description: |
Notify Louis Lam about a security concern. Please do NOT include any sensitive details in this issue.
# title: "Security Issue"
-labels: [security]
+labels: ["security", "P1-high"]
assignees: [louislam]
body:
- - type: "markdown"
+ - type: markdown
attributes:
value: |
- ## **⚠️ Report a Security Vulnerability**
+ ## ❗ IMPORTANT: DO NOT SHARE VULNERABILITY DETAILS HERE
- ### **IMPORTANT: DO NOT SHARE VULNERABILITY DETAILS HERE**
+ ### ⚠️ Report a Security Vulnerability
- If you have discovered a security vulnerability, please report it securely using the GitHub Security Advisory.
+ **If you have discovered a security vulnerability, please report it securely using the GitHub Security Advisory.**
**Note**: This issue is only for notifying the maintainers of the repository, as the GitHub Security Advisory does not automatically send notifications.
@@ -34,12 +34,12 @@ body:
Once you've created your advisory, please share the URL below. This will notify Louis Lam and enable them to take the appropriate action.
- - type: "textarea"
+ - type: textarea
id: github-advisory-url
validations:
required: true
attributes:
- label: "GitHub Advisory URL for @louislam"
+ label: GitHub Advisory URL for @louislam
placeholder: |
Please paste the GitHub Advisory URL here. Only the URL is required.
Example: https://github.com/louislam/uptime-kuma/security/advisories/GHSA-8h5r-7t6l-q3kz
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 0dfb5faed..f639c395e 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -1,33 +1,122 @@
-⚠️⚠️⚠️ Since we do not accept all types of pull requests and do not want to waste your time. Please be sure that you have read pull request rules:
-https://github.com/louislam/uptime-kuma/blob/master/CONTRIBUTING.md#can-i-create-a-pull-request-for-uptime-kuma
+**⚠️ Please Note: We do not accept all types of pull requests, and we want to ensure we don’t waste your time. Before submitting, make sure you have read our pull request guidelines: [Pull Request Rules](https://github.com/louislam/uptime-kuma/blob/master/CONTRIBUTING.md#can-i-create-a-pull-request-for-uptime-kuma)**
-Tick the checkbox if you understand [x]:
-- [ ] I have read and understand the pull request rules.
+## ❗ Important Announcement
-# Description
+Click here for more details:
+
-Fixes #(issue)
+### 🚧 Temporary Delay in Feature Requests and Pull Request Reviews
-## Type of change
+**At this time, we may be slower to respond to new feature requests and review pull requests. Existing requests and PRs will remain in the backlog but may not be prioritized immediately.**
-Please delete any options that are not relevant.
+- **Reason**: Our current focus is on addressing bugs, improving system performance, and implementing essential updates. This will help stabilize the project and ensure smoother management.
+- **Impact**: While no new feature requests or pull requests are being outright rejected, there may be significant delays in reviews. We encourage the community to help by reviewing PRs or assisting other users in the meantime.
+- **What You Can Do**: If you're interested in contributing, reviewing open PRs by following our [Review Guidelines](https://github.com/louislam/uptime-kuma/blob/master/.github/REVIEW_GUIDELINES.md) or offering support to other users is greatly appreciated. All feature requests and PRs will be revisited once the suspension period is lifted.
-- Bug fix (non-breaking change which fixes an issue)
-- User interface (UI)
-- New feature (non-breaking change which adds functionality)
-- Breaking change (a fix or feature that would cause existing functionality to not work as expected)
-- Other
-- This change requires a documentation update
+We appreciate your patience and understanding as we continue to improve Uptime Kuma.
-## Checklist
+### 🚫 Please Avoid Unnecessary Pinging of Maintainers
-- [ ] My code follows the style guidelines of this project
-- [ ] I ran ESLint and other linters for modified files
-- [ ] I have performed a self-review of my own code and tested it
-- [ ] I have commented my code, particularly in hard-to-understand areas (including JSDoc for methods)
-- [ ] My changes generates no new warnings
-- [ ] My code needed automated testing. I have added them (this is optional task)
+**We kindly ask you to refrain from pinging maintainers unless absolutely necessary. Pings are reserved for critical/urgent pull requests that require immediate attention.**
-## Screenshots (if any)
+**Why**: Reserving pings for urgent matters ensures maintainers can prioritize critical tasks effectively.
-Please do not use any external image service. Instead, just paste in or drag and drop the image here, and it will be uploaded automatically.
+
+
+
+## 📋 Overview
+
+Provide a clear summary of the purpose and scope of this pull request:
+
+- **What problem does this pull request address?**
+
+ - Please provide a detailed explanation here.
+
+- **What features or functionality does this pull request introduce or enhance?**
+
+ - Please provide a detailed explanation here.
+
+## 🔄 Changes
+
+### 🛠️ Type of change
+
+
+
+- [ ] 🐛 Bugfix (a non-breaking change that resolves an issue)
+- [ ] ✨ New feature (a non-breaking change that adds new functionality)
+- [ ] ⚠️ Breaking change (a fix or feature that alters existing functionality in a way that could cause issues)
+- [ ] 🎨 User Interface (UI) updates
+- [ ] 📄 New Documentation (addition of new documentation)
+- [ ] 📄 Documentation Update (modification of existing documentation)
+- [ ] 📄 Documentation Update Required (the change requires updates to related documentation)
+- [ ] 🔧 Other (please specify):
+ - Provide additional details here.
+
+## 🔗 Related Issues
+
+
+
+- Relates to #issue-number
+- Resolves #issue-number
+- Fixes #issue-number
+
+## 📄 Checklist *
+
+
+
+- [ ] 🔍 My code adheres to the style guidelines of this project.
+- [ ] ✅ I ran ESLint and other code linters for modified files.
+- [ ] 🛠️ I have reviewed and tested my code.
+- [ ] 📝 I have commented my code, especially in hard-to-understand areas (e.g., using JSDoc for methods).
+- [ ] ⚠️ My changes generate no new warnings.
+- [ ] 🤖 My code needed automated testing. I have added them (this is an optional task).
+- [ ] 📄 Documentation updates are included (if applicable).
+- [ ] 🔒 I have considered potential security impacts and mitigated risks.
+- [ ] 🧰 Dependency updates are listed and explained.
+- [ ] 📚 I have read and understood the [Pull Request guidelines](https://github.com/louislam/uptime-kuma/blob/master/CONTRIBUTING.md#recommended-pull-request-guideline).
+
+## 📷 Screenshots or Visual Changes
+
+
+
+- **UI Modifications**: Highlight any changes made to the user interface.
+- **Before & After**: Include screenshots or comparisons (if applicable).
+
+| Event | Before | After |
+| ------------------ | --------------------- | -------------------- |
+| `UP` |  |  |
+| `DOWN` |  |  |
+| Certificate-expiry |  |  |
+| Testing |  |  |
+
+## ℹ️ Additional Context
+
+Provide any relevant details to assist reviewers in understanding the changes.
+
+Click here for more details:
+
+
+**Key Considerations**:
+
+- **Design decisions** – Key choices or trade-offs made during development.
+- **Alternative solutions** – Approaches considered but not implemented, along with reasons.
+- **Relevant links** – Specifications, discussions, or resources that provide context.
+- **Dependencies** – Related pull requests or issues that must be resolved before merging.
+- **Additional context** – Any other details that may help reviewers understand the changes.
+
+Provide details here
+
+## 💬 Requested Feedback
+
+
+
+- `Mention documents needing feedback here`
diff --git a/.github/REVIEW_GUIDELINES.md b/.github/REVIEW_GUIDELINES.md
new file mode 100644
index 000000000..089ae9d51
--- /dev/null
+++ b/.github/REVIEW_GUIDELINES.md
@@ -0,0 +1,224 @@
+# Uptime Kuma Review Guidelines
+
+> [!NOTE]
+> These review guidelines are a work in progress, and are frequently
+> updated and improved, so please check back frequently for the latest version.
+
+## Preparing for a PR Review
+
+### Read the PR description carefully
+
+Make sure you understand what the PR is trying to solve or implement. This could
+be a bug fix, a new feature, or a refactor.
+
+### Check the linked issues
+
+If the PR has a linked issue, read it to better understand the context and the
+reason for the change.
+
+### Check the test coverage
+
+Make sure relevant tests have been added or modified. If the PR adds new
+functionality, there should be tests covering the change.
+
+## General Review
+
+### Code formatting and style
+
+Check if the code adheres to the style guidelines of the project. Make sure
+there are no unused imports, variables, `console.log` for debugging in the PR.
+
+- [Project Style](../CONTRIBUTING.md#project-styles)
+- [Coding Style](../CONTRIBUTING.md#coding-styles)
+
+### Readability and maintainability
+
+Is the code easy to understand for other developers? Make sure complex parts are
+explained with comments about **_why_** something is done, and use clear names
+to show **_how_**. Are variables and functions well-named, and is there a
+consistent naming style? Also, check if the code is maintainable:
+
+- Is it unnecessarily complex? Could it be simplified?
+- Does it follow the **[Single Responsibility Principle (SRP)]**?
+
+[Single Responsibility Principle (SRP)]: https://www.geeksforgeeks.org/single-responsibility-in-solid-design-principle/
+
+### Documentation
+
+Is the PR well documented? Check if the descriptions of functions, parameters,
+and return values are present. Are there any changes needed to the README or
+other documentation, for example, if new features or configurations are
+introduced?
+
+## Functional Review
+
+### Testing
+
+Ensure that the new code is properly tested. This includes unit tests,
+integration tests, and if necessary, end-to-end tests.
+
+### Test results
+
+Did all tests pass in the CI pipeline (e.g., GitHub Actions, Travis, CircleCI)?
+
+### Testing in different environments
+
+If the changes depend on certain environments or configurations, verify that the
+code has been tested in various environments (e.g., local development, staging,
+production).
+
+- [How to test Pull Requests](https://github.com/louislam/uptime-kuma/wiki/Test-Pull-Requests)
+
+### Edge cases and regressions
+
+- Are there test cases for possible edge cases?
+- Could this change introduce regressions in other parts of the system?
+
+## Security
+
+### Security issues
+
+Check for potential security problems, such as SQL injection, XSS attacks, or
+unsafe API calls. Are there passwords, tokens, or other sensitive data left in
+the code by mistake?
+
+### Authentication and authorization
+
+Is access to sensitive data or functionality properly secured? Check that the
+correct authorization and authentication mechanisms are in place.
+
+### Security Best Practices
+
+- Ensure that the code is free from common vulnerabilities like **SQL
+ injection**, **XSS attacks**, and **insecure API calls**.
+- Check for proper encryption of sensitive data, and ensure that **passwords**
+ or **API tokens** are not hardcoded in the code.
+
+## Performance
+
+### Performance impact
+
+Check if the changes negatively impact performance. This can include factors
+like load times, memory usage, or other performance aspects.
+
+### Use of external libraries
+
+- Have the right libraries been chosen?
+- Are there unnecessary dependencies that might reduce performance or increase
+ code complexity?
+- Are these dependencies actively maintained and free of known vulnerabilities?
+
+### Performance Best Practices
+
+- **Measure performance** using tools like Lighthouse or profiling libraries.
+- **Avoid unnecessary dependencies** that may bloat the codebase.
+- Ensure that the **code does not degrade the user experience** (e.g., by
+ increasing load times or memory consumption).
+
+## Compliance and Integration
+
+### Alignment with the project
+
+Are the changes consistent with the project goals and requirements? Ensure the
+PR aligns with the architecture and design principles of the project.
+
+### Integration
+
+If the PR depends on other PRs or changes, verify that they integrate well with
+the rest of the project. Ensure the code does not cause conflicts with other
+active PRs.
+
+### Backward compatibility
+
+Does the change break compatibility with older versions of the software or
+dependencies? If so, is there a migration plan in place?
+
+## Logging and Error Handling
+
+### Proper error handling
+
+- Are errors properly caught and handled instead of being silently ignored?
+- Are exceptions used appropriately?
+
+### Logging
+
+- Is sufficient logging included for debugging and monitoring?
+- Is there excessive logging that could affect performance?
+
+## Accessibility (for UI-related changes)
+
+If the PR affects the user interface, ensure that it meets accessibility
+standards:
+
+- Can users navigate using only the keyboard?
+- Are screen readers supported?
+- Is there proper color contrast for readability?
+- Are there **WCAG** (Web Content Accessibility Guidelines) compliance issues?
+- Use tools like **Axe** or **Lighthouse** to evaluate accessibility.
+
+## Providing Feedback
+
+### Constructive feedback
+
+Provide clear, constructive feedback on what is good and what can be improved.
+If improvements are needed, be specific about what should change.
+
+### Clarity and collaboration
+
+Ensure your feedback is friendly and open, so the team member who submitted the
+PR feels supported and motivated to make improvements.
+
+For Maintainers only (click to expand)
+
+
+## Go/No-Go Decision
+
+### Go
+
+If the code has no issues and meets the project requirements, approve it (and
+possibly merge it).
+
+### No-Go
+
+If there are significant issues, such as missing tests, security
+vulnerabilities, or performance problems, request the necessary changes before
+the PR can be approved. Some examples of **significant issues** include:
+
+- Missing tests for new functionality.
+- Identified **security vulnerabilities**.
+- Code changes that break **backward compatibility** without a proper migration
+ plan.
+- Code that causes **major performance regressions** (e.g., high CPU/memory
+ usage).
+
+## After the Review
+
+### Reordering and merging
+
+Once the necessary changes have been made and the PR is approved, the code can
+be merged into the main branch (e.g., `main` or `master`).
+
+### Testing after merging
+
+Ensure that the build passes after merging the PR, and re-test the functionality
+in the production environment if necessary.
+
+## Follow-up
+
+### Communication with team members
+
+If the PR has long-term technical or functional implications, communicate the
+changes to the team.
+
+### Monitoring
+
+Continue monitoring the production environment for any unexpected issues that
+may arise after the code has been merged.
+
+
+
+
+---
+
+This process ensures that PRs are systematically and thoroughly reviewed,
+improving overall code quality.
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
index 746334e6f..34591ce1c 100644
--- a/CODE_OF_CONDUCT.md
+++ b/CODE_OF_CONDUCT.md
@@ -6,8 +6,8 @@ We as members, contributors, and leaders pledge to make participation in our
community a harassment-free experience for everyone, regardless of age, body
size, visible or invisible disability, ethnicity, sex characteristics, gender
identity and expression, level of experience, education, socio-economic status,
-nationality, personal appearance, race, religion, or sexual identity
-and orientation.
+nationality, personal appearance, race, caste, color, religion, or sexual
+identity and orientation.
We pledge to act and interact in ways that contribute to an open, welcoming,
diverse, inclusive, and healthy community.
@@ -17,23 +17,23 @@ diverse, inclusive, and healthy community.
Examples of behavior that contributes to a positive environment for our
community include:
-* Demonstrating empathy and kindness toward other people
-* Being respectful of differing opinions, viewpoints, and experiences
-* Giving and gracefully accepting constructive feedback
-* Accepting responsibility and apologizing to those affected by our mistakes,
+- Demonstrating empathy and kindness toward other people
+- Being respectful of differing opinions, viewpoints, and experiences
+- Giving and gracefully accepting constructive feedback
+- Accepting responsibility and apologizing to those affected by our mistakes,
and learning from the experience
-* Focusing on what is best not just for us as individuals, but for the
- overall community
+- Focusing on what is best not just for us as individuals, but for the overall
+ community
Examples of unacceptable behavior include:
-* The use of sexualized language or imagery, and sexual attention or
- advances of any kind
-* Trolling, insulting or derogatory comments, and personal or political attacks
-* Public or private harassment
-* Publishing others' private information, such as a physical or email
- address, without their explicit permission
-* Other conduct which could reasonably be considered inappropriate in a
+- The use of sexualized language or imagery, and sexual attention or advances of
+ any kind
+- Trolling, insulting or derogatory comments, and personal or political attacks
+- Public or private harassment
+- Publishing others' private information, such as a physical or email address,
+ without their explicit permission
+- Other conduct which could reasonably be considered inappropriate in a
professional setting
## Enforcement Responsibilities
@@ -52,7 +52,7 @@ decisions when appropriate.
This Code of Conduct applies within all community spaces, and also applies when
an individual is officially representing the community in public spaces.
-Examples of representing our community include using an official e-mail address,
+Examples of representing our community include using an official email address,
posting via an official social media account, or acting as an appointed
representative at an online or offline event.
@@ -60,8 +60,8 @@ representative at an online or offline event.
Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported to the community leaders responsible for enforcement at
-uptime@kuma.pet.
-All complaints will be reviewed and investigated promptly and fairly.
+. All complaints will be reviewed and investigated promptly and
+fairly.
All community leaders are obligated to respect the privacy and security of the
reporter of any incident.
@@ -82,15 +82,15 @@ behavior was inappropriate. A public apology may be requested.
### 2. Warning
-**Community Impact**: A violation through a single incident or series
-of actions.
+**Community Impact**: A violation through a single incident or series of
+actions.
**Consequence**: A warning with consequences for continued behavior. No
interaction with the people involved, including unsolicited interaction with
those enforcing the Code of Conduct, for a specified period of time. This
includes avoiding interactions in community spaces as well as external channels
-like social media. Violating these terms may lead to a temporary or
-permanent ban.
+like social media. Violating these terms may lead to a temporary or permanent
+ban.
### 3. Temporary Ban
@@ -109,20 +109,24 @@ Violating these terms may lead to a permanent ban.
standards, including sustained inappropriate behavior, harassment of an
individual, or aggression toward or disparagement of classes of individuals.
-**Consequence**: A permanent ban from any sort of public interaction within
-the community.
+**Consequence**: A permanent ban from any sort of public interaction within the
+community.
## Attribution
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
-version 2.0, available at
-https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
+version 2.1, available at
+[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1].
Community Impact Guidelines were inspired by [Mozilla's code of conduct
-enforcement ladder](https://github.com/mozilla/diversity).
-
-[homepage]: https://www.contributor-covenant.org
+enforcement ladder][Mozilla CoC].
For answers to common questions about this code of conduct, see the FAQ at
-https://www.contributor-covenant.org/faq. Translations are available at
-https://www.contributor-covenant.org/translations.
+[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at
+[https://www.contributor-covenant.org/translations][translations].
+
+[homepage]: https://www.contributor-covenant.org
+[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
+[Mozilla CoC]: https://github.com/mozilla/diversity
+[FAQ]: https://www.contributor-covenant.org/faq
+[translations]: https://www.contributor-covenant.org/translations
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 2e10be48c..968f0dc51 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,16 +1,18 @@
# Project Info
-First of all, I want to thank everyone who has submitted issues or shared pull requests for Uptime Kuma.
-I never thought the GitHub community would be so nice!
-Because of this, I also never thought that other people would actually read and edit my code.
-Parts of the code are not very well-structured or commented, sorry about that.
+First of all, I want to thank everyone who has submitted issues or shared pull
+requests for Uptime Kuma. I never thought the GitHub community would be so nice!
+Because of this, I also never thought that other people would actually read and
+edit my code. Parts of the code are not very well-structured or commented, sorry
+about that.
-The project was created with `vite.js` and is written in `vue3`.
-Our backend lives in the `server`-directory and mostly communicates via websockets.
-Both frontend and backend share the same `package.json`.
+The project was created with `vite.js` and is written in `vue3`. Our backend
+lives in the `server`-directory and mostly communicates via websockets. Both
+frontend and backend share the same `package.json`.
-For production, the frontend is built into the `dist`-directory and the server (`express.js`) exposes the `dist` directory as the root of the endpoint.
-For development, we run vite in development mode on another port.
+For production, the frontend is built into the `dist`-directory and the server
+(`express.js`) exposes the `dist` directory as the root of the endpoint. For
+development, we run vite in development mode on another port.
## Directories
@@ -25,193 +27,437 @@ For development, we run vite in development mode on another port.
- `src` (Frontend source code)
- `test` (unit test)
-## Can I create a pull request for Uptime Kuma?
+## Can I Create a Pull Request for Uptime Kuma?
-Yes or no, it depends on what you will try to do.
-Both yours and our maintainers' time is precious, and we don't want to waste either.
+Whether or not you can create a pull request depends on the nature of your
+contribution. We value both your time and our maintainers' time, so we want to
+make sure it's spent efficiently.
-If you have any questions about any process/.. is not clear, you are likely not alone => please ask them ^^
+If you're unsure about any process or step, you're probably not the only one
+with that question—please feel free to ask. We're happy to help!
-Different guidelines exist for different types of pull requests (PRs):
-- security fixes
+Different types of pull requests (PRs) may have different guidelines, so be sure
+to review the appropriate one for your contribution.
+
+- Security Fixes (click to expand)
-
+
Submitting security fixes is something that may put the community at risk.
- Please read through our [security policy](SECURITY.md) and submit vulnerabilities via an [advisory](https://github.com/louislam/uptime-kuma/security/advisories/new) + [issue](https://github.com/louislam/uptime-kuma/issues/new?assignees=&labels=help&template=security.md) instead.
- We encourage you to submit how to fix a vulnerability if you know how to, this is not required.
- Following the security policy allows us to properly test, fix bugs.
- This review allows us to notice, if there are any changes necessary to unrelated parts like the documentation.
+ Please read through our [security policy](SECURITY.md) and submit
+ vulnerabilities via an [advisory] + [issue] instead. We encourage you to
+ submit how to fix a vulnerability if you know how to, this is not required.
+ Following the security policy allows us to properly test, fix bugs. This
+ review allows us to notice, if there are any changes necessary to unrelated
+ parts like the documentation.
[**PLEASE SEE OUR SECURITY POLICY.**](SECURITY.md)
-
+
+ [advisory]: https://github.com/louislam/uptime-kuma/security/advisories/new
+ [issue]:
+ https://github.com/louislam/uptime-kuma/issues/new?template=security_issue.yml
+
-
+
If you come across a bug and think you can solve, we appreciate your work.
Please make sure that you follow these rules:
- - keep the PR as small as possible, fix only one thing at a time => keeping it reviewable
- - test that your code does what you claim it does.
-
- Because maintainer time is precious, junior maintainers may merge uncontroversial PRs in this area.
-
-
-- translations / internationalisation (i18n)
-
-
- We use weblate to localise this project into many languages.
- If you are unhappy with a translation this is the best start.
- On how to translate using weblate, please see [these instructions](https://github.com/louislam/uptime-kuma/blob/master/src/lang/README.md).
-
- There are two cases in which a change cannot be done in weblate and requires a PR:
- - A text may not be currently localisable. In this case, **adding a new language key** via `$t("languageKey")` might be nessesary
- - language keys need to be **added to `en.json`** to be visible in weblate. If this has not happened, a PR is appreciated.
- - **Adding a new language** requires a new file see [these instructions](https://github.com/louislam/uptime-kuma/blob/master/src/lang/README.md)
-
- Because maintainer time is precious, junior maintainers may merge uncontroversial PRs in this area.
-
-
-- new notification providers
-
-
- To set up a new notification provider these files need to be modified/created:
- - `server/notification-providers/PROVIDER_NAME.js` is where the heart of the notification provider lives.
- - Both `monitorJSON` and `heartbeatJSON` can be `null` for some events.
- If both are `null`, this is a general testing message, but if just `heartbeatJSON` is `null` this is a certificate expiry.
- - Please wrap the axios call into a
- ```js
- try {
- let result = await axios.post(...);
- if (result.status === ...) ...
- } catch (error) {
- this.throwGeneralAxiosError(error);
- }
- ```
- - `server/notification.js` is where the backend of the notification provider needs to be registered.
- *If you have an idea how we can skip this step, we would love to hear about it ^^*
- - `src/components/NotificationDialog.vue` you need to decide if the provider is a regional or a global one and add it with a name to the respective list
- - `src/components/notifications/PROVIDER_NAME.vue` is where the frontend of each provider lives.
- Please make sure that you have:
- - used `HiddenInput` for secret credentials
- - included all the necessary helptexts/placeholder/.. to make sure the notification provider is simple to setup for new users.
- - include all translations (`{{ $t("Translation key") }}`, [`i18n-t keypath="Translation key">`](https://vue-i18n.intlify.dev/guide/advanced/component.html)) in `src/lang/en.json` to enable our translators to translate this
- - `src/components/notifications/index.js` is where the frontend of the provider needs to be registered.
- *If you have an idea how we can skip this step, we would love to hear about it ^^*
- Offering notifications is close to the core of what we are as an uptime monitor.
- Therefore, making sure that they work is also really important.
- Because testing notification providers is quite time intensive, we mostly offload this onto the person contributing a notification provider.
-
- To make sure you have tested the notification provider, please include screenshots of the following events in the pull-request description:
- - `UP`/`DOWN`
- - Certificate Expiry via https://expired.badssl.com/
- - Testing (the test button on the notification provider setup page)
-
- Using the following way to format this is encouraged:
- ```md
- | Event | Before | After |
- ------------------
- | `UP` | paste-image-here | paste-image-here |
- | `DOWN` | paste-image-here | paste-image-here |
- | Certificate-expiry | paste-image-here | paste-image-here |
- | Testing | paste-image-here | paste-image-here |
+ - keep the PR as small as possible, fix only one thing at a time => keeping it
+ reviewable
+ - test that your code does what you claim it does.
+
+ Because maintainer time is precious, junior maintainers may merge
+ uncontroversial PRs in this area.
+
+
+
+ We use weblate to localise this project into many languages. If you are
+ unhappy with a translation this is the best start. On how to translate using
+ weblate, please see
+ [these instructions](https://github.com/louislam/uptime-kuma/blob/master/src/lang/README.md).
+
+ There are two cases in which a change cannot be done in weblate and requires a
+ PR:
+
+ - A text may not be currently localisable. In this case, **adding a new
+ language key** via `$t("languageKey")` might be nessesary
+ - language keys need to be **added to `en.json`** to be visible in weblate. If
+ this has not happened, a PR is appreciated.
+ - **Adding a new language** requires a new file see
+ [these instructions](https://github.com/louislam/uptime-kuma/blob/master/src/lang/README.md)
+
+ Because maintainer time is precious, junior maintainers may merge
+ uncontroversial PRs in this area.
+
+
+
+
+- New Notification Providers (click to expand)
+
+
+ To set up a new notification provider these files need to be modified/created:
+
+ - `server/notification-providers/PROVIDER_NAME.js` is where the heart of the
+ notification provider lives.
+
+ - Both `monitorJSON` and `heartbeatJSON` can be `null` for some events. If
+
+ both are `null`, this is a general testing message, but if just
+ `heartbeatJSON` is `null` this is a certificate expiry.
+
+ - Please wrap the axios call into a
+
+ ```js
+ try {
+ let result = await axios.post(...);
+ if (result.status === ...) ...
+ } catch (error) {
+ this.throwGeneralAxiosError(error);
+ }
```
- Because maintainer time is precious, junior maintainers may merge uncontroversial PRs in this area.
+ - `server/notification.js` is where the backend of the notification provider
+ needs to be registered. _If you have an idea how we can skip this step, we
+ would love to hear about it ^^_
+
+ - `src/components/NotificationDialog.vue` you need to decide if the provider
+ is a regional or a global one and add it with a name to the respective list
+
+ - `src/components/notifications/PROVIDER_NAME.vue` is where the frontend of
+ each provider lives. Please make sure that you have:
+
+ - used `HiddenInput` for secret credentials
+ - included all the necessary helptexts/placeholder/.. to make sure the
+
+ notification provider is simple to setup for new users. - include all
+ translations (`{{ $t("Translation key") }}`,
+ [`i18n-t keypath="Translation key">`](https://vue-i18n.intlify.dev/guide/advanced/component.html))
+ in `src/lang/en.json` to enable our translators to translate this
+
+ - `src/components/notifications/index.js` is where the frontend of the
+ provider needs to be registered. _If you have an idea how we can skip this
+ step, we would love to hear about it ^^_
+
+ Offering notifications is close to the core of what we are as an uptime
+ monitor. Therefore, making sure that they work is also really important.
+ Because testing notification providers is quite time intensive, we mostly
+ offload this onto the person contributing a notification provider.
+
+ To make sure you have tested the notification provider, please include
+ screenshots of the following events in the pull-request description:
+
+ - `UP`/`DOWN`
+ - Certificate Expiry via
+ - Testing (the test button on the notification provider setup page)
+
+
+
+ Using the following way to format this is encouraged:
+
+ ```md
+ | Event | Before | After |
+ | ------------------ | --------------------- | -------------------- |
+ | `UP` |  |  |
+ | `DOWN` |  |  |
+ | Certificate-expiry |  |  |
+ | Testing |  |  |
+ ```
+
+ Because maintainer time is precious, junior maintainers may merge
+ uncontroversial PRs in this area.
+
-- new monitoring types
+
+- New Monitoring Types (click to expand)
To set up a new notification provider these files need to be modified/created:
- - `server/monitor-types/MONITORING_TYPE.js` is the core of each monitor.
- the `async check(...)`-function should:
- - throw an error for each fault that is detected with an actionable error message
- - in the happy-path, you should set `heartbeat.msg` to a successful message and set `heartbeat.status = UP`
- - `server/uptime-kuma-server.js` is where the monitoring backend needs to be registered.
- *If you have an idea how we can skip this step, we would love to hear about it ^^*
+
+ - `server/monitor-types/MONITORING_TYPE.js` is the core of each monitor. the
+ `async check(...)`-function should:
+
+ - throw an error for each fault that is detected with an actionable error
+
+ message - in the happy-path, you should set `heartbeat.msg` to a successful
+ message and set `heartbeat.status = UP`
+
+ - `server/uptime-kuma-server.js` is where the monitoring backend needs to be
+ registered. _If you have an idea how we can skip this step, we would love to
+ hear about it ^^_
+
- `src/pages/EditMonitor.vue` is the shared frontend users interact with.
- Please make sure that you have:
- - used `HiddenInput` for secret credentials
- - included all the necessary helptexts/placeholder/.. to make sure the notification provider is simple to setup for new users.
- - include all translations (`{{ $t("Translation key") }}`, [`i18n-t keypath="Translation key">`](https://vue-i18n.intlify.dev/guide/advanced/component.html)) in `src/lang/en.json` to enable our translators to translate this
- -
+ Please make sure that you have: - used `HiddenInput` for secret
+ credentials - included all the necessary helptexts/placeholder/.. to make
+ sure the notification provider is simple to setup for new users. - include
+ all translations (`{{ $t("Translation key") }}`,
+ [`i18n-t keypath="Translation key">`](https://vue-i18n.intlify.dev/guide/advanced/component.html))
+ in `src/lang/en.json` to enable our translators to translate this
+ Because maintainer time is precious, junior maintainers may merge
+ uncontroversial PRs in this area.
- Because maintainer time is precious, junior maintainers may merge uncontroversial PRs in this area.
-
-
-- new features/ major changes / breaking bugfixes
-
-
- be sure to **create an empty draft pull request or open an issue, so we can have a discussion first**.
- This is especially important for a large pull request or when you don't know if it will be merged or not.
-
- Because of the large impact of this work, only senior maintainers may merge PRs in this area.
-The following rules are essential for making your PR mergable:
-- Merging multiple issues by a huge PR is more difficult to review and causes conflicts with other PRs. Please
+- New Features / Major Changes / Breaking Bugfixes (click to expand)
+
+
+ be sure to **create an empty draft pull request or open an issue, so we can
+ have a discussion first**. This is especially important for a large pull
+ request or when you don't know if it will be merged or not.
+
+ Because of the large impact of this work, only senior maintainers may
+ merge PRs in this area.
+
+
+
+
+- Pull Request Guidelines (click to expand)
+
+
+ ## Steps to Submit a Pull Request
+
+ 1. **Fork** the [Uptime-Kuma repository].
+
+ [Uptime-Kuma repository]: https://github.com/louislam/uptime-kuma/
+
+ 2. **Clone** your forked repository to your local machine.
+ 3. **Create a new branch** for your changes (e.g.,
+ `feature/add-new-notification-provider-signal`).
+ 4. **Initiate a discussion before making major changes** by creating an empty
+ commit:
+
+ ```sh
+ git commit -m "" --allow-empty
+ ```
+
+ 5. **Push** your branch to your forked repository.
+ 6. **Open a pull request** using this link: [Compare & Pull Request].
+
+ [Compare & Pull Request]: https://github.com/louislam/uptime-kuma/compare/
+
+ 7. **Select the correct source and target branches**.
+ 8. **Link to related issues** for context.
+ 9. **Provide a clear and concise description** explaining the changes and
+ their purpose.
+
+ - **Type of changes**
+
+ - Bugfix (a non-breaking change that resolves an issue)
+ - New feature (a non-breaking change that adds new functionality)
+ - Breaking change (a fix or feature that alters existing functionality in a
+ way that could cause issues)
+ - User Interface (UI) updates
+ - New Documentation (addition of new documentation)
+ - Documentation Update (modification of existing documentation)
+ - Documentation Update Required (the change requires updates to related
+ documentation)
+ - Other (please specify):
+ - Provide additional details here.
+
+ - **Checklist**
+
+ - My code adheres to the style guidelines of this project.
+ - I ran ESLint and other code linters for modified files.
+ - I have reviewed and tested my code.
+ - I have commented my code, especially in hard-to-understand areas (e.g.,
+ using JSDoc for methods).
+ - My changes generate no new warnings.
+ - My code needed automated testing. I have added them (this is an optional
+ task).
+ - Documentation updates are included (if applicable).
+ - I have considered potential security impacts and mitigated risks.
+ - Dependency updates are listed and explained.
+ - I have read and understood the
+ [Pull Request guidelines](#recommended-pull-request-guideline).
+
+ 10. **When publishing your PR, set it as a** `Draft pull request` **to allow
+ for review and prevent automatic merging.**
+ 11. **Maintainers will assign relevant labels** (e.g., `A:maintenance`,
+ `A:notifications`).
+ 12. **Complete the PR checklist**, ensuring that:
+
+ - Documentation is updated if necessary.
+ - Tests are written or updated.
+ - CI/CD checks pass successfully.
+
+ 13. **Request feedback** from team members to refine your changes before the
+ final review.
+
+ ## When Can You Change the PR Status to "Ready for Review"?
+
+ A PR should remain in **draft status** until all tasks are completed. Only
+ change the status to **Ready for Review** when:
+
+ - You have implemented all planned changes.
+ - You have addressed all feedback.
+ - Your code is fully tested and ready for integration.
+ - You have updated or created the necessary tests.
+ - You have verified that CI/CD checks pass successfully.
+
+
+
+ A **work-in-progress (WIP) PR** must stay in **draft status** until everything
+ is finalized.
+
+ Since maintainer time is valuable, junior maintainers may merge
+ uncontroversial PRs.
+
+
+
+
+## The following rules are essential for making your PR mergable
+
+- Merging multiple issues by a huge PR is more difficult to review and causes
+ conflicts with other PRs. Please
+
- (if possible) **create one PR for one issue** or
- - (if not possible) **explain which issues a PR addresses and why this PR should not be broken apart**
-- Make sure your **PR passes our continuous integration**.
- PRs will not be merged unless all CI-Checks are green.
-- **Breaking changes** (unless for a good reason and discussed beforehand) will not get merged / not get merged quickly.
- Such changes require a major version release.
-- **Test your code** before submitting a PR.
- Buggy PRs will not be merged.
+ - (if not possible) **explain which issues a PR addresses and why this PR
+ should not be broken apart**
+
+- Make sure your **PR passes our continuous integration**. PRs will not be
+ merged unless all CI-Checks are green.
+- **Breaking changes** (unless for a good reason and discussed beforehand) will
+ not get merged / not get merged quickly. Such changes require a major version
+ release.
+- **Test your code** before submitting a PR. Buggy PRs will not be merged.
- Make sure the **UI/UX is close to Uptime Kuma**.
-- **Think about the maintainability**:
- Don't add functionality that is completely **out of scope**.
- Keep in mind that we need to be able to maintain the functionality.
+- **Think about the maintainability**: Don't add functionality that is
+ completely **out of scope**. Keep in mind that we need to be able to maintain
+ the functionality.
- Don't modify or delete existing logic without a valid reason.
- Don't convert existing code into other programming languages for no reason.
-I ([@louislam](https://github.com/louislam)) have the final say.
-If your pull request does not meet my expectations, I will reject it, no matter how much time you spent on it.
-Therefore, it is essential to have a discussion beforehand.
+I ([@louislam](https://github.com/louislam)) have the final say. If your pull
+request does not meet my expectations, I will reject it, no matter how much time
+you spent on it. Therefore, it is essential to have a discussion beforehand.
-I will assign your pull request to a [milestone](https://github.com/louislam/uptime-kuma/milestones), if I plan to review and merge it.
+I will assign your pull request to a [milestone], if I plan to review and merge
+it.
-Please don't rush or ask for an ETA.
-We have to understand the pull request, make sure it has no breaking changes and stick to the vision of this project, especially for large pull requests.
+[milestone]: https://github.com/louislam/uptime-kuma/milestones
+Please don't rush or ask for an ETA. We have to understand the pull request,
+make sure it has no breaking changes and stick to the vision of this project,
+especially for large pull requests.
-## I'd like to work on an issue. How do I do that?
+## I'd Like to Work on an Issue. How Do I Do That?
-We have found that assigning people to issues is management-overhead that we don't need.
-A short comment that you want to try your hand at this issue is appreciated to save other devs time.
-If you come across any problem during development, feel free to leave a comment with what you are stuck on.
+We have found that assigning people to issues is unnecessary management
+overhead. Instead, a short comment stating that you want to work on an issue is
+appreciated, as it saves time for other developers. If you encounter any
+problems during development, feel free to leave a comment describing what you
+are stuck on.
### Recommended Pull Request Guideline
-Before diving deep into coding, having a discussion first by creating an empty pull request for discussion is preferred.
-The rationale behind this is that we can align the direction and scope of the feature to eliminate any conflicts with existing and planned work, and can help by pointing out any potential pitfalls.
+Before jumping into coding, it's recommended to initiate a discussion by
+creating an empty pull request. This approach allows us to align on the
+direction and scope of the feature, ensuring it doesn't conflict with existing
+or planned work. It also provides an opportunity to identify potential pitfalls
+early on, helping to avoid issues down the line.
-1. Fork the project
-2. Clone your fork repo to local
-3. Create a new branch
-4. Create an empty commit: `git commit -m "" --allow-empty`
-5. Push to your fork repo
-6. Prepare a pull request: https://github.com/louislam/uptime-kuma/compare
-7. Write a proper description. You can mention @louislam in it, so @louislam will get the notification.
-8. Create your pull request as a Draft
-9. Wait for the discussion
+1. **Fork** the [Uptime-Kuma repository].
+2. **Clone** your forked repository to your local machine.
+3. **Create a new branch** for your changes (e.g.,
+ `feature/add-new-notification-provider-signal`).
+4. **Initiate a discussion before making major changes** by creating an empty
+ commit:
+
+ ```sh
+ git commit -m "" --allow-empty
+ ```
+
+5. **Push** your branch to your forked repository.
+6. **Open a pull request** using this link: [Compare & Pull Request].
+7. **Select the correct source and target branches**.
+8. **Link to related issues** for context.
+9. **Provide a clear and concise description** explaining the changes and their
+ purpose.
+
+ - **Type of changes**
+
+ - Bugfix (a non-breaking change that resolves an issue)
+ - New feature (a non-breaking change that adds new functionality)
+ - Breaking change (a fix or feature that alters existing functionality in a
+ way that could cause issues)
+ - User Interface (UI) updates
+ - New Documentation (addition of new documentation)
+ - Documentation Update (modification of existing documentation)
+ - Documentation Update Required (the change requires updates to related
+ documentation)
+ - Other (please specify):
+ - Provide additional details here.
+
+ - **Checklist**
+
+ - My code adheres to the style guidelines of this project.
+ - I ran ESLint and other code linters for modified files.
+ - I have reviewed and tested my code.
+ - I have commented my code, especially in hard-to-understand areas (e.g.,
+ using JSDoc for methods).
+ - My changes generate no new warnings.
+ - My code needed automated testing. I have added them (this is an optional
+ task).
+ - Documentation updates are included (if applicable).
+ - I have considered potential security impacts and mitigated risks.
+ - Dependency updates are listed and explained.
+ - I have read and understood the
+ [Pull Request guidelines](#recommended-pull-request-guideline).
+
+10. **When publishing your PR, set it as a** `Draft pull request` **to allow for
+ review and prevent automatic merging.**
+11. **Maintainers will assign relevant labels** (e.g., `A:maintenance`,
+ `A:notifications`).
+12. **Complete the PR checklist**, ensuring that:
+
+ - Documentation is updated if necessary.
+ - Tests are written or updated.
+ - CI/CD checks pass successfully.
+
+13. **Request feedback** from team members to refine your changes before the
+ final review.
+
+### When Can You Change the PR Status to "Ready for Review"?
+
+A PR should remain in **draft status** until all tasks are completed. Only
+change the status to **Ready for Review** when:
+
+- You have implemented all planned changes.
+- You have addressed all feedback.
+- Your code is fully tested and ready for integration.
+- You have updated or created the necessary tests.
+- You have verified that CI/CD checks pass successfully.
+
+A **work-in-progress (WIP) PR** must stay in **draft status** until everything
+is finalized.
## Project Styles
-I personally do not like something that requires a lot of configuration before you can finally start the app.
-The goal is to make the Uptime Kuma installation as easy as installing a mobile app.
+I personally do not like something that requires a lot of configuration before
+you can finally start the app. The goal is to make the Uptime Kuma installation
+as easy as installing a mobile app.
- Easy to install for non-Docker users
+
- no native build dependency is needed (for `x86_64`/`armv7`/`arm64`)
- no extra configuration and
- no extra effort required to get it running
+
- Single container for Docker users
+
- no complex docker-compose file
- mapping the volume and exposing the port should be the only requirements
-- Settings should be configurable in the frontend. Environment variables are discouraged, unless it is related to startup such as `DATA_DIR`
+
+- Settings should be configurable in the frontend. Environment variables are
+ discouraged, unless it is related to startup such as `DATA_DIR`
- Easy to use
- The web UI styling should be consistent and nice
@@ -233,13 +479,18 @@ The goal is to make the Uptime Kuma installation as easy as installing a mobile
- [`Node.js`](https://nodejs.org/) >= 18
- [`npm`](https://www.npmjs.com/) >= 9.3
- [`git`](https://git-scm.com/)
-- IDE that supports [`ESLint`](https://eslint.org/) and EditorConfig (I am using [`IntelliJ IDEA`](https://www.jetbrains.com/idea/))
-- A SQLite GUI tool (f.ex. [`SQLite Expert Personal`](https://www.sqliteexpert.com/download.html) or [`DBeaver Community`](https://dbeaver.io/download/))
+- IDE that supports [`ESLint`](https://eslint.org/) and EditorConfig (I am using
+ [`IntelliJ IDEA`](https://www.jetbrains.com/idea/))
+- A SQLite GUI tool (f.ex.
+ [`SQLite Expert Personal`](https://www.sqliteexpert.com/download.html) or
+ [`DBeaver Community`](https://dbeaver.io/download/))
## Git Branches
-- `master`: 2.X.X development. If you want to add a new feature, your pull request should base on this.
-- `1.23.X`: 1.23.X development. If you want to fix a bug for v1 and v2, your pull request should base on this.
+- `master`: 2.X.X development. If you want to add a new feature, your pull
+ request should base on this.
+- `1.23.X`: 1.23.X development. If you want to fix a bug for v1 and v2, your
+ pull request should base on this.
- All other branches are unused, outdated or for dev.
## Install Dependencies for Development
@@ -260,7 +511,8 @@ Port `3000` and port `3001` will be used.
npm run dev
```
-But sometimes you may want to restart the server without restarting the frontend. In that case, you can run these commands in two terminals:
+But sometimes you may want to restart the server without restarting the
+frontend. In that case, you can run these commands in two terminals:
```bash
npm run start-frontend-dev
@@ -271,9 +523,9 @@ npm run start-server-dev
It binds to `0.0.0.0:3001` by default.
-The backend is an `express.js` server with `socket.io` integrated.
-It uses `socket.io` to communicate with clients, and most server logic is encapsulated in the `socket.io` handlers.
-`express.js` is also used to serve:
+The backend is an `express.js` server with `socket.io` integrated. It uses
+`socket.io` to communicate with clients, and most server logic is encapsulated
+in the `socket.io` handlers. `express.js` is also used to serve:
- as an entry point for redirecting to a status page or the dashboard
- the frontend built files (`index.html`, `*.js`, `*.css`, etc.)
@@ -289,11 +541,13 @@ It uses `socket.io` to communicate with clients, and most server logic is encaps
- `routers/` (Express Routers)
- `socket-handler/` (Socket.io Handlers)
- `server.js` (Server entry point)
-- `uptime-kuma-server.js` (UptimeKumaServer class, main logic should be here, but some still in `server.js`)
+- `uptime-kuma-server.js` (UptimeKumaServer class, main logic should be here,
+ but some still in `server.js`)
## Frontend Dev Server
-It binds to `0.0.0.0:3000` by default. The frontend dev server is used for development only.
+It binds to `0.0.0.0:3000` by default. The frontend dev server is used for
+development only.
For production, it is not used. It will be compiled to `dist` directory instead.
@@ -307,17 +561,19 @@ npm run build
### Frontend Details
-Uptime Kuma Frontend is a single page application (SPA). Most paths are handled by Vue Router.
+Uptime Kuma Frontend is a single page application (SPA). Most paths are handled
+by Vue Router.
The router is in `src/router.js`
-As you can see, most data in the frontend is stored at the root level, even though you changed the current router to any other pages.
+As you can see, most data in the frontend is stored at the root level, even
+though you changed the current router to any other pages.
The data and socket logic are in `src/mixins/socket.js`.
## Database Migration
-See: https://github.com/louislam/uptime-kuma/tree/master/db/knex_migrations
+See:
## Unit Test
@@ -328,11 +584,12 @@ npm test
## Dependencies
-Both frontend and backend share the same `package.json`.
-However, the frontend dependencies are eventually not used in the production environment, because it is usually also baked into `dist` files. So:
+Both frontend and backend share the same `package.json`. However, the frontend
+dependencies are eventually not used in the production environment, because it
+is usually also baked into `dist` files. So:
- Frontend dependencies = "devDependencies"
- - Examples: `vue`, `chart.js`
+ - Examples: - `vue`, `chart.js`
- Backend dependencies = "dependencies"
- Examples: `socket.io`, `sqlite3`
- Development dependencies = "devDependencies"
@@ -340,31 +597,41 @@ However, the frontend dependencies are eventually not used in the production env
### Update Dependencies
-Since previously updating Vite 2.5.10 to 2.6.0 broke the application completely, from now on, it should update the patch release version only.
+Since previously updating Vite 2.5.10 to 2.6.0 broke the application completely,
+from now on, it should update the patch release version only.
Patch release = the third digit ([Semantic Versioning](https://semver.org/))
-If for security / bug / other reasons, a library must be updated, breaking changes need to be checked by the person proposing the change.
+If for security / bug / other reasons, a library must be updated, breaking
+changes need to be checked by the person proposing the change.
## Translations
-Please add **all** the strings which are translatable to `src/lang/en.json` (if translation keys are omitted, they can not be translated.)
+Please add **all** the strings which are translatable to `src/lang/en.json` (if
+translation keys are omitted, they can not be translated.)
-**Don't include any other languages in your initial pull request** (even if this is your mother tongue), to avoid merge-conflicts between weblate and `master`.
-The translations can then (after merging a PR into `master`) be translated by awesome people donating their language skills.
+**Don't include any other languages in your initial pull request** (even if this
+is your mother tongue), to avoid merge-conflicts between weblate and `master`.
+The translations can then (after merging a PR into `master`) be translated by
+awesome people donating their language skills.
-If you want to help by translating Uptime Kuma into your language, please visit the [instructions on how to translate using weblate](https://github.com/louislam/uptime-kuma/blob/master/src/lang/README.md).
+If you want to help by translating Uptime Kuma into your language, please visit
+the [instructions on how to translate using weblate].
+
+[instructions on how to translate using weblate]:
+ https://github.com/louislam/uptime-kuma/blob/master/src/lang/README.md
## Spelling & Grammar
-Feel free to correct the grammar in the documentation or code.
-My mother language is not English and my grammar is not that great.
+Feel free to correct the grammar in the documentation or code. My mother
+language is not English and my grammar is not that great.
## Wiki
-Since there is no way to make a pull request to the wiki, I have set up another repo to do that.
+Since there is no way to make a pull request to the wiki, I have set up another
+repo to do that.
-https://github.com/louislam/uptime-kuma-wiki
+
## Docker
@@ -405,7 +672,7 @@ https://github.com/louislam/uptime-kuma-wiki
## Maintainer
Check the latest issues and pull requests:
-https://github.com/louislam/uptime-kuma/issues?q=sort%3Aupdated-desc
+
### What is a maintainer and what are their roles?
@@ -413,7 +680,7 @@ This project has multiple maintainers who specialise in different areas.
Currently, there are 3 maintainers:
| Person | Role | Main Area |
-|-------------------|-------------------|------------------|
+| ----------------- | ----------------- | ---------------- |
| `@louislam` | senior maintainer | major features |
| `@chakflying` | junior maintainer | fixing bugs |
| `@commanderstorm` | junior maintainer | issue-management |
@@ -421,39 +688,49 @@ Currently, there are 3 maintainers:
### Procedures
We have a few procedures we follow. These are documented here:
-- Set up a Docker Builder
+
+- Set up a Docker Builder (click to expand)
- amd64, armv7 using local.
- - arm64 using remote arm64 cpu, as the emulator is too slow and can no longer pass the `npm ci` command.
- 1. Add the public key to the remote server.
- 2. Add the remote context. The remote machine must be arm64 and installed Docker CE.
- ```
- docker context create oracle-arm64-jp --docker "host=ssh://root@100.107.174.88"
- ```
- 3. Create a new builder.
- ```
- docker buildx create --name kuma-builder --platform linux/amd64,linux/arm/v7
- docker buildx use kuma-builder
- docker buildx inspect --bootstrap
- ```
- 4. Append the remote context to the builder.
- ```
- docker buildx create --append --name kuma-builder --platform linux/arm64 oracle-arm64-jp
- ```
- 5. Verify the builder and check if the builder is using `kuma-builder`.
- ```
- docker buildx inspect kuma-builder
- docker buildx ls
- ```
+ - arm64 using remote arm64 cpu, as the emulator is too slow and can no longer
+ pass the `npm ci` command.
+
+ 1. Add the public key to the remote server.
+ 2. Add the remote context. The remote machine must be arm64 and installed
+ Docker CE.
+
+ ```bash
+ docker context create oracle-arm64-jp --docker "host=ssh://root@100.107.174.88"
+ ```
+
+ 3. Create a new builder.
+
+ ```bash
+ docker buildx create --name kuma-builder --platform linux/amd64,linux/arm/v7
+ docker buildx use kuma-builder
+ docker buildx inspect --bootstrap
+ ```
+
+ 4. Append the remote context to the builder.
+
+ ```bash
+ docker buildx create --append --name kuma-builder --platform linux/arm64 oracle-arm64-jp
+ ```
+
+ 5. Verify the builder and check if the builder is using `kuma-builder`.
+ `docker buildx inspect kuma-builder docker buildx ls`
+
-- Release
+
+- Release (click to expand)
1. Draft a release note
2. Make sure the repo is cleared
- 3. If the healthcheck is updated, remember to re-compile it: `npm run build-docker-builder-go`
+ 3. If the healthcheck is updated, remember to re-compile it:
+ `npm run build-docker-builder-go`
4. `npm run release-final` with env vars: `VERSION` and `GITHUB_TOKEN`
5. Wait until the `Press any key to continue`
6. `git push`
@@ -463,13 +740,16 @@ We have a few procedures we follow. These are documented here:
These Items need to be checked:
- - [ ] Check all tags is fine on https://hub.docker.com/r/louislam/uptime-kuma/tags
- - [ ] Try the Docker image with tag 1.X.X (Clean install / amd64 / arm64 / armv7)
+ - [ ] Check all tags is fine on
+
+ - [ ] Try the Docker image with tag 1.X.X (Clean install / amd64 / arm64 /
+ armv7)
- [ ] Try clean installation with Node.js
-
+
-- Release Beta
+
+- Release Beta (click to expand)
1. Draft a release note, check `This is a pre-release`
@@ -478,35 +758,37 @@ We have a few procedures we follow. These are documented here:
4. Wait until the `Press any key to continue`
5. Publish the release note as `1.X.X-beta.X`
6. Press any key to continue
-
+
-- Release Wiki
+
+- Release Wiki (click to expand)
**Setup Repo**
-
+
```bash
git clone https://github.com/louislam/uptime-kuma-wiki.git
cd uptime-kuma-wiki
git remote add production https://github.com/louislam/uptime-kuma.wiki.git
```
-
+
**Push to Production Wiki**
-
+
```bash
git pull
git push production master
```
-
+
-- Change the base of a pull request such as master to 1.23.X
+
+- Change the base of a pull request such as master to 1.23.X (click to expand)
+
+
+ https://waha.devlike.pro/
+
+
+
diff --git a/src/components/notifications/Webhook.vue b/src/components/notifications/Webhook.vue
index 8c67a2745..7775a3fdd 100644
--- a/src/components/notifications/Webhook.vue
+++ b/src/components/notifications/Webhook.vue
@@ -32,20 +32,7 @@
-
- {{ $t("documentation") }}
-
- {{msg}}: {{ $t("templateMsg") }}
- {{heartbeatJSON}}: {{ $t("templateHeartbeatJSON") }} ({{ $t("templateLimitedToUpDownNotifications") }})
- {{monitorJSON}}: {{ $t("templateMonitorJSON") }} ({{ $t("templateLimitedToUpDownCertNotifications") }})
-
-
+
@@ -67,7 +54,12 @@
diff --git a/src/components/notifications/index.js b/src/components/notifications/index.js
index efa2af5c4..cbd6f2b68 100644
--- a/src/components/notifications/index.js
+++ b/src/components/notifications/index.js
@@ -39,6 +39,7 @@ import PromoSMS from "./PromoSMS.vue";
import Pushbullet from "./Pushbullet.vue";
import PushDeer from "./PushDeer.vue";
import Pushover from "./Pushover.vue";
+import PushPlus from "./PushPlus.vue";
import Pushy from "./Pushy.vue";
import RocketChat from "./RocketChat.vue";
import ServerChan from "./ServerChan.vue";
@@ -63,10 +64,12 @@ import ZohoCliq from "./ZohoCliq.vue";
import Splunk from "./Splunk.vue";
import SevenIO from "./SevenIO.vue";
import Whapi from "./Whapi.vue";
+import WAHA from "./WAHA.vue";
import Cellsynt from "./Cellsynt.vue";
import WPush from "./WPush.vue";
import SIGNL4 from "./SIGNL4.vue";
import SendGrid from "./SendGrid.vue";
+import YZJ from "./YZJ.vue";
/**
* Manage all notification form.
@@ -114,6 +117,7 @@ const NotificationFormList = {
"PushByTechulus": TechulusPush,
"PushDeer": PushDeer,
"pushover": Pushover,
+ "PushPlus": PushPlus,
"pushy": Pushy,
"rocket.chat": RocketChat,
"serwersms": SerwerSMS,
@@ -138,10 +142,12 @@ const NotificationFormList = {
"ZohoCliq": ZohoCliq,
"SevenIO": SevenIO,
"whapi": Whapi,
+ "waha": WAHA,
"gtxmessaging": GtxMessaging,
"Cellsynt": Cellsynt,
"WPush": WPush,
"SendGrid": SendGrid,
+ "YZJ": YZJ,
};
export default NotificationFormList;
diff --git a/src/i18n.js b/src/i18n.js
index f415f5daf..bd7e3a122 100644
--- a/src/i18n.js
+++ b/src/i18n.js
@@ -31,6 +31,7 @@ const languageList = {
"sv-SE": "Svenska",
"tr-TR": "Türkçe",
"ko-KR": "한국어",
+ "lt": "Lietuvių",
"ru-RU": "Русский",
"zh-CN": "简体中文",
"pl": "Polski",
diff --git a/src/lang/bg-BG.json b/src/lang/bg-BG.json
index e18ded380..1154af1b0 100644
--- a/src/lang/bg-BG.json
+++ b/src/lang/bg-BG.json
@@ -1098,5 +1098,24 @@
"RabbitMQ Nodes": "Възли за управление на RabbitMQ",
"rabbitmqNodesDescription": "Въведете URL адреса на възлите за управление на RabbitMQ, включително протокол и порт. Пример: {0}",
"rabbitmqHelpText": "За да използвате монитора, ще трябва да активирате добавката за управление във вашата настройка на RabbitMQ. За повече информация моля, вижте {rabitmq_documentation}.",
- "aboutSlackUsername": "Променя показваното име на подателя на съобщението. Ако желаете да споменете някого, вместо това го включете в приятелското име."
+ "aboutSlackUsername": "Променя показваното име на подателя на съобщението. Ако желаете да споменете някого, вместо това го включете в приятелското име.",
+ "YZJ Robot Token": "YZJ Robot токен код",
+ "YZJ Webhook URL": "YZJ Уеб кука URL адрес",
+ "templateServiceName": "име на услугата",
+ "templateHostnameOrURL": "име на хоста или URL адрес",
+ "Plain Text": "Обикновен текст",
+ "Message Template": "Шаблон за съобщение",
+ "templateStatus": "статус",
+ "telegramUseTemplate": "Използвай персонализиран шаблон за съобщение",
+ "telegramUseTemplateDescription": "Ако е активирано, съобщението ще бъде изпратено чрез персонализиран шаблон.",
+ "telegramTemplateFormatDescription": "Telegram позволява използването на различни \"markup\" езици за съобщенията. Вижте Telegram {0} за детайли.",
+ "Template Format": "Формат на шаблона",
+ "wayToGetWahaApiUrl": "Вашият WAHA URL адрес.",
+ "wahaSession": "Сесия",
+ "wahaChatId": "Чат ID (телефонен номер / ID на контакт / ID на група)",
+ "wayToGetWahaApiKey": "API ключът, е стойността на променливата WHATSAPP_API_KEY, която сте използвали за стартиране на WAHA.",
+ "wayToWriteWahaChatId": "Телефонният номер с международния префикс, но без знака плюс в началото ({0}), ID на контакта ({1}) или ID на групата ({2}). Известията се изпращат до това чат ID от WAHA сесия.",
+ "wayToGetWahaSession": "От тази сесия WAHA изпраща известия до чат ID. Можете да го намерите в таблото за управление на WAHA.",
+ "telegramServerUrlDescription": "За премахване на API бот ограниченията за Telegram или за получаване на достъп в блокирани зони (Китай, Иран и др.). За повече информация щракнете върху {0}. По подразбиране: {1}",
+ "telegramServerUrl": "(По избор) URL адрес на сървъра"
}
diff --git a/src/lang/ca.json b/src/lang/ca.json
index b519ce8c7..2f10f32cb 100644
--- a/src/lang/ca.json
+++ b/src/lang/ca.json
@@ -49,7 +49,7 @@
"Delete": "Eliminar",
"Current": "Actual",
"Uptime": "Temps actiu",
- "Cert Exp.": "Caducitat del certificat",
+ "Cert Exp.": "Caducitat del certificat.",
"Monitor": "Monitor | Monitors",
"day": "dia | dies",
"-day": "-dia",
@@ -218,7 +218,7 @@
"Required": "Obligatori",
"Post URL": "Posar URL",
"Content Type": "Content Type",
- "Json Query Expression": "Json Query Expression",
+ "Json Query Expression": "Expressió de consulta Json",
"now": "ara",
"-year": "-any",
"Status Pages": "Pàgines d'estat",
@@ -226,5 +226,339 @@
"time ago": "fa {0}",
"ignoredTLSError": "Errors TLS/SSL ignorats",
"webhookFormDataDesc": "{multipart} es bo per PHP. El JSON haurà d'analitzar-se amb {decodeFunction}",
- "webhookJsonDesc": "{0} es bo per qualsevol servidor HTTP modern com Express.js"
+ "webhookJsonDesc": "{0} es bo per qualsevol servidor HTTP modern com Express.js",
+ "templateMsg": "missatge de la notificació",
+ "webhookAdditionalHeadersTitle": "Capçaleres addicionals",
+ "Application Token": "Testimoni d'aplicació",
+ "Server URL": "URL del servidor",
+ "Priority": "Prioritat",
+ "Webhook URL": "URL del Webhook",
+ "emojiCheatSheet": "Full de trampa d'emoji: {0}",
+ "Read more": "Llegeix més",
+ "appriseInstalled": "S'ha instal·lat l'apèndix.",
+ "templateHeartbeatJSON": "objecte que descriu el batec del cor",
+ "templateMonitorJSON": "objecte que descriu el monitor",
+ "templateLimitedToUpDownCertNotifications": "només disponible per a notificacions de venciment UP/DOWN/Certificate",
+ "templateLimitedToUpDownNotifications": "només disponible per a notificacions UP/DOWN",
+ "webhookAdditionalHeadersDesc": "Estableix les capçaleres addicionals enviades amb el webhook. Cada capçalera s'ha de definir com una clau/valor JSON.",
+ "webhookBodyPresetOption": "Predefinit - {0}",
+ "webhookBodyCustomOption": "Cos personalitzat",
+ "Headers": "Capçaleres",
+ "Monitor History": "Historial del monitor",
+ "PasswordsDoNotMatch": "Les contrasenyes no coincideixen.",
+ "records": "registres",
+ "One record": "Un registre",
+ "Current User": "Usuari actual",
+ "topic": "Tema",
+ "topicExplanation": "tema MQTT a monitorar",
+ "successKeyword": "Paraula clau d'èxit",
+ "successKeywordExplanation": "Paraula clau MQTT que es considerarà un èxit",
+ "recent": "Recent",
+ "Reset Token": "Restableix el testimoni",
+ "Done": "Fet",
+ "Info": "Info",
+ "Steam API Key": "Clau API de Steam",
+ "Shrink Database": "Redueix la base de dades",
+ "Pick a RR-Type...": "Trieu un tipus RR…",
+ "Default": "Per defecte",
+ "HTTP Options": "Opcions HTTP",
+ "Create Incident": "Crear Incident",
+ "Title": "Títol",
+ "Content": "Contingut",
+ "Style": "Estil",
+ "info": "info",
+ "warning": "avís",
+ "danger": "perill",
+ "primary": "primària",
+ "light": "lleuger",
+ "dark": "fosc",
+ "Post": "Post",
+ "Created": "Creat",
+ "Last Updated": "Darrera actualització",
+ "Switch to Light Theme": "Canvia a tema clar",
+ "Switch to Dark Theme": "Canviar a tema fosc",
+ "Show Tags": "Mostra les etiquetes",
+ "Hide Tags": "Amaga les etiquetes",
+ "Description": "Descripció",
+ "No monitors available.": "No hi ha monitors disponibles.",
+ "Add one": "Afegeix-ne un",
+ "No Monitors": "Sense monitors",
+ "Untitled Group": "Grup sense títol",
+ "Services": "Serveis",
+ "Discard": "Descarta",
+ "Cancel": "Canel·la",
+ "Select": "Selecciona",
+ "Check/Uncheck": "Comprova/desmarca",
+ "Powered by": "Funciona amb",
+ "Customize": "Personalitza",
+ "Custom Footer": "Peu de pàgina personalitzat",
+ "Custom CSS": "CSS personalitzat",
+ "default": "Per defecte",
+ "enabled": "Habilitat",
+ "setAsDefault": "Estableix com a predeterminat",
+ "deleteProxyMsg": "Esteu segur que voleu suprimir aquest servidor intermediari per a tots els monitors?",
+ "setAsDefaultProxyDescription": "Aquest servidor intermediari s'habilitarà de manera predeterminada per als monitors nous. Encara podeu desactivar el servidor intermediari per separat per a cada monitor.",
+ "Certificate Chain": "Cadena de certificats",
+ "Valid": "Vàlid",
+ "Invalid": "Invàlid",
+ "User": "Usuari",
+ "Installed": "Instal·lat",
+ "Not installed": "No instal·lat",
+ "Running": "En execució",
+ "Not running": "No en execució",
+ "Remove Token": "Elimina el testimoni",
+ "Start": "Inicia",
+ "Stop": "Aturar",
+ "Add New Status Page": "Afegeix una pàgina d'estat nova",
+ "Slug": "Àlies",
+ "Accept characters:": "Accepta caràcters:",
+ "startOrEndWithOnly": "Inicia o acaba només amb {0}",
+ "No consecutive dashes": "Sense guions consecutius",
+ "Next": "Següent",
+ "The slug is already taken. Please choose another slug.": "L'àlias ja està agafat. Si us plau, escolliu un altre àlies.",
+ "No Proxy": "Sense servidor intermediari",
+ "Proxies": "Servidors intermediaris",
+ "HTTP Basic Auth": "Autenticació bàsica HTTP",
+ "New Status Page": "Pàgina d'estat nova",
+ "Reverse Proxy": "Servidor intermediari invertit",
+ "Backup": "Còpia de seguretat",
+ "About": "Quant a",
+ "wayToGetCloudflaredURL": "(Descarrega de cloudfared des de {0})",
+ "cloudflareWebsite": "Lloc web de Cloudflare",
+ "Message:": "Missatge:",
+ "HTTP Headers": "Capçaleres HTTP",
+ "Trust Proxy": "Confia en el servidor intermediari",
+ "Other Software": "Un altre programari",
+ "For example: nginx, Apache and Traefik.": "Per exemple: nginx, Apache i Traefik.",
+ "Please read": "Llegiu",
+ "Subject:": "Assumpte:",
+ "Valid To:": "Vàlid per a:",
+ "Days Remaining:": "Dies restants:",
+ "Issuer:": "Emissor:",
+ "Fingerprint:": "Empremta digital:",
+ "No status pages": "Sense pàgines d'estat",
+ "Domain Name Expiry Notification": "Notificació de venciment del nom de domini",
+ "Add a new expiry notification day": "Notificació de venciment del nom de domini",
+ "Remove the expiry notification": "Elimina el dia de notificació de venciment",
+ "Proxy": "Servidor intermediari",
+ "Date Created": "Data de creació",
+ "Footer Text": "Text del peu de pàgina",
+ "Refresh Interval Description": "La pàgina d'estat farà una actualització completa del lloc cada {0} segons",
+ "Show Powered By": "Mostra Impulsat per",
+ "Domain Names": "Noms de domini",
+ "signedInDisp": "Sessió iniciada com a {0}",
+ "RadiusSecret": "Secret de Radius",
+ "RadiusSecretDescription": "Secret compartit entre client i servidor",
+ "RadiusCalledStationId": "Id de l'estació cridada",
+ "RadiusCallingStationId": "Id de l'estació de trucada",
+ "RadiusCallingStationIdDescription": "Identificador del dispositiu de crida",
+ "Certificate Expiry Notification": "Notificació de venciment del certificat",
+ "API Username": "Nom d'usuari API",
+ "API Key": "Clau API",
+ "Show update if available": "Mostra l'actualització si està disponible",
+ "Using a Reverse Proxy?": "Usar un servidor intermediari invers?",
+ "Check how to config it for WebSocket": "Comprova com configurar-lo per a WebSocket",
+ "Steam Game Server": "Servidor de jocs Steam",
+ "Most likely causes:": "Causes més probables:",
+ "There might be a typing error in the address.": "Pot haver-hi un error d'escriptura a l'adreça.",
+ "What you can try:": "Què podeu provar:",
+ "Retype the address.": "Torneu a teclejar l'adreça.",
+ "Go back to the previous page.": "Torna a la pàgina anterior.",
+ "Coming Soon": "Properament",
+ "Connection String": "Cadena de connexió",
+ "Query": "Consulta",
+ "settingsCertificateExpiry": "Caducitat del certificat TLS",
+ "Setup Docker Host": "Configura l'amfitrió Docker",
+ "Connection Type": "Tipus de connexió",
+ "Docker Daemon": "Dimoni Docker",
+ "noDockerHostMsg": "No disponible. Primer configureu un amfitrió Docker.",
+ "DockerHostRequired": "Establiu l'amfitrió Docker per a aquest monitor.",
+ "socket": "Sòcol",
+ "tcp": "TCP / HTTP",
+ "Docker Container": "Contenidor Docker",
+ "Container Name / ID": "Nom del contenidor / ID",
+ "Docker Host": "Amfitrió Docker",
+ "Docker Hosts": "Amfitrions Docker",
+ "Domain": "Domini",
+ "Workstation": "Estació de treball",
+ "Packet Size": "Mida del paquet",
+ "Bot Token": "Testimoni de bot",
+ "wayToGetTelegramToken": "Podeu obtenir un testimoni de {0}.",
+ "Chat ID": "ID de xat",
+ "telegramMessageThreadID": "(Opcional) ID del fil del missatge",
+ "telegramMessageThreadIDDescription": "Identificador únic opcional per al fil del missatge de destinació (tema) del fòrum; només per als supergrups del fòrum",
+ "telegramSendSilently": "Envia silenciosament",
+ "telegramProtectContent": "Protegeix la reenviament/desament",
+ "supportTelegramChatID": "Admet xat directe / grup / ID de xat del canal",
+ "YOUR BOT TOKEN HERE": "EL VOSTRE TESTIMONI DE BOT AQUÍ",
+ "chatIDNotFound": "No s'ha trobat l'ID del xat; primer envieu un missatge a aquest bot",
+ "disableCloudflaredNoAuthMsg": "Esteu en mode No Auth, no cal una contrasenya.",
+ "wayToGetLineNotifyToken": "Podeu obtenir un testimoni d'accés des de {0}",
+ "Examples": "Exemples",
+ "Home Assistant URL": "URL de l'assistent d'inici",
+ "Long-Lived Access Token": "Testimoni d'accés viu",
+ "Notification Service": "Servei de notificacions",
+ "Automations can optionally be triggered in Home Assistant:": "Les automatitzacions es poden activar opcionalment a l'assistent d'inici:",
+ "Trigger type:": "Tipus d'activador:",
+ "Event type:": "Tipus d'esdeveniment:",
+ "Event data:": "Dades de l'esdeveniment:",
+ "Then choose an action, for example switch the scene to where an RGB light is red.": "A continuació, trieu una acció, per exemple, canvieu l'escena a on una llum RGB és vermella.",
+ "Frontend Version": "Versió del frontal",
+ "Frontend Version do not match backend version!": "La versió frontal no coincideix amb la versió del dorsal!",
+ "backupRecommend": "Si us plau, feu una còpia de seguretat del volum o de la carpeta de dades (./data/) directament.",
+ "Optional": "Opcional",
+ "and": "i",
+ "startDateTime": "Data/hora d'inici",
+ "endDateTime": "Data/hora final",
+ "cronExpression": "Expressió Cron",
+ "cronSchedule": "Planificació: ",
+ "invalidCronExpression": "Expressió Cron no vàlida: {0}",
+ "recurringInterval": "Interval",
+ "Recurring": "Recurrència",
+ "strategyManual": "Activa/Inactiva manualment",
+ "warningTimezone": "Està utilitzant la zona horària del servidor",
+ "weekdayShortMon": "Dill",
+ "weekdayShortTue": "Dim",
+ "weekdayShortWed": "Dim",
+ "weekdayShortThu": "Dij",
+ "weekdayShortFri": "Div",
+ "weekdayShortSat": "Diss",
+ "weekdayShortSun": "Dg",
+ "dayOfWeek": "Dia de la setmana",
+ "dayOfMonth": "Dia del mes",
+ "lastDay": "Últim dia",
+ "lastDay2": "2n últim dia del mes",
+ "lastDay3": "3r Darrer Dia del Mes",
+ "lastDay4": "4t Darrer Dia del Mes",
+ "No Maintenance": "Sense manteniment",
+ "maintenanceStatus-under-maintenance": "Sota manteniment",
+ "maintenanceStatus-inactive": "Inactiu",
+ "maintenanceStatus-scheduled": "Programat",
+ "maintenanceStatus-unknown": "Desconegut",
+ "Server Timezone": "Zona horària del servidor",
+ "statusPageMaintenanceEndDate": "Final",
+ "IconUrl": "URL de la icona",
+ "Enable DNS Cache": "(Obsolet) Habilita la memòria cau DNS per als monitors HTTP(s)",
+ "Enable": "Habilita",
+ "Disable": "Desactiva",
+ "chromeExecutable": "Executable Chrome/Chromium",
+ "chromeExecutableAutoDetect": "Detecció automàtica",
+ "dnsCacheDescription": "Pot ser que no funcioni treballant amb entorns IPv6, desactiva'l si detectes qualsevol problema.",
+ "Single Maintenance Window": "Finestra de Manteniment únic",
+ "Maintenance Time Window of a Day": "Finestra de Temps del manteniment d'un Dia",
+ "Effective Date Range": "Rang de data eficaç (Opcional)",
+ "Schedule Maintenance": "Programa de manteniment",
+ "Edit Maintenance": "Edita el manteniment",
+ "Date and Time": "Data i hora",
+ "DateTime Range": "Rang de data i temps",
+ "loadingError": "Impossible obtenir la data, si us plau prova-ho més endavant.",
+ "plugin": "Connector | Connectors",
+ "install": "Instal·la",
+ "installing": "Instal·lant",
+ "uninstall": "Desinstal·la",
+ "confirmUninstallPlugin": "Estàs segur de desinstal·lar aquest connector?",
+ "notificationRegional": "Regional",
+ "Clone Monitor": "Clona el monitor",
+ "Clone": "Clona",
+ "cloneOf": "Clon de {0}",
+ "secureOptionNone": "Cap / STARTTLS (25, 587)",
+ "secureOptionTLS": "TLS (465)",
+ "Ignore TLS Error": "Ignora error TLS",
+ "From Email": "Des de Correu",
+ "emailCustomisableContent": "Contingut personalitzable",
+ "emailCustomSubject": "Tema personalitzable",
+ "leave blank for default subject": "deixar en blanc per tema per defecte",
+ "emailCustomBody": "Cos personalitzat",
+ "leave blank for default body": "deixa en blanc per un cos per defecte",
+ "emailTemplateServiceName": "Nom de servei",
+ "emailTemplateHostnameOrURL": "Nom de host o URL",
+ "emailTemplateStatus": "Estat",
+ "emailTemplateMonitorJSON": "objecte que descriu el monitor",
+ "emailTemplateHeartbeatJSON": "objecte que descriu el batec del cor",
+ "To Email": "Destí email",
+ "smtpCC": "CC",
+ "smtpBCC": "BCC",
+ "Discord Webhook URL": "Discord Webhook URL",
+ "wayToGetDiscordURL": "Pots rebre aquest per anar a Paràmetres de Servidor -> Integracions -> Vista *Webhooks -> Nou *Webhook",
+ "Bot Display Name": "Nom de pantalla de bot",
+ "Prefix Custom Message": "Prefix de missatge personalitzat",
+ "Hello @everyone is...": "Hola {'@'} a tothom …",
+ "Send to channel": "Envia al canal",
+ "Create new forum post": "Crea una nova publicació",
+ "postToExistingThread": "Publica a un fil existent",
+ "forumPostName": "Nom de publicació de fòrum",
+ "threadForumPostID": "Fil / identificador de fòrum",
+ "e.g. {discordThreadID}": "exemple {discordThreadID}",
+ "wayToGetTeamsURL": "Pot aprendre com crear una URL de webhook {0}.",
+ "wayToGetZohoCliqURL": "Pot aprendre com crear una URL de webhook {0}.",
+ "needSignalAPI": "Necessites tenir una senyal de client amb REST API.",
+ "wayToCheckSignalURL": "Pot comprovar aquesta URL per veure com configurar:",
+ "Number": "Número",
+ "Recipients": "Receptors",
+ "Access Token": "Fitxa d'accés",
+ "Channel access token (Long-lived)": "Fitxa d'accés del canal (de llarga vida)",
+ "Line Developers Console": "Consola de Desenvolupadors de la línia",
+ "appriseNotInstalled": "L'apèndix no està instal·lat. {0}",
+ "Method": "Mètode",
+ "clearDataOlderThan": "Conserva les dades de l'historial del monitor durant {0} dies.",
+ "steamApiKeyDescription": "Per a monitoritzar un servidor de jocs de vapor, necessiteu una clau Steam Web-API. Podeu registrar la vostra clau API aquí: ",
+ "shrinkDatabaseDescriptionSqlite": "Activa la base de dades {vacuum} per a SQLite. {auto.vacuum} ja està activat, però això no desfragmenta la base de dades ni reempaqueta les pàgines individuals de la base de dades de la manera com ho fa l'ordre {vacuum}.",
+ "liquidIntroduction": "S'aconsegueix la flexibilitat mitjançant el llenguatge de templatació líquid. Consulteu el {0} per a les instruccions d'ús. Aquestes són les variables disponibles:",
+ "selectedMonitorCount": "Seleccionat: {0}",
+ "deleteStatusPageMsg": "Esteu segur que voleu suprimir aquesta pàgina d'estat?",
+ "proxyDescription": "Els intermediaris s'han d'assignar a un monitor perquè funcioni.",
+ "enableProxyDescription": "Aquest servidor intermediari no afectarà les sol·licituds del monitor fins que estigui activat. Podeu controlar temporalment desactivar el servidor intermediari de tots els monitors per l'estat d'activació.",
+ "statusPageSpecialSlugDesc": "Àlies especial {0}: aquesta pàgina es mostrarà quan no es proporcioni l'àlies",
+ "Authentication": "Autenticació",
+ "Page Not Found": "Pàgina no trobada",
+ "Don't know how to get the token? Please read the guide:": "No saps com aconseguir el testimoni? Si us plau, llegiu la guia:",
+ "The current connection may be lost if you are currently connecting via Cloudflare Tunnel. Are you sure want to stop it? Type your current password to confirm it.": "La connexió actual es pot perdre si esteu connectant a través del túnel Cloudflare. Segur que voleu aturar-ho? Escriviu la contrasenya actual per confirmar-la.",
+ "Refresh Interval": "Interval de refresc",
+ "signedInDispDisabled": "Autenticació desactivada.",
+ "RadiusCalledStationIdDescription": "Identificador del dispositiu anomenat",
+ "Also check beta release": "Comprova també la versió beta",
+ "The resource is no longer available.": "El recurs ja no està disponible.",
+ "certificationExpiryDescription": "Els monitors HTTPS activen la notificació quan el certificat TLS caduca a:",
+ "deleteDockerHostMsg": "Esteu segur que voleu suprimir aquest amfitrió de l'acoblador per a tots els monitors?",
+ "tailscalePingWarning": "Per utilitzar el monitor de Ping Tailscale, heu d'instal·lar el Kuma Uptime sense Docker i també instal·lar el client Tailscale al vostre servidor.",
+ "telegramSendSilentlyDescription": "Envia el missatge en silenci. Els usuaris rebran una notificació sense so.",
+ "telegramProtectContentDescription": "Si està activat, els missatges del bot del Telegram estaran protegits contra reenviaments i desaments.",
+ "wayToGetTelegramChatID": "Podeu obtenir el vostre ID de xat enviant un missatge al bot i anant a aquest URL per veure el xat id:",
+ "trustProxyDescription": "Confia en les capçaleres «X-Forwarded-*». Si voleu obtenir la IP del client correcta i el vostre Kuma Uptime està darrere d'un servidor intermediari com Nginx o Apache, hauríeu d'activar-ho.",
+ "Long-Lived Access Token can be created by clicking on your profile name (bottom left) and scrolling to the bottom then click Create Token. ": "Es pot crear un testimoni d'accés de llarga durada fent clic al nom del vostre perfil (a baix a l'esquerra) i desplaçant-vos a la part inferior i després feu clic a Crea un testimoni. ",
+ "default: notify all devices": "per defecte: notifica tots els dispositius",
+ "A list of Notification Services can be found in Home Assistant under \"Developer Tools > Services\" search for \"notification\" to find your device/phone name.": "Podeu trobar una llista dels Serveis de Notificació a l'assistent d'inici a «Eines de revelador . Serveis» cerca «notificació» per trobar el nom del vostre dispositiu/telèfon.",
+ "backupOutdatedWarning": "Obsolet: Atès que s'han afegit moltes característiques i aquesta funció de còpia de seguretat és una mica inexistent, no pot generar o restaurar una còpia de seguretat completa.",
+ "lastDay1": "L'últim dia del mes",
+ "pauseMaintenanceMsg": "Segur que voleu fer una pausa?",
+ "maintenanceStatus-ended": "Finalitzat",
+ "Display Timezone": "Mostra la zona horària",
+ "enableNSCD": "Habilita NSCD (Dimoni de memòria cau de Servei del Nom ) per accelerar les sol·licituds de DNS",
+ "chromeExecutableDescription": "Per a usuaris de Docker, si el Chrome no està encara instal·lat, pot dur uns quants minuts per instal·lar i mostrar el resultat de prova. Duu 1*GB d'espai de disc.",
+ "uninstalling": "Desinstal·lant",
+ "smtp": "Correu electrònic (SMTP)",
+ "smtpLiquidIntroduction": "Els següents dos camps són personalitzables via \"Liquid templating Language\". Per favor refereix al {0} per a instruccions d'ús. Aquests són les variables disponibles:",
+ "emailTemplateMsg": "missatge de la notificació",
+ "emailTemplateLimitedToUpDownNotification": "només disponible per estats UP/Down, altrament null",
+ "Select message type": "Selecciona el tipus de missatge",
+ "whatHappensAtForumPost": "Crea una nova publicació de fòrum. Això no publica un missatge a un fòrum existent. Per publicar un fil existent utilitza \"{option}\"",
+ "Channel access token": "Fitxa d'accés del canal",
+ "Body": "Cos",
+ "or": "o",
+ "PushUrl": "URL de captura",
+ "HeadersInvalidFormat": "Les capçaleres de sol·licitud no són JSON vàlides: ",
+ "BodyInvalidFormat": "El cos de petició no és JSON vàlid: ",
+ "Security": "Seguretat",
+ "Pick Accepted Status Codes...": "Trieu els codis d'estat acceptats…",
+ "error": "error",
+ "critical": "crítica",
+ "Please input title and content": "Introduïu el títol i el contingut",
+ "telegramServerUrl": "(Opcional) Url del servidor",
+ "telegramServerUrlDescription": "Per saltar-se les limitacions del bot de Telegram o tenir accés a regions bloquejades (China, Iran, etc). Per a més informació fes click {0}. Per defecte {1}",
+ "templateServiceName": "Nom del servei",
+ "templateHostnameOrURL": "Adreça URL o nom del host",
+ "templateStatus": "Estat",
+ "telegramUseTemplate": "Fes servir una plantilla de missatge personalitzada",
+ "telegramUseTemplateDescription": "Si s'activa, el missatge s'enviarà fent servir una plantilla personalitzada.",
+ "telegramTemplateFormatDescription": "Telegram permet l'ús de diferents tipus de llenguatges de marcat, llegeix Telegram {0} per més detalls."
}
diff --git a/src/lang/de-CH.json b/src/lang/de-CH.json
index 15b60519f..85a921ee9 100644
--- a/src/lang/de-CH.json
+++ b/src/lang/de-CH.json
@@ -1095,5 +1095,24 @@
"Separate multiple email addresses with commas": "Mehrere E-Mail-Adressen mit Kommas trennen",
"rabbitmqNodesInvalid": "Benutze eine vollständig qualifizierte URL (beginnend mit 'http') für RabbitMQ-Knoten.",
"rabbitmqHelpText": "Um den Monitor zu benutzen, musst du das Management Plugin in deinem RabbitMQ-Setup aktivieren. Weitere Informationen siehe {rabitmq_documentation}.",
- "aboutSlackUsername": "Ändert den Anzeigenamen des Absenders. Wenn du jemanden erwähnen möchtest, füge ihn stattdessen in den Namen ein."
+ "aboutSlackUsername": "Ändert den Anzeigenamen des Absenders. Wenn du jemanden erwähnen möchtest, füge ihn stattdessen in den Namen ein.",
+ "templateHostnameOrURL": "Hostname oder URL",
+ "telegramUseTemplate": "Benutzerdefinierte Nachrichtenvorlage verwenden",
+ "telegramUseTemplateDescription": "Wenn diese Option aktiviert ist, wird die Nachricht unter Verwendung einer benutzerdefinierten Vorlage gesendet.",
+ "templateServiceName": "Service-Name",
+ "YZJ Webhook URL": "YZJ Webhook URL",
+ "YZJ Robot Token": "YZJ Robot Token",
+ "templateStatus": "Status",
+ "telegramTemplateFormatDescription": "Telegram ermöglicht die Verwendung verschiedener Markup-Sprachen für Nachrichten, siehe Telegram {0} für spezifische Details.",
+ "Plain Text": "Nur Text",
+ "Message Template": "Nachrichtenvorlage",
+ "Template Format": "Vorlagenformat",
+ "wayToGetWahaApiUrl": "Die URL deiner WAHA-Instanz.",
+ "wayToGetWahaSession": "Von dieser Sitzung aus sendet WAHA Benachrichtigungen an die Chat-ID. Du kannst sie im WAHA Dashboard finden.",
+ "wahaSession": "Sitzung",
+ "wahaChatId": "Chat-ID (Telefonnummer / Kontakt-ID / Gruppen-ID)",
+ "wayToGetWahaApiKey": "API-Schlüssel ist der Wert der WHATSAPP_API_KEY-Umgebungsvariable, den du beim Ausführen von WAHA verwendet hast.",
+ "wayToWriteWahaChatId": "Die Telefonnummer mit internationaler Vorwahl, ohne den anfänglichen Pluszeichen ({0}), die Kontakt-ID ({1}) oder die Gruppen-ID ({2}). Die Benachrichtigungen werden an diese Chat-ID von der WAHA-Sitzung gesendet.",
+ "telegramServerUrl": "(Optional) Server URL",
+ "telegramServerUrlDescription": "Um die Telegram-Bot-API-Beschränkungen aufzuheben oder in gesperrten Gebieten (China, Iran usw.) Zugriff zu erhalten. Weitere Informationen findest du unter {0}. Standard: {1}"
}
diff --git a/src/lang/de-DE.json b/src/lang/de-DE.json
index 9102d8e94..5aff2e344 100644
--- a/src/lang/de-DE.json
+++ b/src/lang/de-DE.json
@@ -1098,5 +1098,24 @@
"rabbitmqNodesDescription": "Gib die URL für die RabbitMQ-Verwaltungsknoten einschließlich Protokoll und Port ein. Beispiel: {0}",
"rabbitmqNodesInvalid": "Benutze eine vollständig qualifizierte URL (beginnend mit 'http') für RabbitMQ-Knoten.",
"rabbitmqHelpText": "Um den Monitor zu benutzen, musst du das Management Plugin in deinem RabbitMQ-Setup aktivieren. Weitere Informationen siehe {rabitmq_documentation}.",
- "aboutSlackUsername": "Ändert den Anzeigenamen des Absenders. Wenn du jemanden erwähnen möchtest, füge ihn stattdessen in den Namen ein."
+ "aboutSlackUsername": "Ändert den Anzeigenamen des Absenders. Wenn du jemanden erwähnen möchtest, füge ihn stattdessen in den Namen ein.",
+ "templateHostnameOrURL": "Hostname oder URL",
+ "telegramUseTemplate": "Benutzerdefinierte Nachrichtenvorlage verwenden",
+ "telegramTemplateFormatDescription": "Telegram ermöglicht die Verwendung verschiedener Markup-Sprachen für Nachrichten, siehe Telegram {0} für spezifische Details.",
+ "Plain Text": "Nur Text",
+ "templateServiceName": "Service-Name",
+ "YZJ Webhook URL": "YZJ Webhook URL",
+ "YZJ Robot Token": "YZJ Robot Token",
+ "templateStatus": "Status",
+ "telegramUseTemplateDescription": "Wenn diese Option aktiviert ist, wird die Nachricht unter Verwendung einer benutzerdefinierten Vorlage gesendet.",
+ "Message Template": "Nachrichtenvorlage",
+ "Template Format": "Vorlagenformat",
+ "wayToGetWahaApiUrl": "Die URL deiner WAHA-Instanz.",
+ "wahaSession": "Sitzung",
+ "wahaChatId": "Chat-ID (Telefonnummer / Kontakt-ID / Gruppen-ID)",
+ "wayToGetWahaApiKey": "API-Schlüssel ist der Wert der WHATSAPP_API_KEY-Umgebungsvariable, den du beim Ausführen von WAHA verwendet hast.",
+ "wayToGetWahaSession": "Von dieser Sitzung aus sendet WAHA Benachrichtigungen an die Chat-ID. Du kannst sie im WAHA Dashboard finden.",
+ "wayToWriteWahaChatId": "Die Telefonnummer mit internationaler Vorwahl, ohne den anfänglichen Pluszeichen ({0}), die Kontakt-ID ({1}) oder die Gruppen-ID ({2}). Die Benachrichtigungen werden an diese Chat-ID von der WAHA-Sitzung gesendet.",
+ "telegramServerUrlDescription": "Um die Telegram-Bot-API-Beschränkungen aufzuheben oder in gesperrten Gebieten (China, Iran usw.) Zugriff zu erhalten. Weitere Informationen findest du unter {0}. Standard: {1}",
+ "telegramServerUrl": "(Optional) Server URL"
}
diff --git a/src/lang/en.json b/src/lang/en.json
index f21c7e6f1..94deb0a81 100644
--- a/src/lang/en.json
+++ b/src/lang/en.json
@@ -231,6 +231,9 @@
"templateMonitorJSON": "object describing the monitor",
"templateLimitedToUpDownCertNotifications": "only available for UP/DOWN/Certificate expiry notifications",
"templateLimitedToUpDownNotifications": "only available for UP/DOWN notifications",
+ "templateServiceName": "service name",
+ "templateHostnameOrURL": "hostname or URL",
+ "templateStatus": "status",
"webhookAdditionalHeadersTitle": "Additional Headers",
"webhookAdditionalHeadersDesc": "Sets additional headers sent with the webhook. Each header should be defined as a JSON key/value.",
"webhookBodyPresetOption": "Preset - {0}",
@@ -421,8 +424,13 @@
"telegramSendSilentlyDescription": "Sends the message silently. Users will receive a notification with no sound.",
"telegramProtectContent": "Protect Forwarding/Saving",
"telegramProtectContentDescription": "If enabled, the bot messages in Telegram will be protected from forwarding and saving.",
+ "telegramUseTemplate": "Use custom message template",
+ "telegramUseTemplateDescription": "If enabled, the message will be sent using a custom template.",
+ "telegramTemplateFormatDescription": "Telegram allows using different markup languages for messages, see Telegram {0} for specifc details.",
"supportTelegramChatID": "Support Direct Chat / Group / Channel's Chat ID",
"wayToGetTelegramChatID": "You can get your chat ID by sending a message to the bot and going to this URL to view the chat_id:",
+ "telegramServerUrl": "(Optional) Server Url",
+ "telegramServerUrlDescription": "To lift Telegram's bot api limitations or gain access in blocked areas (China, Iran, etc). For more information click {0}. Default: {1}",
"YOUR BOT TOKEN HERE": "YOUR BOT TOKEN HERE",
"chatIDNotFound": "Chat ID is not found; please send a message to this bot first",
"disableCloudflaredNoAuthMsg": "You are in No Auth mode, a password is not required.",
@@ -519,9 +527,6 @@
"leave blank for default subject": "leave blank for default subject",
"emailCustomBody": "Custom Body",
"leave blank for default body": "leave blank for default body",
- "emailTemplateServiceName": "Service Name",
- "emailTemplateHostnameOrURL": "Hostname or URL",
- "emailTemplateStatus": "Status",
"emailTemplateMonitorJSON": "object describing the monitor",
"emailTemplateHeartbeatJSON": "object describing the heartbeat",
"emailTemplateMsg": "message of the notification",
@@ -1056,5 +1061,16 @@
"RabbitMQ Password": "RabbitMQ Password",
"rabbitmqHelpText": "To use the monitor, you will need to enable the Management Plugin in your RabbitMQ setup. For more information, please consult the {rabitmq_documentation}.",
"SendGrid API Key": "SendGrid API Key",
- "Separate multiple email addresses with commas": "Separate multiple email addresses with commas"
+ "Separate multiple email addresses with commas": "Separate multiple email addresses with commas",
+ "wahaSession": "Session",
+ "wahaChatId": "Chat ID (Phone Number / Contact ID / Group ID)",
+ "wayToGetWahaApiUrl": "Your WAHA Instance URL.",
+ "wayToGetWahaApiKey": "API Key is WHATSAPP_API_KEY environment variable value you used to run WAHA.",
+ "wayToGetWahaSession": "From this session WAHA sends notifications to Chat ID. You can find it in WAHA Dashboard.",
+ "wayToWriteWahaChatId": "The phone number with the international prefix, but without the plus sign at the start ({0}), the Contact ID ({1}) or the Group ID ({2}). Notifications are sent to this Chat ID from WAHA Session.",
+ "YZJ Webhook URL": "YZJ Webhook URL",
+ "YZJ Robot Token": "YZJ Robot token",
+ "Plain Text": "Plain Text",
+ "Message Template": "Message Template",
+ "Template Format": "Template Format"
}
diff --git a/src/lang/fa.json b/src/lang/fa.json
index 864fa71d9..b66bed8f8 100644
--- a/src/lang/fa.json
+++ b/src/lang/fa.json
@@ -1036,5 +1036,37 @@
"Elevator": "آسانسور",
"Guitar": "گیتار",
"Pop": "پاپ",
- "From": "از"
+ "From": "از",
+ "telegramServerUrl": "(اختیاری) آدرس سرور",
+ "telegramServerUrlDescription": "برای کاهش محدودیتهای بات تلگرام یا دسترسی در مناطقی که تلگرام فیلتر شده است (مثل ایران یا چین و ...). برای اطلاعات بیشتر {0} را ببینید. مقدار پیشفرض: {1}",
+ "Alphanumerical string and hyphens only": "فقط حروف الفبا، اعداد و -",
+ "Time sensitive notifications will be delivered immediately, even if the device is in do not disturb mode.": "اعلانهای حساس به زمان در لحظه ارسال خواهند شد، حتی اگر دستگاه در حالت بدون مزاحمت قرار داشته باشد.",
+ "rabbitmqNodesRequired": "لطفا گرههای این پایشگر را تنظیم کنید.",
+ "RabbitMQ Password": "گذرواژه RabbitMQ",
+ "RabbitMQ Nodes": "گرههای مدیریت RabbitMQ",
+ "rabbitmqHelpText": "برای پایش، لازم است افزونه مدیریت (Management) در RabbitMQ را فعال کنید. برای اطلاعات بیشتر به {rabitmq_documentation} مراجعه کنید.",
+ "wayToWriteWahaChatId": "شماره موبایل در قالب بینالمللی و بدون علامت مثبت ابتدایی ({0})، شناسه مخاطب ({1}) یا شناسه گروه ({2}). اعلانها از نشست WAHA به این شناسه گفتگو ارسال خواهند شد.",
+ "wahaSession": "نشست",
+ "wahaChatId": "شناسه گفتگو (شماره موبایل / شناسه مخاطب / شناسه گروه)",
+ "wayToGetWahaSession": "با این نشست WAHA اعلانها را به شناسه گفتگو ارسال میکند. قابل مشاهده در پنل کاربری WAHA.",
+ "Message Template": "قالب پیام",
+ "Template Format": "فرمت قالب",
+ "YZJ Webhook URL": "آدرس وبهوک YZJ",
+ "Fail": "شکست",
+ "Custom sound to override default notification sound": "نوای دلخواه به جای نوای پیشفرض اعلان",
+ "Time Sensitive (iOS Only)": "حساس به زمان (فقط iOS)",
+ "Can be found on:": "در {0} یافت میشود",
+ "Either a text sender ID or a phone number in E.164 format if you want to be able to receive replies.": "شناسه ارسال کننده متنی و در صورتی که میخواهید پاسخها را دریافت کنید، شماره موبایل در قالب E.164.",
+ "rabbitmqNodesDescription": "آدرس گرههای مدیریت RabbitMQ را به همراه پروتکل و شماره پورت وارد کنید. مثال: {0}",
+ "RabbitMQ Username": "نام کاربری RabbitMQ",
+ "Separate multiple email addresses with commas": "آدرسهای ایمیل را با استفاده از ویرگول انگلیسی یا کاما جدا کنید",
+ "Plain Text": "متن ساده",
+ "aboutSlackUsername": "نام نمایشی ارسال کننده پیام را تغییر میدهد. اگر میخواهید شخصی را نام ببرید، در قسمت نام دوستانه بنویسید.",
+ "Clear": "پاکسازی",
+ "templateServiceName": "نام خدمت",
+ "templateHostnameOrURL": "آدرس یا نام میزبان",
+ "templateStatus": "وضعیت",
+ "telegramUseTemplate": "استفاده از قالب پیام دلخواه",
+ "telegramUseTemplateDescription": "در صورت فعالسازی، پیام با قالب دلخواه ارسال خواهد شد.",
+ "telegramTemplateFormatDescription": "در تلگرام امکان استفاده از زبانهای نشانهگذاری مختلفی وجود دارد، برای جزئیات بیشتر {0} را ببینید."
}
diff --git a/src/lang/fr-FR.json b/src/lang/fr-FR.json
index 7300cba3e..0a6f66cd7 100644
--- a/src/lang/fr-FR.json
+++ b/src/lang/fr-FR.json
@@ -1098,5 +1098,24 @@
"rabbitmqHelpText": "Pour utiliser la sonde, vous devrez activer le plug-in de gestion dans votre configuration RabbitMQ. Pour plus d'informations, veuillez consulter la {rabitmq_documentation}.",
"SendGrid API Key": "Clé API SendGrid",
"Separate multiple email addresses with commas": "Séparez plusieurs adresses e-mail par des virgules",
- "aboutSlackUsername": "Modifie le nom d'affichage de l'expéditeur du message. Si vous souhaitez mentionner quelqu’un, incluez-le plutôt dans le nom convivial."
+ "aboutSlackUsername": "Modifie le nom d'affichage de l'expéditeur du message. Si vous souhaitez mentionner quelqu’un, incluez-le plutôt dans le nom convivial.",
+ "templateHostnameOrURL": "Nom d'hôte ou URL",
+ "telegramUseTemplate": "Utiliser un modèle de message personnalisé",
+ "telegramTemplateFormatDescription": "Telegram permet d'utiliser différents langages de balisage pour les messages, voir Telegram {0} pour plus de détails.",
+ "Plain Text": "Texte brut",
+ "YZJ Webhook URL": "URL du webhook YZJ",
+ "YZJ Robot Token": "Jeton robot YZJ",
+ "templateServiceName": "Nom du service",
+ "templateStatus": "Status",
+ "telegramUseTemplateDescription": "Si cette option est activée, le message sera envoyé à l'aide d'un modèle personnalisé.",
+ "Message Template": "Modèle de message",
+ "Template Format": "Format du modèle",
+ "wayToGetWahaApiUrl": "L’URL de votre instance WAHA.",
+ "wayToGetWahaSession": "À partir de cette session, WAHA envoie des notifications à l'ID de discussion. Vous pouvez le trouver dans le tableau de bord WAHA.",
+ "wahaSession": "Session",
+ "wahaChatId": "ID de discussion (numéro de téléphone / ID de contact / ID de groupe)",
+ "wayToGetWahaApiKey": "La clé API est la valeur de la variable d'environnement WHATSAPP_API_KEY que vous avez utilisée pour exécuter WAHA.",
+ "wayToWriteWahaChatId": "Le numéro de téléphone avec le préfixe international, mais sans le signe plus ({0}), l'identifiant de contact ({1}) ni l'identifiant de groupe ({2}). Les notifications sont envoyées à cet identifiant de chat depuis la session WAHA.",
+ "telegramServerUrlDescription": "Pour lever les limitations de l’API des bots Telegram ou accéder aux zones bloquées (Chine, Iran, etc.). Pour plus d’informations, cliquez sur {0}. Par défaut : {1}",
+ "telegramServerUrl": "(Facultatif) URL du serveur"
}
diff --git a/src/lang/hr-HR.json b/src/lang/hr-HR.json
index bdf5a6b6f..164cd217f 100644
--- a/src/lang/hr-HR.json
+++ b/src/lang/hr-HR.json
@@ -194,11 +194,11 @@
"telegram": "Telegram",
"Bot Token": "Token bota",
"wayToGetTelegramToken": "Token možete nabaviti preko {0}.",
- "Chat ID": "ID razgovora",
- "supportTelegramChatID": "Podržani su ID-jevi izravnih razgovora, grupa i kanala",
- "wayToGetTelegramChatID": "ID razgovora možete saznati tako da botu pošaljete poruku te odete na ovaj URL:",
- "YOUR BOT TOKEN HERE": "OVDJE IDE TOKEN BOTA",
- "chatIDNotFound": "ID razgovora nije pronađen; prvo morate poslati poruku botu",
+ "Chat ID": "Identifikator razgovora",
+ "supportTelegramChatID": "Podržani su identifikatori izravnih razgovora, grupa i kanala",
+ "wayToGetTelegramChatID": "Identifikator razgovora možete saznati tako da botu pošaljete poruku te odete na ovaj URL:",
+ "YOUR BOT TOKEN HERE": "TOKEN BOTA STAVITI OVDJE",
+ "chatIDNotFound": "Identifikator razgovora nije pronađen; prvo morate poslati poruku botu",
"webhook": "Webhook",
"Post URL": "URL Post zahtjeva",
"Content Type": "Tip sadržaja (Content Type)",
@@ -267,7 +267,7 @@
"Check octopush prices": "Provjerite cijene usluge Octopush {0}.",
"octopushPhoneNumber": "Telefonski broj (međunarodni format, primjerice: +38512345678) ",
"octopushSMSSender": "Naziv SMS pošiljatelja : 3-11 alfanumeričkih znakova i razmak (a-zA-Z0-9)",
- "LunaSea Device ID": "LunaSea ID Uređaja",
+ "LunaSea Device ID": "LunaSea identifikator uređaja",
"Apprise URL": "URL usluge Apprise",
"Example:": "Primjerice: {0}",
"Read more:": "Pročitajte više: {0}",
@@ -280,9 +280,9 @@
"Line Developers Console": "LINE razvojnoj konzoli",
"lineDevConsoleTo": "LINE razvojna konzola - {0}",
"Basic Settings": "Osnovne Postavke",
- "User ID": "Korisnički ID",
+ "User ID": "Korisnički identifikator",
"Messaging API": "API za razmjenu poruka",
- "wayToGetLineChannelToken": "Prvo, pristupite {0}, kreirajte pružatelja usluga te kanal (API za razmjenu poruka), zatim možete dobiti token za pristup kanalu te korisnički ID za polja iznad.",
+ "wayToGetLineChannelToken": "Prvo, pristupite {0}, kreirajte pružatelja usluga te kanal (API za razmjenu poruka), zatim možete dobiti token za pristup kanalu te identifikator korisnika za polja iznad.",
"Icon URL": "URL slike",
"aboutIconURL": "Možete postaviti poveznicu na sliku u polju \"URL slike\" kako biste spriječili korištenje zadane slike. Ovo se polje neće koristiti ako je postavljeno polje \"Emotikon\".",
"aboutMattermostChannelName": "Možete promijeniti kanal u kojeg webhook šalje tako da ispunite polje \"Naziv kanala\". Ta opcija mora biti omogućena unutar Mattermost postavki za webhook. Primjerice: #neki-kanal",
@@ -554,7 +554,7 @@
"socket": "Docker socket",
"tcp": "TCP / HTTP",
"Docker Container": "Docker kontejner",
- "Container Name / ID": "Naziv / ID kontejnera",
+ "Container Name / ID": "Naziv / identifikator kontejnera",
"Docker Host": "Docker domaćin",
"Docker Hosts": "Docker domaćini",
"ntfy Topic": "ntfy tema",
@@ -632,7 +632,7 @@
"Authorization Identity": "Identitet autorizacije",
"weekdayShortThu": "Čet",
"setupDatabaseChooseDatabase": "Koju bazu podataka želite koristiti?",
- "setupDatabaseEmbeddedMariaDB": "Ne morate ništa dodatno postavljati. Ovaj docker image ima ugrađenu i konfiguriranu MariaDB bazu podataka za Vas. Uptime Kuma će se spojiti na ovu bazu preko UNIX socketa.",
+ "setupDatabaseEmbeddedMariaDB": "Ne morate ništa dodatno postavljati. Ovaj Docker image ima ugrađenu i konfiguriranu MariaDB bazu podataka za Vas. Uptime Kuma će se spojiti na ovu bazu preko UNIX socketa.",
"setupDatabaseMariaDB": "Spojite vanjsku MariaDB bazu podataka. Morate unijeti informacije o konekciji prema bazi.",
"setupDatabaseSQLite": "Jednostavna datoteka s bazom podataka, preporuča se samo za manje implementacije. Prije inačice v2.0.0, Uptime Kuma je koristila SQLite kao zadanu bazu podataka.",
"dbName": "Naziv baze podataka",
@@ -648,7 +648,7 @@
"webhookBodyCustomOption": "Prilagođeno tijelo zahtjeva",
"selectedMonitorCount": "Odabrano: {0}",
"Check/Uncheck": "Označi/odznači",
- "telegramMessageThreadID": "(Neobavezno) ID dretve poruka",
+ "telegramMessageThreadID": "(Neobvezno) Identivikator dretve poruka",
"telegramMessageThreadIDDescription": "Neobavezni jedinstveni identifikator za dretvu poruka (temu) foruma; samo za forumske supergrupe",
"telegramSendSilently": "Pošalji nečujno",
"telegramSendSilentlyDescription": "Šalje poruku nečujno. Primatelji će dobiti obavijest bez zvuka.",
@@ -689,7 +689,7 @@
"confirmDeleteTagMsg": "Jeste li sigurni da želite izbrisati ovu oznaku? Monitori povezani s ovom oznakom neće biti izbrisani.",
"enableGRPCTls": "Omogući sigurno slanje gRPC zahtjeva koristeći TLS",
"deleteMaintenanceMsg": "Jeste li sigurni da želite izbrisati ovo održavanje?",
- "Guild ID": "ID za guild",
+ "Guild ID": "Identifikator za guild",
"pushoverMessageTtl": "Vrijeme isteka poruke (u sekundama)",
"Proto Method": "Metoda poziva",
"Proto Content": "Proto sadržaj",
@@ -937,7 +937,7 @@
"cellsyntOriginator": "Vidljivo na mobilnom telefonu primatelja kao autor poruke. Dopuštene vrijednosti i funkcija ovise o vrsti izvorišta.",
"cellsyntDestination": "Telefonski broj primatelja u međunarodnom formatu s početnim 00 iza kojeg slijedi pozivni broj države (maksimalno 17 znamenki). Primjerice, za broj iz UK-a 07920-110-000 vrijednost mora biti 00447920110000 . Maksimalno 25.000 primatelja odvojenih zarezom po HTTP zahtjevu.",
"Channel access token (Long-lived)": "Pristupni token za kanal (dugovječni)",
- "Your User ID": "Vaš korisnički identifikator",
+ "Your User ID": "Vaš korisnički identifikator (ID)",
"wayToGetSevenIOApiKey": "Posjetite nadzornu ploču odlaskom na app.seven.io > Developer > API Key i dodajte novi ključ koristeći zeleni gumb za dodavanje",
"Command": "Naredba",
"mongodbCommandDescription": "Pokreni MongoDB naredbu na bazi podataka. Za informacije o dostupnim naredbama posjetite {documentation}",
@@ -1092,5 +1092,24 @@
"RabbitMQ Nodes": "RabbitMQ upravljački čvorovi",
"rabbitmqNodesDescription": "Unesite URL za upravljačke čvorove RabbitMQ uključujući protokol i port. Primjer: {0}",
"rabbitmqHelpText": "Za korištenje ovog Monitora morat ćete omogućiti dodatak \"Management Plugin\" u svom RabbitMQ-u. Za više informacija pogledajte {rabitmq_documentation}.",
- "aboutSlackUsername": "Mijenja ime pošiljatelja vidljivo svima ostalima."
+ "aboutSlackUsername": "Mijenja ime pošiljatelja vidljivo svima ostalima.",
+ "templateServiceName": "naziv servisa",
+ "telegramUseTemplate": "Koristi prilagođeni predložak poruke",
+ "telegramTemplateFormatDescription": "Telegram dozvoljava korištenje različitih markup jezika za formatiranje poruka, pogledajte {0} za više detalja.",
+ "YZJ Robot Token": "YZJ token robota",
+ "YZJ Webhook URL": "YZJ URL webhooka",
+ "templateHostnameOrURL": "domaćin ili URL",
+ "templateStatus": "status",
+ "telegramUseTemplateDescription": "Ako je omogućeno, poruka će biti poslana koristeći prilagođeni predložak.",
+ "Plain Text": "Obični tekst",
+ "Message Template": "Predložak poruke",
+ "Template Format": "Format predloška",
+ "wahaSession": "Sjednica",
+ "wahaChatId": "Identifikator razgovora (telefonski broj / ID kontakta / ID grupe)",
+ "wayToGetWahaApiUrl": "URL instance WAHA.",
+ "wayToGetWahaApiKey": "API ključ je vrijednost varijable okruženja WHATSAPP_API_KEY koju ste koristili za pokretanje servisa WAHA.",
+ "wayToGetWahaSession": "Iz ove sjednice WAHA šalje obavijesti na identifikator razgovora. Može se pronaći na WAHA nadzornoj ploči.",
+ "wayToWriteWahaChatId": "Telefonski broj s međunarodnim prefiksom, ali bez znaka plus na početku ({0}), identifikator kontakta ({1}) ili identifikator grupe ({2}). Obavijesti se šalju na ovaj identifikator chata iz WAHA sesije.",
+ "telegramServerUrl": "(Neobvezno) URL Poslužitelja",
+ "telegramServerUrlDescription": "Za ukidanje ograničenja API-ja za botove Telegrama ili dobivanje pristupa u blokiranim područjima (Kina, Iran, itd.). Za više informacija kliknite {0}. Zadano: {1}"
}
diff --git a/src/lang/hu.json b/src/lang/hu.json
index e22444a9b..2b0b8a625 100644
--- a/src/lang/hu.json
+++ b/src/lang/hu.json
@@ -542,7 +542,7 @@
"chromeExecutableAutoDetect": "Automatikus felismerés",
"emailTemplateStatus": "Státusz",
"deleteMaintenanceMsg": "Biztosan törölni szeretné ezt a karbantartást?",
- "apiKeyAddedMsg": "Az ön API kulcsa létrejött. Kérjük jegyezze fel, mert nem lesz a felületen elérhető.",
+ "apiKeyAddedMsg": "Az ön API kulcsa létrejött. Kérjük jegyezze fel, mert nem lesz a felületen elérhető a jövőben!",
"Expires": "Lejár",
"disableAPIKeyMsg": "Biztosan le fel szeretné függeszteni ezt az API kulcsot?",
"Key Added": "Kulcs létrehozva",
@@ -735,7 +735,7 @@
"RadiusSecretDescription": "Megosztott titok az ügyfél és a szerver között",
"RadiusCalledStationId": "Hívott állomás azonosítója",
"Date and Time": "Dátum és idő",
- "enableNSCD": "Az NSCD (Name Service Cache Daemon) engedélyezése az összes DNS-kérés gyorsítótárba helyezéséhez",
+ "enableNSCD": "Az NSCD (Name Service Cache Daemon) engedélyezése az összes DNS-kérés gyorsítótárazásához.",
"Edit Maintenance": "Karbantartás szerkesztése",
"smseagleGroup": "Telefonkönyv csoport neve(i)",
"styleElapsedTime": "Az eltelt idő a heartbeat sáv alatt",
@@ -900,7 +900,7 @@
"Press Enter to add broker": "Bróker hozzáadásához nyomja meg az ENTER billentyűt",
"Enable Kafka SSL": "Kafka SSL engedélyezése",
"Enable Kafka Producer Auto Topic Creation": "Kafka Producer automatikus téma létrehozásának engedélyezése",
- "Kafka Producer Message": "Kafka producer üzenet",
+ "Kafka Producer Message": "Kafka Producer üzenet",
"Kafka SASL Options": "Kafka SASL opciók",
"Pick a SASL Mechanism...": "Válassz egy SASL mechanizmus-t…",
"AccessKey Id": "Hozzáférési Kulcs ID",
@@ -933,7 +933,7 @@
"Command": "Utasítás",
"wayToGetSevenIOApiKey": "Látogasson el a műszerfalra az app.seven.io > developer > api key > a zöld hozzáadás gombra",
"senderSevenIO": "Szám vagy név küldése",
- "receiverSevenIO": "Szám fogadása",
+ "receiverSevenIO": "Fogadó telefonszáma",
"apiKeySevenIO": "SevenIO API kulcs",
"wayToWriteWhapiRecipient": "A telefonszám a nemzetközi előtaggal, de az elején lévő pluszjel nélkül ({0}), a kapcsolattartó azonosítója ({1}) vagy a csoport azonosítója ({2}).",
"Separate multiple email addresses with commas": "Több e-mail cím elválasztása vesszővel",
@@ -943,7 +943,7 @@
"not equals": "nem egyenlő",
"contains": "tartalmaz",
"not contains": "nem tartalmaz",
- "ends with": "végződik",
+ "ends with": "végződik a",
"not ends with": "nem végződik a",
"greater than": "nagyobb, mint",
"less than": "kisebb, mint",
@@ -972,15 +972,15 @@
"RabbitMQ Password": "RabbitMQ jelszó",
"SendGrid API Key": "SendGrid API kulcs",
"pagertreeHigh": "Magas",
- "noOrBadCertificate": "Hiányzó/Hibás tanúsítvány",
+ "noOrBadCertificate": "Nincs/rossz tanúsítvány",
"whatHappensAtForumPost": "Új fórumbejegyzés létrehozása. NEM küldi el a meglévő hozzászólásokhoz. Meglévő hozzászólásokhoz az \"{option}\" használatával lehet hozzászólni",
"snmpCommunityStringHelptext": "Ez a karakterlánc jelszóként szolgál az SNMP-kompatibilis eszközök hitelesítésére és a hozzáférés ellenőrzésére. Egyeztesse az SNMP-eszköz konfigurációjával.",
"snmpOIDHelptext": "Adja meg a megfigyelni kívánt érzékelő vagy állapot OID azonosítóját. Ha nem biztos az OID-ben, használjon hálózatirányítási eszközöket, például MIB-böngészőket vagy SNMP-szoftvereket.",
"privateOnesenderDesc": "Győződjön meg róla, hogy a telefonszám érvényes. Üzenet küldése privát telefonszámra, például: 628123456789",
"Authorization Header": "Hitelesítési Fejléc",
"wayToGetDiscordThreadId": "Szál / fórum bejegyzés ID lekérése hasonló, a csatorna ID lekéréséhez. Itt olvashatsz tovább az ID-k lekérésől{0}",
- "Badge Type": "Jelvény Típusa",
- "Badge Duration (in hours)": "Jelvény Időtartama (órákban)",
+ "Badge Type": "Jelvény típusa",
+ "Badge Duration (in hours)": "Jelvény Időtartam (órákban)",
"Badge Label": "Jelvény Címke",
"Badge Prefix": "Jelvény Érték Előtag",
"Badge Suffix": "Jelvény Érték Utótag",
@@ -1050,7 +1050,7 @@
"rabbitmqNodesRequired": "Állítsa be a csomópontokat ehhez a figyelőhöz.",
"rabbitmqNodesDescription": "Adja meg a RabbitMQ menedszer csomópontok URL-jét beleértve a protokollt és a port számát is. Példa: {0}",
"shrinkDatabaseDescriptionSqlite": "SQLite adatbázis {vacuum} indítása. Az {auto_vacuum} már engedélyezve van, de ez nem defragmentálja az adatbázist, és nem csomagolja újra az egyes adatbázisoldalakat, ahogyan a {vacuum} parancs teszi.",
- "invertKeywordDescription": "Keresés a kulcsszó hiányára.",
+ "invertKeywordDescription": "Keresse meg, hogy a kulcsszó inkább hiányzik-e, mint jelen van.",
"No tags found.": "Nem található címkék.",
"twilioToNumber": "Címzett szám",
"twilioFromNumber": "Feladó szám",
diff --git a/src/lang/it-IT.json b/src/lang/it-IT.json
index 503cfc6c6..12278ff29 100644
--- a/src/lang/it-IT.json
+++ b/src/lang/it-IT.json
@@ -114,7 +114,7 @@
"Username": "Nome utente",
"Password": "Password",
"Remember me": "Ricorda credenziali",
- "Login": "Accesso",
+ "Login": "Accedi",
"No Monitors, please": "Nessun monitor presente,",
"add one": "aggiungine uno",
"Notification Type": "Servizio di notifica",
@@ -559,7 +559,7 @@
"dataRetentionTimeError": "Il periodo di conservazione deve essere pari o superiore a 0",
"infiniteRetention": "Impostare su 0 per la conservazione infinita.",
"enableGRPCTls": "Consenti l'invio di richieste gRPC con connessione TLS",
- "grpcMethodDescription": "Il nome del metodo viene convertito nel formato cammelCase come sayHello, check, ecc.",
+ "grpcMethodDescription": "Il nome del metodo viene convertito nel formato camelCase come sayHello, check, ecc.",
"styleElapsedTimeShowNoLine": "Mostra (nessuna riga)",
"Add New Tag": "Aggiungi nuova etichetta",
"webhookCustomBodyDesc": "Definire un corpo HTTP personalizzato per la richiesta. Le variabili modello {msg}, {heartbeat}, {monitor} sono accettate.",
diff --git a/src/lang/ka.json b/src/lang/ka.json
index 2617e17c7..db4d89cf0 100644
--- a/src/lang/ka.json
+++ b/src/lang/ka.json
@@ -17,5 +17,6 @@
"List": "სია",
"Add": "დამატება",
"Add New Monitor": "ახალი მონიტორის დამატება",
- "Down": "დაბლა"
+ "Down": "დაბლა",
+ "setupDatabaseChooseDatabase": "რომელი მონაცემთა ბაზის გამოყენება გსურთ?"
}
diff --git a/src/lang/lt.json b/src/lang/lt.json
index 3674dc2c0..874927911 100644
--- a/src/lang/lt.json
+++ b/src/lang/lt.json
@@ -12,20 +12,20 @@
"List": "Sąrašas",
"Home": "Pradžia",
"Add": "Pridėti",
- "Add New Monitor": "Įtraukti naują monitorių",
+ "Add New Monitor": "Pridėti naują stebėjimą",
"Quick Stats": "Greita statistika",
"Up": "Veikia",
- "statusMaintenance": "Profilaktika",
+ "statusMaintenance": "Profilaktikos darbai",
"Unknown": "Nežinomas",
"Cannot connect to the socket server": "Nepavyksta prisijungti prie lizdo serverio",
"Reconnecting...": "Atkuriamas ryšys...",
- "General Monitor Type": "Bendrasis monitoriaus tipas",
- "Passive Monitor Type": "Pasyvusis monitoriaus tipas",
+ "General Monitor Type": "Bendras stebėjimo tipas",
+ "Passive Monitor Type": "Pasyvus stebėjimo tipas",
"markdownSupported": "Palaikoma Markdown sintaksė",
- "Pause": "Pauzė",
+ "Pause": "Pristabdyti",
"Name": "Pavadinimas",
"Status": "Būsena",
- "DateTime": "DataLaikas",
+ "DateTime": "Data ir laikas",
"Message": "Žinutė",
"Resume": "Tęsti",
"Edit": "Redaguoti",
@@ -33,12 +33,12 @@
"Current": "Dabartinis",
"Uptime": "Veikimo trukmė",
"Cert Exp.": "Sertifikato baig.",
- "day": "diena | dienų",
+ "day": "diena | dienos(-ų)",
"-day": "-dienų",
"hour": "valanda",
"-hour": "-valandos",
"Ping": "Ping",
- "Monitor Type": "Monitoriaus tipas",
+ "Monitor Type": "Stebėjimo tipas",
"Keyword": "Raktažodis",
"Invert Keyword": "Invertuoti raktažodį",
"Json Query": "Json užklausa",
@@ -48,28 +48,28 @@
"Request Timeout": "Užklausos trukmės limitas",
"timeoutAfter": "Trukmės limitas po {0} sekundžių",
"Retries": "Pakartotiniai bandymai",
- "Heartbeat Retry Interval": "Širdies ritmo kartojimo intervalas",
+ "Heartbeat Retry Interval": "Patikros signalo kartojimo intervalas",
"Advanced": "Išplėstinis",
"checkEverySecond": "Tikrinti kas {0} sekundžių",
"retryCheckEverySecond": "Pakartotinai bandyti kas {0} sekundžių",
"resendEveryXTimes": "Pakartotinai siųsti kas {0} kartų",
- "resendDisabled": "Pakartotinis siuntimas neįgalintas",
+ "resendDisabled": "Pakartotinis siuntimas išjungtas",
"ignoreTLSError": "TLS/SSL klaidų ignoravimas HTTPS svetainėse",
"ignoreTLSErrorGeneral": "Ignoruoti TLS/SSL ryšio klaidą",
"upsideDownModeDescription": "Apversti būseną aukštyn kojomis. Jei paslauga yra pasiekiama, ji NEVEIKIA.",
"Upside Down Mode": "Apverstas režimas",
"Max. Redirects": "Maksimalūs peradresavimai",
"pushOptionalParams": "Neprivalomi parametrai: {0}",
- "pushViewCode": "Kaip naudoti Push monitorių? (Žiūrėti kodą)",
+ "pushViewCode": "Kaip naudoti Push stebėjimą? (Žiūrėti kodą)",
"pushOthers": "Kiti",
"programmingLanguages": "Programavimo kalbos",
"Save": "Išsaugoti",
"Notifications": "Pranešimai",
- "Not available, please setup.": "Negalima, prašome nustatyti.",
+ "Not available, please setup.": "Nepasiekiama, prašome nustatyti.",
"Setup Notification": "Nustatyti pranešimą",
"Light": "Šviesus",
"Theme - Heartbeat Bar": "Tema - Heartbeat Bar",
- "styleElapsedTime": "Praėjęs laikas po širdies ritmo juosta",
+ "styleElapsedTime": "Praėjęs laikas po patikros signalo juosta",
"styleElapsedTimeShowNoLine": "Rodyti (be linijos)",
"styleElapsedTimeShowWithLine": "Rodyti (su linija)",
"Normal": "Normalus",
@@ -82,7 +82,7 @@
"New Password": "Naujas slaptažodis",
"Repeat New Password": "Naujas slaptažodis",
"Disable Auth": "Išjungti autentifikavimą",
- "Enable Auth": "Įgalinti autentifikavimą",
+ "Enable Auth": "Įjungti autentifikavimą",
"disableauth.message1": "Ar tikrai norite {disableAuth}?",
"setupDatabaseChooseDatabase": "Kurią duomenų bazę norėtumėte naudoti?",
"setupDatabaseMariaDB": "Prisijunkite prie išorinės MariaDB duomenų bazės. Reikia nustatyti duomenų bazės prisijungimo informaciją.",
@@ -90,23 +90,23 @@
"setupDatabaseEmbeddedMariaDB": "Nereikia nieko nustatyti. Šiame Docker atvaizde MariaDB įdiegta ir sukonfigūruota automatiškai. Uptime Kuma prie šios duomenų bazės prisijungs per Unix lizdą.",
"dbName": "Duomenų bazės pavadinimas",
"Theme": "Tema",
- "Game": "Žaidimo",
+ "Game": "Žaidimas",
"Primary Base URL": "Pradinis bazės URL adresas",
"Check Update On GitHub": "Patikrinkite atnaujinimą GitHub",
"Down": "Neveikia",
"Pending": "Laukiama",
"Maintenance": "Profilaktikos darbai",
- "Specific Monitor Type": "Konkretus monitoriaus tipas",
- "pauseDashboardHome": "Pauzė",
+ "Specific Monitor Type": "Konkretus stebėjimo tipas",
+ "pauseDashboardHome": "Pristabdyta",
"No important events": "Jokių svarbių įvykių",
- "Monitor": "Monitorius | Monitorių",
+ "Monitor": "Stebėjimas | Stebėjimai",
"Response": "Atsakymas",
"Expected Value": "Tikėtina vertė",
"Hostname": "Pagrindinio kompiuterio vardas",
"Host URL": "Priimančiojo URL adresas",
"Either enter the hostname of the server you want to connect to or localhost if you intend to use a locally configured mail transfer agent": "Įveskite serverio, prie kurio norite prisijungti, pagrindinį kompiuterio vardą arba {localhost}, jei ketinate naudoti {local_mta}",
"Port": "Prievadas",
- "Heartbeat Interval": "Širdies ritmo intervalas",
+ "Heartbeat Interval": "Patikros signalo intervalas",
"Resend Notification if Down X times consecutively": "Pakartotinis pranešimo siuntimas, jei neveikia X kartų iš eilės",
"retriesDescription": "Didžiausias pakartotinių bandymų skaičius, kol paslauga pažymėta, kaip neveikianti, ir išsiųstas pranešimas",
"maxRedirectDescription": "Didžiausias galimų nukreipimų skaičius. Nustatykite 0, jei norite išjungti nukreipimus.",
@@ -145,30 +145,30 @@
"Create": "Sukurti",
"Clear Data": "Išvalyti duomenis",
"Events": "Įvykiai",
- "Heartbeats": "Širdies ritmas",
- "Affected Monitors": "Paveikti monitoriai",
- "Pick Affected Monitors...": "Pasirinkite paveiktus monitorius…",
+ "Heartbeats": "Patikros signalai",
+ "Affected Monitors": "Paveikti stebėjimai",
+ "Pick Affected Monitors...": "Pasirinkite paveiktus stebėjimus…",
"All Status Pages": "Visi būsenų puslapiai",
"alertWrongFileType": "Pasirinkite JSON failą.",
- "Clear all statistics": "Išvalyti visą statistiką",
+ "Clear all statistics": "Pravalyti visą statistiką",
"Overwrite": "Perrašyti",
"Options": "Parinktys",
"Keep both": "Palikti abu",
"Verify Token": "Paikrinti žetoną",
- "Enable 2FA": "Įgalinti 2FA",
+ "Enable 2FA": "Įjungti 2FA",
"Disable 2FA": "Išjungti 2FA",
"2FA Settings": "2FA nustatymai",
"filterActive": "Aktyvus",
"filterActivePaused": "Sustabdytas",
"Active": "Aktyvus",
"Inactive": "Neaktyvus",
- "Token": "Žetonas",
+ "Token": "Prieigos raktas",
"Show URI": "Rodyti URL",
"Tags": "Žymės",
"Add New Tag": "Pridėti naują žymą",
"Add New below or Select...": "Pridėti naują žemiau arba pasirinkti…",
"color": "Spalva",
- "value (optional)": "reikšmė (neprivaloma)",
+ "value (optional)": "reikšmė (pasirinktinai)",
"Gray": "Pilka",
"Red": "Raudona",
"Green": "Žalia",
@@ -190,17 +190,17 @@
"Status Page": "Būsenos puslapis",
"here": "čia",
"Required": "Privaloma",
- "Post URL": "Post URL",
+ "Post URL": "Įrašo URL",
"Content Type": "Turinio tipas",
"disableauth.message2": "Jis skirtas scenarijams {intendThirdPartyAuth} priešais Uptime Kuma, pavyzdžiui, Cloudflare Access, Authelia ar kitus autentifikavimo mechanizmus.",
"I understand, please disable": "Aš suprantu, prašau išjungti",
"Username": "Vartotojo vardas",
- "No Monitors, please": "Jokių monitorių, prašau",
+ "No Monitors, please": "Prašome jokių stebėjimų",
"Certificate Info": "Sertifikato informacija",
"Resource Record Type": "Išteklių įrašo tipas",
"Import Backup": "Importuoti atsarginę kopiją",
- "Default enabled": "Pagal nutylėjimą įgalinta",
- "Apply on all existing monitors": "Taikyti visiems esamiems monitoriams",
+ "Default enabled": "Pagal nutylėjimą įjungta",
+ "Apply on all existing monitors": "Taikyti visiems esamiems stebėjimams",
"Auto Get": "Automatinis gavimas",
"Schedule maintenance": "Planuoti profilaktikos priežiūrą",
"Start of maintenance": "Profilaktikos pradžia",
@@ -215,24 +215,24 @@
"Pink": "Rožinė",
"Search...": "Ieškoti…",
"Avg. Response": "Vidutinė reakcija",
- "statusPageNothing": "Čia nieko nėra, pridėkite grupę arba monitorių.",
+ "statusPageNothing": "Čia nieko nėra, pridėkite grupę arba stebėjimą.",
"Go to Dashboard": "Eiti į skydelį",
"Status Pages": "Būsenos puslapiai",
- "defaultNotificationName": "Mano {notification} įspėjimas nr. ({number})",
+ "defaultNotificationName": "Mano {notification} pranešimas ({number})",
"Server URL": "Serverio URL",
"Method": "Metodas",
- "appriseInstalled": "Apprise yra suinstaliuotas.",
- "Current User": "Dabartinis Vartotojas",
+ "appriseInstalled": "Apprise yra įdiegtas.",
+ "Current User": "Dabartinis vartotojas",
"Style": "Stilius",
- "Switch to Light Theme": "Pereiti į Šviesią Temą",
+ "Switch to Light Theme": "Pereiti į šviesią temą",
"Cancel": "Atšaukti",
"Learn More": "Sužinoti Daugiau",
"Expiry": "Galiojimas",
"apiKeyAddedMsg": "Jūsų API raktas buvo pridėtas. Įsidėmėkite jį, nes jis daugiau nebus rodomas.",
"or": "arba",
- "No Maintenance": "Profilaktikos priežiūros nėra",
+ "No Maintenance": "Nėra planuojamų darbų",
"Priority": "Prioritetas",
- "appriseNotInstalled": "Apprise yra neinstaliuotas. {0}",
+ "appriseNotInstalled": "Apprise yra neįdiegtas. {0}",
"Body": "Turinys",
"PasswordsDoNotMatch": "Slaptažodžiai nesutampa.",
"records": "įrašai",
@@ -255,7 +255,7 @@
"dark": "tamsi",
"Created": "Sukurta",
"Last Updated": "Atnaujinta",
- "Switch to Dark Theme": "Pereiti į Tamsią Temą",
+ "Switch to Dark Theme": "Pereiti į tamsią temą",
"Discard": "Atmesti",
"Select": "Pasirinkti",
"selectedMonitorCount": "Pasirinkta: {0}",
@@ -263,7 +263,7 @@
"Recurring": "Pasikartojantis",
"statusPageMaintenanceEndDate": "Pabaiga",
"pauseMaintenanceMsg": "Ar tikrai norite sustabdyti?",
- "maintenanceStatus-under-maintenance": "Vykdoma techninė priežiūra",
+ "maintenanceStatus-under-maintenance": "Vykdomi profilaktikos darbai",
"maintenanceStatus-inactive": "Neaktyvus",
"maintenanceStatus-scheduled": "Suplanuotas",
"maintenanceStatus-ended": "Pabaigtas",
@@ -283,9 +283,790 @@
"Expires": "Galioja",
"disableAPIKeyMsg": "Ar tikrai norite išjungti šį API raktą?",
"deleteAPIKeyMsg": "Ar tikrai norite ištrinti šį API raktą?",
- "Generate": "Kurti",
+ "Generate": "Generuoti",
"now": "dabar",
"time ago": "prieš {0}",
"-year": "-metai",
- "ignoredTLSError": "TLS/SSL klaidos buvo ignoruotos"
+ "ignoredTLSError": "TLS/SSL klaidos buvo ignoruotos",
+ "Headers": "Antraštės",
+ "HeadersInvalidFormat": "Užklausos antraštės neteisingai pateiktos JSON formatu: ",
+ "shrinkDatabaseDescriptionSqlite": "Įvykdykite SQLite duomenų bazės {vacuum} komandą. {auto_vacuum} jau įjungtas, tačiau jis neperorganizuoja duomenų bazės ir nesupakuoja atskirų puslapių taip, kaip tai daro {vacuum} komanda.",
+ "Please read": "Prašome perskaityti",
+ "RabbitMQ Username": "RabbitMQ vartotojo vardas",
+ "RabbitMQ Password": "RabbitMQ slaptažodis",
+ "Telephone number": "Telefono numeris",
+ "chromeExecutableAutoDetect": "Aptikti automatiškai",
+ "Proxy Server": "Tarpinis serveris",
+ "Check/Uncheck": "Žymėti/atžymėti",
+ "PushDeer Server": "PushDeer serveris",
+ "Money": "Pinigai",
+ "confirmUninstallPlugin": "Ar tikrai norite pašalinti šį įskiepį?",
+ "Enable DNS Cache": "(Nebenaudojama) Įjungti DNS talpyklavimą HTTP(s) stebėjimams",
+ "Not running": "Nepaleistas",
+ "Reverse Proxy": "Atvirkštinis tarpinis serveris",
+ "Date Created": "Sukūrimo data",
+ "Refresh Interval Description": "Būsenos puslapis padarys pilną puslapio perkrovimą kas {0} sekundes(-ių)",
+ "API Key": "API raktas",
+ "emailTemplateMsg": "pranešimo žinutė",
+ "wayToGetDiscordURL": "Tai galite rasti nuėję į „Server Settings -> Integrations -> View Webhooks -> New Webhook“",
+ "dnsPortDescription": "DNS serverio prievadas. Numatytoji reikšmė – 53. Prievadą galite bet kada pakeisti.",
+ "pushoversounds cashregister": "Kasos aparatas",
+ "pushoversounds gamelan": "Gamelanas",
+ "apiCredentials": "API kredencialai",
+ "promosmsAllowLongSMS": "Leisti ilgas SMS žinutes",
+ "Uptime Kuma URL": "Uptime Kuma URL",
+ "Add a domain": "Pridėti naują domeną",
+ "serwersmsAPIPassword": "API slaptažodis",
+ "Browser Screenshot": "Naršyklės ekrano nuotrauka",
+ "gtxMessagingToHint": "Nacionalinis formatas, prasideda su „+“ ({e164}, {e212} arba {e214})",
+ "Private Number": "Privatus numeris",
+ "signedInDisp": "Prisijungta kaip {0}",
+ "wayToGetTelegramToken": "Jūs galite gauti prieigos raktą iš {0}.",
+ "Send to channel": "Siųsti į kanalą",
+ "e.g. {discordThreadID}": "pvz. {discordThreadID}",
+ "Notification Sound": "Pranešimo garsas",
+ "For safety, must use secret key": "Saugumo sumetimais būtina naudoti slaptąjį raktą",
+ "Group": "Grupė",
+ "Mechanism": "Mechanizmas",
+ "Group Name": "Grupės pavadinimas",
+ "clearDataOlderThan": "Saugote stebėjimo istorijos duomenis {0} dienų.",
+ "infiniteRetention": "Nustatykite 0, kad būtų begalinis saugojimas.",
+ "backupDescription3": "Jautrūs duomenys kaip pranešimams naudojami prieigos raktai yra įtraukti eksporto faile; prašome saugiai talpinti eksportą.",
+ "chromeExecutable": "Chrome/Chromium vykdomoji programa",
+ "certificationExpiryDescription": "HTTPS stebėjimai sukelia pranešimą, kai baigiasi TLS sertifikato galiojimo laikas:",
+ "trustProxyDescription": "Pasitikėkite „X-Forwarded-*“ antraštėmis. Jei norite gauti teisingą kliento IP adresą, o jūsų Uptime Kuma yra už tarpinio serverio, pavyzdžiui, Nginx arba Apache, turėtumėte įjungti šią funkciją.",
+ "Valid": "Galiojantis",
+ "No consecutive dashes": "Be iš eilės einančių brūkšnelių",
+ "statusPageSpecialSlugDesc": "Speciali nuorodos dalis {0}: šis puslapis bus rodomas, jei nuorodos dalis nenurodyta",
+ "The current connection may be lost if you are currently connecting via Cloudflare Tunnel. Are you sure want to stop it? Type your current password to confirm it.": "Esamas ryšys gali būti prarastas, jei šiuo metu jungiatės per Cloudflare tunelį. Ar tikrai norite jį sustabdyti? Įveskite savo dabartinį slaptažodį, kad patvirtintumėte.",
+ "RadiusCallingStationIdDescription": "Skambinančio įrenginio identifikatorius",
+ "There might be a typing error in the address.": "Adrese gali būti įvedimo klaida.",
+ "DockerHostRequired": "Prašome nustatyti Docker serverį šiam stebėjimui.",
+ "tailscalePingWarning": "Norėdami naudoti Tailscale Ping stebėjimą, turite įdiegti Uptime Kuma be Docker, taip pat įdiegti Tailscale klientą savo serveryje.",
+ "telegramServerUrlDescription": "Norėdami pašalinti Telegram bot API apribojimus arba gauti prieigą į blokuotas sritis (Kinija, Iranas ir kt.), spustelėkite {0} dėl daugiau informacijos. Pagal nutylėjimą: {1}",
+ "Long-Lived Access Token can be created by clicking on your profile name (bottom left) and scrolling to the bottom then click Create Token. ": "Ilgalaikį prieigos raktą galite sukurti paspaudę savo profilio pavadinimą (apačioje kairėje), slinkę į apačią ir paspaudę „Sukurti raktą“. ",
+ "backupOutdatedWarning": "Pasenęs: Kadangi buvo pridėta daug naujų funkcijų ir šis atsarginių kopijų funkcionalumas nėra pilnai palaikomas, jis negali sukurti ar atkurti pilnos atsarginės kopijos.",
+ "chromeExecutableDescription": "Docker naudotojams, jei Chromium dar nėra įdiegtas, įdiegimas ir testo rezultatų rodymas gali užtrukti kelias minutes. Tai užima 1GB disko vietos.",
+ "smtpLiquidIntroduction": "Žemiau pateikti du laukai gali būti šablonizuojami naudojant Liquid šablonų kalbą. Prašome peržiūrėti {0} naudojimo instrukcijas. Štai prieinami kintamieji:",
+ "whatHappensAtForumPost": "Sukurti naują forumo įrašą. Tai NE skelbia žinučių esamame įraše. Norėdami skelbti esamame įraše, naudokite „{option}“",
+ "wayToCheckSignalURL": "Galite patikrinti šią nuorodą, kad pamatytumėte, kaip ją nustatyti:",
+ "wayToGetLineChannelToken": "Pirmiausia pasiekite {0}, sukurkite tiekėją ir kanalą (Žinučių API), tada iš aukščiau nurodytų meniu punktų galite gauti kanalo prieigos raktą ir vartotojo ID.",
+ "aboutMattermostChannelName": "Galite pakeisti numatytąjį kanalą, į kurį siunčiami pranešimai per Webhook, įvesdami kanalo pavadinimą lauke „Kanalo pavadinimas“. Tai turi būti įjungta Mattermost Webhook nustatymuose. Pvz.: #kitas-kanalas",
+ "resolverserverDescription": "Cloudflare yra numatytasis rezoliucijos serveris. Galite bet kada jį pakeisti.",
+ "enableDefaultNotificationDescription": "Šis pranešimas bus įjungtas numatytai naujiems stebėjimams. Vis dėlto galite jį atjungti kiekvienam stebėjimui atskirai.",
+ "confirmImportMsg": "Ar tikrai norite importuoti atsarginę kopiją? Prašome patvirtinti, kad pasirinkote teisingą importo parinktį.",
+ "keywordDescription": "Ieškoti raktažodžio paprastame HTML arba JSON atsakyme. Paieška yra jautri didžiosioms ir mažosioms raidėms.",
+ "jsonQueryDescription": "Išanalizuokite ir ištraukite konkrečius duomenis iš serverio JSON atsakymo, naudodami JSON užklausą arba naudokite \"$\" neapdorotam atsakymui, jei nesitikite JSON formato. Rezultatas vėliau lyginamas su tikėtina verte, kaip eilutėmis. Žr. {0} dokumentacijai ir naudokite {1} eksperimentavimui su užklausomis.",
+ "pushoversounds alien": "Svetimo signalo (ilgas)",
+ "apprise": "Apprise (palaiko daugiau nei 50 pranešimų paslaugų)",
+ "wayToGetKookGuildID": "Įjunkite „Kūrėjo režimą“ Kook nustatymuose ir dešiniuoju pelės mygtuku spustelėkite gildiją, kad gautumėte jos ID",
+ "octopushTypePremium": "Premium (greitas – rekomenduojamas įspėjimams)",
+ "octopushPhoneNumber": "Telefono numeris (tarptautiniu formatu, pvz.: +33612345678) ",
+ "SendGrid API Key": "SendGrid API raktas",
+ "conditionValuePlaceholder": "Reikšmė",
+ "Proto Service Name": "Proto paslaugos pavadinimas",
+ "goAlertInfo": "GoAlert yra atviro kodo programa, skirta nuolatinio budėjimo tvarkaraščio sudarymui, automatizuotam eskalavimui ir pranešimams (pvz., SMS arba balso skambučiams). Automatiškai susiekite tinkamą asmenį, tinkamu būdu ir tinkamu laiku! {0}",
+ "SecretKey": "SlaptasRaktas",
+ "promosmsTypeEco": "SMS ECO - pigus, bet lėtas ir dažnai perkrautas. Ribota tik Lenkijos gavėjams.",
+ "promosmsTypeFull": "SMS FULL - Aukštesnės klasės SMS paslauga. Galite naudoti savo siuntėjo vardą (pirmiausia reikia registruoti vardą). Patikima pranešimams.",
+ "promosmsSMSSender": "SMS siuntėjo vardas: iš anksto užregistruotas vardas arba vienas iš numatytųjų: InfoSMS, SMS Info, MaxSMS, INFO, SMS",
+ "matrixDesc2": "Labai rekomenduojama sukurti naują vartotoją ir nenaudoti savo esamo Matrix vartotojo prieigos rakto, nes jis suteiks pilną prieigą prie jūsų paskyros ir visų kambarių, į kuriuos esate įstoję. Vietoj to, sukurkite naują vartotoją ir pakvieskite jį tik į tą kambarį, kuriame norite gauti pranešimus. Prieigos raktą galite gauti vykdydami {0}",
+ "Notify Channel": "Pranešimų kanalas",
+ "aboutNotifyChannel": "Pranešimų kanalas iššauks stacionaraus kompiuterio ir mobiliojo pranešimus visiems kanalo nariams, nepriklausomai nuo to, ar jie pažymėti kaip aktyvūs, ar ne.",
+ "wayToGetPagerDutyKey": "Gali gauti eidamas į Paslaugos → Paslaugų katalogas → (Pasirink paslaugą) → Integracijos → Pridėti integraciją. Čia gali ieškoti „Events API V2“. Daugiau informacijos {0}",
+ "smseagleContact": "Telefonų knygos kontakto vardas (-ai)",
+ "smseaglePriority": "Žinutės prioritetas (0-9, numatytasis = 0)",
+ "smspartnerPhoneNumberHelptext": "Numeris turi būti tarptautiniu formatu {0}, {1}. Daugelius numerius atskirk {2}",
+ "Server URL should not contain the nfty topic": "Serverio URL neturėtų turėti ntfy temos",
+ "wayToGetPagerTreeIntegrationURL": "Sukūrus Uptime Kuma integraciją PagerTree, nukopijuok Endpoint adresą. Išsamiau {0}",
+ "ntfyPriorityHelptextAllExceptDown": "Visi įvykiai siunčiami su šiuo prioritetu, išskyrus {0} įvykius, kurių prioritetas yra {1}",
+ "Badge Prefix": "Ženklo reikšmės prefiksas",
+ "Badge Label Suffix": "Ženklo etiketės sufiksas",
+ "Badge Maintenance Color": "Profilaktikos būsenos ženklo spalva",
+ "monitorToastMessagesDescription": "Iššokančios žinutės stebėjimams išnyksta po nurodyto laiko sekundėmis. Nustatykite -1, kad išjungtumėte laiko limitą, arba 0, kad išjungtumėte iššokančias žinutes.",
+ "Enable Kafka Producer Auto Topic Creation": "Įjungti automatinį Kafka gamintojo temų kūrimą",
+ "noGroupMonitorMsg": "Neprieinama. Pirmiausia sukurkite grupės stebėjimą.",
+ "wayToGetFlashDutyKey": "Galite eiti į „Kanalas -> (Pasirinkite kanalą) -> Integracijos -> Pridėti naują integraciją“ puslapį, pridėti „Uptime Kuma“, kad gautumėte push adresą, ir nukopijuoti integracijos raktą iš adreso. Daugiau informacijos rasite apsilankę",
+ "Plain Text": "Paprastas tekstas",
+ "Message Template": "Žinutės šablonas",
+ "Template Format": "Šablono formatas",
+ "webhookJsonDesc": "{0} tinka visiems šiuolaikiniams HTTP serveriams, tokiems kaip Express.js",
+ "webhookFormDataDesc": "{multipart} tinka PHP. JSON reikės analizuoti naudojant {decodeFunction}",
+ "webhookBodyPresetOption": "Išankstinis nustatymas - {0}",
+ "Application Token": "Programos prieigos raktas",
+ "templateMsg": "pranešimo žinutė",
+ "PushUrl": "Siuntimo URL",
+ "BodyInvalidFormat": "Užklausos turinys neteisingai pateiktas JSON formatu: ",
+ "Reset Token": "Atstatyti prieigos raktą",
+ "Done": "Baigta",
+ "recent": "Naujausi",
+ "critical": "kritinė",
+ "Pick Accepted Status Codes...": "Pasirinkite priimtinus būsenos kodus…",
+ "Pick a RR-Type...": "Pasirinkite RR tipą…",
+ "successKeywordExplanation": "MQTT raktažodis, kuris bus laikomas sėkmingu",
+ "successKeyword": "Sėkmės raktažodis",
+ "topicExplanation": "Stebimas MQTT kanalas",
+ "steamApiKeyDescription": "Steam žaidimų serverio stebėjimui reikalingas Steam Web-API raktas. Užregistruoti savo API raktą galite čia: ",
+ "Monitor History": "Stebėjimo istorija",
+ "Post": "Paskelbti",
+ "danger": "pavojus",
+ "and": "ir",
+ "Proxy Protocol": "Tarpinio serverio protokolas",
+ "YZJ Webhook URL": "YZJ Webhook URL adresas",
+ "YZJ Robot Token": "YZJ Robot prieigos raktas",
+ "telegramServerUrl": "(Pasirinktinai) Serverio URL",
+ "dayOfWeek": "Savaitės diena",
+ "dayOfMonth": "Mėnesio diena",
+ "cronSchedule": "Tvarkaraštis: ",
+ "cronExpression": "Cron išraiška",
+ "weekdayShortMon": "Pir",
+ "weekdayShortTue": "Ant",
+ "weekdayShortWed": "Tre",
+ "weekdayShortThu": "Ket",
+ "weekdayShortFri": "Pen",
+ "weekdayShortSat": "Šeš",
+ "weekdayShortSun": "Sek",
+ "invalidCronExpression": "Neteisinga Cron išraiška: {0}",
+ "lastDay": "Paskutinė diena",
+ "lastDay1": "Paskutinė mėnesio diena",
+ "YOUR BOT TOKEN HERE": "JŪSŲ BOTO PRIEIGOS RAKTAS ČIA",
+ "default: notify all devices": "numatyta: pranešti visiems įrenginiams",
+ "wayToGetLineNotifyToken": "Jūs galite gauti prieigos raktą iš {0}",
+ "startDateTime": "Pradžios data/laikas",
+ "endDateTime": "Pabaigos data/laikas",
+ "chatIDNotFound": "Nepavyko rasti pokalbio ID; pirmiausia išsiųskite žinutę šiam bot'ui",
+ "disableCloudflaredNoAuthMsg": "Jūs esate režime be autentifikacijos, slaptažodis nereikalingas.",
+ "Long-Lived Access Token": "Ilgalaikis prieigos raktas",
+ "Notification Service": "Pranešimų paslauga",
+ "A list of Notification Services can be found in Home Assistant under \"Developer Tools > Services\" search for \"notification\" to find your device/phone name.": "Pranešimų paslaugų sąrašą rasite Home Assistant skiltyje „Kūrėjo įrankiai > Paslaugos“, ieškodami žodžio „notification“, kad rastumėte savo įrenginio/telefono pavadinimą.",
+ "Home Assistant URL": "Home Assistant URL",
+ "Automations can optionally be triggered in Home Assistant:": "Automatizacijas galima pasirinktinai paleisti Home Assistant sistemoje:",
+ "Trigger type:": "Paleidimo tipas:",
+ "Event type:": "Įvykio tipas:",
+ "Event data:": "Įvykio duomenys:",
+ "Then choose an action, for example switch the scene to where an RGB light is red.": "Tada pasirinkite veiksmą, pavyzdžiui, pakeiskite sceną į tą, kur RGB šviesa yra raudona.",
+ "Frontend Version": "Priekinės dalies versija",
+ "Frontend Version do not match backend version!": "Priekinės dalies versija nesutampa su galinės dalies versija!",
+ "backupRecommend": "Prašome atsarginę kopiją daryti tiesiogiai iš skaidinio arba duomenų aplanko (./data/).",
+ "Optional": "Pasirinktinai",
+ "sameAsServerTimezone": "Tokia pati kaip serverio laiko juosta",
+ "strategyManual": "Rankiniu būdu aktyvuojamas/neaktyvuojamas",
+ "warningTimezone": "Naudojama serverio laiko juosta",
+ "install": "Įdiegti",
+ "installing": "diegiama",
+ "uninstall": "Pašalinti",
+ "uninstalling": "Šalinama",
+ "lastDay2": "Antra paskutinė mėnesio diena",
+ "lastDay3": "Trečia paskutinė mėnesio diena",
+ "lastDay4": "Ketvirta paskutinė mėnesio diena",
+ "Display Timezone": "Rodoma laiko zona",
+ "Server Timezone": "Serverio laiko zona",
+ "IconUrl": "Piktogramos URL",
+ "Enable": "Įjungti",
+ "Disable": "Išjungti",
+ "plugin": "Įskiepis | Įskiepiai",
+ "Clone": "Klonuoti",
+ "cloneOf": "{0} klonas",
+ "smtp": "El. paštas (SMTP)",
+ "Schedule Maintenance": "Suplanuoti profilaktikos darbus",
+ "Edit Maintenance": "Redaguoti profilaktiką",
+ "Date and Time": "Data ir laikas",
+ "Clone Monitor": "Klonuoti stebėjimą",
+ "notificationRegional": "Regioninis",
+ "enableNSCD": "Įjungti NSCD (Name Service Cache Daemon) visų DNS užklausų talpyklavimui",
+ "dnsCacheDescription": "Gali neveikti kai kuriose IPv6 aplinkose, išjunkite, jei susiduriate su problemomis.",
+ "Single Maintenance Window": "Vienas profilaktikos langas",
+ "Maintenance Time Window of a Day": "Profilaktikos laiko langas per dieną",
+ "Effective Date Range": "Galiojimo datos intervalas (pasirinktinai)",
+ "DateTime Range": "Datos ir laiko intervalas",
+ "loadingError": "Nepavyko gauti duomenų, prašome bandyti vėliau.",
+ "secureOptionNone": "Nėra / STARTTLS (25, 587)",
+ "secureOptionTLS": "TLS (465)",
+ "From Email": "Siuntėjo el. paštas",
+ "Ignore TLS Error": "Ignoruoti TLS klaidą",
+ "leave blank for default subject": "palikite tuščią numatytai temai",
+ "emailCustomisableContent": "Pritaikomas turinys",
+ "emailCustomSubject": "Pasirinktina tema",
+ "emailCustomBody": "Pasirinktinas turinys",
+ "leave blank for default body": "Palikite tuščią, jei norite naudoti numatytąjį turinį",
+ "emailTemplateMonitorJSON": "objektas, apibūdinantis stebėjimą",
+ "To Email": "Gavėjo el. paštas",
+ "Bot Display Name": "Bot'o rodomas vardas",
+ "emailTemplateHeartbeatJSON": "objektas, apibūdinantis patikros signalą",
+ "emailTemplateLimitedToUpDownNotification": "Prieinamas tik VEIKIA/NEVEIKIA patikros signalams, kitu atveju – null",
+ "smtpCC": "CC",
+ "Discord Webhook URL": "Discord Webhook URL adresas",
+ "Prefix Custom Message": "Priešdėlis pasirinktinam pranešimui",
+ "Hello @everyone is...": "Sveiki, {'@'}everyone yra…",
+ "Select message type": "Pasirinkite pranešimo tipą",
+ "postToExistingThread": "Skelbti esamoje temoje / forumo įraše",
+ "Create new forum post": "Sukurti naują forumo įrašą",
+ "forumPostName": "Forumo įrašo pavadinimas",
+ "threadForumPostID": "Temos / forumo įrašo ID",
+ "wayToGetDiscordThreadId": "Gauti temos / forumo įrašo ID yra panašu į kanalo ID gavimą. Plačiau apie ID gavimą rasite {0}",
+ "wayToGetTeamsURL": "Galite sužinoti, kaip sukurti webhook URL {0}.",
+ "Access Token": "Prieigos raktas",
+ "Channel access token": "Kanalo prieigos raktas",
+ "Icon URL": "Piktogramos URL",
+ "Basic Settings": "Baziniai nustatymai",
+ "User ID": "Vartotojo ID",
+ "Your User ID": "Jūsų vartotojo ID",
+ "deleteMonitorMsg": "Ar tikrai norite ištrinti šį stebėjimą?",
+ "wayToGetZohoCliqURL": "Galite sužinoti, kaip sukurti webhook URL {0}.",
+ "needSignalAPI": "Turite turėti Signal klientą su REST API.",
+ "Number": "Numeris",
+ "Recipients": "Gavėjai",
+ "Channel access token (Long-lived)": "Kanalo prieigos raktas (ilgalaikis)",
+ "Line Developers Console": "Line kūrėjų konsolė",
+ "lineDevConsoleTo": "Line kūrėjų konsolė - {0}",
+ "Messaging API": "Žinučių API",
+ "aboutIconURL": "Galite nurodyti nuorodą į paveikslėlį lauke „Piktogramos URL“, kad pakeistumėte numatytąjį profilio paveikslėlį. Jei nustatytas piktogramos jaustukas, jis nebus naudojamas.",
+ "dataRetentionTimeError": "Laikymo periodas turi būti 0 arba didesnis",
+ "confirmDeleteTagMsg": "Ar tikrai norite ištrinti šią žymą? Stebėjimai, susieti su šia žyma, nebus ištrinti.",
+ "enableGRPCTls": "Leisti siųsti gRPC užklausas per TLS ryšį",
+ "grpcMethodDescription": "Metodo pavadinimas konvertuojamas į camelCase formatą, pvz., sakytiLabas, tikrinti ir pan.",
+ "acceptedStatusCodesDescription": "Pasirinkite būsenos kodus, kurie laikomi sėkmingu atsaku.",
+ "twoFAVerifyLabel": "Įveskite savo prieigos kodą 2FA patvirtinti:",
+ "confirmEnableTwoFAMsg": "Ar Jūs norite įjungti 2FA?",
+ "confirmDisableTwoFAMsg": "Ar Jūs norite išjungti 2FA?",
+ "promosmsPassword": "API slaptažodis",
+ "promosmsLogin": "API prisijungimo vardas",
+ "pushoversounds bike": "Dviratis",
+ "pushoversounds classical": "Klasika",
+ "backupDescription": "Jūs galite pasidaryti visų stebėjimų ir pranešimų kopijas JSON formatu.",
+ "notificationDescription": "Kad pranešimai veiktų, jie turi būti priskirti stebėjimui.",
+ "deleteMaintenanceMsg": "Ar tikrai norite ištrinti šią profilaktiką?",
+ "deleteNotificationMsg": "Ar tikrai norite ištrinti šį pranešimą visiems stebėjimams?",
+ "rrtypeDescription": "Pasirinkite RR tipą, kurį norite stebėti",
+ "pauseMonitorMsg": "Ar tikrai norite pristabdyti?",
+ "clearEventsMsg": "Ar tikrai norite ištrinti visus įvykius šiam stebėjimui?",
+ "clearHeartbeatsMsg": "Ar tikrai norite ištrinti visus patikros signalus šiam stebėjimui?",
+ "confirmClearStatisticsMsg": "Ar tikrai norite ištrinti VISAS statistikas?",
+ "importHandleDescription": "Pasirinkite „Praleisti esamus“, jei norite praleisti kiekvieną stebėjimą ar pranešimą su tuo pačiu pavadinimu. „Perrašyti“ ištrins visus esamus stebėjimus ir pranešimus.",
+ "tokenValidSettingsMsg": "Prieigos kodas yra galiojantis! Dabar galite išsaugoti 2FA nustatymus.",
+ "recurringIntervalMessage": "Vykdyti kartą per dieną | Vykdyti kartą kas {0} dienas",
+ "affectedMonitorsDescription": "Pasirinkite stebėjimus, kuriuos paveikė dabartinė profilaktika",
+ "affectedStatusPages": "Rodyti šį profilaktikos pranešimą pasirinktuose būsenos puslapiuose",
+ "atLeastOneMonitor": "Pasirinkite bent vieną paveiktą stebėjimą",
+ "passwordNotMatchMsg": "Pakartotas slaptažodis nesutampa.",
+ "backupDescription2": "Pastaba: istorija ir įvykių duomenys neįtraukti.",
+ "endpoint": "galinis taškas",
+ "octopushAPIKey": "„API key“ iš HTTP API prisijungimo duomenų valdymo skydelyje",
+ "octopushLogin": "„Login“ iš HTTP API prisijungimo duomenų valdymo skydelyje",
+ "pushoversounds pushover": "Pushover (numatyta)",
+ "pushoversounds bugle": "Bugle",
+ "pushoversounds cosmic": "Kosminis",
+ "pushoversounds falling": "Kritantis",
+ "pushoversounds siren": "Sirena",
+ "Device": "Įrenginys",
+ "SMS Type": "SMS tipas",
+ "Strategy": "Strategija",
+ "Status:": "Būsena: {0}",
+ "Enable TLS": "Įjungti TLS",
+ "pushyToken": "Įrenginio prieigos raktas",
+ "User Key": "Vartotojo raktas",
+ "Message Title": "Žinutės tema",
+ "Apprise URL": "Apprise URL adresas",
+ "pushoversounds incoming": "Gaunamas",
+ "pushoversounds intermission": "Pertrauka",
+ "pushoversounds magic": "Magija",
+ "pushoversounds mechanical": "Mechaninis",
+ "pushoversounds pianobar": "Pianino klavišas",
+ "pushoversounds spacealarm": "Erdvinis signalas",
+ "pushoversounds tugboat": "Traukimo laivas",
+ "pushoversounds persistent": "Pastovus (ilgas)",
+ "pushoversounds echo": "Pushover Echo (ilgas)",
+ "pushoversounds updown": "Up Down (ilgas)",
+ "pushoversounds vibrate": "Tik vibracija",
+ "pushoversounds none": "Nėra (tylus)",
+ "pushyAPIKey": "Slaptas API raktas",
+ "GoogleChat": "Google Chat (tik Google Workspace)",
+ "wayToGetKookBotToken": "Sukurkite programą ir gaukite savo bot'o raktą adresu {0}",
+ "Guild ID": "Gildijos ID",
+ "More info on:": "Daugiau informacijos: {0}",
+ "pushoverDesc1": "Avarinis prioritetas (2) turi numatytą 30 sekundžių tarp bandymų laiko limitą ir pasibaigs po 1 valandos.",
+ "pushoverDesc2": "Jei norite siųsti pranešimus skirtingiems įrenginiams, užpildykite lauką „Įrenginys“.",
+ "pushoverMessageTtl": "Žinutės TTL (sekundės)",
+ "octopushTypeLowCost": "Low Cost (lėtas – kartais blokuoja operatorius)",
+ "checkPrice": "Patikrinkite {0} kainas:",
+ "octopushLegacyHint": "Ar naudojate senąją Octopush versiją (2011-2020) ar naująją?",
+ "Check octopush prices": "Patikrinkite Octopush kainas {0}.",
+ "octopushSMSSender": "SMS siuntėjo vardas: 3-11 simbolių (raidės, skaičiai ir tarpas) (a-zA-Z0-9)",
+ "LunaSea Device ID": "LunaSea įrenginio ID",
+ "Example:": "Pavyzdys: {0}",
+ "Read more:": "Plačiau: {0}",
+ "Free Mobile User Identifier": "Free Mobile vartotojo identifikatorius",
+ "Free Mobile API Key": "Free Mobile API raktas",
+ "Proto Method": "Proto metodas",
+ "Proto Content": "Proto turinys",
+ "Lowcost": "Mažai kainuojantis",
+ "Economy": "Ekonomiškas",
+ "Retry": "Pakartojimų skaičius",
+ "Topic": "Tema",
+ "Platform": "Platforma",
+ "Channel Name": "Kanalo pavadinimas",
+ "WebHookUrl": "WebHookUrl",
+ "Don't mention people": "Neminėti žmonių",
+ "Mention group": "Paminėti {group}",
+ "Device Token": "Įrenginio prieigos raktas",
+ "Huawei": "Huawei",
+ "Proxy server has authentication": "Tarpinis serveris reikalauja autentifikacijos",
+ "Setup Proxy": "Nustatyti tarpinį serverį",
+ "Base URL": "Bazinis URL",
+ "high": "aukštas",
+ "SMSManager API Docs": "SMSManager API dokumentacija ",
+ "SendKey": "SendKey",
+ "Gateway Type": "Šliuzo tipas",
+ "You can divide numbers with": "Galite atskirti skaičius su",
+ "goAlertIntegrationKeyInfo": "Gaukite bendrą API integravimo raktą paslaugai šiuo formatu „aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee”, dažniausiai tai bus prieigos rakto parametro reikšmė nukopijuotame URL.",
+ "AccessKeyId": "Prieigos rakto ID",
+ "PhoneNumbers": "PhoneNumbers",
+ "TemplateCode": "TemplateCode",
+ "SecretAccessKey": "Prieigos rakto slaptasis raktas",
+ "SignName": "SignName",
+ "Sms template must contain parameters: ": "SMS šablone turi būti nurodyti parametrai: ",
+ "Bark API Version": "Bark API versija",
+ "Bark Endpoint": "Bark endpointas",
+ "Bark Group": "Bark grupė",
+ "Bark Sound": "Bark garsas",
+ "Mentioning": "Paminėjimas",
+ "High": "Aukštas",
+ "WeCom Bot Key": "WeCom bot'o raktas",
+ "promosmsTypeFlash": "SMS FLASH - Žinutė automatiškai bus rodoma gavėjo įrenginyje. Ribota tik Lenkijos gavėjams.",
+ "promosmsTypeSpeed": "SMS SPEED - Aukščiausias sistemos prioritetas. Labai greitas ir patikimas, tačiau brangesnis (apie du kartus kainuoja nei SMS FULL).",
+ "promosmsPhoneNumber": "Telefono numeris (Lenkijos gavėjui galite praleisti vietinį kodą)",
+ "Feishu WebHookUrl": "Feishu WebHook URL",
+ "matrixHomeserverURL": "Namų serverio URL (su http(s):// ir, jei reikia, prievadu)",
+ "Internal Room Id": "Vidinio kambario ID",
+ "matrixDesc1": "Vidinį kambario ID rasite pažangiojoje kambario nustatymų skiltyje savo Matrix kliente. Jis turėtų atrodyti panašiai: !QMdRCpUIfLwsfjxye6:home.server.",
+ "Remove domain": "Ištrinti domeną '{0}'",
+ "Icon Emoji": "Piktogramos jaustukas",
+ "smtpDkimDomain": "Domeno vardas",
+ "smtpDkimPrivateKey": "Privatus raktas",
+ "do nothing": "nieko nedaryti",
+ "alertaApiKey": "API raktas",
+ "serwersmsPhoneNumber": "Telefono numeris",
+ "smseagleTo": "Telefono numeris(-iai)",
+ "smspartnerSenderName": "SMS siuntėjo vardas",
+ "Recipient Number": "Gavėjo numeris",
+ "From Name/Number": "Siuntėjo vardas/numeris",
+ "smseagleRecipientType": "Gavėjo tipas",
+ "setup a new monitor group": "sukurti naują stebėjimo grupę",
+ "openModalTo": "Atidaryti modalą {0}",
+ "signalImportant": "SVARBU: Negalite maišyti grupių ir numerių gavėjų!",
+ "aboutWebhooks": "Išsamiau apie Webhooks: {0}",
+ "smtpDkimKeySelector": "Raktų parinkiklis",
+ "smtpDkimHashAlgo": "Maišos algoritmas (pasirinktinai)",
+ "smtpDkimskipFields": "Nepasirašyti antraščių raktai (pasirinktinai)",
+ "smtpDkimheaderFieldNames": "Pasirašyti antraščių raktai (pasirinktinai)",
+ "Integration Key": "Integracijos raktas",
+ "Integration URL": "Integracijos URL",
+ "Auto resolve or acknowledged": "Automatiškai išspręsta arba patvirtinta",
+ "auto acknowledged": "automatiškai patvirtinta",
+ "auto resolve": "automatiškai išspręsta",
+ "alertaApiEndpoint": "API galinis taškas",
+ "alertaEnvironment": "Aplinka",
+ "alertaAlertState": "Pranešimo būsena",
+ "alertaRecoverState": "Atkūrimo būsena",
+ "serwersmsAPIUser": "API vartotojo vardas (įskaitant webapi_ prefiksą)",
+ "serwersmsSenderName": "SMS siuntėjo vardas (užregistruotas per klientų portalą)",
+ "smseagleGroup": "Telefonų knygos grupės pavadinimas (-ai)",
+ "smseagleRecipient": "Gavėjas (-ai) (daugelius atskirk kableliais)",
+ "smseagleToken": "API prieigos raktas",
+ "smseagleUrl": "Jūsų SMSEagle įrenginio URL",
+ "smseagleEncoding": "Siųsti kaip Unicode",
+ "smspartnerApiurl": "Savo API raktą rasite savo skydelyje adresu {0}",
+ "smspartnerPhoneNumber": "Telefono numeris (-ai)",
+ "smspartnerSenderNameInfo": "Turi būti tarp 3..=11 įprastų simbolių",
+ "Leave blank to use a shared sender number.": "Palikite tuščią, kad naudotumėte bendrinamą siuntėjo numerį.",
+ "Octopush API Version": "Octopush API versija",
+ "Legacy Octopush-DM": "Senasis Octopush-DM",
+ "ntfyUsernameAndPassword": "Vartotojo vardas ir slaptažodis",
+ "twilioFromNumber": "Siuntėjo numeris",
+ "twilioToNumber": "Gavėjo numeris",
+ "ntfy Topic": "ntfy Tema",
+ "onebotHttpAddress": "OneBot HTTP adresas",
+ "onebotMessageType": "OneBot žinutės tipas",
+ "onebotGroupMessage": "Grupė",
+ "onebotPrivateMessage": "Privati",
+ "onebotUserOrGroupId": "Grupės/Vartotojo ID",
+ "onebotSafetyTips": "Saugumo tikslais būtina nustatyti prieigos raktą",
+ "pushDeerServerDescription": "Palikite tuščią, kad naudotumėte oficialų serverį",
+ "lunaseaDeviceID": "Įrenginio ID",
+ "lunaseaUserID": "Vartotojo ID",
+ "ntfyAuthenticationMethod": "Autentifikacijos metodas",
+ "ntfyPriorityHelptextAllEvents": "Visi įvykiai siunčiami su aukščiausiu prioritetu",
+ "twilioAccountSID": "Paskyros SID",
+ "twilioApiKey": "API raktas (nebūtina)",
+ "twilioAuthToken": "Autorizacijos raktas / API slaptas raktas",
+ "Monitor Setting": "{0} stebėjimo nustatymai",
+ "Show Clickable Link": "Rodyti paspaudžiamą nuorodą",
+ "Show Clickable Link Description": "Jei pažymėta, visi, turintys prieigą prie šio būsenos puslapio, gali pasiekti stebėjimo URL.",
+ "Open Badge Generator": "Atidaryti ženklo generatorių",
+ "Badge Generator": "{0} ženklo generatorius",
+ "Badge Type": "Ženklo tipas",
+ "Badge Duration (in hours)": "Ženklo trukmė (valandomis)",
+ "Badge Label": "Ženklo etiketė",
+ "Badge Suffix": "Ženklo sufiksas",
+ "Badge Label Color": "Ženklo etiketės spalva",
+ "Badge Color": "Ženklo spalva",
+ "Close": "Uždaryti",
+ "Message format": "Žinutės formatas",
+ "Monitor Group": "Stebėjimo grupė",
+ "Badge Label Prefix": "Ženklo etiketės prefiksas",
+ "Badge Preview": "Ženklo peržiūra",
+ "Badge Up Color": "Veikiančio ženklo spalva",
+ "Badge Down Color": "Neveikiančio ženklo spalva",
+ "Badge Pending Color": "Laukiamos būsenos ženklo spalva",
+ "Badge Warn Color": "Įspėjimo ženklo spalva",
+ "Badge Warn Days": "Įspėjimo dienų skaičius",
+ "Badge Down Days": "Neveikiančių dienų skaičius",
+ "Badge Style": "Ženklo stilius",
+ "Badge value (For Testing only.)": "Ženklo reikšmė (tik testavimui)",
+ "Badge URL": "Ženklo URL",
+ "monitorToastMessagesLabel": "Stebėjimo iššokančios žinutės",
+ "toastErrorTimeout": "Klaidų pranešimų laiko limitas",
+ "toastSuccessTimeout": "Sėkmingų pranešimų laiko limitas",
+ "Kafka Brokers": "Kafka brokeriai",
+ "Enter the list of brokers": "Įveskite brokerių sąrašą",
+ "Press Enter to add broker": "Paspauskite Enter, kad pridėtumėte brokerį",
+ "Kafka Topic Name": "Kafka temos pavadinimas",
+ "Kafka Producer Message": "Kafka gamintojo žinutė",
+ "Enable Kafka SSL": "Įjungti Kafka SSL",
+ "Kafka SASL Options": "Kafka SASL parinktys",
+ "Pick a SASL Mechanism...": "Pasirinkite SASL mechanizmą…",
+ "AccessKey Id": "Prieigos rakto ID",
+ "Secret AccessKey": "Prieigos rakto slaptasis raktas",
+ "Session Token": "Sesijos prieigos raktas",
+ "Request Body": "Užklausos turinys",
+ "FlashDuty Severity": "Svarba",
+ "nostrRelays": "Nostr tarpininkai",
+ "Saved.": "Išsaugota.",
+ "authInvalidToken": "Neteisingas prieigos raktas.",
+ "2faAlreadyEnabled": "2FA jau yra įjungtas.",
+ "2faEnabled": "2FA įjungtas.",
+ "2faDisabled": "2FA išjungtas.",
+ "successEdited": "Sėkmingai redaguota.",
+ "successDeleted": "Sėkmingai ištrinta.",
+ "successResumed": "Sėkmingai pratęsta.",
+ "successAdded": "Sėkmingai pridėta.",
+ "successAuthChangePassword": "Slaptažodis sėkmingai atnaujintas.",
+ "successBackupRestored": "Sėkmingai atstatytos atsarginės kopijos.",
+ "successDisabled": "Sėkmingai įšjungta.",
+ "successEnabled": "Sėkmingai įjungta.",
+ "tagNotFound": "Žymė nerasta.",
+ "Remote Browsers": "Nuotolinės naršyklės",
+ "Remote Browser": "Nuotolinė naršyklė",
+ "Add a Remote Browser": "Pridėti nuotolinę naršyklę",
+ "Remote Browser not found!": "Nuotolinė naršyklė nerasta!",
+ "useRemoteBrowser": "Naudoti nuotolinę naršyklę",
+ "Command": "Komanda",
+ "API URL": "API URL",
+ "What is a Remote Browser?": "Kas yra nuotolinė naršyklė?",
+ "successPaused": "Sėkmingai pristabdyta.",
+ "foundChromiumVersion": "Rasta Chromium/Chrome. Versija: {0}",
+ "documentationOf": "{0} dokumentacija",
+ "threemaRecipientTypeIdentityFormat": "8 simboliai",
+ "threemaRecipientTypePhone": "Telefono numeris",
+ "To Phone Number": "Gavėjo telefono numeris",
+ "threemaRecipientTypeEmail": "El. pašto adresas",
+ "threemaRecipient": "Gavėjas",
+ "threemaRecipientType": "Gavėjo tipas",
+ "Allow Long SMS": "Leisti ilgas SMS žinutes",
+ "max 15 digits": "maks. 15 skaitmenų",
+ "threemaRecipientTypeIdentity": "Threema-ID",
+ "No tags found.": "Žymių nerasta.",
+ "Go back to home page.": "Grįžkite į pagrindinį puslapį.",
+ "Recipient Type": "Gavėjo tipas",
+ "New Group": "Nauja grupė",
+ "Add Remote Browser": "Pridėti nuotolinę naršyklę",
+ "Group ID": "Grupės ID",
+ "OAuth2: Client Credentials": "OAuth2: kliento kredencialai",
+ "Authentication Method": "Autentifikavimo metodas",
+ "Authorization Header": "Autorizacijos antraštė",
+ "Sound": "Garsas",
+ "Client ID": "Kliento ID",
+ "Guitar": "Gitara",
+ "From": "Nuo",
+ "smtpDkimDesc": "Prašome kreiptis į Nodemailer DKIM {0} naudojimo instrukcijoms.",
+ "smtpDkimSettings": "DKIM nustatymai",
+ "documentation": "dokumentacija",
+ "aboutSlackUsername": "Keičia pranešimo siuntėjo rodomą vardą. Jei norite paminėti kažką, įtraukite tai į draugišką vardą.",
+ "aboutChannelName": "Įveskite kanalo pavadinimą {0} lauke „Kanalo pavadinimas“, jei norite apeiti Webhook kanalą. Pvz.: #kitas-kanalas",
+ "aboutKumaURL": "Jei paliksite Uptime Kuma URL lauką tuščią, jis bus automatiškai nustatytas kaip Projekto GitHub puslapis.",
+ "PushDeer Key": "PushDeer raktas",
+ "wayToGetClickSendSMSToken": "API vartotojo vardą ir API raktą galite gauti adresu {0}.",
+ "Custom Monitor Type": "Pasirinktinis stebėjimo tipas",
+ "lunaseaTarget": "Tikslas",
+ "Edit Tag": "Redaguoti žymę",
+ "Server Address": "Serverio adresas",
+ "Google Analytics ID": "Google Analytics ID",
+ "pagertreeUrgency": "Svarba",
+ "pagertreeCritical": "Kritinė",
+ "pagertreeHigh": "Aukšta",
+ "pagertreeMedium": "Vidutinė",
+ "pagertreeLow": "Maža",
+ "pagertreeIntegrationUrl": "Integracijos URL",
+ "pagertreeSilent": "Tyli",
+ "pagertreeDoNothing": "Nieko nedaryti",
+ "pagertreeResolve": "Automatiškai išspręsti",
+ "templateHostnameOrURL": "pagrindinio kompiuterio vardas arba nuoroda",
+ "templateStatus": "būsena",
+ "emojiCheatSheet": "Jaustukų kodų lentelė: {0}",
+ "Read more": "Skaityti daugiau",
+ "default": "Numatytas",
+ "No Monitors": "Nėra stebėjimų",
+ "Please input title and content": "Prašome įvesti pavadinimą ir turinį",
+ "Show Tags": "Rodyti žymes",
+ "Hide Tags": "Paslėpti žymes",
+ "No monitors available.": "Nėra galimų stebėjimų.",
+ "setAsDefault": "Nustatyti kaip numatytą",
+ "Customize": "Tinkinti",
+ "proxyDescription": "Kad tarpiniai serveriai veiktų, jie turi būti priskirti stebėjimui.",
+ "enableProxyDescription": "Šis tarpinis serveris neturės poveikio stebėjimo užklausoms, kol nebus aktyvuotas. Galite laikinai išjungti tarpinį serverį nuo visų stebėjimų pagal aktyvavimo būseną.",
+ "setAsDefaultProxyDescription": "Šis tarpinis serveris bus įjungtas pagal numatytuosius nustatymus naujiems stebėjimams. Vis dar galite išjungti tarpinį serverį kiekvienam stebėjimui atskirai.",
+ "templateServiceName": "paslaugos pavadinimas",
+ "Description": "Aprašymas",
+ "Add one": "Pridėti vieną",
+ "Untitled Group": "Grupė be pavadinimo",
+ "Services": "Paslaugos",
+ "Powered by": "Sukūrė",
+ "Custom Footer": "Pasirinktinė apačia",
+ "Custom CSS": "Pasirinktinis CSS",
+ "deleteStatusPageMsg": "Ar tikrai norite ištrinti šį būsenos puslapį?",
+ "Proxies": "Tarpiniai serveriai",
+ "enabled": "Įjungta",
+ "deleteProxyMsg": "Ar tikrai norite ištrinti šį tarpinį serverį visiems stebėjimams?",
+ "Installed": "Įdiegta",
+ "Not installed": "Neįdiegta",
+ "Running": "Paleistas",
+ "Remove Token": "Pašalinti prieigos raktą",
+ "Start": "Paleisti",
+ "Stop": "Sustabdyti",
+ "Next": "Toliau",
+ "Authentication": "Autentifikacija",
+ "Page Not Found": "Puslapis nerastas",
+ "About": "Apie",
+ "Message:": "Žinutė:",
+ "HTTP Headers": "HTTP antraštės",
+ "For example: nginx, Apache and Traefik.": "Pavyzdžiui: ngix, Apache ir Traefik.",
+ "Subject:": "Tema:",
+ "Refresh Interval": "Atnaujinimo intervalas",
+ "Add New Status Page": "Pridėti naują būsenos puslapį",
+ "Backup": "Padaryti atsargines kopijas",
+ "Domain Names": "Domenų vardai",
+ "Footer Text": "Apačios tekstas",
+ "wayToGetCloudflaredURL": "(Atsisiųskite cloudflared iš {0})",
+ "cloudflareWebsite": "Cloudflare svetainės",
+ "User": "Vartotojas",
+ "No Proxy": "Nėra tarpinio serverio",
+ "Trust Proxy": "Pasitikėti šiuo tarpiniu serveriu",
+ "Proxy": "Tarpinis serveris",
+ "Certificate Chain": "Sertifikato grandinė",
+ "Invalid": "Negaliojantis",
+ "Slug": "Nuorodos dalis",
+ "Accept characters:": "Priimami simboliai:",
+ "startOrEndWithOnly": "Pradėti arba baigti tik su {0}",
+ "The slug is already taken. Please choose another slug.": "Ši nuorodos dalis jau užimta. Prašome pasirinkti kitą.",
+ "HTTP Basic Auth": "HTTP bazinis autentifikavimas",
+ "New Status Page": "Naujas būsenos puslapis",
+ "Don't know how to get the token? Please read the guide:": "Nežinote, kaip gauti prieigos raktą? Perskaitykite vadovą:",
+ "Other Software": "Kitos programinės įrangos",
+ "Show Powered By": "Rodyti kas sukūrė",
+ "Valid To:": "Galioja iki:",
+ "Days Remaining:": "Liko dienų:",
+ "Issuer:": "Išdavėjas:",
+ "Fingerprint:": "Pirštų antspaudas:",
+ "No status pages": "Nėra būsenos puslapių",
+ "Domain Name Expiry Notification": "Domeno vardo galiojimo pabaigos pranešimas",
+ "Add a new expiry notification day": "Pridėti naują galiojimo pabaigos pranešimo dieną",
+ "Remove the expiry notification": "Pašalinti galiojimo pabaigos pranešimą",
+ "Steam Game Server": "Steam žaidimų serveris",
+ "Coming Soon": "Jau greitai",
+ "Query": "Užklausa",
+ "tcp": "TCP / HTTP",
+ "Packet Size": "Paketo dydis",
+ "Chat ID": "Pokalbio ID",
+ "API Username": "API vartotojo vardas",
+ "socket": "Lizdas",
+ "Go back to the previous page.": "Grįžkite į ankstesnį puslapį.",
+ "Domain": "Domenas",
+ "Bot Token": "Bot'o prieigos raktas",
+ "Show update if available": "Rodyti galimus atnaujinimus",
+ "Also check beta release": "Taip pat patikrinti beta išleidimus",
+ "settingsCertificateExpiry": "TLS sertifikato galiojimas",
+ "Using a Reverse Proxy?": "Naudojate atvirkštinį tarpinį serverį?",
+ "signedInDispDisabled": "Autentifikavimas išjungtas.",
+ "RadiusSecret": "RADIUS slaptažodis",
+ "RadiusSecretDescription": "Bendras slaptažodis tarp kliento ir serverio",
+ "RadiusCalledStationId": "RADIUS iškviesto stoties ID",
+ "RadiusCalledStationIdDescription": "Iškviesto įrenginio identifikatorius",
+ "RadiusCallingStationId": "RADIUS skambinančios stoties ID",
+ "Certificate Expiry Notification": "Sertifikato galiojimo pabaigos pranešimas",
+ "Check how to config it for WebSocket": "Patikrinkite, kaip sukonfigūruoti per WebSocket",
+ "Most likely causes:": "Greičiausios priežastys:",
+ "The resource is no longer available.": "Resursas nebeprieinamas.",
+ "What you can try:": "Ką galite pabandyti:",
+ "Retype the address.": "Įveskite adresą iš naujo.",
+ "Connection String": "Ryšio eilutė",
+ "Setup Docker Host": "Nustatyti Docker serverį",
+ "Connection Type": "Ryšio tipas",
+ "Docker Daemon": "Docker tarnyba",
+ "noDockerHostMsg": "Nepasiekiama. Pirmiausia nustatykite Docker serverį.",
+ "deleteDockerHostMsg": "Ar tikrai norite ištrinti šį Docker serverį iš visų stebėjimų?",
+ "Docker Container": "Docker konterineris",
+ "Container Name / ID": "Konteinerio vardas / ID",
+ "Docker Host": "Docker serveris",
+ "Docker Hosts": "Docker serveriai",
+ "Workstation": "Darbinė stotis",
+ "telegramMessageThreadID": "(Pasirinktinai) Žinučių temos ID",
+ "telegramMessageThreadIDDescription": "Pasirinktinai unikalus identifikatorius tikslinei žinučių temai (forumo temai), skirtas tik forumo supergrupėms",
+ "telegramSendSilently": "Siųsti tyliai",
+ "telegramSendSilentlyDescription": "Siunčia žinutę tyliai. Vartotojai gaus pranešimą be garso.",
+ "Examples": "Pavyzdžiai",
+ "telegramProtectContent": "Apsaugoti nuo persiuntimo/išsaugojimo",
+ "telegramProtectContentDescription": "Jei įjungta, Telegram bot'o žinutės bus apsaugotos nuo persiuntimo ir išsaugojimo.",
+ "telegramUseTemplate": "Naudoti pasirinktą žinutės šabloną",
+ "telegramUseTemplateDescription": "Jei įjungta, žinutė bus išsiųsta naudojant pasirinktą šabloną.",
+ "telegramTemplateFormatDescription": "Telegram leidžia naudoti skirtingas žymėjimo kalbas žinutėms, žr. Telegram {0} dėl išsamesnės informacijos.",
+ "supportTelegramChatID": "Palaikymas tiesioginiam pokalbiui / grupei / kanalui pokalbio ID",
+ "wayToGetTelegramChatID": "Galite gauti savo pokalbio ID, išsiųsdami žinutę bot'ui ir apsilankę šioje nuorodoje, kur pamatysite chat_id:",
+ "smtpBCC": "BCC",
+ "pushoversounds climb": "Klimbas (ilgas)",
+ "Authorization Identity": "Autorizacijos identifikatorius",
+ "liquidIntroduction": "Šablonavimo galimybės pasiekiamos naudojant Liquid šablonavimo kalbą. Naudojimo instrukcijas rasite {0}. Galimi šie kintamieji:",
+ "webhookAdditionalHeadersDesc": "Nustato papildomas antraštes, siunčiamas su webhook. Kiekviena antraštė turi būti apibrėžta kaip JSON raktas/reikšmė.",
+ "templateMonitorJSON": "objektas, apibūdinantis stebėjimą",
+ "templateLimitedToUpDownNotifications": "prieinama tik VEIKIA/NEVEIKIA pranešimams",
+ "Json Query Expression": "Json užklausos išraiška",
+ "webhookAdditionalHeadersTitle": "Papildomos antraštės",
+ "webhookBodyCustomOption": "Tinkintas turinys",
+ "Webhook URL": "Webhook URL adresas",
+ "templateHeartbeatJSON": "objektas, apibūdinantis patikros signalą",
+ "templateLimitedToUpDownCertNotifications": "prieinama tik VEIKIA/NEVEIKIA/Sertifikato galiojimo pranešimams",
+ "authIncorrectCreds": "Neteisingas vartotojo vardas arba slaptažodis.",
+ "nostrRelaysHelp": "Vienas tarpininko URL po vieną eilutėje",
+ "nostrSender": "Siuntėjo privatus raktas (nsec)",
+ "nostrRecipients": "Gavėjų viešieji raktai (npub)",
+ "nostrRecipientsHelp": "npub formatu, po vieną eilutėje",
+ "showCertificateExpiry": "Rodyti sertifikato galiojimo pabaigą",
+ "noOrBadCertificate": "Nėra / netinkamas sertifikatas",
+ "cacheBusterParam": "Pridėti {0} parametrą",
+ "cacheBusterParamDescription": "Atsitiktinai sugeneruotas parametras, skirtas apeiti talpyklas.",
+ "gamedigGuessPortDescription": "Valve Server Query Protocol naudojamas prievadas gali skirtis nuo kliento prievado. Pabandykite šį variantą, jei monitorius negali prisijungti prie jūsų serverio.",
+ "Send rich messages": "Siųsti išsamius pranešimus",
+ "Bitrix24 Webhook URL": "Bitrix24 Webhook URL adresas",
+ "authUserInactiveOrDeleted": "Vartotojas neaktyvus arba ištrintas.",
+ "rabbitmqNodesRequired": "Prašome nustatyti mazgus šiam stebėjimui.",
+ "RabbitMQ Nodes": "RabbitMQ valdymo mazgai",
+ "rabbitmqNodesDescription": "Įveskite URL adresą RabbitMQ valdymo mazgams, įskaitant protokolą ir prievadą. Pavyzdys: {0}",
+ "rabbitmqNodesInvalid": "Prašome naudoti pilnai kvalifikuotą (prasidedantį „http“) URL adresą RabbitMQ mazgams.",
+ "cellsyntDestination": "Gavėjo telefono numeris, naudojant tarptautinį formatą su pradine 00 ir šalies kodu, pvz., 00447920110000 JK numeriui 07920 110 000 (iš viso iki 17 skaitmenų). Viena HTTP užklausa gali turėti iki 25000 gavėjų, atskirtų kableliais.",
+ "threemaBasicModeInfo": "Pastaba: Ši integracija naudoja Threema Gateway baziniame režime (serverio pagrindu šifravimas). Išsamesnę informaciją rasite {0}.",
+ "Custom sound to override default notification sound": "Individualus garsas, pakeičiantis numatytąjį pranešimų garsą",
+ "Either a text sender ID or a phone number in E.164 format if you want to be able to receive replies.": "Naudokite teksto siuntėjo ID arba telefono numerį E.164 formatu, jei norite gauti atsakymus.",
+ "wahaSession": "Sesija",
+ "wahaChatId": "Pokalbio ID (telefono numeris / adresato ID / grupės ID)",
+ "wayToGetWahaApiUrl": "Jūsų WAHA instancijos URL.",
+ "wayToGetWahaApiKey": "API raktas yra WHATSAPP_API_KEY aplinkos kintamojo reikšmė, kurią naudojote paleidžiant WAHA.",
+ "wayToGetWahaSession": "Iš šios sesijos WAHA siunčia pranešimus į pokalbio ID. Jį rasite WAHA skydelyje.",
+ "wayToWriteWahaChatId": "Telefono numeris su tarptautiniu prefiksu, bet be pliuso ženklo pradžioje ({0}), adresato ID ({1}) arba grupės ID ({2}). Pranešimai siunčiami į šį pokalbio ID iš WAHA sesijos.",
+ "OAuth Token URL": "OAuth prieigos rakto URL",
+ "invertKeywordDescription": "Ieškokite raktažodžio, kuris yra ankščiau panaudotas, o ne esantis.",
+ "gamedigGuessPort": "Gamedig: atspėk prievadą",
+ "wayToGetBitrix24Webhook": "Sukurkite webhook, sekdami nurodymus adresu {0}",
+ "bitrix24SupportUserID": "Įveskite savo vartotojo ID Bitrix24. ID galite rasti nuorodoje, eidami į vartotojo profilį.",
+ "remoteBrowsersDescription": "Nuotolinės naršyklės yra alternatyva Chromium paleidimui vietoje. Nustatykite su tokia paslauga kaip browserless.io arba prisijunkite prie savo",
+ "self-hosted container": "savarankiškai talpinamas konteineris",
+ "remoteBrowserToggle": "Numatytuoju atveju Chromium veikia Uptime Kuma konteineryje. Galite naudoti nuotolinę naršyklę, persijungę šį jungiklį.",
+ "deleteRemoteBrowserMessage": "Ar tikrai norite ištrinti šią nuotolinę naršyklę visiems stebėjimams?",
+ "GrafanaOncallUrl": "Grafana Oncall URL",
+ "mongodbCommandDescription": "Paleiskite MongoDB komandą prieš duomenų bazę. Daugiau informacijos apie galimas komandas rasite {documentation}",
+ "wayToGetSevenIOApiKey": "Aplankykite valdymo skydelį adresu app.seven.io > developer > api key > žalias pridėjimo mygtukas",
+ "senderSevenIO": "Siuntimo numeris arba pavadinimas",
+ "receiverSevenIO": "Priėmimo numeris",
+ "receiverInfoSevenIO": "Jei priėmimo numeris nėra Vokietijoje, turite pridėti šalies kodą numerio pradžioje (pvz., JAV šalies kodui 1 naudokite 117612121212 vietoje 017612121212)",
+ "apiKeySevenIO": "SevenIO API raktas",
+ "wayToWriteWhapiRecipient": "Telefono numeris su tarptautiniu prefiksu, bet be pliuso ženklas pradžioje ({0}), adresato ID ({1}) arba grupės ID ({2}).",
+ "wayToGetWhapiUrlAndToken": "API URL ir prieigos raktą galite gauti eidami į norimą kanalą iš {0}",
+ "whapiRecipient": "Telefono numeris / Adresato ID / Grupės ID",
+ "wayToGetHeiiOnCallDetails": "Kaip gauti Trigger ID ir API raktus, paaiškinta {documentation}",
+ "callMeBotGet": "Čia galite sugeneruoti pabaigos tašką {0}, {1} ir {2}. Atkreipkite dėmesį, kad galite susidurti su apribojimais. Apribojimai atrodo tokie: {3}",
+ "gtxMessagingApiKeyHint": "Savo API raktą rasite: My Routing Accounts > Show Account Information > API Credentials > REST API (v2.x)",
+ "From Phone Number / Transmission Path Originating Address (TPOA)": "Iš telefono numerio / Perdavimo kelio kilmės adresas (TPOA)",
+ "gtxMessagingFromHint": "Mobiliaisiais telefonais jūsų gavėjai mato TPOA kaip pranešimo siuntėją. Leidžiama iki 11 simbolių su raidėmis/skaičiais, trumpasis kodas, vietinis ilgas numeris arba tarptautiniai numeriai ({e164}, {e212} arba {e214})",
+ "Originator type": "Siuntėjo tipas",
+ "cellsyntOriginatortypeAlphanumeric": "Raidinė skaitmeninė eilutė (maks. 11 simbolių). Gavėjai negali atsakyti į pranešimą.",
+ "Alphanumeric (recommended)": "Raidinis skaitmeninis (rekomenduojama)",
+ "cellsyntOriginatortypeNumeric": "Skaitinė reikšmė (maks. 15 skaitmenų) su tarptautiniu telefono numerio formatu be pradinio 00 (pvz., JK numeris 07920 110 000 turi būti įrašytas kaip 447920110000). Gavėjai gali atsakyti į pranešimą.",
+ "Originator": "Siuntėjas",
+ "cellsyntOriginator": "Rodoma gavėjo mobiliajame telefone kaip pranešimo siuntėjas. Leidžiamos reikšmės ir funkcija priklauso nuo parametro originatortype.",
+ "Destination": "Gavėjas",
+ "cellsyntSplitLongMessages": "Ilgi pranešimai suskaidomi į iki 6 dalių. 153 x 6 = 918 simbolių.",
+ "max 11 alphanumeric characters": "maks. 11 simbolių (raidės, skaičiai)",
+ "Community String": "Bendruomenės eilutė",
+ "snmpCommunityStringHelptext": "Ši eilutė veikia kaip slaptažodis, skirtas autentifikuoti ir valdyti prieigą prie SNMP palaikomų įrenginių. Suderinkite ją su savo SNMP įrenginio konfigūracija.",
+ "OID (Object Identifier)": "OID (objekto identifikatorius)",
+ "snmpOIDHelptext": "Įveskite OID sensoriui ar būsenai, kuriuos norite stebėti. Jei nesate tikri dėl OID, naudokite tinklo valdymo įrankius, tokius kaip MIB naršyklės ar SNMP programinė įranga.",
+ "Condition": "Sąlyga",
+ "SNMP Version": "SNMP versija",
+ "Please enter a valid OID.": "Prašome įvesti galiojantį OID.",
+ "wayToGetThreemaGateway": "Galite užsiregistruoti Threema Gateway {0}.",
+ "threemaRecipientTypePhoneFormat": "E.164, be pradinio +",
+ "threemaSenderIdentity": "Gateway-ID",
+ "threemaSenderIdentityFormat": "8 simboliai, paprastai prasideda ženklu *",
+ "threemaApiAuthenticationSecret": "Gateway-ID slaptažodis",
+ "apiKeysDisabledMsg": "API raktai išjungti, nes autentifikacija išjungta.",
+ "Host Onesender": "Onesender serveris",
+ "Token Onesender": "Onesender prieigos raktas",
+ "privateOnesenderDesc": "Įsitikinkite, kad telefono numeris yra tinkamas. Norėdami išsiųsti žinutę į privatų telefono numerį, pvz.: 628123456789",
+ "groupOnesenderDesc": "Įsitikinkite, kad GroupID yra tinkamas. Norėdami išsiųsti žinutę į grupę, pvz.: 628123456789-342345",
+ "wayToGetOnesenderUrlandToken": "URL ir prieigos raktą galite gauti apsilankę Onesender svetainėje. Daugiau informacijos {0}",
+ "Flute": "Fleita",
+ "Harp": "Arfa",
+ "Doorbell": "Durų skambutis",
+ "Elevator": "Liftas",
+ "Form Data Body": "Formos duomenų turinys",
+ "Client Secret": "Kliento slaptažodis",
+ "OAuth Scope": "OAuth apimtis",
+ "Optional: Space separated list of scopes": "Pasirenkama: tarpu atskirtų apimčių sąrašas",
+ "Lost connection to the socket server.": "Prarastas ryšys su lizdo serveriu.",
+ "Cannot connect to the socket server.": "Nepavyksta prisijungti prie lizdo serverio.",
+ "SIGNL4": "SIGNL4",
+ "SIGNL4 Webhook URL": "SIGNL4 Webhook URL adresas",
+ "signl4Docs": "Daugiau informacijos apie SIGNL4 konfigūravimą ir kaip gauti SIGNL4 webhook URL rasite {0}.",
+ "Conditions": "Sąlygos",
+ "conditionAdd": "Pridėti sąlygą",
+ "conditionDelete": "Ištrinti sąlygą",
+ "conditionAddGroup": "Pridėti grupę",
+ "conditionDeleteGroup": "Ištrinti grupę",
+ "not contains": "neturi",
+ "starts with": "prasideda su",
+ "not starts with": "neprasideda su",
+ "ends with": "baigiasi su",
+ "not ends with": "nebaigiasi su",
+ "less than": "mažiau nei",
+ "greater than": "daugiau nei",
+ "less than or equal to": "mažiau arba lygu",
+ "greater than or equal to": "daugiau arba lygu",
+ "record": "įrašas",
+ "Notification Channel": "Pranešimų kanalas",
+ "Alphanumerical string and hyphens only": "Tik raidinė skaitinė eilutė ir brūkšneliai",
+ "Arcade": "Arkada",
+ "Fail": "Nepavyko",
+ "Correct": "Teisingai",
+ "Reveal": "Atskleisti",
+ "Bubble": "Burbulas",
+ "Scifi": "Mokslinis fantastinis",
+ "Clear": "Išvalyti",
+ "Pop": "Pop",
+ "Time Sensitive (iOS Only)": "Laiko jautrūs (tik iOS)",
+ "Time sensitive notifications will be delivered immediately, even if the device is in do not disturb mode.": "Laiko jautrūs pranešimai bus pristatyti iš karto, net jei įrenginys yra „Netrukdyti“ režime.",
+ "Can be found on:": "Galima rasti: {0}",
+ "The phone number of the recipient in E.164 format.": "Gavėjo telefono numeris E.164 formatu.",
+ "rabbitmqHelpText": "Norėdami naudoti stebėjimą, turėsite įjungti valdymo įskiepį savo RabbitMQ sąrankoje. Išsamesnės informacijos rasite {rabitmq_documentation}.",
+ "Separate multiple email addresses with commas": "Atskirkite kelis el. pašto adresus kableliais",
+ "equals": "lygu",
+ "not equals": "nelygu",
+ "contains": "turi"
}
diff --git a/src/lang/nl-NL.json b/src/lang/nl-NL.json
index 56b180e53..4ddb77624 100644
--- a/src/lang/nl-NL.json
+++ b/src/lang/nl-NL.json
@@ -1041,5 +1041,53 @@
"less than": "minder dan",
"greater than": "meer dan",
"record": "dossier",
- "jsonQueryDescription": "Parseer en haal specifieke gegevens uit de JSON-respons van de server met behulp van JSON-query of gebruik \"$\" voor de onbewerkte respons, als u geen JSON verwacht. Het resultaat wordt vervolgens vergeleken met de verwachte waarde, als strings. Zie {0} voor documentatie en gebruik {1} om te experimenteren met query's."
+ "jsonQueryDescription": "Parseer en haal specifieke gegevens uit de JSON-respons van de server met behulp van JSON-query of gebruik \"$\" voor de onbewerkte respons, als u geen JSON verwacht. Het resultaat wordt vervolgens vergeleken met de verwachte waarde, als strings. Zie {0} voor documentatie en gebruik {1} om te experimenteren met query's.",
+ "rabbitmqNodesDescription": "Voer het URL voor de RabbitMQ beheerkooppunt inclusief protocol en poort in. Bijvoorbeeld: {0}",
+ "rabbitmqNodesRequired": "Aub stel de knooppunten voor deze monitor in.",
+ "rabbitmqNodesInvalid": "Stel gebruik een volledig gekwalificeerde (beginnend met 'http') URL voor RabbitMQ-knooppunten.",
+ "RabbitMQ Username": "RabbitMQ gebruikersnaam",
+ "RabbitMQ Password": "RabbitMQ wachtwoord",
+ "rabbitmqHelpText": "Om gebruik te maken van de monitor moet je de Management Plugin in de RabbitMQ setup aanzetten. Voor meer informatie zie de {rabitmq_documentatie}.",
+ "SendGrid API Key": "SendGrid API sleutel",
+ "Separate multiple email addresses with commas": "Splits meerdere emailadressen met kommas",
+ "RabbitMQ Nodes": "RabbitMQ Beheerknoppunten",
+ "shrinkDatabaseDescriptionSqlite": "Trigger database {vacuum} voor SQLite. {auto_vacuum} is al ingeschakeld, maar hiermee wordt de database niet gedefragmenteerd en worden ook databasepagina's niet afzonderlijke opnieuw ingepakt zoals de opdracht {vacuum} dat doet.",
+ "aboutSlackUsername": "Wijzigt de weergavenaam van de afzender van het bericht. Als je iemand wilt vermelden, voer in dat geval de naam in als vriendelijke naam.",
+ "cacheBusterParam": "Voeg de parameter {0} toe",
+ "Form Data Body": "Formulier Gegevens Content",
+ "Optional: Space separated list of scopes": "Optioneel: Reikwijdte door spaties gescheiden lijst",
+ "Alphanumerical string and hyphens only": "Alleen alfanumerieke tekenreeksen en koppeltekens",
+ "Time sensitive notifications will be delivered immediately, even if the device is in do not disturb mode.": "Tijdsgevoelige meldingen worden meteen afgeleverd, zelfs als het apparaat in niet storen modus staat.",
+ "Message format": "Berichtformaat",
+ "Send rich messages": "Stuur rijke berichten",
+ "OAuth Scope": "OAuth Reikwijdte",
+ "equals": "gelijk aan",
+ "not equals": "niet gelijk aan",
+ "less than or equal to": "kleiner dan of gelijk aan",
+ "greater than or equal to": "groter dan of gelijk aan",
+ "Notification Channel": "Meldingskanaal",
+ "Sound": "Geluid",
+ "Arcade": "Speelhal",
+ "Correct": "Juist",
+ "Fail": "Mislukt",
+ "Harp": "Harp",
+ "Reveal": "Laat zien",
+ "Bubble": "Bubbel",
+ "Doorbell": "Deurbel",
+ "Flute": "Fluit",
+ "Money": "Geld",
+ "Scifi": "Science fiction",
+ "Guitar": "Gitaar",
+ "Custom sound to override default notification sound": "Aangepast geluid om het standaard geluid te vervangen",
+ "Time Sensitive (iOS Only)": "Tijdsgevoelig (alleen voor iOs)",
+ "From": "Van",
+ "Can be found on:": "Kan gevonden worden op: {0}",
+ "The phone number of the recipient in E.164 format.": "Het telefoonnummer van de ontvanger in E.164 formaat",
+ "Either a text sender ID or a phone number in E.164 format if you want to be able to receive replies.": "Ofwel een sms zender ID of een telefoonnummer in E.164 formaat als je reacties wil ontvangen.",
+ "Clear": "Helder",
+ "Elevator": "Lift",
+ "Pop": "Pop",
+ "Community String": "Gemeenschap Tekst",
+ "Json Query Expression": "Json Query Expressie",
+ "ignoredTLSError": "TLS/SSL-fouten zijn genegeerd"
}
diff --git a/src/lang/pt-BR.json b/src/lang/pt-BR.json
index 89581b8ec..e6953ebfa 100644
--- a/src/lang/pt-BR.json
+++ b/src/lang/pt-BR.json
@@ -1062,5 +1062,11 @@
"RabbitMQ Username": "Nome de usuário do RabbitMQ",
"RabbitMQ Password": "Senha do RabbitMQ",
"SendGrid API Key": "Chave API do SendGrid",
- "Separate multiple email addresses with commas": "Separe vários endereços de e-mail com vírgulas"
+ "Separate multiple email addresses with commas": "Separe vários endereços de e-mail com vírgulas",
+ "templateServiceName": "nome do serviço",
+ "telegramUseTemplate": "Use um template personalizado de mensagem",
+ "telegramTemplateFormatDescription": "O Telegram permite o uso de diferentes linguagens de marcação para mensagens. Veja o Telegram {0} para detalhes específicos.",
+ "templateHostnameOrURL": "hostname ou URL",
+ "templateStatus": "status",
+ "telegramUseTemplateDescription": "Se habilitado, a mensagem será enviada usando um template personalizado."
}
diff --git a/src/lang/ro.json b/src/lang/ro.json
index cfbd33808..5f2e14344 100644
--- a/src/lang/ro.json
+++ b/src/lang/ro.json
@@ -1039,5 +1039,43 @@
"less than": "mai puțin decât",
"less than or equal to": "mai mic sau egal cu",
"greater than or equal to": "mai mare sau egal cu",
- "record": "înregistrare"
+ "record": "înregistrare",
+ "aboutSlackUsername": "Modifică numele afișat al expeditorului mesajului. Dacă doriți să menționați pe cineva, includeți-l în numele prietenos.",
+ "Custom sound to override default notification sound": "Sunet personalizat pentru a înlocui sunetul de notificare implicit",
+ "ignoredTLSError": "Erorile TLS/SSL au fost ignorate",
+ "Message format": "Formatul mesajului",
+ "Send rich messages": "Trimiteți mesaje complexe",
+ "Notification Channel": "Canal de notificare",
+ "Sound": "Sunet",
+ "Alphanumerical string and hyphens only": "Doar șir de caractere alfanumerice și liniuțe",
+ "Arcade": "Galerie",
+ "RabbitMQ Username": "Utilizator RabbitMQ",
+ "Time sensitive notifications will be delivered immediately, even if the device is in do not disturb mode.": "Notificările \"time sensitive\" vor fi livrate imediat, chiar dacă dispozitivul este în modul „nu deranjați”.",
+ "rabbitmqNodesDescription": "Introduceți adresa URL pentru nodurile de gestionare RabbitMQ, inclusiv protocolul și portul. Exemplu: {0}",
+ "rabbitmqHelpText": "Pentru a utiliza monitorul, va trebui să activați plugin-ul de gestionare în configurația RabbitMQ. Pentru mai multe informații, vă rugăm să consultați {rabitmq_documentation}.",
+ "Time Sensitive (iOS Only)": "Time Sensitive (numai iOS)",
+ "From": "De la",
+ "Can be found on:": "Poate fi găsit la: {0}",
+ "The phone number of the recipient in E.164 format.": "Numărul de telefon al destinatarului în format E.164.",
+ "Either a text sender ID or a phone number in E.164 format if you want to be able to receive replies.": "Fie un ID expeditor text, fie un număr de telefon în format E.164, dacă doriți să puteți primi răspunsuri.",
+ "RabbitMQ Nodes": "Noduri de gestionare RabbitMQ",
+ "Money": "Bani",
+ "Scifi": "SF",
+ "Elevator": "Lift",
+ "Guitar": "Chitară",
+ "Pop": "Pop",
+ "Harp": "Harpă",
+ "Reveal": "Dezvăluire",
+ "Bubble": "Bule",
+ "Doorbell": "Sonerie",
+ "Flute": "Flaut",
+ "Clear": "Clar",
+ "rabbitmqNodesRequired": "Vă rugăm să setați nodurile pentru acest monitor.",
+ "rabbitmqNodesInvalid": "Vă rugăm să utilizați o adresă URL complet calificată (începând cu „http”) pentru nodurile RabbitMQ.",
+ "RabbitMQ Password": "Parolă RabbitMQ",
+ "SendGrid API Key": "Cheia API SendGrid",
+ "Separate multiple email addresses with commas": "Separați adresele de e-mail multiple cu virgule",
+ "Correct": "Corect",
+ "Fail": "Eșec",
+ "shrinkDatabaseDescriptionSqlite": "Declanșează comanda {vacuum} pentru baza de date SQLite. {auto_vacuum} este deja activat, dar acest lucru nu defragmentează baza de date și nici nu reîmpachetează paginile individuale ale bazei de date așa cum o face comanda {vacuum}."
}
diff --git a/src/lang/ru-RU.json b/src/lang/ru-RU.json
index 1f081d026..a8935fe27 100644
--- a/src/lang/ru-RU.json
+++ b/src/lang/ru-RU.json
@@ -1106,5 +1106,8 @@
"SendGrid API Key": "API-ключ SendGrid",
"Separate multiple email addresses with commas": "Разделяйте несколько адресов электронной почты запятыми",
"-year": "-год",
- "Json Query Expression": "Выражение запроса Json"
+ "Json Query Expression": "Выражение запроса Json",
+ "templateServiceName": "имя сервиса",
+ "templateHostnameOrURL": "hostname или URL",
+ "templateStatus": "статус"
}
diff --git a/src/lang/sk.json b/src/lang/sk.json
index 5c5582650..55ab4a0a1 100644
--- a/src/lang/sk.json
+++ b/src/lang/sk.json
@@ -558,5 +558,29 @@
"A list of Notification Services can be found in Home Assistant under \"Developer Tools > Services\" search for \"notification\" to find your device/phone name.": "Zoznam notifikačných služieb nájdete v aplikácii Home Assistant v časti „Nástroje pre vývojárov > Služby“, kde vyhľadajte položku „ notifikácia“ a nájdite názov svojho zariadenia/telefónu.",
"tailscalePingWarning": "Ak chcete používať sledovanie Tailscale Ping, musíte nainštalovať aplikáciu Uptime Kuma bez nástroja Docker a tiež nainštalovať klienta Tailscale na server.",
"Enable": "Povoliť",
- "Enable DNS Cache": "(Zastarané) Povoliť vyrovnávaciu pamäť DNS pre HTTP(s) sledovania"
+ "Enable DNS Cache": "(Zastarané) Povoliť vyrovnávaciu pamäť DNS pre HTTP(s) sledovania",
+ "Post": "Publikovať",
+ "Not running": "Nebeží",
+ "RadiusSecret": "Radius Secret",
+ "cronExpression": "CRON výraz",
+ "Maintenance Time Window of a Day": "Časové okno pre údržbu v daný deň",
+ "Hello @everyone is...": "Dobrý deň, {'@'}všetci sú…",
+ "clearHeartbeatsMsg": "Naozaj chcete odstrániť všetky heartbeaty pre tento monitoring?",
+ "Trust Proxy": "Dôveryhodná proxy",
+ "RadiusCalledStationId": "ID volaného zariadenia",
+ "Connection String": "Connection String",
+ "socket": "Socket",
+ "Line Developers Console": "Konzola Line Developers",
+ "confirmClearStatisticsMsg": "Naozaj chcete odstrániť VŠETKY štatistiky?",
+ "-year": "-rok",
+ "and": "a",
+ "shrinkDatabaseDescriptionSqlite": "Podmienka spustenia príkazu pre SQLite databázu. Príkaz {auto_vacuum} je už zapnutý, ale nedochádza k defragmentácii databázy ani k prebaleniu jednotlivých stránok databázy ako to robí príkaz {vacuum}.",
+ "lineDevConsoleTo": "Konzola Line Developers - {0}",
+ "clearEventsMsg": "Naozaj chcete odstrániť všetky udalosti pre tento monitoring?",
+ "now": "teraz",
+ "time ago": "pred {0}",
+ "Json Query Expression": "Výraz dotazu JSON",
+ "ignoredTLSError": "Chyby TLS/SSL boli ignorované",
+ "Add a new expiry notification day": "Pridať nové oznámenie o vypršaní platnosti",
+ "chromeExecutable": "Spustitelný súbor Chrome/Chromium"
}
diff --git a/src/lang/tr-TR.json b/src/lang/tr-TR.json
index 5c936f06c..608ba8618 100644
--- a/src/lang/tr-TR.json
+++ b/src/lang/tr-TR.json
@@ -1,5 +1,5 @@
{
- "languageName": "Türkçe",
+ "languageName": "English",
"checkEverySecond": "{0} saniyede bir kontrol et",
"retryCheckEverySecond": "{0} saniyede bir dene",
"resendEveryXTimes": "Her {0} bir yeniden gönder",
@@ -201,7 +201,7 @@
"Chat ID": "Chat ID",
"supportTelegramChatID": "Doğrudan Sohbet / Grup / Kanalın Sohbet Kimliğini Destekleyin",
"wayToGetTelegramChatID": "Bot'a bir mesaj göndererek ve chat_id'yi görüntülemek için bu URL'ye giderek sohbet kimliğinizi alabilirsiniz:",
- "YOUR BOT TOKEN HERE": "BOT TOKENİNİZ BURADA",
+ "YOUR BOT TOKEN HERE": "BOT TOKENİNİZ BURAYA",
"chatIDNotFound": "Chat ID bulunamadı; lütfen önce bu bota bir mesaj gönderin",
"webhook": "Webhook",
"Post URL": "Post URL",
diff --git a/src/lang/uk-UA.json b/src/lang/uk-UA.json
index 9042f2c50..fd1703085 100644
--- a/src/lang/uk-UA.json
+++ b/src/lang/uk-UA.json
@@ -54,7 +54,7 @@
"Keyword": "Ключове слово",
"Friendly Name": "Ім'я",
"URL": "URL",
- "Hostname": "Адреса хоста",
+ "Hostname": "Адреса хосту",
"Port": "Порт",
"Heartbeat Interval": "Частота опитування",
"Retries": "Спроб",
@@ -951,7 +951,7 @@
"cellsyntDestination": "Номер телефону одержувача в міжнародному форматі з 00 на початку, за яким слідує код країни, наприклад, 00447920110000 для британського номера 07920 110 000 (максимум 17 цифр). Максимум 25000 одержувачів, розділених комами, на один HTTP-запит.",
"max 11 alphanumeric characters": "максимум 11 буквено-цифрових символів",
"locally configured mail transfer agent": "локально налаштований агент пересилання пошти",
- "Either enter the hostname of the server you want to connect to or localhost if you intend to use a locally configured mail transfer agent": "Або введіть ім'я хоста сервера, до якого ви хочете підключитися, або {localhost}, якщо ви маєте намір використовувати {local_mta}",
+ "Either enter the hostname of the server you want to connect to or localhost if you intend to use a locally configured mail transfer agent": "Або введіть ім'я хосту сервера, до якого ви хочете підключитися, або {localhost}, якщо ви маєте намір використовувати {local_mta}",
"Don't mention people": "Не згадувати людей",
"Mentioning": "Згадування",
"Mention group": "Згадати {group}",
@@ -1104,5 +1104,24 @@
"rabbitmqNodesDescription": "Введіть URL-адресу для вузлів керування RabbitMQ, включаючи протокол і порт. Приклад: {0}",
"rabbitmqNodesInvalid": "Будь ласка, використовуйте повну URL-адресу (починаючи з 'http') для вузлів RabbitMQ.",
"rabbitmqHelpText": "Щоб використовувати монітор, вам потрібно увімкнути плагін керування у налаштуваннях RabbitMQ. Для отримання додаткової інформації, будь ласка, зверніться до {rabitmq_documentation}.",
- "aboutSlackUsername": "Змінює відображуване ім'я відправника повідомлення. Якщо ви хочете згадати когось, додайте його до дружнього імені."
+ "aboutSlackUsername": "Змінює відображуване ім'я відправника повідомлення. Якщо ви хочете згадати когось, додайте його до дружнього імені.",
+ "templateServiceName": "назва сервісу",
+ "templateHostnameOrURL": "ім'я хосту або URL",
+ "telegramUseTemplate": "Використовувати власний шаблон повідомлення",
+ "telegramUseTemplateDescription": "Якщо увімкнено, повідомлення буде надіслано з використанням спеціального шаблону.",
+ "telegramTemplateFormatDescription": "Telegram дозволяє використовувати різні мови розмітки для повідомлень, див. Telegram {0} для більш детальної інформації.",
+ "Plain Text": "Звичайний текст",
+ "templateStatus": "статус",
+ "Message Template": "Шаблон повідомлення",
+ "Template Format": "Формат шаблону",
+ "YZJ Webhook URL": "URL вебхука YZJ",
+ "YZJ Robot Token": "Токен YZJ Robot",
+ "wayToGetWahaApiUrl": "URL вашого екземпляра WAHA.",
+ "wayToGetWahaApiKey": "Ключ API - це значення змінної оточення WHATSAPP_API_KEY, яку ви використовували для запуску WAHA.",
+ "wahaSession": "Сесія",
+ "wahaChatId": "ID чату (номер телефону / ID контакту / ID групи)",
+ "wayToGetWahaSession": "З цієї сесії WAHA надсилає сповіщення на ID чату. Ви можете знайти його в інформаційній панелі WAHA.",
+ "wayToWriteWahaChatId": "Номер телефону з міжнародним префіксом, але без знака плюс на початку ({0}), ID контакту ({1}) або ID групи ({2}). На цей ID чату надсилаються сповіщення з сеансу WAHA.",
+ "telegramServerUrl": "(Необов'язково) URL сервера",
+ "telegramServerUrlDescription": "Щоб зняти обмеження з Telegram bot api або отримати доступ у заблокованих регіонах (Китай, Іран тощо). Для отримання додаткової інформації натисніть {0}. За замовчуванням: {1}"
}
diff --git a/src/lang/zh-CN.json b/src/lang/zh-CN.json
index 4d33c0afd..5b473b071 100644
--- a/src/lang/zh-CN.json
+++ b/src/lang/zh-CN.json
@@ -1100,5 +1100,22 @@
"RabbitMQ Nodes": "RabbitMQ 管理节点",
"Separate multiple email addresses with commas": "用逗号分隔多个电子邮件地址",
"rabbitmqHelpText": "要使用此监控项,您需要在 RabbitMQ 设置中启用管理插件。有关更多信息,请参阅 {rabitmq_documentation}。",
- "aboutSlackUsername": "更改消息发件人的显示名称。如果您想提及某人,请另行将其包含在友好名称中。"
+ "aboutSlackUsername": "更改消息发件人的显示名称。如果您想提及某人,请另行将其包含在友好名称中。",
+ "templateStatus": "状态",
+ "templateHostnameOrURL": "主机名或 URL",
+ "templateServiceName": "服务名",
+ "telegramUseTemplateDescription": "如果启用,该消息将使用自定义模板发送。",
+ "telegramUseTemplate": "使用自定义消息模板",
+ "wayToGetWahaSession": "在此会话中,WAHA 会向聊天 ID 发送通知。您可以在 WAHA 仪表板中找到它。",
+ "wayToGetWahaApiUrl": "你的 WAHA 实例 URL。",
+ "wahaChatId": "聊天 ID(电话号码 / 联系人 ID / 群组 ID)",
+ "wahaSession": "会话",
+ "Template Format": "模板格式",
+ "Message Template": "消息模板",
+ "Plain Text": "纯文本",
+ "wayToWriteWahaChatId": "包含国际区号但不含开头加号({0})的电话号码、联系人 ID({1})、组 ID({2})。通知将从 WAHA 会话发送到此聊天 ID。",
+ "wayToGetWahaApiKey": "API 密钥是你用于运行 WAHA 的 WHATSAPP_API_KEY 环境变量值。",
+ "telegramTemplateFormatDescription": "Telegram 允许在消息中使用不同的标记语言,具体细节请参见 Telegram {0}。",
+ "YZJ Webhook URL": "YZJ Webhook 地址",
+ "YZJ Robot Token": "YZJ 机器人令牌"
}