\Exception doesn't work as a catch-all because not everything extends
\Exception. For example, there was a problem where the messaging worker
didn't catch an exception here:
} catch (\Exception $e) {
$deliveryErrors[] = 'Failed sending to targets ' . $batchIndex + 1 . '-' . \count($batch) . ' with error: ' . $e->getMessage();
} finally {
As such, $deliveryErrors stayed as an empty array. In this case, the
$adapter->send() threw a TypeError which extends Error which implements
Throwable. Updating the catch to catch \Throwable ensures the error is
caught and $deliveryErrors gets updated.
This endpoint is needed so that the Console can fetch the associated
targets to display when viewing the details of a message or going in
to edit a message.
Remove the following because queries on arrays/JSON are not supported:
- topics
- users
- targets
- deliveryErrors
- data
Remove the following because they don't exist:
- providerId
- deliveredTo
Add the following as an allowed attribute so it can be queried on the
Console:
- scheduledAt
- deliveredTotal
- providerType
open-runtimes executor (v1/runtimes) supports passing a timeout parameter that defaults to 600 seconds.
->param('timeout', 600, new Integer(), 'Commands execution time in seconds.', true)
https://github.com/open-runtimes/executor/blob/main/app/http.php#L383
This change passes the _APP_FUNCTIONS_BUILD_TIMEOUT env var.
Because no payload was set, the event params (userId and identityId)
wasn't picked up automatically. This updates the endpoints so that the
payload is set, but also makes sure to set the userId and identityId
params since the identityId param's key doesn't match the key in the
payload.
Suppose a user has 2 accounts on Appwrite:
1. joe@example.com
2. joe@gmail.com
Prior to this PR, if joe@example.com created a Google OAuth2 session
using his joe@gmail.com email, a new joe@gmail.com identity would be
created linked to joe@example.com.
This is especially problematic because if the user tried to create a
Google OAuth2 session using joe@gmail.com, Appwrite would lookup the
user via email and find the joe@gmail.com user, but then find an
identity from joe@example.com. This mismatching user ID would then
cause an error.
This PR prevents an identity from being created if the email from the
OAuth2 provider matches another user's email.
allow filtering by providerType, userId in subscribers. Adds cancelled status for message status. Validate targets when creating message. delete all targets when user is deleted. fix twilio bug. add db env vars in messaging worker compose.phtml
Before this, the endpoints called $client->sumProcessingJobs() which
only gets the currently processing jobs, but this endpoint should return
what's currently in queue, pending to be processed. This should be
retrieved using $client->getQueueSize().
Since the certificate worker is sending a job to the mails worker just
like the controllers, it should prepare the email in the same way by
localizing and then sending the inner template for the mail worker to
apply the layout and final variables.
This commit also fixes a problem with a missing subject.
Update the mails worker to only be responsible for building the final
email using the base (layout) template and the user, team, project, and
redirect variables.
It is the responsibility of the controller to perform localization and
determine whether a custom or default email template should be used.
If the default one is used, it has to be rendered using the hello,
footer, thanks, and signature variables so that it matches the custom
template. Then, it can be sent to the worker.
Since the following collections also have permissions set to the team,
the team should be updated for consistency:
- installations
- repositories
- vcsComments
This is important because when an organization is deleted, projects are
fetched by the teamInternalId and if the teamInternalId is not updated
when the project team is updated, the project will be deleted if the
previous organization is deleted.
The realtime collection only exists in the console project so iterating
over every project leads to the not found error.
In addition, the deleteForProjectIds() doesn't include the console
project so the realtime records were not being cleaned up properly.
Every other service restarts automatically after a server reboot so
the openruntimes-executor should too. Otherwise, function executions
will fail as the executor is unavailable.
Because the tests referenced images on the appwrite.io website, but the
appwrite.io website changed, the tests broke. This updates the tests to
reference valid images/URLs.
In addition, the favicon test was changed to use github.com because
appwrite.io has an SVG favicon which the avatars API does not support.
Prior to this, deleting a VCS deployment would fail because the
deployment path for VCS deployments are empty. Because an error gets
thrown, the delete function would stop and not delete the build files.
This change updates the worker to only delete the storage files if the
path is set.
The project deletion failed because old code for deleting domain was
still present. By removing the old code and replacing it with the new
delete rule code, the project deletion is now working.
* Clarify the description and make it match the other maintenance
variables.
* Fix the introduction since it was introduced in 1.4.0 and not 1.2.0.
* Fix the default value because it was 1 hour in the previous versions
and a number that is too low will conflict with a function's timeout.
accessedAt should only be updated when a user performs some sort of
action. Creating a user via the users API or by adding them to a team
is an action done by someone else, not the user themselves. As such,
the accessedAt timestamp shouldn't update.
The appwrite-schedules container fetches functions and needs the
openssl key to decrypt function variables. Without this, the variables
may end up being false.
Skip the cache collection because:
1. There may be * in the $id of the document which causes problems
when paginating with a cursor.
1. Nothing was done to the cache collection so we don't need to process
it.
As of 1.4.0, the hostname of the executor should be executor rather than
appwrite-executor. The problem is our install command always uses the
existing installation's variable values as the default for the upgrade.
This means the _APP_EXECUTOR_HOST will retain it's old value.
This PR Adds an overwrite key to variables.php to allow overwriting the
variable value regardless of whatever was in the previous installation.
Create phone session doesn't have anything to do with email. The key
name should be email just for clarity (even though, technically, it
doesn't matter).
This is important for backwards compatibility since it wasn't possible
to update a function runtime in previous versions and it was never
included in the request.
Because of the `getAttributes()` call, `$fileSecurity` was always true
which lead to invalid permission check. This resulted in files being
deleted when a user had delete permissions on the file even though
they didn't on the bucket.
When a previous installation is found during installation/upgrade, the
user is prompted to confirm whether they want to overwrite it. We
originally only accepted 'Y', but this PR changes it to accept 'y' as
well to reduce friction.
It's possible for the route to be null (no match) which leads to an
error like:
```
appwrite | [Error] Timestamp: 2023-08-30T21:39:58+00:00
appwrite | [Error] Type: Error
appwrite | [Error] Message: Call to a member function label() on null
appwrite | [Error] File: /usr/src/code/app/controllers/general.php
appwrite | [Error] Line: 50
```
This adds a null check to prevent the error.
The previous approach tried to migrate the 'rules' collection, but that
didn't work because the data was in the 'domains' collection.
Since the 'domains' collection was removed, the migration is now done
when migrating the 'projects' collection by fetching the domains and
then creating the rule documents.
By not specifying a docker-compose.yml file, docker compose
automatically uses the docker-compose.yml file in the project directory
and a docker-compose.override.yml file if one is present.
Before, we used the same command for both installation and upgrades.
This lead to problems because developers would try to upgrade in the
wrong folder and end up creating a new installation.
This new upgrade command validates the existence of an existing
installation before proceeding with the upgrade to ensure no new
installation is created when upgrading.
These updates make use of the PDO to manually execute a SQL statement,
but the PDO is not available in the new migration platform task. So
that we can move forward with the release, we will skip these updates
and then figure it out in a subsequent release.
These updates make use of the PDO to manually execute a SQL statement,
but the PDO is not available in the new migration platform task. So
that we can move forward with the release, we will skip these updates
and then figure it out in a subsequent release.
These secrets can be used to store data from the provider that may or
may not be sensitive.
For example, this will be used by the migration API when connecting to
Firebase to store the service account used for the migration.
This data will only be used internally inside Appwrite and not exposed
to an end user or developer.
These secrets can be used to store data from the provider that may or
may not be sensitive.
For example, this will be used by the migration API when connecting to
Firebase to store the service account used for the migration.
This data will only be used internally inside Appwrite and not exposed
to an end user or developer.
Until we have a clearer picture of why we need it, it would be best to
remove it since it's easier to add it later than to remove it after it's
released.
Setting a password can cause problems with other APIs that expect the
password to be null. In addition, it doesn't match the implementation
for the other APIs that create a user without a password (Create Magic
URL Session, Create Phone Session, Create Anonymous Session, etc).
This allows us to retain the OAuth2 info even if the session is
deleted. This also provides a foundation for allowing multiple emails,
phone numbers, etc, not from an OAuth2 provider.
The CREATE TEAM MEMBERSHIP endpoint requires the email of the user to be added to the team. If the user does not exist in the project, a new user is created with the specified email and added to the team.
The first version of the test creates 5 users, and then adds them to the newly created team. This process is more streamlined now, by using the CREATE TEAM MEMBERSHIPS behaviour to create a user on the go and create a membership for them immediately after.
I also change the way I add user IDs to the array, by using the shorthand notation instead of the `array_push` function.
This commit contains changes in 3 places.
- First I changed the placement of an informative comment in the DELETE TEAM controller, and moved it outside of the loop. I did this when Steven pointed out that the behaviour I describe in the comment is for the whole loop.
- The second change is the removal of my first test. I was facing quite a few issues with creating users in the test, and ended up using the CREATE TEAM MEMBERSHIP to perform 2 actions at once -> create a new user if one doesn't exist with the provided email, and create a membership for the user. Before this approach, I had quite a bit of code that didn't work, and it seems like I removed some things that weren't supposed to be removed, and didn't change variable names where necessary. Anyway, I figured that the problem has something to do with the user being created on the client side, so I moved the test to the server side.
- The new test I implemented does the same thing as my previous failed test, but in more detailed and distinct steps. The test first creates 5 new users inside of a loop, and pushes each new user's ID to an array called 'new_users' if the response is as expected. Then a new team is created. The next step is to create memberships for all 5 users. If all these steps pass, the new team that was just created, is deleted, and we check to make sure the new users have 0 team memberships each.
Formatter and linter showed no errors. Tests were successful on localhost.
Until we have a clearer picture of why we need it, it would be best to
remove it since it's easier to add it later than to remove it after it's
released.
Setting a password can cause problems with other APIs that expect the
password to be null. In addition, it doesn't match the implementation
for the other APIs that create a user without a password (Create Magic
URL Session, Create Phone Session, Create Anonymous Session, etc).
This allows us to retain the OAuth2 info even if the session is
deleted. This also provides a foundation for allowing multiple emails,
phone numbers, etc, not from an OAuth2 provider.
This commit removes check pemission from update document in appwrite as permission is being checked by Utopia already. This commits also improves the test case to have 3 levels of depth with relationships
Previously, DSN would not be able to parse special characters like "@"
or "/". This adds support by requiring the input to be url encoded and
then DSN would decode it after parsing.
Update the OAuth2 class to throw an exception if an API call to the
OAuth2 provider fails and update the endpoint to redirect to the
failure url with the information from the OAuth2 provider.
It's important to use userInternalId so that if a user is recreated
with the same ID, lookups for the user will not return the data
of the old deleted user.
We will still store userId in data so that it can be pulled out and
returned for the log API calls.
A user will have an accessedAt timestamp that will update at most once
per day if they make some API call. This timestamp can then be used
find active users and calculate daily, weekly, and monthly active users.
To ensure consistent updates to the user the $user from the resource
is always updated to the user making the request, including requests
like Create Account, Update Team Membership Status, and Create Phone
Session (confirmation). This ensures the shutdown can update the
accessedAt timestamp if there was a $user set.
Version 1.1.0 was an incorrectly named git tag; it was equivalent to
0.2.0. This bump to 0.3.* is safe because it adds Registrar,
but it won't be used in Appwrite yet. Bumping to 0.3.* is necessary to
fix some bugs where valid domains were considered invalid.
It's important to use userInternalId so that if a user is recreated
with the same ID, lookups for the user will not return the data
of the old deleted user.
We will still store userId in data so that it can be pulled out and
returned for the log API calls.
Using a database filter is the cleanest approach because it ensures
the logic is applied whenever the user is updated regardless of
whichever endpoint was used.
Only allow lowercase alphanumeric chars and hyphens
because the project ID is used as part of url
schemes to redirect users back to mobile apps
and certain characters are not allowed.
This labels attribute can be used apply labels to users. These labels
can eventually be used:
* with permissions to grant access
* to filter users in the Users collection
Defaulting to the console project leads to misleading error messages.
For example, you can get a CORS error saying you haven't configured
a platform yet, but the actual error is missing project ID.
It's possible for a user to not be anonymous and not have a password.
Using passwordUpdate is a better indicator as to whether the user has
set a password or not.
After a user updates their status, their session no longer works
however, the cookie may still exist in their browser, preventing other
API calls from completing successfully.
After a user updates their status, their session no longer works
however, the cookie may still exist in their browser, preventing other
API calls from completing successfully.
By not specifying a docker-compose.yml file, docker compose automatically uses the docker-compose.yml file in the project directory and a docker-compose.override.yml file if one is present.
For users already on 1.3.1, after upgrading to 1.3.2, the migration
script would override existing auths, password history, team prefs, and
(relationship) attribute options with empty values. This commit fixes
the migration to set to an existing value if there was one.
It is better to return 404 so that an end user doesn't know if the
collection actually exists but they don't have access or they really
don't have access.
- Store build output file size [#4844](https://github.com/appwrite/appwrite/pull/4844)
## Bugs
- Fix audit user internal [#5809](https://github.com/appwrite/appwrite/pull/5809)
# Version 1.3.7
## Bugs
- Fix the routing for the default OAuth2 pages [#5640](https://github.com/appwrite/appwrite/pull/5640) [#5648](https://github.com/appwrite/appwrite/pull/5648)
- Add support for trailing slashes in Routes and URLs [#5647](https://github.com/appwrite/appwrite/pull/5647) [#5648](https://github.com/appwrite/appwrite/pull/5648)
# Version 1.3.6
## Bugs
- Fix Console deep linking to result in a 404 [#5632](https://github.com/appwrite/appwrite/pull/5632)
- Password dictionary setting allows to compare user's password against command password database [4906](https://github.com/appwrite/appwrite/pull/4906)
- Password dictionary setting allows to compare user's password against command password database [#4906](https://github.com/appwrite/appwrite/pull/4906)
- Password history setting allows to save user's last used password so that it may not be used again. Maximum number of history saved is 20, which can be configured. Minimum is 0 which means disabled. [#4866](https://github.com/appwrite/appwrite/pull/4866)
- Update APIs to check X-Appwrite-Timestamp header [#5024](https://github.com/appwrite/appwrite/pull/5024)
We would ❤️ you to contribute to Appwrite and help make it better! We want contributing to Appwrite to be fun, enjoyable, and educational for anyone and everyone. All contributions are welcome, including issues, and new docs, as well as updates and tweaks, blog posts, workshops, and more.
## Here for Hacktoberfest?
If you're here to contribute during Hacktoberfest, we're so happy to see you here. Appwrite has been a long-time participant of Hacktoberfest and we welcome you, whatever your experience level. This year, we're **only taking contributions for issues tagged**`hacktoberfest`, so we can focus our resources to support your contributions.
You can [find issues using this query](https://github.com/search?q=org%3Aappwrite+is%3Aopen+type%3Aissue+label%3Ahacktoberfest&type=issues).
## How to Start?
If you are worried or don’t know where to start, check out the next section that explains what kind of help we could use and where you can get involved. You can send your questions to [@appwrite](https://twitter.com/appwrite) on Twitter or to anyone from the [Appwrite team on Discord](https://appwrite.io/discord). You can also submit an issue, and a maintainer can guide you!
To set up a working **development environment**, just fork the project git repository and install the backend and frontend dependencies using the proper package manager and create run the docker-compose stack.
> If you just want to install Appwrite for day-to-day use and not as a contributor, you can reference the [installation guide](https://github.com/appwrite/appwrite#installation), the [getting started guide](https://appwrite.io/docs/getting-started-for-web), or the main [README](README.md) file.
> If you just want to install Appwrite for day-to-day use and not as a contributor, you can reference the [installation guide](https://github.com/appwrite/appwrite#installation), the [getting started guide](https://appwrite.io/docs/quick-starts), or the main [README](README.md) file.
@@ -109,7 +114,9 @@ docker run --rm --interactive --tty \
### User Interface
Appwrite uses an internal micro-framework called Litespeed.js to build simple UI components in vanilla JS and [less](http://lesscss.org/) for compiling CSS code. To apply any of your changes to the UI, use the `gulp build` or `gulp less` commands, and restart the Appwrite main container to load the new static files to memory using `docker compose restart appwrite`.
Appwrite's UI is built with [Svelte](https://svelte.dev/), [Svelte Kit](https://kit.svelte.dev/), and the [Pink Design](https://github.com/appwrite/pink) component library. You can find the source code in the [Appwrite Console](https://github.com/appwrite/console) repository.
To contribute to the UI, head to the [Contribution Guide](https://github.com/appwrite/console/blob/main/CONTRIBUTING.md) of Appwrite Console.
### Get Started
@@ -199,12 +206,10 @@ Appwrite's current structure is a combination of both [Monolithic](https://en.wi
│ ├── Network
│ ├── OpenSSL
│ ├── Promises
│ ├── Resque
│ ├── Specification
│ ├── Task
│ ├── Template
│ ├── URL
│ ├── Usage
│ └── Utopia
└── tests # End to end & unit tests
├── e2e
@@ -238,13 +243,12 @@ Appwrite stack is a combination of a variety of open-source technologies and too
- Redis - for managing cache and in-memory data (currently, we do not use Redis for persistent data).
- MariaDB - for database storage and queries.
- InfluxDB - for managing stats and time-series based data.
- Statsd - for sending data over UDP protocol (using Telegraf).
- InfluxDB - for managing stats and time-series based data
- Statsd - for sending data over UDP protocol (using Telegraf)
- ClamAV - for validating and scanning storage files.
- Imagemagick - for manipulating and managing image media files.
- Webp - for better compression of images on supporting clients.
- SMTP - for sending email messages and alerts.
- Resque - for managing data queues and scheduled tasks over a Redis server.
## Package Managers
@@ -321,7 +325,7 @@ The Runtimes for all supported cloud functions (multicore builds) can be found a
The following steps are used to generate a new console SDK:
1. Update the console spec file located at `app/config/specs/swagger2-<version-number>.console.json` using Appwrite Tasks. Run the `php app/cli.php specs <version-number> normal` command in a running `appwrite/appwrite` container.
1. Update the console spec file located at `app/config/specs/swagger2-<version-number>.console.json` using Appwrite Tasks. Run the `php app/cli.php specs version=<version-number> mode=normal` command in a running `appwrite/appwrite` container.
2. Generate a new SDK using the command `php app/cli.php sdks`.
3. Change your working dir using `cd app/sdks/console-web`.
4. Build the new SDK `npm run build`.
@@ -340,13 +344,13 @@ Things to remember when releasing SDKs:
## Debug
Appwrite uses [yasd](https://github.com/swoole/yasd) debugger, which can be made available during build of Appwrite. You can connect to the debugger using VS Code's [PHP Debug](https://marketplace.visualstudio.com/items?itemName=felixfbecker.php-debug) extension.
Appwrite uses [XDebug](https://github.com/xdebug/xdebug) debugger, which can be made available during build of Appwrite. You can connect to the debugger using VS Code's [PHP Debug](https://marketplace.visualstudio.com/items?itemName=felixfbecker.php-debug) extension.
If you are in PHP Storm you don't need any plugin. Below are the settings required for remote debugger connection:
1.Create an init file.
2.Duplicate **dev/yasd_init.php.stub** file and name it **dev/yasd_init.php**.
3.Set **DEBUG** build arg in **appwrite** service in **docker-compose.yml** file.
1.Set **DEBUG** build arg in **appwrite** service in **docker-compose.yml** file.
2.If needed edit the **dev/xdebug.ini** file to your needs.
3.Launch your Appwrite instance while your debugger is listening for connections.
### VS Code Launch Configuration
@@ -449,7 +453,7 @@ From time to time, our team will add tutorials that will help contributors find
- [Adding Support for a New OAuth2 Provider](./docs/tutorials/add-oauth2-provider.md)
Welcome to the Appwrite Hacktoberfest contribution! We appreciate your interest in contributing to our open-source project. Please read this carefully to understand how to get started and make your contributions count.
## Familiarize with the project
Before you start contributing, familiarize yourself with our project by reading the [main README](https://github.com/appwrite/appwrite/blob/main/README.md).
## Code of conduct
Please ensure that you always follow our [Code of Conduct](https://github.com/appwrite/awesome-appwrite/blob/master/CODE_OF_CONDUCT.md). We aim to maintain a respectful and inclusive community.
## Contributing guide
Please review our [Contributing Guide](https://github.com/appwrite/appwrite/blob/main/CONTRIBUTING.md) before contributing. It will help you learn about the architecture, instructions on how to update code, run tests, and submit a PR.
## Hacktoberfest contribution guidelines
To participate in Hacktoberfest with Appwrite, follow these guidelines:
1.**Valid issues**: To make your contribution count, please look for issues labeled with `hacktoberfest`. Only issues labeled with `hacktoberfest` will count as a valid contribution.
2.**Wait for issue assignment**: After you have identified an issue to work on, please wait for it to be assigned to you by our team. We assign issues on a first-come, first-serve basis.
3.**Knowing about labels**: We do not have the `hacktoberfest` label in our repositories, but we use it on specific issues. For your pull request to be valid, our team will review and add the `hacktoberfest-accepted` label once it meets the criteria.
4.**Discuss new issues**: If you're interested in finding and adding new issues for Hacktoberfest, please discuss it with the team on our [Discord server](https://appwrite.io/discord) in the `#hacktoberfest` channel.
5.**Be patient with pull request reviews**: PR reviews may take up to 15 days due to the volume of contributions. However, we also host PR review parties every week where you can add your PRs for instant review.
6.**Regular updates**: If you've been assigned an issue, it's essential to share updates every 3 days. Failure to do so may result in being unassigned from the issue.
## Getting started
1. Fork the Appwrite repository you'd like to contribute to.
2. Clone your forked repository to your local machine.
4. Make your changes, commit them, and push them to your forked repository.
```bash
git commit -m "Add your commit message here"
git push origin TYPE-ISSUE_ID-DESCRIPTION
```
5. Create a Pull Request (PR) from your forked repository to the Appwrite repository. Be sure to reference the issue you are addressing in your PR description.
Thank you for contributing to Appwrite, and we look forward to your Hacktoberfest contributions! If you have any questions or need assistance, feel free to ask on our Discord server or in the issue discussion. Happy hacking!
> The Appwrite Cloud is coming soon! You can learn more about our upcoming hosted solution and signup for free credits at: https://appwrite.io/cloud
> Great news! Appwrite Cloud is now in public beta! Sign up at [cloud.appwrite.io](https://cloud.appwrite.io) for a hassle-free, hosted experience. Join us in the Cloud today! ☁️🎉
<b>Appwrite is a backend platform for developing Web, Mobile, and Flutter applications. Built with the open source community and optimized for developer experience in the coding languages you love.</b>
<br />
<br />
</p>
@@ -26,7 +25,7 @@
English | [简体中文](README-CN.md)
[**Announcing Appwrite 1.3 with Database Relationships! Learn what's new!**](https://dev.to/appwrite/join-celebrations-appwrite-13-ships-relationships-57fc)
[**Announcing Appwrite Cloud Public Beta! Sign up today!**](https://cloud.appwrite.io)
Appwrite is an end-to-end backend server for Web, Mobile, Native, or Backend apps packaged as a set of Docker<nobr> microservices. Appwrite abstracts the complexity and repetitiveness required to build a modern backend API from scratch and allows you to build secure apps faster.
@@ -51,6 +50,7 @@ Table of Contents:
- [CMD](#cmd)
- [PowerShell](#powershell)
- [Upgrade from an Older Version](#upgrade-from-an-older-version)
- [One-Click Setups](#one-click-setups)
- [Getting Started](#getting-started)
- [Services](#services)
- [SDKs](#sdks)
@@ -65,7 +65,7 @@ Table of Contents:
## Installation
Appwrite is designed to run in a containerized environment. Running your server is as easy as running one command from your terminal. You can either run Appwrite on your localhost using docker-compose or on any other container orchestration tool, such as Kubernetes, Docker Swarm, or Rancher.
Appwrite is designed to run in a containerized environment. Running your server is as easy as running one command from your terminal. You can either run Appwrite on your localhost using docker-compose or on any other container orchestration tool, such as [Kubernetes](https://kubernetes.io/docs/home/), [Docker Swarm](https://docs.docker.com/engine/swarm/), or [Rancher](https://rancher.com/docs/).
The easiest way to start running your Appwrite server is by running our docker-compose file. Before running the installation command, make sure you have [Docker](https://www.docker.com/products/docker-desktop) installed on your machine:
Once the Docker installation is complete, go to http://localhost to access the Appwrite console from your browser. Please note that on non-Linux native hosts, the server might take a few minutes to start after completing the installation.
@@ -129,6 +129,12 @@ Choose from one of the providers below:
@@ -145,15 +151,15 @@ Getting started with Appwrite is as easy as creating a new project, choosing you
### Services
- [**Account**](https://appwrite.io/docs/client/account) - Manage current user authentication and account. Track and manage the user sessions, devices, sign-in methods, and security logs.
- [**Account**](https://appwrite.io/docs/references/cloud/client-web/account) - Manage current user authentication and account. Track and manage the user sessions, devices, sign-in methods, and security logs.
- [**Users**](https://appwrite.io/docs/server/users) - Manage and list all project users when building backend integrations with Server SDKs.
- [**Teams**](https://appwrite.io/docs/client/teams) - Manage and group users in teams. Manage memberships, invites, and user roles within a team.
- [**Databases**](https://appwrite.io/docs/client/databases) - Manage databases, collections, and documents. Read, create, update, and delete documents and filter lists of document collections using advanced filters.
- [**Storage**](https://appwrite.io/docs/client/storage) - Manage storage files. Read, create, delete, and preview files. Manipulate the preview of your files to perfectly fit your app. All files are scanned by ClamAV and stored in a secure and encrypted way.
- [**Teams**](https://appwrite.io/docs/references/cloud/client-web/teams) - Manage and group users in teams. Manage memberships, invites, and user roles within a team.
- [**Databases**](https://appwrite.io/docs/references/cloud/client-web/databases) - Manage databases, collections, and documents. Read, create, update, and delete documents and filter lists of document collections using advanced filters.
- [**Storage**](https://appwrite.io/docs/references/cloud/client-web/storage) - Manage storage files. Read, create, delete, and preview files. Manipulate the preview of your files to perfectly fit your app. All files are scanned by ClamAV and stored in a secure and encrypted way.
- [**Functions**](https://appwrite.io/docs/server/functions) - Customize your Appwrite server by executing your custom code in a secure, isolated environment. You can trigger your code on any Appwrite system event either manually or using a CRON schedule.
- [**Realtime**](https://appwrite.io/docs/realtime) - Listen to real-time events for any of your Appwrite services including users, storage, functions, databases, and more.
- [**Locale**](https://appwrite.io/docs/client/locale) - Track your user's location and manage your app locale-based data.
- [**Avatars**](https://appwrite.io/docs/client/avatars) - Manage your users' avatars, countries' flags, browser icons, and credit card symbols. Generate QR codes from links or plaintext strings.
- [**Locale**](https://appwrite.io/docs/references/cloud/client-web/locale) - Track your user's location and manage your app locale-based data.
- [**Avatars**](https://appwrite.io/docs/references/cloud/client-web/avatars) - Manage your users' avatars, countries' flags, browser icons, and credit card symbols. Generate QR codes from links or plaintext strings.
For the complete API documentation, visit [https://appwrite.io/docs](https://appwrite.io/docs). For more tutorials, news and announcements check out our [blog](https://medium.com/appwrite-io) and [Discord Server](https://discord.gg/GSeTUeA).
'description'=>'The request cannot be fulfilled with the current protocol. Please check the value of the _APP_OPTIONS_FORCE_HTTPS environment variable.',
'code'=>426,
],
Exception::GENERAL_CODES_DISABLED=>[
'name'=>Exception::GENERAL_CODES_DISABLED,
'description'=>'Invitation codes are disabled on this server. Please contact the server administrator.',
'code'=>500,
],
Exception::GENERAL_USAGE_DISABLED=>[
'name'=>Exception::GENERAL_USAGE_DISABLED,
'description'=>'Usage stats is not configured. Please check the value of the _APP_USAGE_STATS environment variable of your Appwrite server.',
'code'=>501,
],
Exception::GENERAL_NOT_IMPLEMENTED=>[
'name'=>Exception::GENERAL_NOT_IMPLEMENTED,
'description'=>'This method was not fully implemented yet. If you believe this is a mistake, please upgrade your Appwrite server version.',
'code'=>405,
],
Exception::GENERAL_INVALID_EMAIL=>[
'name'=>Exception::GENERAL_INVALID_EMAIL,
'description'=>'Value must be a valid email address.',
'code'=>400,
],
Exception::GENERAL_INVALID_PHONE=>[
'name'=>Exception::GENERAL_INVALID_PHONE,
'description'=>'Value must be a valid phone number. Format this number with a leading \'+\' and a country code, e.g., +16175551212.',
'code'=>400,
],
Exception::GENERAL_REGION_ACCESS_DENIED=>[
'name'=>Exception::GENERAL_REGION_ACCESS_DENIED,
'description'=>'Your location is not supported due to legal requirements.',
'code'=>451,
],
/** User Errors */
Exception::USER_COUNT_EXCEEDED=>[
@@ -102,12 +133,12 @@ return [
],
Exception::USER_ALREADY_EXISTS=>[
'name'=>Exception::USER_ALREADY_EXISTS,
'description'=>'A user with the same email already exists in your project.',
'description'=>'A user with the same id, email, or phone already exists in this project.',
'code'=>409,
],
Exception::USER_BLOCKED=>[
'name'=>Exception::USER_BLOCKED,
'description'=>'The current user has been blocked. You can unblock the user from the Appwrite console.',
'description'=>'The current user has been blocked. You can unblock the user by making a request to the User API\'s "Update User Status" endpoint or in the Appwrite Console\'s Auth section.',
'code'=>401,
],
Exception::USER_INVALID_TOKEN=>[
@@ -125,6 +156,11 @@ return [
'description'=>'Console registration is restricted to specific emails. Contact your administrator for more information.',
'code'=>401,
],
Exception::USER_INVALID_CODE=>[
'name'=>Exception::USER_INVALID_CODE,
'description'=>'The specified code is not valid. Contact your administrator for more information.',
'code'=>401,
],
Exception::USER_IP_NOT_WHITELISTED=>[
'name'=>Exception::USER_IP_NOT_WHITELISTED,
'description'=>'Console registration is restricted to specific IPs. Contact your administrator for more information.',
@@ -142,7 +178,7 @@ return [
],
Exception::USER_SESSION_ALREADY_EXISTS=>[
'name'=>Exception::USER_SESSION_ALREADY_EXISTS,
'description'=>'Creation of anonymous users is prohibited when a session is active.',
'description'=>'Creation of a session is prohibited when a session is active.',
'code'=>401,
],
Exception::USER_NOT_FOUND=>[
@@ -160,11 +196,26 @@ return [
'description'=>'Passwords do not match. Please check the password and confirm password.',
'code'=>400,
],
Exception::USER_PASSWORD_RECENTLY_USED=>[
'name'=>Exception::USER_PASSWORD_RECENTLY_USED,
'description'=>'The password you are trying to use is similar to your previous password. For your security, please choose a different password and try again.',
'code'=>400,
],
Exception::USER_PASSWORD_PERSONAL_DATA=>[
'name'=>Exception::USER_PASSWORD_PERSONAL_DATA,
'description'=>'The password you are trying to use contains references to your name, email, phone or userID. For your security, please choose a different password and try again.',
'code'=>400,
],
Exception::USER_SESSION_NOT_FOUND=>[
'name'=>Exception::USER_SESSION_NOT_FOUND,
'description'=>'The current user session could not be found.',
'code'=>404,
],
Exception::USER_IDENTITY_NOT_FOUND=>[
'name'=>Exception::USER_IDENTITY_NOT_FOUND,
'description'=>'The identity could not be found. Please sign in with OAuth provider to create identity first.',
'code'=>404,
],
Exception::USER_UNAUTHORIZED=>[
'name'=>Exception::USER_UNAUTHORIZED,
'description'=>'The current user is not authorized to perform the requested action.',
@@ -174,6 +225,7 @@ return [
'name'=>Exception::USER_AUTH_METHOD_UNSUPPORTED,
'description'=>'The requested authentication method is either disabled or unsupported. Please check the supported authentication methods in the Appwrite console.',
'code'=>501,
'publish'=>false,
],
Exception::USER_PHONE_ALREADY_EXISTS=>[
'name'=>Exception::USER_PHONE_ALREADY_EXISTS,
@@ -190,6 +242,56 @@ return [
'description'=>'Missing ID from OAuth2 provider.',
'code'=>400,
],
Exception::USER_MORE_FACTORS_REQUIRED=>[
'name'=>Exception::USER_MORE_FACTORS_REQUIRED,
'description'=>'More factors are required to complete the sign in process.',
'code'=>401,
],
Exception::USER_OAUTH2_BAD_REQUEST=>[
'name'=>Exception::USER_OAUTH2_BAD_REQUEST,
'description'=>'OAuth2 provider rejected the bad request.',
'code'=>400,
],
Exception::USER_OAUTH2_UNAUTHORIZED=>[
'name'=>Exception::USER_OAUTH2_UNAUTHORIZED,
'description'=>'OAuth2 provider rejected the unauthorized request.',
'code'=>401,
],
Exception::USER_OAUTH2_PROVIDER_ERROR=>[
'name'=>Exception::USER_OAUTH2_PROVIDER_ERROR,
'description'=>'OAuth2 provider returned some error.',
'code'=>424,
],
Exception::USER_EMAIL_ALREADY_VERIFIED=>[
'name'=>Exception::USER_EMAIL_ALREADY_VERIFIED,
'description'=>'User email is already verified',
'code'=>409,
],
Exception::USER_PHONE_ALREADY_VERIFIED=>[
'name'=>Exception::USER_PHONE_ALREADY_VERIFIED,
'description'=>'User phone is already verified',
'code'=>409
],
Exception::USER_DELETION_PROHIBITED=>[
'name'=>Exception::USER_DELETION_PROHIBITED,
'description'=>'User deletion is not allowed for users with active memberships. Please delete all confirmed memberships before deleting the account.',
'code'=>400
],
Exception::USER_TARGET_NOT_FOUND=>[
'name'=>Exception::USER_TARGET_NOT_FOUND,
'description'=>'The target could not be found.',
'code'=>404,
],
Exception::USER_TARGET_ALREADY_EXISTS=>[
'name'=>Exception::USER_TARGET_ALREADY_EXISTS,
'description'=>'A target with the same ID already exists.',
'code'=>409,
],
Exception::USER_API_KEY_AND_SESSION_SET=>[
'name'=>Exception::USER_API_KEY_AND_SESSION_SET,
'description'=>'API key and session used in the same request. Use either `setSession` or `setKey`. Learn about which authentication method to use in the SSR docs: https://appwrite.io/docs/products/auth/server-side-rendering',
'code'=>403,
],
/** Teams */
Exception::TEAM_NOT_FOUND=>[
@@ -209,7 +311,7 @@ return [
],
Exception::TEAM_INVALID_SECRET=>[
'name'=>Exception::TEAM_INVALID_SECRET,
'description'=>'The team invitation secret is invalid.',
'description'=>'The team invitation secret is invalid. Please request a new invitation and try again.',
'code'=>401,
],
Exception::TEAM_MEMBERSHIP_MISMATCH=>[
@@ -222,6 +324,11 @@ return [
'description'=>'The invite does not belong to the current user.',
'code'=>401,
],
Exception::TEAM_ALREADY_EXISTS=>[
'name'=>Exception::TEAM_ALREADY_EXISTS,
'description'=>'Team with requested ID already exists. Please choose a different ID and try again.',
'code'=>409,
],
/** Membership */
Exception::MEMBERSHIP_NOT_FOUND=>[
@@ -231,7 +338,7 @@ return [
],
Exception::MEMBERSHIP_ALREADY_CONFIRMED=>[
'name'=>Exception::MEMBERSHIP_ALREADY_CONFIRMED,
'description'=>'Membership already confirmed',
'description'=>'Membership is already confirmed.',
'code'=>409,
],
@@ -263,6 +370,11 @@ return [
],
/** Storage */
Exception::STORAGE_FILE_ALREADY_EXISTS=>[
'name'=>Exception::STORAGE_FILE_ALREADY_EXISTS,
'description'=>'A storage file with the requested ID already exists.',
'code'=>409,
],
Exception::STORAGE_FILE_NOT_FOUND=>[
'name'=>Exception::STORAGE_FILE_NOT_FOUND,
'description'=>'The requested file could not be found.',
@@ -295,7 +407,7 @@ return [
],
Exception::STORAGE_BUCKET_ALREADY_EXISTS=>[
'name'=>Exception::STORAGE_BUCKET_ALREADY_EXISTS,
'description'=>'A storage bucket with the requested ID already exists.',
'description'=>'A storage bucket with the requested ID already exists. Try again with a different ID or use ID.unique() to generate a unique ID.',
'code'=>409,
],
Exception::STORAGE_BUCKET_NOT_FOUND=>[
@@ -313,6 +425,43 @@ return [
'description'=>'The requested range is not satisfiable. Please check the value of the Range header.',
'code'=>416,
],
Exception::STORAGE_INVALID_APPWRITE_ID=>[
'name'=>Exception::STORAGE_INVALID_APPWRITE_ID,
'description'=>'The value for x-appwrite-id header is invalid. Please check the value of the x-appwrite-id header is a valid id and not unique().',
'code'=>400,
],
Exception::STORAGE_FILE_NOT_PUBLIC=>[
'name'=>Exception::STORAGE_FILE_NOT_PUBLIC,
'description'=>'The requested file is not publicly readable.',
'code'=>403,
],
/** VCS */
Exception::INSTALLATION_NOT_FOUND=>[
'name'=>Exception::INSTALLATION_NOT_FOUND,
'description'=>'Installation with the requested ID could not be found. Check to see if the ID is correct, or create the installation.',
'code'=>404,
],
Exception::PROVIDER_REPOSITORY_NOT_FOUND=>[
'name'=>Exception::PROVIDER_REPOSITORY_NOT_FOUND,
'description'=>'VCS (Version Control System) repository with the requested ID could not be found. Check to see if the ID is correct, and if it belongs to installationId you provided.',
'code'=>404,
],
Exception::REPOSITORY_NOT_FOUND=>[
'name'=>Exception::REPOSITORY_NOT_FOUND,
'description'=>'Repository with the requested ID could not be found. Check to see if the ID is correct, or create the respository.',
'description'=>'External contribution is already authorized.',
'code'=>409,
],
Exception::GENERAL_PROVIDER_FAILURE=>[
'name'=>Exception::GENERAL_PROVIDER_FAILURE,
'description'=>'VCS (Version Control System) provider failed to proccess the request. We believe this is an error with the VCS provider. Try again, or contact support for more information.',
'code'=>400,
],
/** Functions */
Exception::FUNCTION_NOT_FOUND=>[
@@ -325,6 +474,11 @@ return [
'description'=>'The requested runtime is either inactive or unsupported. Please check the value of the _APP_FUNCTIONS_RUNTIMES environment variable.',
'code'=>404,
],
Exception::FUNCTION_ENTRYPOINT_MISSING=>[
'name'=>Exception::FUNCTION_RUNTIME_UNSUPPORTED,
'description'=>'Entrypoint for your Appwrite Function is missing. Please specify it when making deployment or update the entrypoint under your function\'s "Settings" > "Configuration" > "Entrypoint".',
'code'=>404,
],
/** Builds */
Exception::BUILD_NOT_FOUND=>[
@@ -363,12 +517,16 @@ return [
'description'=>'Database not found',
'code'=>404
],
Exception::DATABASE_ALREADY_EXISTS=>[
'name'=>Exception::DATABASE_ALREADY_EXISTS,
'description'=>'Database already exists',
'code'=>409
],
Exception::DATABASE_TIMEOUT=>[
'name'=>Exception::DATABASE_TIMEOUT,
'description'=>'Database timed out. Try adjusting your queries or adding an index.',
'code'=>408
],
/** Collections */
Exception::COLLECTION_NOT_FOUND=>[
@@ -378,7 +536,7 @@ return [
],
Exception::COLLECTION_ALREADY_EXISTS=>[
'name'=>Exception::COLLECTION_ALREADY_EXISTS,
'description'=>'A collection with the requested ID already exists.',
'description'=>'A collection with the requested ID already exists. Try again with a different ID or use ID.unique() to generate a unique ID.',
'code'=>409,
],
Exception::COLLECTION_LIMIT_EXCEEDED=>[
@@ -398,14 +556,19 @@ return [
'description'=>'The document structure is invalid. Please ensure the attributes match the collection definition.',
'code'=>400,
],
Exception::DOCUMENT_MISSING_DATA=>[
'name'=>Exception::DOCUMENT_MISSING_DATA,
'description'=>'The document data is missing. Try again with document data populated',
'code'=>400,
],
Exception::DOCUMENT_MISSING_PAYLOAD=>[
'name'=>Exception::DOCUMENT_MISSING_PAYLOAD,
'description'=>'The document payload is missing.',
'description'=>'The document data and permissions are missing. You must provide either document data or permissions to be updated.',
'code'=>400,
],
Exception::DOCUMENT_ALREADY_EXISTS=>[
'name'=>Exception::DOCUMENT_ALREADY_EXISTS,
'description'=>'Document with the requested ID already exists.',
'description'=>'Document with the requested ID already exists. Try again with a different ID or use ID.unique() to generate a unique ID.',
'code'=>409,
],
Exception::DOCUMENT_UPDATE_CONFLICT=>[
@@ -447,7 +610,7 @@ return [
],
Exception::ATTRIBUTE_ALREADY_EXISTS=>[
'name'=>Exception::ATTRIBUTE_ALREADY_EXISTS,
'description'=>'Attribute with the requested ID already exists.',
'description'=>'Attribute with the requested key already exists. Attribute keys must be unique, try again with a different key.',
'code'=>409,
],
Exception::ATTRIBUTE_LIMIT_EXCEEDED=>[
@@ -479,9 +642,14 @@ return [
],
Exception::INDEX_ALREADY_EXISTS=>[
'name'=>Exception::INDEX_ALREADY_EXISTS,
'description'=>'Index with the requested ID already exists.',
'description'=>'Index with the requested key already exists. Try again with a different key.',
'code'=>409,
],
Exception::INDEX_INVALID=>[
'name'=>Exception::INDEX_INVALID,
'description'=>'Index invalid.',
'code'=>400,
],
/** Project Errors */
Exception::PROJECT_NOT_FOUND=>[
@@ -489,10 +657,10 @@ return [
'description'=>'Project with the requested ID could not be found. Please check the value of the X-Appwrite-Project header to ensure the correct project ID is being used.',
'code'=>404,
],
Exception::PROJECT_UNKNOWN=>[
'name'=>Exception::PROJECT_UNKNOWN,
'description'=>'The project ID is either missing or not valid. Please check the value of the X-Appwrite-Project header to ensure the correct project ID is being used.',
'code'=>400,
Exception::PROJECT_ALREADY_EXISTS=>[
'name'=>Exception::PROJECT_ALREADY_EXISTS,
'description'=>'Project with the requested ID already exists. Try again with a different ID or use ID.unique() to generate a unique ID.',
'code'=>409,
],
Exception::PROJECT_PROVIDER_DISABLED=>[
'name'=>Exception::PROJECT_PROVIDER_DISABLED,
@@ -524,6 +692,52 @@ return [
'description'=>'The project key has expired. Please generate a new key using the Appwrite console.',
'code'=>401,
],
Exception::ROUTER_HOST_NOT_FOUND=>[
'name'=>Exception::ROUTER_HOST_NOT_FOUND,
'description'=>'Host is not trusted. This could occur because you have not configured a custom domain. Add a custom domain to your project first and try again.',
'code'=>404,
],
Exception::ROUTER_DOMAIN_NOT_CONFIGURED=>[
'name'=>Exception::ROUTER_DOMAIN_NOT_CONFIGURED,
'description'=>'_APP_DOMAIN, _APP_DOMAIN_TARGET, and _APP_DOMAIN_FUNCTIONS environment variables have not been configured. Please configure the domain environment variables before accessing the Appwrite Console via any IP address or hostname other than localhost. This value could be an IP like 203.0.113.0 or a hostname like example.com.',
'code'=>500,
],
Exception::RULE_RESOURCE_NOT_FOUND=>[
'name'=>Exception::RULE_RESOURCE_NOT_FOUND,
'description'=>'Resource could not be found. Please check if the resourceId and resourceType are correct, or if the resource actually exists.',
'code'=>404,
],
Exception::RULE_NOT_FOUND=>[
'name'=>Exception::RULE_NOT_FOUND,
'description'=>'Rule with the requested ID could not be found. Please check if the ID provided is correct or if the rule actually exists.',
'code'=>404,
],
Exception::RULE_ALREADY_EXISTS=>[
'name'=>Exception::RULE_ALREADY_EXISTS,
'description'=>'Domain is already used. Please try again with a different domain.',
'code'=>409,
],
Exception::RULE_VERIFICATION_FAILED=>[
'name'=>Exception::RULE_VERIFICATION_FAILED,
'description'=>'Domain verification failed. Please check if your DNS records are correct and try again.',
'code'=>401,
'publish'=>true
],
Exception::PROJECT_SMTP_CONFIG_INVALID=>[
'name'=>Exception::PROJECT_SMTP_CONFIG_INVALID,
'description'=>'Provided SMTP config is invalid. Please check the configured values and try again.',
'description'=>'You can\'t delete default template. If you are trying to reset your template changes, you can ignore this error as it\'s already been reset.',
'code'=>401,
],
Exception::PROJECT_REGION_UNSUPPORTED=>[
'name'=>Exception::PROJECT_REGION_UNSUPPORTED,
'description'=>'The requested region is either inactive or unsupported. Please check the value of the _APP_REGIONS environment variable.',
'code'=>400,
],
Exception::WEBHOOK_NOT_FOUND=>[
'name'=>Exception::WEBHOOK_NOT_FOUND,
'description'=>'Webhook with the requested ID could not be found.',
@@ -539,16 +753,6 @@ return [
'description'=>'Platform with the requested ID could not be found.',
'code'=>404,
],
Exception::DOMAIN_NOT_FOUND=>[
'name'=>Exception::DOMAIN_NOT_FOUND,
'description'=>'Domain with the requested ID could not be found.',
'code'=>404,
],
Exception::DOMAIN_ALREADY_EXISTS=>[
'name'=>Exception::DOMAIN_ALREADY_EXISTS,
'description'=>'A Domain with the requested ID already exists.',
'code'=>409,
],
Exception::VARIABLE_NOT_FOUND=>[
'name'=>Exception::VARIABLE_NOT_FOUND,
'description'=>'Variable with the requested ID could not be found.',
@@ -556,19 +760,9 @@ return [
],
Exception::VARIABLE_ALREADY_EXISTS=>[
'name'=>Exception::VARIABLE_ALREADY_EXISTS,
'description'=>'Variable with the same ID already exists in your project.',
'description'=>'Variable with the same ID already exists in this project. Try again with a different ID.',
'code'=>409,
],
Exception::DOMAIN_VERIFICATION_FAILED=>[
'name'=>Exception::DOMAIN_VERIFICATION_FAILED,
'description'=>'Domain verification for the requested domain has failed.',
'code'=>401,
],
Exception::DOMAIN_TARGET_INVALID=>[
'name'=>Exception::DOMAIN_TARGET_INVALID,
'description'=>'Your Appwrite instance is not publicly accessible. Please check the _APP_DOMAIN_TARGET environment variable of your Appwrite server.',
'code'=>501,
],
Exception::GRAPHQL_NO_QUERY=>[
'name'=>Exception::GRAPHQL_NO_QUERY,
'description'=>'Param "query" is not optional.',
@@ -579,4 +773,173 @@ return [
'description'=>'Too many queries.',
'code'=>400,
],
/** Migrations */
Exception::MIGRATION_NOT_FOUND=>[
'name'=>Exception::MIGRATION_NOT_FOUND,
'description'=>'Migration with the requested ID could not be found. Please verify that the provided ID is correct and try again.',
'code'=>404,
],
Exception::MIGRATION_ALREADY_EXISTS=>[
'name'=>Exception::MIGRATION_ALREADY_EXISTS,
'description'=>'Migration with the requested ID already exists. Try again with a different ID.',
'code'=>409,
],
Exception::MIGRATION_IN_PROGRESS=>[
'name'=>Exception::MIGRATION_IN_PROGRESS,
'description'=>'Migration is already in progress. You can check the status of the migration in your Appwrite Console\'s "Settings" > "Migrations".',
'description'=>'An error occurred on the provider\'s side. Please try again later.',
'code'=>400,
],
/** Health */
Exception::HEALTH_QUEUE_SIZE_EXCEEDED=>[
'name'=>Exception::HEALTH_QUEUE_SIZE_EXCEEDED,
'description'=>'Queue size threshold hit.',
'code'=>503,
'publish'=>false
],
Exception::HEALTH_CERTIFICATE_EXPIRED=>[
'name'=>Exception::HEALTH_CERTIFICATE_EXPIRED,
'description'=>'The SSL certificate for the specified domain has expired and is no longer valid.',
'code'=>404,
],
Exception::HEALTH_INVALID_HOST=>[
'name'=>Exception::HEALTH_INVALID_HOST,
'description'=>'Failed to establish a connection to the specified domain. Please verify the domain name and ensure that the server is running and accessible.',
'code'=>404,
],
/** Providers */
Exception::PROVIDER_NOT_FOUND=>[
'name'=>Exception::PROVIDER_NOT_FOUND,
'description'=>'Provider with the requested ID could not be found.',
'code'=>404,
],
Exception::PROVIDER_ALREADY_EXISTS=>[
'name'=>Exception::PROVIDER_ALREADY_EXISTS,
'description'=>'Provider with the requested ID already exists.',
'code'=>409,
],
Exception::PROVIDER_INCORRECT_TYPE=>[
'name'=>Exception::PROVIDER_INCORRECT_TYPE,
'description'=>'Provider with the requested ID is of the incorrect type.',
'code'=>400,
],
Exception::PROVIDER_MISSING_CREDENTIALS=>[
'name'=>Exception::PROVIDER_MISSING_CREDENTIALS,
'description'=>'Provider with the requested ID is missing credentials.',
'code'=>400,
],
/** Topics */
Exception::TOPIC_NOT_FOUND=>[
'name'=>Exception::TOPIC_NOT_FOUND,
'description'=>'Topic with the request ID could not be found.',
'code'=>404,
],
Exception::TOPIC_ALREADY_EXISTS=>[
'name'=>Exception::TOPIC_ALREADY_EXISTS,
'description'=>'Topic with the request ID already exists.',
'code'=>409,
],
/** Subscribers */
Exception::SUBSCRIBER_NOT_FOUND=>[
'name'=>Exception::SUBSCRIBER_NOT_FOUND,
'description'=>'Subscriber with the request ID could not be found.',
'code'=>404,
],
Exception::SUBSCRIBER_ALREADY_EXISTS=>[
'name'=>Exception::SUBSCRIBER_ALREADY_EXISTS,
'description'=>'Subscriber with the request ID already exists.',
'code'=>409,
],
/** Messages */
Exception::MESSAGE_NOT_FOUND=>[
'name'=>Exception::MESSAGE_NOT_FOUND,
'description'=>'Message with the requested ID could not be found.',
'code'=>404,
],
Exception::MESSAGE_MISSING_TARGET=>[
'name'=>Exception::MESSAGE_MISSING_TARGET,
'description'=>'Message with the requested ID has no recipients (topics or users or targets).',
'code'=>400,
],
Exception::MESSAGE_ALREADY_SENT=>[
'name'=>Exception::MESSAGE_ALREADY_SENT,
'description'=>'Message with the requested ID has already been sent.',
'code'=>400,
],
Exception::MESSAGE_ALREADY_PROCESSING=>[
'name'=>Exception::MESSAGE_ALREADY_PROCESSING,
'description'=>'Message with the requested ID is already being processed.',
'code'=>400,
],
Exception::MESSAGE_ALREADY_FAILED=>[
'name'=>Exception::MESSAGE_ALREADY_FAILED,
'description'=>'Message with the requested ID has already failed.',
'code'=>400,
],
Exception::MESSAGE_ALREADY_SCHEDULED=>[
'name'=>Exception::MESSAGE_ALREADY_SCHEDULED,
'description'=>'Message with the requested ID has already been scheduled for delivery.',
'code'=>400,
],
Exception::MESSAGE_TARGET_NOT_EMAIL=>[
'name'=>Exception::MESSAGE_TARGET_NOT_EMAIL,
'description'=>'Message with the target ID is not an email target.',
'code'=>400,
],
Exception::MESSAGE_TARGET_NOT_SMS=>[
'name'=>Exception::MESSAGE_TARGET_NOT_SMS,
'description'=>'Message with the target ID is not an SMS target.',
'code'=>400,
],
Exception::MESSAGE_TARGET_NOT_PUSH=>[
'name'=>Exception::MESSAGE_TARGET_NOT_PUSH,
'description'=>'Message with the target ID is not a push target.',
'code'=>400,
],
Exception::MESSAGE_MISSING_SCHEDULE=>[
'name'=>Exception::MESSAGE_MISSING_SCHEDULE,
'description'=>'Message can not have status '.MessageStatus::SCHEDULED.' without a schedule.',
'code'=>400,
],
Exception::SCHEDULE_NOT_FOUND=>[
'name'=>Exception::SCHEDULE_NOT_FOUND,
'description'=>'Schedule with the requested ID could not be found.',
'code'=>404,
],
/** Targets */
Exception::TARGET_PROVIDER_INVALID_TYPE=>[
'name'=>Exception::TARGET_PROVIDER_INVALID_TYPE,
'description'=>'Target has an invalid provider type.',
<p>Your domain <strong>{{domain}}</strong> failed to generate certificate after <strong>{{attempts}}</strong> consecutive attempts with the following error:</p>
<li>Examine the logs above to try and identify the issue</li>
<li>Ensure your domain has not expired</li>
<li>Check your DNS configuration for any unexpected values</li>
<li>Manually re-trigger a certificate generation from the Appwrite Console</li>
</ol>
<p>The existing certificate will remain valid for 30 days from the initial failure. It is highly recommended to investigate this issue; failing to do so will lead to security vulnerabilities.</p>
<p>If this email was labeled as spam, please check your SMTP server settings to ensure they meet your provider's requirements. Often, missing DNS configurations or security checks mandated by your SMTP provider affect email delivery.</p>
<p>If you have trouble with the sender's image, ensure it is set in the <a href="https://gravatar.com/">Gravatar database</a>.</p>
"emails.recovery.body":"Volg hierdie skakel om u {{project}} wagwoord te herstel.",
"emails.recovery.footer":"Ignoreer gerus hierdie boodskap as u nie die versoek gestuur het om u wagwoord te herstel nie.",
"emails.recovery.thanks":"Baie dankie",
@@ -228,5 +228,18 @@
"continents.eu":"Europa",
"continents.na":"Noord-Amerika",
"continents.oc":"Oseanië",
"continents.sa":"Suid-Amerika"
"continents.sa":"Suid-Amerika",
"emails.magicSession.optionButton":"Klik op die knoppie hieronder om veilig aan te meld by jou {{project}} rekening. Dit sal oor 1 uur verval.",
"emails.magicSession.buttonText":"Meld aan by {{project}}",
"emails.magicSession.clientInfo":"Hierdie teken-in is aangevra met behulp van {{agentClient}} op {{agentDevice}} {{agentOs}}. As jy nie die teken-in versoek het nie, kan jy hierdie e-pos veilig ignoreer.",
"sms.verification.body":"{{secret}} is jou {{project}} verifikasiekode.",
"emails.magicSession.securityPhrase":"Die sekuriteitsfrase vir hierdie e-pos is {{phrase}}. Jy kan hierdie e-pos vertrou as hierdie frase ooreenstem met die frase wat tydens aanmelding getoon is.",
"emails.magicSession.optionUrl":"As u nie met die knoppie hierbo kan aanmeld nie, besoek asseblief die volgende skakel:",
"emails.otpSession.description":"Voer die volgende verifikasiekode in wanneer daar versoek word om veilig aan te meld by jou {{project}} rekening. Dit sal verval oor 15 minute.",
"emails.otpSession.clientInfo":"Hierdie aanmelding is versoek met behulp van {{agentClient}} op {{agentDevice}} {{agentOs}}. As jy nie die aanmelding versoek het nie, kan jy hierdie e-pos veilig ignoreer.",
"emails.otpSession.securityPhrase":"Die veiligheidsfrase vir hierdie e-pos is {{phrase}}. Jy kan hierdie e-pos vertrou as hierdie frase ooreenstem met die frase wat gewys is tydens aanmelding.",
"emails.recovery.body":"برجاء اتباع الراط التالي لتغيير كلمة السر الخاصة بـ{{project}}",
"emails.recovery.footer":"لولم تطلب تغيير كلمة السر، يمكنك تجاهل هذه الرسالة",
"emails.recovery.thanks":"شكرا",
@@ -228,5 +228,18 @@
"continents.eu":"أوروبا",
"continents.na":"امريكا الشمالية",
"continents.oc":"أوقيانوسيا",
"continents.sa":"امريكا الجنوبية"
"continents.sa":"امريكا الجنوبية",
"emails.magicSession.optionButton":"انقر على الزر أدناه لتسجيل الدخول بأمان إلى حساب {{project}} الخاص بك. سينتهي في غضون ساعة واحدة.",
"emails.magicSession.buttonText":"تسجيل الدخول إلى {{project}}",
"emails.magicSession.clientInfo":"تم طلب هذا الدخول باستخدام {{agentClient}} على {{agentDevice}} {{agentOs}}. إذا لم تطلب الدخول، يمكنك تجاهل هذا البريد الإلكتروني بأمان.",
"sms.verification.body":"{{secret}} هو رمز التحقق الخاص بمشروعك {{project}}.",
"emails.magicSession.securityPhrase":"عبارة الأمان لهذا البريد الإلكتروني هي {{phrase}}. يمكنك الوثوق بهذا البريد الإلكتروني إذا كانت هذه العبارة تطابق العبارة التي تظهر أثناء التسجيل.",
"emails.magicSession.optionUrl":"إذا لم تتمكن من تسجيل الدخول باستخدام الزر أعلاه، يرجى زيارة الرابط التالي:",
"emails.otpSession.subject":"تسجيل دخول {{project}}",
"emails.otpSession.hello":"مرحبا،",
"emails.otpSession.description":"أدخل رمز التحقق التالي عندما يُطلب منك لتسجيل الدخول بأمان إلى حساب {{project}} الخاص بك. سينتهي صلاحيته في غضون 15 دقيقة.",
"emails.otpSession.clientInfo":"تم طلب هذا الدخول باستخدام {{agentClient}} على جهاز {{agentDevice}} {{agentOs}}. إذا لم تطلب الدخول، يمكنك تجاهل هذا البريد الإلكتروني بأمان.",
"emails.otpSession.securityPhrase":"عبارة الأمان لهذا البريد الإلكتروني هي {{phrase}}. يمكنك الوثوق بهذا البريد الإلكتروني إذا كانت هذه العبارة تتطابق مع العبارة المعروضة أثناء تسجيل الدخول.",
"emails.recovery.body":"{{project}} şifrənizi sıfırlamaq üçün bu linki izləyin.",
"emails.recovery.footer":"Şifrənizi sıfırlamağı xahiş etməmisinizsə, bu mesajı gözardı edə bilərsiniz.",
"emails.recovery.thanks":"Təşəkkürlər",
@@ -221,5 +221,25 @@
"countries.ye":"Yəmən",
"countries.za":"Cənubi Afrika",
"countries.zm":"Zambiya",
"countries.zw":"Zimbabve"
}
"countries.zw":"Zimbabve",
"emails.magicSession.optionButton":"Aşağıdaki düyməyə basaraq {{project}} hesabınıza təhlükəsiz şəkildə daxil olun. Bu, 1 saat sonra müddəti bitəcək.",
"emails.magicSession.buttonText":"{{project}} layihəsinə daxil olun",
"emails.magicSession.clientInfo":"Bu giriş, {{agentClient}} vasitəsi ilə {{agentDevice}} {{agentOs}} istifadə edərək tələb olunmuşdur. Əgər siz girişi tələb etməmisinizsə, bu e-poçtu təhlükəsiz şəkildə yoksayabilirsiniz.",
"continents.af":"Afrika",
"continents.an":"Antarktida",
"continents.as":"Asiya",
"continents.eu":"Avropa",
"continents.na":"Şimali Amerika",
"continents.oc":"Okeaniya",
"continents.sa":"Cənubi Amerika",
"sms.verification.body":"{{secret}} sizin {{project}} təsdiqləmə kodunuzdur.",
"emails.magicSession.securityPhrase":"Bu e-poçt üçün təhlükəsizlik ifadəsi {{phrase}}-dir. Əgər bu ifadə daxil olarkən göstərilən ifadə ilə üst-üstə düşürsə, bu e-poçta etibar edə bilərsiniz.",
"emails.magicSession.optionUrl":"Əgər yuxarıdakı düyməni istifadə edərək daxil ola bilmirsizsə, zəhmət olmasa aşağıdakı linkə daxil olun:",
"emails.otpSession.subject":"{{project}} Giriş",
"emails.otpSession.hello":"Salam,",
"emails.otpSession.description":"İstifadəçi tələb olunan zaman {{project}} hesabınıza təhlükəsiz daxil olmaq üçün aşağıdakı təsdiqləmə kodunu daxil edin. Bu kod 15 dəqiqə sonra etibarsız olacaq.",
"emails.otpSession.clientInfo":"Bu giriş {{agentClient}} vasitəsilə {{agentDevice}} {{agentOs}} istifadə edərək istənildi. Əgər siz giriş istəməmisinizsə, bu e-poçtu laqeyd qoya bilərsiniz.",
"emails.otpSession.securityPhrase":"Bu e-poçtun təhlükəsizlik ifadəsi {{phrase}}-dir. Əgər bu ifadə daxil olarkən göstərilən ifadə ilə üst-üstə düşürsə, bu e-poçta etibar edə bilərsiniz.",
"emails.recovery.body":"Перайдзіце па гэтай спасылцы, каб скінуць пароль для праекта {{project}}.",
"emails.recovery.footer":"Калі вы не прасілі скінуць пароль, вы можаце праігнараваць гэта паведамленне.",
"emails.recovery.thanks":"Дзякуем",
@@ -228,5 +228,24 @@
"continents.eu":"Еўропа",
"continents.na":"Паўночная Амерыка",
"continents.oc":"Акіянія",
"continents.sa":"Паўднёвая Амерыка"
}
"continents.sa":"Паўднёвая Амерыка",
"emails.magicSession.optionButton":"Націсніце кнопку ніжэй, каб бяспечна ўвайсці ў свой рахунак {{project}}. Яна спыніць дзеянне праз 1 гадзіну.",
"emails.magicSession.buttonText":"Увайдзіце ў {{project}}",
"emails.magicSession.optionUrl":"Калі ў вас не атрымліваецца ўвайсці, выкарыстоўваючы кнопку вышэй, калі ласка, наведайце наступную спасылку:",
"emails.magicSession.clientInfo":"Гэты ўваход быў запытаны праз {{agentClient}} на {{agentDevice}} {{agentOs}}. Калі вы не запытвалі ўваход, вы можаце бяспечна ігнараваць гэты ліст.",
"emails.magicSession.securityPhrase":"Фраза бяспекі для гэтага ліста - {{phrase}}. Вы можаце давяраць гэтаму лісту, калі гэтая фраза супадае з фразай, якая была паказана пры ўваходзе ў сістэму.",
"emails.otpSession.subject":"{{project}} Уваход",
"emails.otpSession.hello":"Прывітанне,",
"emails.otpSession.description":"Увядзіце наступны код пацверджання, калі будзеце запытаны, каб бяспечна ўвайсці ў ваш уліковы запіс {{project}}. Ён страціць сілу праз 15 хвілін.",
"emails.otpSession.clientInfo":"Гэты ўваход быў запытаны пры дапамозе {{agentClient}} на {{agentDevice}} {{agentOs}}. Калі вы не запытвалі ўваход, вы можаце бяспечна ігнараваць гэты ліст.",
"emails.otpSession.securityPhrase":"Фраза бяспекі для гэтага ліста - {{phrase}}. Вы можаце давяраць гэтаму лісту, калі гэтая фраза супадае з фразай, паказанай пры ўваходзе.",
"emails.certificate.subject":"Сведчанне няўдалае для %s",
"emails.certificate.hello":"Прывітанне",
"emails.certificate.body":"Сертыфікат для вашага дамена '{{domain}}' не можа быць створаны. Гэта спроба нумар {{attempt}}, і прычынай няўдачы з'яўляецца: {{error}}",
"emails.certificate.footer":"Ваш папярэдні сертыфікат будзе дзейнічаць 30 дзён з моманту першай няўдачы. Мы высока рэкамендуем расследаваць гэтую сітуацыю, інакш ваш дамен апынецца без дзейнага сертыфіката SSL-злучэння.",
"emails.magicSession.optionButton":"Натиснете бутона по-долу, за да се впишете сигурно във вашия {{project}} акаунт. Той ще изтече след 1 час.",
"emails.magicSession.buttonText":"Влезте в {{project}}",
"emails.magicSession.clientInfo":"Този вход беше заявен чрез {{agentClient}} на {{agentDevice}} {{agentOs}}. Ако не сте поискали входа, можете безопасно да игнорирате този имейл.",
"sms.verification.body":"{{secret}} е вашият код за верификация за {{project}}.",
"emails.magicSession.securityPhrase":"Фразата за сигурност на този имейл е {{phrase}}. Можете да се доверите на този имейл, ако тази фраза съвпада с фразата, показана по време на вписването.",
"emails.magicSession.optionUrl":"Ако не можете да влезете чрез горния бутон, моля, посетете следния линк:",
"emails.otpSession.subject":"Вход в {{project}}",
"emails.otpSession.hello":"Здравейте,",
"emails.otpSession.description":"Въведете следния верификационен код, когато ви бъде поискано, за да се впишете сигурно в своята {{project}} сметка. Ще изтече след 15 минути.",
"emails.otpSession.clientInfo":"Този вход беше заявен чрез {{agentClient}} на {{agentDevice}} {{agentOs}}. Ако не сте заявили входа, можете спокойно да пренебрегнете този имейл.",
"emails.otpSession.securityPhrase":"Фразата за сигурност за този имейл е {{phrase}}. Можете да се доверите на този имейл, ако тази фраза съвпада с фразата, показана по време на вписването.",
"emails.otpSession.thanks":"Благодаря,",
"emails.otpSession.signature":"екип на {{project}}"
"emails.recovery.body":"पासवर्ड बदल क लेल दिहल गइल लिंक फॉलो करें|",
"emails.recovery.footer":"अगर पासवर्ड बदल क लेल ना कहाले, तो आप ई संदेश क अनदेखा कर सकत अछि।",
"emails.recovery.thanks":"धन्यवाद",
@@ -228,5 +228,24 @@
"continents.eu":"यूरोप",
"continents.na":"उत्तरी अमेरिका",
"continents.oc":"ओशिनिया",
"continents.sa":"दक्षिण अमेरिका"
"continents.sa":"दक्षिण अमेरिका",
"emails.magicSession.optionButton":"नीचा देल बटन पर क्लिक करीं अपना {{project}} खाता में सुरक्षित रूप से साइन इन करे खातिर। ई 1 घंटा में समाप्त हो जाई।",
"emails.magicSession.buttonText":"{{project}} में साइन इन करीं",
"emails.magicSession.optionUrl":"अगर रउआ उपरका बटन से साइन इन ना कर पाईं तs, कृपया निचे दिहल लिंक पर जाई:",
"emails.magicSession.clientInfo":"ई साइन इन अनुरोध किया गेल {{agentClient}} पर {{agentDevice}} {{agentOs}} पर. यदि अहाँ एहि साइन इन के अनुरोध नै कइनी होखी तs अहाँ ई ईमेल के अनदेखा क सकऽ छी.",
"emails.magicSession.securityPhrase":"एह ईमेल खातिर सुरक्षा वाक्य {{phrase}} हऽ। ई ईमेल पर भरोसा करीं जदि ई वाक्य साइन इन करत समय देखावल वाक्य से मिलता हो।",
"emails.otpSession.subject":"प्रोजेक्ट लॉगिन",
"emails.otpSession.hello":"नमस्ते,",
"emails.otpSession.description":"जब आपको सुरक्षित रूप से अपना {{project}} खाता में साइन इन करे खातिर कहल जाए तऽ निम्नलिखित सत्यापन कोड दर्ज करीं। ई 15 मिनट में खत्म हो जई।",
"emails.otpSession.clientInfo":"एह साइन इन के अनुरोध {{agentClient}} पर {{agentDevice}} {{agentOs}} का प्रयोग करि कऽ कइल गइल बा। यदि तूँ एह साइन इन के अनुरोध ना कइले रहीं, त तूँ एह ईमेल के नजरअंदाज कर सकेला।",
"emails.otpSession.securityPhrase":"एही ईमेल खातिर सुरक्षा वाक्य {{phrase}} हऽ। अगर ई वाक्य साइन इन कइला के समय देखावल गेल वाक्य से मेल खाता, त एह ईमेल पर भरोसा कर सकैत छी।",
"emails.certificate.body":"आपके डोमेन '{{domain}}' के लिए प्रमाणपत्र नहीं बनाया जा सका। ई प्रयास संख्या {{attempt}} है, और ई असफलता के कारण रहे: {{error}}",
"emails.certificate.footer":"तोहार पिछलका प्रमाणपत्र पहिल असफलता से 30 दिन धरी मान्य होईत। हम बहुत जोर देके सलाह देतानी कि एह मामला के जांच करीं, नहीं त तोहार डोमेन बिना कोनो मान्य SSL संवाद के रहि जाईत।",
"emails.certificate.thanks":"धन्यवाद",
"emails.certificate.signature":"{{project}} टीम",
"sms.verification.body":"{{secret}} आपके {{project}} सत्यापन कोड हवे।"
"emails.magicSession.clientInfo":"এই সাইন ইনটি {{agentClient}} ব্যবহার করে {{agentDevice}} {{agentOs}}-এ অনুরোধ করা হয়েছিল। যদি আপনি সাইন ইনের অনুরোধ করেননি, আপনি নিরাপদে এই ইমেইলটি উপেক্ষা করতে পারেন।",
"emails.magicSession.securityPhrase":"এই ইমেলের জন্য নিরাপত্তা বাক্যটি হল {{phrase}}। সাইন-ইনের সময় দেখানো বাক্যটির সাথে এই বাক্যটি মিলে গেলে আপনি এই ইমেইলকে বিশ্বাস করতে পারেন।",
"emails.magicSession.optionUrl":"উপরের বোতামটি ব্যবহার করে আপনি যদি সাইন ইন করতে অক্ষম হন, অনুগ্রহ করে নিম্নলিখিত লিঙ্কটি দেখুন:",
"emails.otpSession.subject":"{{project}} লগইন",
"emails.otpSession.hello":"নমস্কার,",
"emails.otpSession.description":"নিরাপদে আপনার {{project}} অ্যাকাউন্টে সাইন ইন করার জন্য যখন বলা হবে, তখন নিম্নলিখিত যাচাইকরণ কোডটি প্রবেশ করান। এটি ১৫ মিনিটের মধ্যে মেয়াদোত্তীর্ণ হয়ে যাবে।",
"emails.otpSession.clientInfo":"এই সাইন ইনটি {{agentClient}} ব্যবহার করে {{agentDevice}} {{agentOs}}-এ অনুরোধ করা হয়েছে। আপনি যদি সাইন ইনের অনুরোধ না করে থাকেন, আপনি নিরাপদে এই ইমেলটি উপেক্ষা করতে পারেন।",
"emails.otpSession.securityPhrase":"এই ইমেইলের জন্য সুরক্ষা বাক্য হলো {{phrase}}। যদি এই বাক্যটি সাইন ইনের সময় দেখানো বাক্যের সাথে মেলে, তাহলে আপনি এই ইমেইলটিকে বিশ্বাস করতে পারেন।",
"emails.magicSession.optionButton":"Kliknite na dugme ispod kako biste se sigurno prijavili na svoj {{project}} račun. Istek će se dogoditi za 1 sat.",
"emails.magicSession.buttonText":"Prijavi se na {{project}}",
"emails.magicSession.clientInfo":"Ova prijava je zatražena korištenjem {{agentClient}} na {{agentDevice}} {{agentOs}}. Ako niste zahtjevali prijavu, možete sigurno ignorirati ovaj e-mail.",
"sms.verification.body":"{{secret}} je vaš {{project}} verifikacijski kod.",
"emails.magicSession.securityPhrase":"Sigurnosna fraza za ovaj email je {{phrase}}. Ovom emailu možete vjerovati ako se fraza poklapa sa frazom prikazanom prilikom prijave.",
"emails.magicSession.optionUrl":"Ako ne možete da se prijavite koristeći gornje dugme, molimo posetite sledeći link:",
"emails.otpSession.description":"Unesite sljedeći verifikacijski kod kada budete upitani kako biste sigurno pristupili vašem {{project}} računu. Istjeći će za 15 minuta.",
"emails.otpSession.clientInfo":"Ovaj zahtjev za prijavom je poslan koristeći {{agentClient}} na {{agentDevice}} {{agentOs}}. Ako niste zatražili prijavu, možete sigurno ignorisati ovaj email.",
"emails.otpSession.securityPhrase":"Sigurnosna fraza za ovaj email je {{phrase}}. Možete vjerovati ovom emailu ako se ova fraza podudara sa frazom prikazanom prilikom prijave.",
"emails.recovery.body":"Accedeix a aquest enllaç per a reinicialitzar la teva contrasenya de {{project}}.",
"emails.recovery.footer":"Si no has sol·licitat reinicialitzar la teva contrasenya, pots ignorar aquest missatge.",
"emails.recovery.thanks":"Gràcies",
@@ -228,5 +228,18 @@
"continents.eu":"Europa",
"continents.na":"Amèrica del Nord",
"continents.oc":"Oceania",
"continents.sa":"Amèrica del Sud"
"continents.sa":"Amèrica del Sud",
"emails.magicSession.optionButton":"Feu clic al botó de sota per iniciar sessió de manera segura al vostre compte {{project}}. Caducarà en 1 hora.",
"emails.magicSession.buttonText":"Inicia sessió a {{project}}",
"emails.magicSession.clientInfo":"Aquest inici de sessió s'ha sol·licitat utilitzant {{agentClient}} en {{agentDevice}} {{agentOs}}. Si no has sol·licitat l'inici de sessió, pots ignorar aquest correu electrònic amb seguretat.",
"sms.verification.body":"El {{secret}} és el vostre codi de verificació del {{project}}.",
"emails.magicSession.securityPhrase":"La frase de seguretat d'aquest correu electrònic és {{phrase}}. Podeu confiar en aquest correu si aquesta frase coincideix amb la frase mostrada durant l'inici de sessió.",
"emails.magicSession.optionUrl":"Si no podeu iniciar sessió utilitzant el botó de dalt, visiteu l'enllaç següent:",
"emails.otpSession.subject":"Inici de sessió de {{project}}",
"emails.otpSession.hello":"Hola,",
"emails.otpSession.description":"Introduïu el següent codi de verificació quan us ho sol·licitin per iniciar sessió de manera segura al vostre compte {{project}}. Caducarà en 15 minuts.",
"emails.otpSession.clientInfo":"Aquest inici de sessió s'ha sol·licitat utilitzant {{agentClient}} en {{agentDevice}} {{agentOs}}. Si no has sol·licitat l'inici de sessió, pots ignorar aquest correu electrònic sense cap problema.",
"emails.otpSession.securityPhrase":"La frase de seguretat d'aquest correu electrònic és {{phrase}}. Podeu confiar en aquest correu electrònic si aquesta frase coincideix amb la frase mostrada durant l'inici de sessió.",
"emails.magicSession.optionButton":"Klikněte na tlačítko níže pro bezpečné přihlášení do vašeho účtu {{project}}. Platnost vyprší za 1 hodinu.",
"emails.magicSession.buttonText":"Přihlaste se k {{project}}",
"emails.magicSession.clientInfo":"Toto přihlášení bylo požadováno prostřednictvím {{agentClient}} na {{agentDevice}} {{agentOs}}. Pokud jste se nepřihlašovali, můžete tento e-mail bezpečně ignorovat.",
"sms.verification.body":"{{secret}} je váš ověřovací kód pro {{project}}.",
"emails.magicSession.securityPhrase":"Bezpečnostní fráze pro tento e-mail je {{phrase}}. Tomuto e-mailu můžete důvěřovat, pokud tato fráze odpovídá frázi zobrazené při přihlášení.",
"emails.magicSession.optionUrl":"Pokud se nemůžete přihlásit pomocí výše uvedeného tlačítka, prosím navštivte následující odkaz:",
"emails.otpSession.description":"Zadejte následující ověřovací kód, když budete vyzváni, abyste se bezpečně přihlásili ke svému účtu {{project}}. Platnost kódu vyprší za 15 minut.",
"emails.otpSession.clientInfo":"Tento přihlašovací pokus byl proveden pomocí {{agentClient}} na zařízení {{agentDevice}} {{agentOs}}. Pokud jste se nepřihlašovali, tento e-mail můžete bezpečně ignorovat.",
"emails.otpSession.securityPhrase":"Bezpečnostní fráze pro tento e-mail je {{phrase}}. Tomuto e-mailu můžete důvěřovat, pokud se tato fráze shoduje s frází zobrazenou při přihlášení.",
"emails.recovery.body":"Følg dette link for at nulstille koden til {{project}}.",
"emails.recovery.footer":"Hvis du ikke har bedt om at nulstille dit password, ignorer venligst denne besked.",
"emails.recovery.thanks":"Tak",
@@ -228,5 +228,18 @@
"continents.eu":"Europa",
"continents.na":"Nordamerica",
"continents.oc":"Oceanien",
"continents.sa":"Sydamerica"
}
"continents.sa":"Sydamerica",
"emails.magicSession.optionButton":"Klik på knappen nedenfor for sikkert at logge ind på din {{project}} konto. Den udløber om 1 time.",
"emails.magicSession.buttonText":"Log ind på {{project}}",
"emails.magicSession.clientInfo":"Denne log ind blev anmodet ved hjælp af {{agentClient}} på {{agentDevice}} {{agentOs}}. Hvis du ikke anmodede om log ind, kan du trygt ignorere denne e-mail.",
"sms.verification.body":"{{secret}} er din {{project}} bekræftelseskode.",
"emails.magicSession.securityPhrase":"Sikkerhedsfrasen for denne e-mail er {{phrase}}. Du kan stole på denne e-mail, hvis denne frase matcher den viste frase under log ind.",
"emails.magicSession.optionUrl":"Hvis du ikke kan logge ind ved at bruge knappen ovenfor, besøg venligst følgende link:",
"emails.otpSession.subject":"{{project}} Login",
"emails.otpSession.hello":"Hej,",
"emails.otpSession.description":"Indtast følgende bekræftelseskode, når du bliver bedt om det, for sikkert at logge ind på din {{project}} konto. Den udløber om 15 minutter.",
"emails.otpSession.clientInfo":"Denne indlogning blev anmodet om ved hjælp af {{agentClient}} på {{agentDevice}} {{agentOs}}. Hvis du ikke har anmodet om indlogningen, kan du trygt ignorere denne e-mail.",
"emails.otpSession.securityPhrase":"Sikkerhedsfrasen for denne e-mail er {{phrase}}. Du kan stole på denne e-mail, hvis denne frase matcher frasen vist under login.",
"emails.recovery.body":"Folge diesem Link, um dein {{project}}-Kennwort zurückzusetzen.",
"emails.recovery.footer":"Solltest du keine Kennwort-Zurücksetzung angefordert haben, kannst du diese Nachricht ignorieren.",
"emails.recovery.thanks":"Danke",
@@ -228,5 +228,18 @@
"continents.eu":"Europa",
"continents.na":"Nordamerika",
"continents.oc":"Ozeanien",
"continents.sa":"Südamerika"
}
"continents.sa":"Südamerika",
"emails.magicSession.optionButton":"Klicken Sie auf den unten stehenden Button, um sicher in Ihr {{project}}-Konto einzuloggen. Er verfällt in 1 Stunde.",
"emails.magicSession.buttonText":"Melden Sie sich bei {{project}} an",
"emails.magicSession.clientInfo":"Dieser Anmeldeversuch wurde über {{agentClient}} auf {{agentDevice}} {{agentOs}} angefordert. Wenn Sie die Anmeldung nicht angefordert haben, können Sie diese E-Mail getrost ignorieren.",
"sms.verification.body":"{{secret}} ist Ihr {{project}}-Verifizierungscode.",
"emails.magicSession.securityPhrase":"Die Sicherheitsphrase für diese E-Mail lautet {{phrase}}. Sie können dieser E-Mail vertrauen, wenn diese Phrase mit der Phrase übereinstimmt, die beim Anmelden angezeigt wurde.",
"emails.magicSession.optionUrl":"Wenn Sie sich nicht über den obigen Button anmelden können, besuchen Sie bitte den folgenden Link:",
"emails.otpSession.description":"Geben Sie den folgenden Verifizierungscode ein, wenn Sie aufgefordert werden, um sich sicher in Ihrem {{project}} Konto anzumelden. Er verfällt in 15 Minuten.",
"emails.otpSession.clientInfo":"Diese Anmeldung wurde über {{agentClient}} auf {{agentDevice}} {{agentOs}} angefordert. Wenn Sie die Anmeldung nicht angefordert haben, können Sie diese E-Mail getrost ignorieren.",
"emails.otpSession.securityPhrase":"Die Sicherheitsphrase für diese E-Mail lautet {{phrase}}. Sie können dieser E-Mail vertrauen, wenn diese Phrase mit der Phrase übereinstimmt, die beim Anmelden angezeigt wird.",
"emails.recovery.body":"Ακολουθήστε αυτό το link για να αλλάξετε τον {{project}} κωδικό σας",
"emails.recovery.footer":"Εάν δεν ζητήσατε αλλαγή του κωδικού σας πρόσβασης, μπορείτε να αγνοήσετε αυτό το μήνυμα",
"emails.recovery.thanks":"Ευχαριστούμε",
@@ -25,7 +25,7 @@
"emails.invitation.hello":"Γεια σου",
"emails.invitation.body":"Αυτό το email στάλθηκε επειδή ο/η {{owner}} θέλει να σας προσκαλέσει να γίνετε μέλος της ομάδας {{team}} του {{project}}.",
"emails.invitation.footer":"Εάν δεν ενδιαφέρεστε, μπορείτε να αγνοήσετε αυτό το μήνυμα.",
"emails.invitation.thanks":"Ευχαριστούμε",
"emails.invitation.thanks":"Ευχαριστούμε",
"emails.invitation.signature":"Η ομάδα του {{project}}",
"locale.country.unknown":"Άγνωστο",
"countries.af":"Αφγανιστάν",
@@ -228,5 +228,18 @@
"continents.eu":"Ευρώπη",
"continents.na":"Βόρεια Αμερική",
"continents.oc":"Ωκεανία",
"continents.sa":"Νότια Αμερική"
}
"continents.sa":"Νότια Αμερική",
"emails.magicSession.optionButton":"Κάντε κλικ στο κουμπί παρακάτω για να συνδεθείτε με ασφάλεια στον λογαριασμό σας στο {{project}}. Θα λήξει σε 1 ώρα.",
"emails.magicSession.buttonText":"Συνδεθείτε στο {{project}}",
"emails.magicSession.clientInfo":"Η σύνδεση αυτή ζητήθηκε χρησιμοποιώντας το {{agentClient}} στο {{agentDevice}} {{agentOs}}. Εάν δεν ζητήσατε τη σύνδεση, μπορείτε να αγνοήσετε με ασφάλεια αυτό το email.",
"sms.verification.body":"το {{secret}} είναι ο κωδικός επαλήθευσης του {{project}} σας.",
"emails.magicSession.securityPhrase":"Η φράση ασφαλείας για αυτό το email είναι {{phrase}}. Μπορείτε να εμπιστευτείτε αυτό το email αν αυτή η φράση ταιριάζει με τη φράση που εμφανίζεται κατά την είσοδο.",
"emails.magicSession.optionUrl":"Εάν δεν μπορείτε να συνδεθείτε χρησιμοποιώντας το παραπάνω κουμπί, παρακαλώ επισκεφτείτε τον παρακάτω σύνδεσμο:",
"emails.otpSession.description":"Εισάγετε τον ακόλουθο κωδικό επαλήθευσης όταν σας ζητηθεί για να συνδεθείτε με ασφάλεια στον λογαριασμό σας {{project}}. Θα λήξει σε 15 λεπτά.",
"emails.otpSession.clientInfo":"Αυτή η είσοδος ζητήθηκε με χρήση {{agentClient}} σε {{agentDevice}} {{agentOs}}. Εάν δεν ζητήσατε την είσοδο, μπορείτε να αγνοήσετε αυτό το email με ασφάλεια.",
"emails.otpSession.securityPhrase":"Η φράση ασφαλείας για αυτό το email είναι {{phrase}}. Μπορείτε να εμπιστευτείτε αυτό το email αν αυτή η φράση ταιριάζει με τη φράση που εμφανίστηκε κατά την είσοδο.",
"emails.magicSession.optionButton":"Click the button below to securely sign in to your {{b}}{{project}}{{/b}} account. This link will expire in 1 hour.",
"emails.magicSession.buttonText":"Sign in to {{project}}",
"emails.magicSession.optionUrl":"If you are unable to sign in using the button above, please visit the following link:",
"emails.magicSession.clientInfo":"This sign in was requested using {{b}}{{agentClient}}{{/b}} on {{b}}{{agentDevice}}{{/b}} {{b}}{{agentOs}}{{/b}}. If you didn't request the sign in, you can safely ignore this email.",
"emails.magicSession.securityPhrase":"Security phrase for this email is {{b}}{{phrase}}{{/b}}. You can trust this email if this phrase matches the phrase shown during sign in.",
"emails.otpSession.subject":"OTP for {{project}} Login",
"emails.otpSession.hello":"Hello {{user}}",
"emails.otpSession.description":"Enter the following verification code when prompted to securely sign in to your {{b}}{{project}}{{/b}} account. This code will expire in 15 minutes.",
"emails.otpSession.clientInfo":"This sign in was requested using {{b}}{{agentClient}}{{/b}} on {{b}}{{agentDevice}}{{/b}} {{b}}{{agentOs}}{{/b}}. If you didn't request the sign in, you can safely ignore this email.",
"emails.otpSession.securityPhrase":"Security phrase for this email is {{b}}{{phrase}}{{/b}}. You can trust this email if this phrase matches the phrase shown during sign in.",
"emails.otpSession.thanks":"Thanks,",
"emails.otpSession.signature":"{{project}} team",
"emails.mfaChallenge.subject":"Verification Code for {{project}}",
"emails.mfaChallenge.hello":"Hello {{user}}",
"emails.mfaChallenge.description":"Enter the following verification code to verify your email and activate two-step verification in {{b}}{{project}}{{/b}}. This code will expire in 15 minutes.",
"emails.mfaChallenge.clientInfo":"This verification code was requested using {{b}}{{agentClient}}{{/b}} on {{b}}{{agentDevice}}{{/b}} {{b}}{{agentOs}}{{/b}}. If you didn't request the verification code, you can safely ignore this email.",
"emails.recovery.body":"Follow this link to reset your {{project}} password.",
"emails.recovery.hello":"Hello {{user}}",
"emails.recovery.body":"Follow this link to reset your {{b}}{{project}}{{/b}} password.",
"emails.recovery.footer":"If you didn’t ask to reset your password, you can ignore this message.",
"emails.recovery.thanks":"Thanks",
"emails.recovery.signature":"{{project}} team",
"emails.invitation.subject":"Invitation to %s Team at %s",
"emails.invitation.hello":"Hello",
"emails.invitation.body":"This mail was sent to you because {{owner}} wanted to invite you to become a member of the {{team}} team at {{project}}.",
"emails.invitation.hello":"Hello {{user}}",
"emails.invitation.body":"This mail was sent to you because {{b}}{{owner}}{{/b}} wanted to invite you to become a member of the {{b}}{{team}}{{/b}} team at {{b}}{{project}}{{/b}}.",
"emails.invitation.footer":"If you are not interested, you can ignore this message.",
"emails.invitation.thanks":"Thanks",
"emails.invitation.signature":"{{project}} team",
"emails.certificate.subject":"Certificate failure for %s",
"emails.certificate.hello":"Hello",
"emails.certificate.body":"Certificate for your domain '{{domain}}' could not be generated. This is attempt no. {{attempt}}, and the failure was caused by: {{error}}",
"emails.certificate.footer":"Your previous certificate will be valid for 30 days since the first failure. We highly recommend investigating this case, otherwise your domain will end up without a valid SSL communication.",
"settings.inspire":"\"La arto esti saĝa estas la arto scii kion preteratenti.\"",
"emails.magicSession.optionButton":"Alklaku la suban butonon por sekure ensaluti al via {{project}}-konto. Ĝi eksvalidiĝos post 1 horo.",
"emails.magicSession.buttonText":"Ensalutu al {{project}}",
"emails.magicSession.clientInfo":"Ĉi tiu ensaluto estis petita per {{agentClient}} en {{agentDevice}} {{agentOs}}. Se vi ne petis la ensaluton, vi povas sekure ignori ĉi tiun retpoŝton.",
"sms.verification.body":"{{secret}} estas via {{project}} kontrolo-kodo.",
"emails.magicSession.securityPhrase":"La sekureca frazo por ĉi tiu retpoŝto estas {{phrase}}. Vi povas fidi ĉi tiun retpoŝton se ĉi tiu frazo kongruas kun la frazo montrita dum ensaluto.",
"emails.magicSession.optionUrl":"Se vi ne povas ensaluti per la supra butono, bonvolu viziti la jenan ligilon:",
"emails.otpSession.description":"Enigu la jenan kontrolkodon kiam oni petos ĝin por sekure ensaluti en vian {{project}} konton. Ĝi eksvalidiĝos post 15 minutoj.",
"emails.otpSession.clientInfo":"Ĉi tiu ensaluto estis petita per {{agentClient}} en {{agentDevice}} {{agentOs}}. Se vi ne petis la ensaluton, vi povas sekure ignori ĉi tiun retpoŝton.",
"emails.otpSession.securityPhrase":"Sekureca frazo por ĉi tiu retpoŝto estas {{phrase}}. Vi povas fidi ĉi tiun retpoŝton se tiu ĉi frazo kongruas kun la frazo montrita dum ensaluto.",
"emails.otpSession.thanks":"Dankon,",
"emails.otpSession.signature":"teamo de {{project}}"
"emails.recovery.body":"Haz clic en este enlace para restablecer la contraseña de {{project}}.",
"emails.recovery.hello":"Hola, {{name}}.",
"emails.recovery.body":"Haz clic en este enlace para restablecer la contraseña de {{project}}:",
"emails.recovery.footer":"Si no has solicitado restablecer la contraseña, puedes ignorar este mensaje.",
"emails.recovery.thanks":"Gracias",
"emails.recovery.signature":"Equipo de {{project}}",
"emails.recovery.thanks":"Gracias.",
"emails.recovery.signature":"El equipo de {{project}}",
"emails.invitation.subject":"Invitación al equipo %s en %s",
"emails.invitation.hello":"Hola",
"emails.invitation.body":"Este correo ha sido enviado a petición de {{owner}} quien quiere invitarte a formar parte del equipo {{team}} en {{project}}.",
"emails.invitation.footer":"Si no estas interesado, puedes ignorar este mensaje.",
"emails.invitation.thanks":"Gracias",
"emails.invitation.signature":"Equipo de {{project}}",
"emails.invitation.body":"Este correo ha sido enviado a petición de {{owner}} quién quiere invitarte a formar parte del equipo {{team}} en {{project}}.",
"emails.invitation.footer":"Si no estás interesado, puedes ignorar este mensaje.",
"emails.invitation.thanks":"Gracias.",
"emails.invitation.signature":"El equipo de {{project}}",
"locale.country.unknown":"Desconocido",
"countries.af":"Afganistán",
"countries.ao":"Angola",
@@ -228,5 +228,18 @@
"continents.eu":"Europa",
"continents.na":"América del Norte",
"continents.oc":"Oceanía",
"continents.sa":"América del Sur"
}
"continents.sa":"América del Sur",
"emails.magicSession.optionButton":"Haz clic en el botón de abajo para iniciar sesión de forma segura en tu cuenta de {{project}}. Caducará en 1 hora.",
"emails.magicSession.buttonText":"Iniciar sesión en {{project}}",
"emails.magicSession.clientInfo":"Este inicio de sesión fue solicitado usando {{agentClient}} en {{agentDevice}} {{agentOs}}. Si no solicitaste el inicio de sesión, puedes ignorar este correo electrónico de forma segura.",
"sms.verification.body":"{{secret}} es tu código de verificación de {{project}}.",
"emails.magicSession.securityPhrase":"La frase de seguridad para este correo electrónico es {{phrase}}. Puedes confiar en este correo electrónico si esta frase coincide con la frase que se muestra durante el inicio de sesión.",
"emails.magicSession.optionUrl":"Si no puedes iniciar sesión utilizando el botón anterior, visita el siguiente enlace:",
"emails.otpSession.subject":"Inicio de sesión en {{project}}",
"emails.otpSession.hello":"Hola",
"emails.otpSession.description":"Ingrese el siguiente código de verificación cuando se le solicite para iniciar sesión de forma segura en su cuenta de {{project}}. Expirará en 15 minutos.",
"emails.otpSession.clientInfo":"Este inicio de sesión fue solicitado usando {{agentClient}} en {{agentDevice}} {{agentOs}}. Si no solicitaste el inicio de sesión, puedes ignorar este correo electrónico de forma segura.",
"emails.otpSession.securityPhrase":"La frase de seguridad para este correo electrónico es {{phrase}}. Puedes confiar en este correo si esta frase coincide con la frase mostrada durante el inicio de sesión.",
"emails.otpSession.thanks":"Gracias.",
"emails.otpSession.signature":"El equipo de {{project}}"
"emails.verification.body":"برای تأیید ایمیلتان پیوند زیر را دنبال کنید.",
"emails.verification.footer":"اگر شما درخواست تأیید حساب ندادهاید، میتوانید این پیام را نادیده بگیرید.",
"emails.verification.thanks":"سپاس فراوان",
"emails.verification.signature":"تیم {{name}}",
"emails.verification.signature":"تیم {{user}}",
"emails.magicSession.subject":"ورود به حساب کاربری",
"emails.magicSession.hello":"سلام،",
"emails.magicSession.body":"برای ورود به حسابتان پیوند زیر را دنبال کنید.",
"emails.magicSession.footer":"اگر شما درخواست ورود به حساب کاربری با استفاده از این ایمیل را ندادهاید، میتوانید این پیام را نادیده بگیرید.",
"emails.magicSession.thanks":"سپاس فراوان",
"emails.magicSession.signature":"تیم {{name}}",
"emails.magicSession.signature":"تیم {{user}}",
"emails.recovery.subject":"بازیابی گذرواژه",
"emails.recovery.hello":"سلام {{name}}",
"emails.recovery.hello":"سلام {{user}}",
"emails.recovery.body":"برای بازیابی گذرواژهتان پیوند زیر را دنبال کنید.",
"emails.recovery.footer":"اگر شما درخواست بازیابی گذرواژه ندادهاید، میتوانید این پیام را نادیده بگیرید.",
"emails.recovery.thanks":"سپاس فراوان",
"emails.recovery.signature":"تیم {{name}}",
"emails.recovery.signature":"تیم {{user}}",
"emails.invitation.subject":"دعوت به تیم %s در %s",
"emails.invitation.hello":"سلام",
"emails.invitation.body":"این ایمیل برای شما فرستاده شدهاست زیرا {{owner}} میخواهد شما را به تیم {{team}} در پروژهی {{project}} بیفزاید.",
"emails.invitation.footer":"اگر علاقه ندارید، میتوانید این پیام را نادیده بگیرید.",
"emails.invitation.thanks":"سپاس فراوان",
"emails.invitation.signature":"تیم {{name}}",
"emails.invitation.signature":"تیم {{user}}",
"locale.country.unknown":"ناشناخته",
"countries.af":"افغانستان",
"countries.ao":"آنگولا",
@@ -228,5 +228,18 @@
"continents.eu":"اروپا",
"continents.na":"آمریکای شمالی",
"continents.oc":"اقیانوسیه",
"continents.sa":"آمریکای جنوبی"
}
"continents.sa":"آمریکای جنوبی",
"emails.magicSession.optionButton":"بر روی دکمه زیر کلیک کنید تا به صورت امن وارد حساب {{project}} خود شوید. این دکمه یک ساعت دیگر منقضی میشود.",
"emails.magicSession.buttonText":"ورود به {{project}}",
"emails.magicSession.clientInfo":"این ورود به سیستم با استفاده از {{agentClient}} در {{agentDevice}} {{agentOs}} درخواست شده است. اگر شما این ورود به سیستم را درخواست نکردهاید، میتوانید به راحتی این ایمیل را نادیده بگیرید.",
"emails.magicSession.securityPhrase":"عبارت امنیتی برای این ایمیل {{phrase}} است. اگر این عبارت با عبارت نشان داده شده در هنگام ورود به سیستم مطابقت داشت، میتوانید به این ایمیل اعتماد کنید.",
"emails.magicSession.optionUrl":"اگر قادر به ورود با استفاده از دکمه بالا نیستید، لطفاً از لینک زیر دیدن فرمایید:",
"emails.otpSession.subject":"ورود {{project}}",
"emails.otpSession.hello":"سلام،",
"emails.otpSession.description":"وقتی از شما خواسته شد، کد تأیید زیر را برای ورود ایمن به حساب کاربری {{project}} خود وارد کنید. این کد تا ۱۵ دقیقه دیگر منقضی میشود.",
"emails.otpSession.clientInfo":"این ورود به سیستم با استفاده از {{agentClient}} در {{agentDevice}} {{agentOs}} درخواست شده است. اگر شما این ورود به سیستم را درخواست نکردهاید، میتوانید به راحتی این ایمیل را نادیده بگیرید.",
"emails.otpSession.securityPhrase":"عبارت امنیتی برای این ایمیل {{phrase}} است. اگر این عبارت با عبارت نشان داده شده هنگام ورود به سیستم مطابقت داشته باشد، میتوانید به این ایمیل اعتماد کنید.",
"emails.magicSession.optionButton":"Napsauta alla olevaa painiketta kirjautuaksesi turvallisesti {{project}}-tiliisi. Se vanhenee tunnissa.",
"emails.magicSession.buttonText":"Kirjaudu sisään {{project}}",
"emails.magicSession.clientInfo":"Tämä kirjautuminen pyydettiin käyttäen {{agentClient}} {{agentDevice}} {{agentOs}}. Jos et pyytänyt kirjautumista, voit huoletta jättää tämän sähköpostin huomiotta.",
"sms.verification.body":"{{secret}} on sinun {{project}} vahvistuskoodisi.",
"emails.magicSession.securityPhrase":"Tämän sähköpostin turvalause on {{phrase}}. Voit luottaa tähän sähköpostiin, jos tämä lause vastaa kirjautumisen yhteydessä näytettyä lausetta.",
"emails.magicSession.optionUrl":"Jos et pysty kirjautumaan sisään yllä olevaa painiketta käyttäen, käy seuraavassa linkissä:",
"emails.otpSession.description":"Syötä seuraava vahvistuskoodi, kun sinua pyydetään tekemään se turvallisesti kirjautuaksesi {{project}}-tilillesi. Se vanhenee 15 minuutin kuluttua.",
"emails.otpSession.clientInfo":"Tämä kirjautumispyyntö tehtiin käyttämällä {{agentClient}} laitteella {{agentDevice}} {{agentOs}}. Jos et pyytänyt kirjautumista, voit huoletta ohittaa tämän sähköpostin.",
"emails.otpSession.securityPhrase":"Tämän sähköpostin turvalause on {{phrase}}. Voit luottaa tähän sähköpostiin, jos tämä lause vastaa kirjautumisen yhteydessä näytettyä lausetta.",
"emails.magicSession.optionButton":"Trýst á knøttin niðanfyri fyri at rita trygt inn á tína {{project}} konto. Tað fer at ganga út um 1 tíma.",
"emails.magicSession.buttonText":"Innrita á {{project}}",
"emails.magicSession.clientInfo":"Hetta innritingarbeiðið varð umbiðið við {{agentClient}} á {{agentDevice}} {{agentOs}}. Um tú ikki bað um innritingina, kanst tú trygt ignoreri hendan teldupostin.",
"sms.verification.body":"{{secret}} er tín {{project}} váttanarkodi.",
"emails.magicSession.securityPhrase":"Trygdarorðið fyri hesa teldupostadressuna er {{phrase}}. Tú kanst líta á hesa teldupostadressu, um hetta orðið samsvarar við orðið víst tá tú ritaði inn.",
"emails.magicSession.optionUrl":"Um tú ikki fært innritað við at brúka knøttin omanfyri, vinarliga vitja hesa leinkjuna:",
"emails.otpSession.description":"Skriva hesa váttanarkotu tá tú verður biðin um tað, fyri at rita trygt inn á tín {{project}} konto. Hon gongur út um 15 minuttir.",
"emails.otpSession.clientInfo":"Hendan innritað varð umbidin við {{agentClient}} á {{agentDevice}} {{agentOs}}. Um tú ikki hevur umbiðið innritingina, kanst tú trygt ignorera hesa teldupostin.",
"emails.otpSession.securityPhrase":"Trygdarorðið fyri hesa teldupostin er {{phrase}}. Tú kanst líta á hesa teldupostin um hetta orðið passar við orðið víst tá tú ritaði inn.",
"emails.certificate.subject":"Échec du certificat pour %s",
"emails.certificate.hello":"Bonjour",
"emails.certificate.body":"Le certificate pour votre domaine '{{domain}}' n'a pas pu être généré. Ceci est la tentative {{attempt}} et l'échec a été causé par : {{error}}",
"emails.certificate.footer":"Votre certificat précédent sera valide pendant 30 jours à compter de la première défaillance. Nous vous recommandons fortement d'enquêter sur ce cas, sinon votre domaine se retrouvera sans communication SSL valide.",
"emails.magicSession.optionButton":"Cliquez sur le bouton ci-dessous pour vous connecter en toute sécurité à votre compte {{project}}. Il expirera dans 1 heure.",
"emails.magicSession.buttonText":"Connectez-vous à {{project}}",
"emails.magicSession.optionUrl":"Si le bouton ci-dessus ne s'affiche pas, utilisez le lien suivant :",
"emails.magicSession.clientInfo":"Cette connexion a été demandée en utilisant {{agentClient}} sur {{agentDevice}} {{agentOs}}. Si vous n'avez pas demandé cette connexion, vous pouvez ignorer cet email en toute sécurité.",
"sms.verification.body":"{{secret}} est votre code de vérification pour {{project}}.",
"emails.magicSession.securityPhrase":"La phrase de sécurité pour cet email est {{phrase}}. Vous pouvez faire confiance à cet email si cette phrase correspond à celle affichée lors de la connexion.",
"emails.otpSession.description":"Entrez le code de vérification suivant lorsque cela vous sera demandé pour vous connecter en toute sécurité à votre compte {{project}}. Il expirera dans 15 minutes.",
"emails.otpSession.clientInfo":"Cette connexion a été demandée en utilisant {{agentClient}} sur {{agentDevice}} {{agentOs}}. Si vous n'avez pas demandé cette connexion, vous pouvez ignorer cet e-mail en toute sécurité.",
"emails.otpSession.securityPhrase":"La phrase de sécurité pour cet e-mail est {{phrase}}. Vous pouvez faire confiance à cet e-mail si cette phrase correspond à celle affichée lors de la connexion.",
"emails.invitation.subject":"Cuireadh do %s foireann ag %s",
"emails.invitation.hello":"Haigh",
"emails.invitation.body":"Seoladh an ríomhphost seo chugat mar ba mhaith le {{owner}} cuireadh a thabhairt duit bheith mar bhall den fhoireann {{team}} ag obair ar {{project}}.",
"emails.invitation.body":"Seoladh an ríomhphost seo chugat mar ba mhaith le {{owner}} cuireadh a thabhairt duit bheith mar bhall den fhoireann {{team}} ag obair ar {{project}}.",
"emails.invitation.footer":"Is cuma leat? Déan neamhaird den teachtaireacht seo.",
"emails.magicSession.optionButton":"Cliceáil ar an gcnaipe thíos le síní isteach go sábháilte i do chuntas {{project}}. Rachaidh sé in éag i gceann 1 uair.",
"emails.magicSession.buttonText":"Sínigh isteach i {{project}}",
"emails.magicSession.clientInfo":"Rinneadh an logáil isteach seo a iarraidh ag baint úsáide as {{agentClient}} ar {{agentDevice}} {{agentOs}}. Mura ndearna tú an logáil isteach a iarraidh, is féidir leat neamhaird sábháilte a dhéanamh den ríomhphost seo.",
"sms.verification.body":"Is é {{secret}} do chód fíoraithe {{project}}.",
"emails.magicSession.securityPhrase":"Is é an abairt slándála don ríomhphost seo ná {{phrase}}. Is féidir muinín a bheith agat as an ríomhphost seo má mheaitseálann an abairt seo leis an abairt a taispeántar le linn sínithe isteach.",
"emails.magicSession.optionUrl":"Mura bhfuil tú in ann síniú isteach ag baint úsáid as an gcnaipe thuas, téigh chuig an nasc seo a leanas:",
"emails.otpSession.subject":"Login {{project}}",
"emails.otpSession.hello":"Dia dhuit,",
"emails.otpSession.description":"Iontráil an cód fíoraithe seo a leanas nuair a iarrtar ort chun síní isteach go slán ar do chuntas {{project}}. Rachaidh sé in éag i gceann 15 nóiméad.",
"emails.otpSession.clientInfo":"Rinneadh an iarratas seo chun síniú isteach ag baint úsáide as {{agentClient}} ar {{agentDevice}} {{agentOs}}. Mura ndearna tú an iarratas chun síniú isteach, is féidir leat an ríomhphost seo a neamhaird go sábháilte.",
"emails.otpSession.securityPhrase":"Frása slándála don ríomhphost seo ná {{phrase}}. Is féidir muinín a bheith agat as an ríomhphost seo má mheaitseálann an frása seo leis an bhfrása a taispeántar le linn síniú isteach.",
"emails.otpSession.thanks":"Go raibh maith agat,",
"emails.recovery.body":"તમારો {{project}} પાસવર્ડ ફરીથી સેટ કરવા માટે આ લિંકને અનુસરો.",
"emails.recovery.footer":"જો તમે તમારો પાસવર્ડ ફરીથી સેટ કરવાનું ન કહ્યું હોય, તો તમે આ સંદેશને અવગણી શકો છો.",
"emails.recovery.thanks":"આભાર",
@@ -228,5 +228,18 @@
"continents.eu":"યુરોપ",
"continents.na":"ઉત્તર અમેરિકા",
"continents.oc":"ઓશનિયા",
"continents.sa":"દક્ષિણ અમેરિકા"
"continents.sa":"દક્ષિણ અમેરિકા",
"emails.magicSession.optionButton":"નીચે આપેલ બટન પર ક્લિક કરો તમારા {{project}} ખાતામાં સુરક્ષિત રીતે સાઇન ઈન કરવા માટે. તે 1 કલાકમાં સમાપ્ત થઈ જશે.",
"emails.magicSession.clientInfo":"આ સાઇન ઇન વિનંતી {{agentClient}} નો ઉપયોગ કરીને {{agentDevice}} {{agentOs}} પર કરવામાં આવી હતી. જો તમે સાઇન ઇનની વિનંતી કરી ન હોય, તો આ ઇમેઇલને સલામત રીતે અવગણી શકો છો.",
"emails.magicSession.securityPhrase":"આ ઇમેઇલ માટેનું સુરક્ષા વાક્ય {{phrase}} છે. જો આ વાક્ય સાઇન ઇન દરમિયાન દર્શાવેલા વાક્ય સાથે મેળ ખાય તો તમે આ ઇમેઇલ પર વિશ્વાસ કરી શકો છો.",
"emails.magicSession.optionUrl":"જો તમે ઉપરની બટનનો ઉપયોગ કરીને સાઇન ઇન કરી શકતા નથી, કૃપા કરીને નીચેની લિંક પર જાઓ:",
"emails.otpSession.subject":"{{project}} લૉગિન",
"emails.otpSession.hello":"હેલો,",
"emails.otpSession.description":"જ્યારે તમને તમારા {{project}} ખાતામાં સુરક્ષિત રીતે સાઇન ઇન કરવા માટે કહેવાય ત્યારે નીચે આપેલો ચકાસણી કોડ દાખલ કરો. તે 15 મિનિટમાં સમાપ્ત થઈ જશે.",
"emails.otpSession.clientInfo":"આ સાઇન ઇનની વિનંતી {{agentClient}} નો ઉપયોગ કરીને {{agentDevice}} {{agentOs}} પર થઈ છે. જો તમે સાઇન ઇનની વિનંતી કરી ન હોય, તો આ ઈમેલને સુરક્ષિત રીતે અવગણી શકો છો.",
"emails.otpSession.securityPhrase":"આ ઇમેઇલ માટેનો સુરક્ષા શબ્દ {{phrase}} છે. જો આ શબ્દ સાઇન ઇન વખતે દર્શાવેલા શબ્દ સાથે મેળ ખાતો હોય તો તમે આ ઇમેઇલ પર વિશ્વાસ કરી શકો છો.",
"emails.magicSession.clientInfo":"ההתחברות הזו נעשתה באמצעות {{agentClient}} על {{agentDevice}} {{agentOs}}. אם לא ביקשת את ההתחברות הזו, באפשרותך להתעלם בבטחה מהאימייל הזה.",
"sms.verification.body":"{{secret}} הוא קוד האימות שלך ל-{{project}}.",
"emails.magicSession.securityPhrase":"משפט הביטחון עבור הודעת הדוא\"ל הזו הוא {{phrase}}. תוכל לסמוך על הודעת הדוא\"ל הזו אם המשפט הזה תואם למשפט שהוצג בעת ההתחברות.",
"emails.magicSession.optionUrl":"אם אינך יכול להיכנס באמצעות הכפתור למעלה, בקר בקישור הבא:",
"emails.otpSession.subject":"התחברות למערכת {{project}}",
"emails.otpSession.hello":"שלום,",
"emails.otpSession.description":"הזן את קוד האימות הבא כאשר תתבקש כדי להיכנס לחשבון {{project}} שלך באופן מאובטח. הוא יפוג בעוד 15 דקות.",
"emails.otpSession.clientInfo":"ההתחברות הזו בוקשה באמצעות {{agentClient}} על {{agentDevice}} {{agentOs}}. אם לא ביקשת את ההתחברות, באפשרותך להתעלם בבטחה ממייל זה.",
"emails.otpSession.securityPhrase":"משפט האבטחה למייל זה הוא {{phrase}}. אתה יכול לסמוך על המייל הזה אם המשפט הזה תואם את המשפט שהוצג במהלך הכניסה למערכת.",
"emails.recovery.body":"इस लिंक के माध्यम से अपना {{project}} पासवर्ड रीसेट करें।",
"emails.recovery.footer":"यदि आप अपना पासवर्ड रीसेट नहीं करना चाहते हैं, तो आप इस संदेश को नज़रअंदाज़ कर सकते हैं।",
"emails.recovery.thanks":"धन्यवाद",
@@ -228,5 +228,18 @@
"continents.eu":"यूरोप",
"continents.na":"उत्तरी अमेरिका",
"continents.oc":"ओशिनिया",
"continents.sa":"दक्षिण अमेरिका"
}
"continents.sa":"दक्षिण अमेरिका",
"emails.magicSession.optionButton":"नीचे दिए गए बटन पर क्लिक करके अपने {{project}} खाते में सुरक्षित रूप से साइन इन करें। यह 1 घंटे में समाप्त हो जाएगा।",
"emails.magicSession.buttonText":"{{project}} में साइन इन करें",
"emails.magicSession.clientInfo":"यह साइन इन {{agentClient}} का उपयोग करके {{agentDevice}} {{agentOs}} पर किया गया था। यदि आपने साइन इन का अनुरोध नहीं किया है, तो आप इस ईमेल को सुरक्षित रूप से अनदेखा कर सकते हैं।",
"sms.verification.body":"{{secret}} आपके {{project}} सत्यापन कोड है।",
"emails.magicSession.securityPhrase":"इस ईमेल का सुरक्षा वाक्यांश {{phrase}} है। यदि यह वाक्यांश साइन इन के दौरान दिखाए गए वाक्यांश से मेल खाता है तो आप इस ईमेल पर भरोसा कर सकते हैं।",
"emails.magicSession.optionUrl":"यदि आप ऊपर दिए गए बटन का उपयोग करके साइन इन नहीं कर पा रहे हैं, कृपया निम्नलिखित लिंक पर जाएँ:",
"emails.otpSession.subject":"{{project}} लॉगिन",
"emails.otpSession.hello":"नमस्ते,",
"emails.otpSession.description":"निर्दिष्ट सत्यापन कोड दर्ज करें जब आपको आपके {{project}} खाते में सुरक्षित रूप से साइन इन करने के लिए कहा जाए। यह 15 मिनट में समाप्त हो जाएगा।",
"emails.otpSession.clientInfo":"यह साइन इन {{agentClient}} का उपयोग करके {{agentDevice}} {{agentOs}} पर किया गया था। यदि आपने साइन इन का अनुरोध नहीं किया है, तो आप इस ईमेल को नजरअंदाज कर सकते हैं।",
"emails.otpSession.securityPhrase":"इस ईमेल के लिए सुरक्षा वाक्यांश {{phrase}} है। अगर यह वाक्यांश साइन इन के दौरान दिखाए गए वाक्यांश से मेल खाता है, तो आप इस ईमेल पर भरोसा कर सकते हैं।",
"emails.recovery.body":"Slijedite ovu poveznicu za ponovno postavljanje {{project}} lozinke.",
"emails.recovery.footer":"Ako niste zatražili ponovno postavljanje Vaše lozinke, možete zanemariti ovu poruku.",
"emails.recovery.thanks":"Hvala",
@@ -228,5 +228,18 @@
"continents.eu":"Europa",
"continents.na":"Sjeverna Amerika",
"continents.oc":"Oceanija",
"continents.sa":"Južna Amerika"
"continents.sa":"Južna Amerika",
"emails.magicSession.optionButton":"Kliknite gumb ispod kako biste sigurno prijavili u svoj {{project}} račun. Istek će za 1 sat.",
"emails.magicSession.buttonText":"Prijavite se u {{project}}",
"emails.magicSession.clientInfo":"Ova se prijava zatražila koristeći {{agentClient}} na uređaju {{agentDevice}} {{agentOs}}. Ako niste zatražili prijavu, možete slobodno zanemariti ovaj e-mail.",
"sms.verification.body":"{{secret}} je vaš verifikacijski kod za {{project}}.",
"emails.magicSession.securityPhrase":"Sigurnosna fraza za ovaj e-mail je {{phrase}}. Ovom e-mailu možete vjerovati ako se fraza podudara s frazom prikazanom tijekom prijave.",
"emails.magicSession.optionUrl":"Ako se ne možete prijaviti koristeći gornji gumb, posjetite sljedeću poveznicu:",
"emails.otpSession.subject":"Prijava na {{project}}",
"emails.otpSession.hello":"Zdravo,",
"emails.otpSession.description":"Unesite sljedeći verifikacijski kod kada budete pozvani kako biste se sigurno prijavili na svoj {{project}} račun. Istjeći će za 15 minuta.",
"emails.otpSession.clientInfo":"Ova prijava je zatražena pomoću {{agentClient}} na {{agentDevice}} {{agentOs}}. Ako niste zatražili prijavu, ovaj e-mail možete sigurno zanemariti.",
"emails.otpSession.securityPhrase":"Sigurnosna fraza za ovaj e-mail je {{phrase}}. Možete vjerovati ovom e-mailu ako se ova fraza podudara s frazom prikazanom prilikom prijave.",
"emails.recovery.body":"Kattints a linkre a {{project}} jelszavad visszaállításához.",
"emails.recovery.footer":"Ha nem te kezdeményezted a jelszavad visszaállítását, akkor nyugodtan hagyd figyelmen kívül ezt az üzenetet.",
"emails.recovery.thanks":"Köszönettel",
@@ -228,5 +228,18 @@
"continents.eu":"Európa",
"continents.na":"Észak-Amerika",
"continents.oc":"Óceánia",
"continents.sa":"Dél-Amerika"
"continents.sa":"Dél-Amerika",
"emails.magicSession.optionButton":"Kattintson az alábbi gombra, hogy biztonságosan bejelentkezzen a {{project}} fiókjába. A link 1 óra múlva lejár.",
"emails.magicSession.buttonText":"Jelentkezzen be a {{project}} szolgáltatásba.",
"emails.magicSession.clientInfo":"Ezt a bejelentkezést a(z) {{agentClient}} használatával kérték az Ön {{agentDevice}} {{agentOs}} eszközén. Ha Ön nem kezdeményezte ezt a bejelentkezést, nyugodtan hagyja figyelmen kívül ezt az e-mailt.",
"emails.magicSession.securityPhrase":"Az e-mailhez tartozó biztonsági kifejezés: {{phrase}}. Megbízhat ebben az e-mailben, ha ez a kifejezés megegyezik a bejelentkezéskor megjelenített kifejezéssel.",
"emails.magicSession.optionUrl":"Amennyiben az előző gomb használatával nem tud bejelentkezni, kérjük látogassa meg a következő linket:",
"emails.otpSession.description":"Adja meg a következő megerősítő kódot, amikor arra kéri a rendszer, hogy biztonságosan bejelentkezhessen a {{project}} fiókjába. A kód 15 perc múlva lejár.",
"emails.otpSession.clientInfo":"Ez a bejelentkezés a(z) {{agentClient}} használatával lett kérve a(z) {{agentDevice}} {{agentOs}} eszközön. Ha Ön nem kérte a bejelentkezést, nyugodtan figyelmen kívül hagyhatja ezt az e-mailt.",
"emails.otpSession.securityPhrase":"Az e-mailhez tartozó biztonsági kód: {{phrase}}. Ennek az e-mailnek megbízhat, ha a megjelenített kód megegyezik a bejelentkezéskor megjelenő kóddal.",
"emails.magicSession.clientInfo":"Սա մուտք գործելը խնդրվել է `{{agentClient}}`-ի միջոցով {{agentDevice}} {{agentOs}}-ում: Եթե դուք չեք խնդրել մուտք գործելը, ապա կարող եք անտեղյակ մնալ այս էլփոստից:",
"emails.magicSession.securityPhrase":"Այս էլհասցեի անվտանգության արտահայտությունը {{phrase}} է: Դուք կարող եք հավատալ այս էլհասցեին, եթե այդ արտահայտությունը համընկնում է ներմուծման պրոցեսին՝ երբ դուք գրանցվել եք։",
"emails.magicSession.optionUrl":"Եթե չեք կարող մուտք գործել վերը նշված կոճակով, այցելեք հետևյալ հղումը՝",
"emails.otpSession.subject":"{{project}} Մուտք",
"emails.otpSession.hello":"Բարև,",
"emails.otpSession.description":"Երբ Ձեզ հարցնեն մուտքագրել վավերացման կոդը ապահով մուտքի համար Ձեր {{project}} հաշիվը, մուտքագրեք հետևյալ կոդը։ Այն կարճատև է 15 րոպե:",
"emails.otpSession.clientInfo":"Սույն մուտքը խնդրված է {{agentClient}}-ի կողմից {{agentDevice}} {{agentOs}}-ում։ Եթե Դուք չեք խնդրել մուտքը, ապա հանգիստ անտեսել այս էլփոստը։",
"emails.otpSession.securityPhrase":"Այս էլ.փոստի անվտանգության արտահայտությունը {{phrase}} է: Կարող եք վստահել այս էլ.փոստին, եթե այս արտահայտությունը համընկնում է մուտք գործելու պահին տրված արտահայտության հետ։",
"emails.recovery.subject":"Atur Ulang Kata Sandi",
"emails.recovery.hello":"Halo {{name}}",
"emails.recovery.hello":"Halo {{user}}",
"emails.recovery.body":"Ikuti tautan ini untuk menyetel ulang kata sandi {{project}} Anda.",
"emails.recovery.footer":"Jika Anda tidak meminta untuk menyetel ulang kata sandi, Anda dapat mengabaikan pesan ini.",
"emails.recovery.thanks":"Terima kasih",
@@ -228,5 +228,18 @@
"continents.eu":"Eropa",
"continents.na":"Amerika Utara",
"continents.oc":"Oseania",
"continents.sa":"Amerika Selatan"
"continents.sa":"Amerika Selatan",
"emails.magicSession.optionButton":"Klik tombol di bawah ini untuk masuk ke akun {{project}} Anda dengan aman. Ini akan kedaluwarsa dalam 1 jam.",
"emails.magicSession.buttonText":"Masuk ke {{project}}",
"emails.magicSession.clientInfo":"Tanda masuk ini diminta menggunakan {{agentClient}} di {{agentDevice}} {{agentOs}}. Jika Anda tidak meminta untuk masuk, Anda dapat mengabaikan email ini dengan aman.",
"sms.verification.body":"{{secret}} adalah kode verifikasi {{project}} Anda.",
"emails.magicSession.securityPhrase":"Frasa keamanan untuk email ini adalah {{phrase}}. Anda dapat mempercayai email ini jika frasa tersebut cocok dengan frasa yang ditampilkan saat masuk.",
"emails.magicSession.optionUrl":"Jika Anda tidak dapat masuk menggunakan tombol di atas, silakan kunjungi tautan berikut:",
"emails.otpSession.subject":"Login {{project}}",
"emails.otpSession.hello":"Halo,",
"emails.otpSession.description":"Masukkan kode verifikasi berikut saat diminta untuk masuk ke akun {{project}} Anda dengan aman. Kode ini akan kedaluwarsa dalam waktu 15 menit.",
"emails.otpSession.clientInfo":"Tanda masuk ini diminta menggunakan {{agentClient}} pada {{agentDevice}} {{agentOs}}. Jika Anda tidak meminta tanda masuk, Anda dapat mengabaikan email ini dengan aman.",
"emails.otpSession.securityPhrase":"Frasa keamanan untuk email ini adalah {{phrase}}. Anda dapat mempercayai email ini jika frasa tersebut cocok dengan frasa yang ditampilkan saat masuk.",
"emails.magicSession.optionButton":"Smelltu á hnappinn hér fyrir neðan til að skrá þig örugglega inn á {{project}} reikninginn þinn. Hann rennur út eftir 1 klukkustund.",
"emails.magicSession.buttonText":"Skráðu þig inn á {{project}}",
"emails.magicSession.clientInfo":"Þessi innskráning var óskað eftir með {{agentClient}} á {{agentDevice}} {{agentOs}}. Ef þú baðst ekki um innskráninguna geturðu hundsað þennan tölvupóst örugglega.",
"sms.verification.body":"{{secret}} er staðfestingarkóði {{project}} þíns.",
"emails.magicSession.securityPhrase":"Öryggisfrasi fyrir þetta tölvupóst er {{phrase}}. Þú getur treyst þessum tölvupósti ef þessi frasi passar við frasann sem birtist við innskráningu.",
"emails.magicSession.optionUrl":"Ef þú getur ekki skráð þig inn með hnappnum hér að ofan, vinsamlegast heimsækðu eftirfarandi tengil:",
"emails.otpSession.description":"Sláðu inn eftirfarandi staðfestingarkóða þegar þú ert beðinn um það til að skrá þig örugglega inn á {{project}} reikninginn þinn. Hann rennur út eftir 15 mínútur.",
"emails.otpSession.clientInfo":"Innskráningin var óskað eftir með því að nota {{agentClient}} á {{agentDevice}} {{agentOs}}. Ef þú baðst ekki um innskráninguna getur þú hunsað þennan tölvupóst örugglega.",
"emails.otpSession.securityPhrase":"Öryggissetning fyrir þetta tölvupóst er {{phrase}}. Þú getur treyst þessum tölvupósti ef þessi setning passar við setninguna sem birtist við innskráningu.",
"emails.recovery.body":"Clicca questo link per reimpostare la tua password di {{project}}.",
"emails.recovery.footer":"Se non hai richiesto la reimpostazione della password, puoi ignorare questo messaggio.",
"emails.recovery.thanks":"Grazie",
@@ -228,5 +228,18 @@
"continents.eu":"Europa",
"continents.na":"Nord America",
"continents.oc":"Oceania",
"continents.sa":"Sud America"
"continents.sa":"Sud America",
"emails.magicSession.optionButton":"Fai clic sul pulsante qui sotto per accedere in modo sicuro al tuo account {{project}}. Scadrà tra 1 ora.",
"emails.magicSession.buttonText":"Accedi a {{project}}",
"emails.magicSession.clientInfo":"Questo accesso è stato richiesto utilizzando {{agentClient}} su {{agentDevice}} {{agentOs}}. Se non hai richiesto l'accesso, puoi tranquillamente ignorare questa email.",
"sms.verification.body":"{{secret}} è il tuo codice di verifica per {{project}}.",
"emails.magicSession.securityPhrase":"La frase di sicurezza per questa email è {{phrase}}. Puoi fidarti di questa email se questa frase corrisponde alla frase mostrata durante l'accesso.",
"emails.magicSession.optionUrl":"Se non riesci ad accedere utilizzando il pulsante qui sopra, ti preghiamo di visitare il seguente link:",
"emails.otpSession.subject":"Accesso a {{project}}",
"emails.otpSession.hello":"Ciao,",
"emails.otpSession.description":"Inserisci il seguente codice di verifica quando ti viene richiesto per accedere in modo sicuro al tuo account {{project}}. Scadrà tra 15 minuti.",
"emails.otpSession.clientInfo":"Questa registrazione è stata richiesta tramite {{agentClient}} su {{agentDevice}} {{agentOs}}. Se non hai richiesto la registrazione, puoi ignorare tranquillamente questa email.",
"emails.otpSession.securityPhrase":"La frase di sicurezza per questa email è {{phrase}}. Puoi fidarti di questa email se questa frase corrisponde alla frase mostrata durante l'accesso.",
"emails.recovery.body":"Klik link iki kanggo setel ulang sandi {{project}}.",
"emails.recovery.footer":"Yen sampeyan ora njaluk setel ulang sandi, sampeyan iso nglirwakake pesen iki.",
"emails.recovery.thanks":"Matur nuwun",
@@ -228,5 +228,18 @@
"continents.eu":"Eropa",
"continents.na":"Amérika Lor",
"continents.oc":"Oseania",
"continents.sa":"Amérika Kidul"
"continents.sa":"Amérika Kidul",
"emails.magicSession.optionButton":"Klik tombol ing ngisor iki kanggo mlebu kanthi aman ing akun {{project}} panjenengan. Bakal kadaluwarsa sajroning 1 jam.",
"emails.magicSession.buttonText":"Mlebu ing {{project}}",
"emails.magicSession.clientInfo":"Penandatanganan iki dijaluk nganggo {{agentClient}} ing {{agentDevice}} {{agentOs}}. Yen panjenengan ora njaluk penandatanganan, panjenengan bisa ngabaikan email iki kanthi aman.",
"sms.verification.body":"{{secret}} iku kode verifikasi {{project}} panjenengan.",
"emails.magicSession.securityPhrase":"Frasa keamanan kanggo email iki yaiku {{phrase}}. Sampeyan bisa percaya marang email iki yen frasa iki cocog karo frasa sing ditampilake nalika mlebu.",
"emails.magicSession.optionUrl":"Yen sampeyan ora bisa mlebu nganggo tombol ing ndhuwur, monggo ngunjungi pranala ing ngisor iki:",
"emails.otpSession.subject":"{{project}} Mlebu",
"emails.otpSession.hello":"Halo,",
"emails.otpSession.description":"Lebokna kode verifikasi ing ngisor iki nalika dijaluk kanggo mlebu sing aman menyang akun {{project}} panjenengan. Kode iki bakal kadaluwarsa sajrone 15 menit.",
"emails.otpSession.clientInfo":"Tandha mlebu iki dijaluk nganggo {{agentClient}} ing {{agentDevice}} {{agentOs}}. Yen panjenengan ora njaluk tandha mlebu, panjenengan bisa nglirwakake email iki kanthi aman.",
"emails.otpSession.securityPhrase":"Tembung keamanan kanggo email iki yaiku {{phrase}}. Sampeyan bisa percaya email iki menawa tembung kasebut cocog karo tembung sing ditampilake nalika mlebu.",
"emails.recovery.body":"ನಿಮ್ಮ {{project}} ಗುಪ್ತಪದವನ್ನು ಮರುಹೊಂದಿಸಲು ಈ ಲಿಂಕನ್ನು ಅನುಸರಿಸಿ",
"emails.recovery.footer":"ನೀವು ಗುಪ್ತಪದವನ್ನು ಮರುಹೊಂದಿಸಲು ಕೇಳದಿದ್ದರೆ, ಈ ಸಂದೇಶವನ್ನು ನಿರ್ಲಕ್ಷಿಸಿ",
"emails.recovery.thanks":"ಧನ್ಯವಾದಗಳು",
@@ -228,5 +228,18 @@
"continents.eu":"ಯುರೋಪ್",
"continents.na":"ಉತ್ತರ ಅಮೆರಿಕ",
"continents.oc":"ಓಷಿಯಾನಿಯಾ",
"continents.sa":"ದಕ್ಷಿಣ ಅಮೆರಿಕಾ"
"continents.sa":"ದಕ್ಷಿಣ ಅಮೆರಿಕಾ",
"emails.magicSession.optionButton":"ಕೆಳಗಿನ ಬಟನ್ ಒತ್ತಿ ನಿಮ್ಮ {{project}} ಖಾತೆಗೆ ಸುರಕ್ಷಿತವಾಗಿ ಸೈನ್ ಇನ್ ಮಾಡಿ. ಇದು 1 ಗಂಟೆಯಲ್ಲಿ ಅವಧಿ ಮುಗಿಯುತ್ತದೆ.",
"emails.magicSession.buttonText":"ಸೈನ್ ಇನ್ ಮಾಡಿ {{project}}",
"emails.magicSession.clientInfo":"ಈ ಸೈನ್ ಇನ್ ಅನ್ನು {{agentClient}} ಬಳಸಿ {{agentDevice}} {{agentOs}} ಮೂಲಕ ಕೋರಲಾಗಿದೆ. ನೀವು ಸೈನ್ ಇನ್ ಅನ್ನು ಕೋರಿಲ್ಲದಿದ್ದರೆ, ನೀವು ಈ ಇಮೇಲ್ ಅನ್ನು ಸುರಕ್ಷಿತವಾಗಿ ನಿರ್ಲಕ್ಷಿಸಬಹುದು.",
"sms.verification.body":"{{secret}} ನಿಮ್ಮ {{project}} ಪರಿಶೀಲನಾ ಸಂಕೇತವಾಗಿದೆ.",
"emails.magicSession.securityPhrase":"ಈ ಇಮೇಲ್ಗಾಗಿ ಭದ್ರತಾ ಪದ ಇದೆ {{phrase}}. ಸೈನ್ ಇನ್ ಮಾಡುವಾಗ ತೋರಿದ ಪದವು ಈ ಪದವು ಹೊಂದಿಕೆಯಾಗಿದ್ದರೆ ನೀವು ಈ ಇಮೇಲ್ಅನ್ನು ನಂಬಬಹುದು.",
"emails.magicSession.optionUrl":"ಮೇಲಿನ ಬಟನ್ ಬಳಸಿ ನೀವು ಸೈನ್ ಇನ್ ಮಾಡಲು ಅಸಮರ್ಥರಾಗಿದ್ದರೆ, ದಯವಿಟ್ಟು ಈ ಕೆಳಗಿನ ಲಿಂಕ್ ಭೇಟಿಯನ್ನು ಕೊಡಿ:",
"emails.otpSession.subject":"{{project}} ಲಾಗಿನ್",
"emails.otpSession.hello":"ಹಲೋ,",
"emails.otpSession.description":"ನಿಮ್ಮ {{project}} ಖಾತೆಗೆ ಭದ್ರವಾಗಿ ಸೈನ್ ಇನ್ ಮಾಡಲು ಕೇಳಿದಾಗ ಕೆಳಗಿನ ದೃಢೀಕರಣ ಕೋಡ್ ನಮೂದಿಸಿ. ಇದು 15 ನಿಮಿಷಗಳಲ್ಲಿ ಅವಧಿ ಮುಗಿಯುತ್ತದೆ.",
"emails.otpSession.clientInfo":"ಈ ಸೈನ್ ಇನ್ ಅನ್ನು {{agentClient}} ಬಳಸಿ {{agentDevice}} {{agentOs}}ನಲ್ಲಿ ಕೋರಿಕೆ ಮಾಡಲಾಗಿದೆ. ನೀವು ಸೈನ್ ಇನ್ ಅನ್ನು ಕೋರಿಕೆ ಮಾಡಿರದಿದ್ದರೆ, ಈ ಇಮೇಲ್ ಅನ್ನು ನೀವು ನಿರಾಳವಾಗಿ ಅಲಕ್ಷ್ಯ ಮಾಡಬಹುದು.",
"emails.otpSession.securityPhrase":"ಈ ಇಮೇಲ್ಗೆ ಭದ್ರತಾ ಪದವು {{phrase}}. ನೀವು ಸೈನ್ ಇನ್ ಮಾಡುವಾಗ ತೋರಿಸಿದ ಪದವು ಇದರೊಂದಿಗೆ ಹೊಂದಿಕೊಂಡರೆ ಈ ಇಮೇಲನ್ನು ನೀವು ನಂಬಬಹುದು.",
"emails.recovery.body":"Sequere hanc conjunctionem ut recipias project password {{project}}",
"emails.recovery.footer":"Si tesseram tuam recuperare non petis, nuntium hunc ignorare potes",
"emails.recovery.thanks":"Gratias",
"emails.recovery.signature":"{{project}} team",
"emails.invitation.subject":"Invitatio pro %s in quadrigis %s",
"emails.invitation.hello":"Salve ibi",
"emails.invitation.body":"Haec inscriptio ad te missa est quia dominus incepto {{owner}} te invitare vult ut membrum {{team}} quadrigis fias ad {{project}}",
"emails.invitation.footer":"Si non quaero, potes hunc nuntium ignorare",
"emails.invitation.thanks":"Gratias",
"emails.invitation.signature":"{{project}} team",
"locale.country.unknown":"Ignotum",
"countries.af":"Afghanistan",
"countries.ao":"Angola",
"countries.al":"Albania",
"countries.ad":"Andorra",
"countries.ae":"Emiratos Arabes Unidos",
"countries.ar":"Argentina",
"countries.am":"Armenia",
"countries.ag":"Antigua and Barbuda",
"countries.au":"Australia",
"countries.at":"Austria",
"countries.az":"Azerbaijan",
"countries.bi":"Burundi",
"countries.be":"Belgium",
"countries.bj":"Benin",
"countries.bf":"Burkina Faso",
"countries.bd":"Bangladesh",
"countries.bg":"Bulgaria",
"countries.bh":"Bahrain",
"countries.bs":"Bahamas",
"countries.ba":"Bosnia and Herzegovina",
"countries.by":"Belarus",
"countries.bz":"Belize",
"countries.bo":"Bolivia",
"countries.br":"Brazil",
"countries.bb":"Barbados",
"countries.bn":"Brunei",
"countries.bt":"Bhutan",
"countries.bw":"Botswana",
"countries.cf":"Central African Republic",
"countries.ca":"Canada",
"countries.ch":"Switzerland",
"countries.cl":"Chile",
"countries.cn":"China",
"countries.ci":"Ivory Coast",
"countries.cm":"Cameroon",
"countries.cd":"DR Congo",
"countries.cg":"Republic of the Congo",
"countries.co":"Colombia",
"countries.km":"Comoros",
"countries.cv":"Cape Verde",
"countries.cr":"Costa Rica",
"countries.cu":"Cuba",
"countries.cy":"Cyprus",
"countries.cz":"Czechia",
"countries.de":"Germany",
"countries.dj":"Djibouti",
"countries.dm":"Dominica",
"countries.dk":"Denmark",
"countries.do":"Republica dominicana",
"countries.dz":"Algeria",
"countries.ec":"Ecuador",
"countries.eg":"Egypt",
"countries.er":"Eritrea",
"countries.es":"Spain",
"countries.ee":"Estonia",
"countries.et":"Ethiopia",
"countries.fi":"Finland",
"countries.fj":"Fiji",
"countries.fr":"France",
"countries.fm":"Micronesia",
"countries.ga":"Gabon",
"countries.gb":"Reino Unido",
"countries.ge":"Georgia",
"countries.gh":"Ghana",
"countries.gn":"Guinea",
"countries.gm":"Gambia",
"countries.gw":"Guinea-Bissau",
"countries.gq":"Equatorial Guinea",
"countries.gr":"Greece",
"countries.gd":"Grenada",
"countries.gt":"Guatemala",
"countries.gy":"Guyana",
"countries.hn":"Honduras",
"countries.hr":"Croatia",
"countries.ht":"Haiti",
"countries.hu":"Hungary",
"countries.id":"Indonesia",
"countries.in":"India",
"countries.ie":"Ireland",
"countries.ir":"Iran",
"countries.iq":"Iraq",
"countries.is":"Iceland",
"countries.il":"Israel",
"countries.it":"Italy",
"countries.jm":"Jamaica",
"countries.jo":"Jordan",
"countries.jp":"Japan",
"countries.kz":"Kazakhstan",
"countries.ke":"Kenya",
"countries.kg":"Kyrgyzstan",
"countries.kh":"Cambodia",
"countries.ki":"Kiribati",
"countries.kn":"Saint Kitts and Nevis",
"countries.kr":"South Korea",
"countries.kw":"Kuwait",
"countries.la":"Laos",
"countries.lb":"Lebanon",
"countries.lr":"Liberia",
"countries.ly":"Libya",
"countries.lc":"Saint Lucia",
"countries.li":"Liechtenstein",
"countries.lk":"Sri Lanka",
"countries.ls":"Lesotho",
"countries.lt":"Lithuania",
"countries.lu":"Luxembourg",
"countries.lv":"Latvia",
"countries.ma":"Morocco",
"countries.mc":"Monaco",
"countries.md":"Moldova",
"countries.mg":"Madagascar",
"countries.mv":"Maldives",
"countries.mx":"Mexico",
"countries.mh":"Marshall Islands",
"countries.mk":"Macedonia",
"countries.ml":"Mali",
"countries.mt":"Malta",
"countries.mm":"Myanmar",
"countries.me":"Montenegro",
"countries.mn":"Mongolia",
"countries.mz":"Mozambique",
"countries.mr":"Mauritania",
"countries.mu":"Mauritius",
"countries.mw":"Malawi",
"countries.my":"Malaysia",
"countries.na":"Namibia",
"countries.ne":"Niger",
"countries.ng":"Nigeria",
"countries.ni":"Nicaragua",
"countries.nl":"Netherlands",
"countries.no":"Norway",
"countries.np":"Nepal",
"countries.nr":"Nauru",
"countries.nz":"New Zealand",
"countries.om":"Oman",
"countries.pk":"Pakistan",
"countries.pa":"Panama",
"countries.pe":"Peru",
"countries.ph":"Philippines",
"countries.pw":"Palau",
"countries.pg":"Papua New Guinea",
"countries.pl":"Poland",
"countries.kp":"North Korea",
"countries.pt":"Portugal",
"countries.py":"Paraguay",
"countries.qa":"Qatar",
"countries.ro":"Romania",
"countries.ru":"Russia",
"countries.rw":"Rwanda",
"countries.sa":"Saudi Arabia",
"countries.sd":"Sudan",
"countries.sn":"Senegal",
"countries.sg":"Singapore",
"countries.sb":"Solomon Islands",
"countries.sl":"Sierra Leone",
"countries.sv":"El Salvador",
"countries.sm":"San Marino",
"countries.so":"Somalia",
"countries.rs":"Serbia",
"countries.ss":"South Sudan",
"countries.st":"São Tomé and Príncipe",
"countries.sr":"Suriname",
"countries.sk":"Slovakia",
"countries.si":"Slovenia",
"countries.se":"Sweden",
"countries.sz":"Swaziland",
"countries.sc":"Seychelles",
"countries.sy":"Syria",
"countries.td":"Chad",
"countries.tg":"Togo",
"countries.th":"Thailand",
"countries.tj":"Tajikistan",
"countries.tm":"Turkmenistan",
"countries.tl":"Timor-Leste",
"countries.to":"Tonga",
"countries.tt":"Trinidad and Tobago",
"countries.tn":"Tunisia",
"countries.tr":"Turkey",
"countries.tv":"Tuvalu",
"countries.tz":"Tanzania",
"countries.ug":"Uganda",
"countries.ua":"Ukraine",
"countries.uy":"Uruguay",
"countries.us":"United States",
"countries.uz":"Uzbekistan",
"countries.va":"Vatican City",
"countries.vc":"Saint Vincent and the Grenadines",
"countries.ve":"Venezuela",
"countries.vn":"Vietnam",
"countries.vu":"Vanuatu",
"countries.ws":"Samoa",
"countries.ye":"Yemen",
"countries.za":"Sud-Africa",
"countries.zm":"Zambia",
"countries.zw":"Zimbabwe",
"continents.af":"Africa",
"continents.an":"Antarctica",
"continents.as":"Asia",
"continents.eu":"Europe",
"continents.na":"America del Norte",
"continents.oc":"Oceania",
"continents.sa":"America del Sur"
}
"settings.inspire":"\"Ars sapiendi est ars sciendi quid negligat.\"",
"emails.recovery.body":"Sequere hanc conjunctionem ut recipias project password {{project}}",
"emails.recovery.footer":"Si tesseram tuam recuperare non petis, nuntium hunc ignorare potes",
"emails.recovery.thanks":"Gratias",
"emails.recovery.signature":"{{project}} team",
"emails.invitation.subject":"Invitatio pro %s in quadrigis %s",
"emails.invitation.hello":"Salve ibi",
"emails.invitation.body":"Haec inscriptio ad te missa est quia dominus incepto {{owner}} te invitare vult ut membrum {{team}} quadrigis fias ad {{project}}",
"emails.invitation.footer":"Si non quaero, potes hunc nuntium ignorare",
"emails.invitation.thanks":"Gratias",
"emails.invitation.signature":"{{project}} team",
"locale.country.unknown":"Ignotum",
"countries.af":"Afghanistan",
"countries.ao":"Angola",
"countries.al":"Albania",
"countries.ad":"Andorra",
"countries.ae":"Emiratos Arabes Unidos",
"countries.ar":"Argentina",
"countries.am":"Armenia",
"countries.ag":"Antigua and Barbuda",
"countries.au":"Australia",
"countries.at":"Austria",
"countries.az":"Azerbaijan",
"countries.bi":"Burundi",
"countries.be":"Belgium",
"countries.bj":"Benin",
"countries.bf":"Burkina Faso",
"countries.bd":"Bangladesh",
"countries.bg":"Bulgaria",
"countries.bh":"Bahrain",
"countries.bs":"Bahamas",
"countries.ba":"Bosnia and Herzegovina",
"countries.by":"Belarus",
"countries.bz":"Belize",
"countries.bo":"Bolivia",
"countries.br":"Brazil",
"countries.bb":"Barbados",
"countries.bn":"Brunei",
"countries.bt":"Bhutan",
"countries.bw":"Botswana",
"countries.cf":"Central African Republic",
"countries.ca":"Canada",
"countries.ch":"Switzerland",
"countries.cl":"Chile",
"countries.cn":"China",
"countries.ci":"Ivory Coast",
"countries.cm":"Cameroon",
"countries.cd":"DR Congo",
"countries.cg":"Republic of the Congo",
"countries.co":"Colombia",
"countries.km":"Comoros",
"countries.cv":"Cape Verde",
"countries.cr":"Costa Rica",
"countries.cu":"Cuba",
"countries.cy":"Cyprus",
"countries.cz":"Czechia",
"countries.de":"Germany",
"countries.dj":"Djibouti",
"countries.dm":"Dominica",
"countries.dk":"Denmark",
"countries.do":"Republica dominicana",
"countries.dz":"Algeria",
"countries.ec":"Ecuador",
"countries.eg":"Egypt",
"countries.er":"Eritrea",
"countries.es":"Spain",
"countries.ee":"Estonia",
"countries.et":"Ethiopia",
"countries.fi":"Finland",
"countries.fj":"Fiji",
"countries.fr":"France",
"countries.fm":"Micronesia",
"countries.ga":"Gabon",
"countries.gb":"Reino Unido",
"countries.ge":"Georgia",
"countries.gh":"Ghana",
"countries.gn":"Guinea",
"countries.gm":"Gambia",
"countries.gw":"Guinea-Bissau",
"countries.gq":"Equatorial Guinea",
"countries.gr":"Greece",
"countries.gd":"Grenada",
"countries.gt":"Guatemala",
"countries.gy":"Guyana",
"countries.hn":"Honduras",
"countries.hr":"Croatia",
"countries.ht":"Haiti",
"countries.hu":"Hungary",
"countries.id":"Indonesia",
"countries.in":"India",
"countries.ie":"Ireland",
"countries.ir":"Iran",
"countries.iq":"Iraq",
"countries.is":"Iceland",
"countries.il":"Israel",
"countries.it":"Italy",
"countries.jm":"Jamaica",
"countries.jo":"Jordan",
"countries.jp":"Japan",
"countries.kz":"Kazakhstan",
"countries.ke":"Kenya",
"countries.kg":"Kyrgyzstan",
"countries.kh":"Cambodia",
"countries.ki":"Kiribati",
"countries.kn":"Saint Kitts and Nevis",
"countries.kr":"South Korea",
"countries.kw":"Kuwait",
"countries.la":"Laos",
"countries.lb":"Lebanon",
"countries.lr":"Liberia",
"countries.ly":"Libya",
"countries.lc":"Saint Lucia",
"countries.li":"Liechtenstein",
"countries.lk":"Sri Lanka",
"countries.ls":"Lesotho",
"countries.lt":"Lithuania",
"countries.lu":"Luxembourg",
"countries.lv":"Latvia",
"countries.ma":"Morocco",
"countries.mc":"Monaco",
"countries.md":"Moldova",
"countries.mg":"Madagascar",
"countries.mv":"Maldives",
"countries.mx":"Mexico",
"countries.mh":"Marshall Islands",
"countries.mk":"Macedonia",
"countries.ml":"Mali",
"countries.mt":"Malta",
"countries.mm":"Myanmar",
"countries.me":"Montenegro",
"countries.mn":"Mongolia",
"countries.mz":"Mozambique",
"countries.mr":"Mauritania",
"countries.mu":"Mauritius",
"countries.mw":"Malawi",
"countries.my":"Malaysia",
"countries.na":"Namibia",
"countries.ne":"Niger",
"countries.ng":"Nigeria",
"countries.ni":"Nicaragua",
"countries.nl":"Netherlands",
"countries.no":"Norway",
"countries.np":"Nepal",
"countries.nr":"Nauru",
"countries.nz":"New Zealand",
"countries.om":"Oman",
"countries.pk":"Pakistan",
"countries.pa":"Panama",
"countries.pe":"Peru",
"countries.ph":"Philippines",
"countries.pw":"Palau",
"countries.pg":"Papua New Guinea",
"countries.pl":"Poland",
"countries.kp":"North Korea",
"countries.pt":"Portugal",
"countries.py":"Paraguay",
"countries.qa":"Qatar",
"countries.ro":"Romania",
"countries.ru":"Russia",
"countries.rw":"Rwanda",
"countries.sa":"Saudi Arabia",
"countries.sd":"Sudan",
"countries.sn":"Senegal",
"countries.sg":"Singapore",
"countries.sb":"Solomon Islands",
"countries.sl":"Sierra Leone",
"countries.sv":"El Salvador",
"countries.sm":"San Marino",
"countries.so":"Somalia",
"countries.rs":"Serbia",
"countries.ss":"South Sudan",
"countries.st":"São Tomé and Príncipe",
"countries.sr":"Suriname",
"countries.sk":"Slovakia",
"countries.si":"Slovenia",
"countries.se":"Sweden",
"countries.sz":"Swaziland",
"countries.sc":"Seychelles",
"countries.sy":"Syria",
"countries.td":"Chad",
"countries.tg":"Togo",
"countries.th":"Thailand",
"countries.tj":"Tajikistan",
"countries.tm":"Turkmenistan",
"countries.tl":"Timor-Leste",
"countries.to":"Tonga",
"countries.tt":"Trinidad and Tobago",
"countries.tn":"Tunisia",
"countries.tr":"Turkey",
"countries.tv":"Tuvalu",
"countries.tz":"Tanzania",
"countries.ug":"Uganda",
"countries.ua":"Ukraine",
"countries.uy":"Uruguay",
"countries.us":"United States",
"countries.uz":"Uzbekistan",
"countries.va":"Vatican City",
"countries.vc":"Saint Vincent and the Grenadines",
"countries.ve":"Venezuela",
"countries.vn":"Vietnam",
"countries.vu":"Vanuatu",
"countries.ws":"Samoa",
"countries.ye":"Yemen",
"countries.za":"Sud-Africa",
"countries.zm":"Zambia",
"countries.zw":"Zimbabwe",
"continents.af":"Africa",
"continents.an":"Antarctica",
"continents.as":"Asia",
"continents.eu":"Europe",
"continents.na":"America del Norte",
"continents.oc":"Oceania",
"continents.sa":"America del Sur",
"emails.magicSession.optionButton":"Clicca in puga infra ut tuto subscribas in rationem tuam {{project}}. Hora una exibit.",
"emails.magicSession.buttonText":"Intra in {{project}}",
"emails.magicSession.optionUrl":"Si non potes signo uti superiore puga pyga, quaeso ad hunc nexum visere:",
"emails.magicSession.clientInfo":"Hic signum in petitus est utens {{agentClient}} in {{agentDevice}} {{agentOs}}. Si signum in non requisisti, hoc epistulae secure negligere potes.",
"emails.magicSession.securityPhrase":"Sententia securitatis huius epistulae est {{phrase}}. Huic epistulae confidere potes si haec sententia convenit cum sententia ostensa dum in systema ingrederis.",
"emails.otpSession.subject":"Login {{project}}",
"emails.otpSession.hello":"Salve,",
"emails.otpSession.description":"Inserite sequentem codicem verificationis cum moniti signum in rationem vestram {{project}} tutum facere. Expirabit in quindecim minutis.",
"emails.otpSession.clientInfo":"Hoc signum intra petebatur utendo {{agentClient}} in {{agentDevice}} {{agentOs}}. Si signum intra non petisti, hoc epistulum securus negligere potes.",
"emails.otpSession.securityPhrase":"Sententia securitatis huius epistulae est {{phrase}}. Epistulae confidere potes si haec sententia cum ea quae ostensa est in signo ingressus convenit.",
"emails.otpSession.thanks":"Gratias,",
"emails.otpSession.signature":"{{project}} team -> {{project}} grex",
"emails.certificate.subject":"Defectio testimonii pro %s",
"emails.certificate.hello":"Salve",
"emails.certificate.body":"Certificatum pro dominio tuo '{{domain}}' generari non potuit. Hoc conatus num. {{attempt}} est, et defectus causatus est ab: {{error}}",
"emails.certificate.footer":"Praeclarum tuum testificationem valet ad XXX dies a primo defectu. Magnopere suademus ut hoc casum investiges, alioquin dominium tuum sine valida SSL communicatione erit.",
"emails.recovery.body":"Follegt dëse Link fir Äert {{project}} Passwuert zréckzesetzen.",
"emails.recovery.footer":"Wann Dir net gefrot hutt Äert Passwuert zréckzesetzen, kënnt Dir dëse Message ignoréieren.",
"emails.recovery.thanks":"Merci",
"emails.recovery.signature":"{{project}} équipe",
"emails.invitation.subject":"Invitatioun un %s équipe bei %s",
"emails.invitation.hello":"Hallo",
"emails.invitation.body":"Dës E -Mail gouf un Iech geschéckt well {{owner}} Iech invitéiere wëllt fir Member vum {{team}} Team bei {{project}} ze ginn.",
"emails.invitation.footer":"Wann Dir net interesséiert sidd, kënnt Dir dëse Message ignoréieren.",
"emails.recovery.body":"Follegt dëse Link fir Äert {{project}} Passwuert zréckzesetzen.",
"emails.recovery.footer":"Wann Dir net gefrot hutt Äert Passwuert zréckzesetzen, kënnt Dir dëse Message ignoréieren.",
"emails.recovery.thanks":"Merci",
"emails.recovery.signature":"{{project}} équipe",
"emails.invitation.subject":"Invitatioun un %s équipe bei %s",
"emails.invitation.hello":"Hallo",
"emails.invitation.body":"Dës E -Mail gouf un Iech geschéckt well {{owner}} Iech invitéiere wëllt fir Member vum {{team}} Team bei {{project}} ze ginn.",
"emails.invitation.footer":"Wann Dir net interesséiert sidd, kënnt Dir dëse Message ignoréieren.",
"emails.magicSession.optionButton":"Klickt op de Knäppchen hei drënner fir sécher an Äre {{project}} Kont anzeloggen. Et wäert an 1 Stonn oflafen.",
"emails.magicSession.buttonText":"Connectez-vous à {{project}}",
"emails.magicSession.clientInfo":"Dëse Login gouf duerch {{agentClient}} op {{agentDevice}} {{agentOs}} ugefrot. Wann Dir de Login net gefrot hutt, kënnt Dir dësen E-Mail ouni weideres ignoréieren.",
"sms.verification.body":"{{secret}} ass äre {{project}} Verifikatiounscode.",
"emails.magicSession.securityPhrase":"D'Sécherheetsphrase fir dësen E-Mail ass {{phrase}}. Dir kënnt dësem E-Mail vertrauen, wann dës Phrase mat der Phrase iwwereneestëmmt, déi beim Umellen ugewise ginn ass.",
"emails.magicSession.optionUrl":"Wann Dir Iech net kënnt umellen andeems Dir op de Knäppchen uewendriwwer klickt, besicht w.e.g. de folgenden Link:",
"emails.otpSession.description":"Gitt de folgende Verifikatiounscode an, wann dir gefrot gitt fir sécher an ären {{project}} Kont anzeloggen. Hien ass no 15 Minutten net méi gülteg.",
"emails.otpSession.clientInfo":"Dësen Aloggen gouf mat {{agentClient}} op {{agentDevice}} {{agentOs}} gefrot. Wann Dir d'Ufro fir d'Aloggen net gemaach hutt, kënnt Dir dësen E-Mail roueg ignoréieren.",
"emails.otpSession.securityPhrase":"D'Sécherheetsausso fir dësen E-Mail ass {{phrase}}. Dir kënnt dësem E-Mail vertrauen, wann dës Ausso mat der Ausso iwwereneestëmmt, déi beim Umellen gewise ginn ass.",
"emails.recovery.body":"Spauskite šią nuorodą, kad atkurtumėte projekto {{project}} slaptažodį.",
"emails.recovery.footer":"Jei neprašėte atkurti savo slaptažodzio, galite ignoruoti šį pranešimą.",
"emails.recovery.thanks":"Ačiū",
@@ -228,5 +228,18 @@
"continents.eu":"Europa",
"continents.na":"Šiaurės Amerika",
"continents.oc":"Okeanija",
"continents.sa":"Pietų Amerika"
}
"continents.sa":"Pietų Amerika",
"emails.magicSession.optionButton":"Spustelėkite žemiau esantį mygtuką, kad saugiai prisijungtumėte prie savo {{project}} paskyros. Galiojimas baigsis po 1 valandos.",
"emails.magicSession.buttonText":"Prisijunkite prie {{project}}",
"emails.magicSession.clientInfo":"Šis prisijungimas buvo užklaustas naudojant {{agentClient}} {{agentDevice}} {{agentOs}}. Jei neprašėte prisijungimo, galite saugiai ignoruoti šį el. laišką.",
"sms.verification.body":"{{secret}} yra jūsų {{project}} patvirtinimo kodas.",
"emails.magicSession.securityPhrase":"Šio el. laiško saugumo frazė yra {{phrase}}. Šiam el. laiškui galite pasitikėti, jei ši frazė atitinka prisijungimo metu rodytą frazę.",
"emails.magicSession.optionUrl":"Jei negalite prisijungti naudodami aukščiau esantį mygtuką, apsilankykite šioje nuorodoje:",
"emails.otpSession.description":"Įveskite šį patvirtinimo kodą, kai busite paraginti saugiai prisijungti prie savo {{project}} paskyros. Jis pasibaigs po 15 minučių.",
"emails.otpSession.clientInfo":"Šis prisijungimas buvo užklaustas naudojant {{agentClient}} įrenginyje {{agentDevice}} {{agentOs}}. Jei neprašėte prisijungti, šį el. laišką galite drąsiai ignoruoti.",
"emails.otpSession.securityPhrase":"Šio el. laiško saugumo frazė yra {{phrase}}. Galite pasitikėti šiuo el. laišku, jei ši frazė atitinka frazę, rodytą prisijungimo metu.",
"emails.magicSession.clientInfo":"Šī autorizācija tika pieprasīta, izmantojot {{agentClient}} ierīcē {{agentDevice}} operētājsistēmā {{agentOs}}. Ja jūs neesat pieprasījis autorizāciju, šo e-pastu varat droši ignorēt.",
"sms.verification.body":"{{secret}} ir jūsu {{project}} verifikācijas kods.",
"emails.magicSession.securityPhrase":"Drošības frāze šim e-pastam ir {{phrase}}. Šim e-pastam var uzticēties, ja šī frāze sakrīt ar frāzi, kas parādās, piesakoties sistēmā.",
"emails.magicSession.optionUrl":"Ja nevarat pierakstīties, izmantojot iepriekš minēto pogu, lūdzu, apmeklējiet sekojošo saiti:",
"emails.otpSession.description":"Ievadiet šo verifikācijas kodu, kad tiek pieprasīts, lai droši pierakstītos savā {{project}} kontā. Tas beigsies pēc 15 minūtēm.",
"emails.otpSession.clientInfo":"Šo pierakstīšanos pieprasīja, izmantojot {{agentClient}} ierīcē {{agentDevice}} {{agentOs}}. Ja neesat pieprasījis pierakstīšanos, šo e-pastu droši var ignorēt.",
"emails.otpSession.securityPhrase":"Drošības frāze šim e-pastam ir {{phrase}}. Šim e-pastam var uzticēties, ja šī frāze sakrīt ar frāzi, kas parādīta pieslēdzoties.",
"emails.recovery.body":"നിങ്ങളുടെ {{Project}} രഹസ്യവാക്ക് പുനക്രമീകരിക്കുന്നതിന് ഈ ലിങ്ക് പിന്തുടരുക.",
"emails.recovery.footer":"നിങ്ങളുടെ രഹസ്യവാക്ക് പുനക്രമീകരിക്കാന് നിങ്ങൾ ആവശ്യപ്പെട്ടില്ലെങ്കിൽ, ഈ സന്ദേശം അവഗണിക്കാവുന്നതാണ്.",
"emails.recovery.thanks":"നന്ദി",
@@ -228,5 +228,24 @@
"continents.eu":"യൂറോപ്പ്",
"continents.na":"വടക്കേ അമേരിക്ക",
"continents.oc":"ഓഷ്യാനിയ",
"continents.sa":"തെക്കേ അമേരിക്ക"
}
"continents.sa":"തെക്കേ അമേരിക്ക",
"emails.magicSession.optionButton":"താഴെയുള്ള ബട്ടൺ ക്ലിക്ക് ചെയ്ത് സുരക്ഷിതമായി നിങ്ങളുടെ {{project}} അക്കൗണ്ടിൽ സൈൻ ഇൻ ചെയ്യുക. ഇത് 1 മണിക്കൂര് കഴിഞ്ഞാൽ അസാധുവാകും.",
"emails.magicSession.buttonText":"{{project}} ലേക്ക് സൈൻ ഇൻ ചെയ്യുക",
"emails.magicSession.optionUrl":"മുകളിലുള്ള ബട്ടണ് ഉപയോഗിച്ച് സൈൻ ഇൻ ചെയ്യാനാകാത്തപക്ഷം, ദയവായി താഴെയുള്ള ലിങ്ക് സന്ദർശിക്കുക:",
"emails.magicSession.clientInfo":"ഈ സൈൻ ഇൻ {{agentClient}} ഉപയോഗിച്ച് {{agentDevice}} {{agentOs}}-ഇൽ അഭ്യർത്ഥിച്ചിരിക്കുന്നു. നിങ്ങൾ ഈ സൈൻ ഇൻ അഭ്യർത്ഥിച്ചിട്ടില്ലെങ്കിൽ, ഈ ഇമെയിൽ അവഗണിക്കാം.",
"emails.magicSession.securityPhrase":"ഈ ഇമെയിലിന്റെ സുരക്ഷാ വാചകം {{phrase}} ആണ്. സൈൻ ഇൻ ചെയ്ത സമയത്ത് കാണിച്ച വാചകവുമായി ഈ വാചകം ഒത്തുവരുന്നെങ്കിൽ ഈ ഇമെയിലിന് വിശ്വസിക്കാം.",
"emails.otpSession.subject":"{{project}} ലോഗിൻ",
"emails.otpSession.hello":"ഹലോ,",
"emails.otpSession.description":"നിങ്ങൾക്ക് സുരക്ഷിതമായി നിങ്ങളുടെ {{project}} അക്കൗണ്ടിൽ സൈൻ ഇൻ ചെയ്യുമ്പോൾ അനുവദിക്കപ്പെടുമ്പോൾ താഴെയുള്ള സാധൂകരണ കോഡ് നൽകുക. ഇത് 15 മിനിറ്റിൽ കാലഹരണപ്പെടും.",
"emails.otpSession.clientInfo":"ഈ സൈൻ ഇൻ {{agentClient}} ഉപയോഗിച്ച് {{agentDevice}} {{agentOs}}-ൽ അഭ്യർത്ഥിച്ചു. നിങ്ങൾ സൈൻ ഇൻ അഭ്യർത്ഥിക്കാത്ത പക്ഷം, ഈ ഇമെയിൽ അവഗണിക്കാം.",
"emails.otpSession.securityPhrase":"ഈ ഇമെയിലിന്റെ സുരക്ഷാ വാചകം {{phrase}} ആണ്. സൈൻ ഇൻ ചെയ്യുമ്പോൾ കാണിച്ച വാചകവുമായി ഈ വാചകം പൊരുത്തപ്പെടുന്നുണ്ടെങ്കിൽ ഈ ഇമെയിലിന് വിശ്വസിക്കാം.",
"emails.otpSession.thanks":"നന്ദി,",
"emails.otpSession.signature":"പ്രോജക്ട് ടീം",
"emails.certificate.subject":"%s ന് സർട്ടിഫിക്കറ്റ് പരാജയപ്പെട്ടു",
"emails.certificate.hello":"ഹലോ",
"emails.certificate.body":"നിങ്ങളുടെ ഡൊമൈൻ '{{domain}}'നു വേണ്ടിയുള്ള സർട്ടിഫിക്കറ്റ് ഉണ്ടാക്കാനായില്ല. ഇത് ശ്രമം നമ്പർ {{attempt}} ആണ്, പരാജയപ്പെട്ടത് ഇതു മൂലമാണ്: {{error}}",
"emails.certificate.footer":"നിങ്ങളുടെ മുൻപത്തെ സർട്ടിഫിക്കറ്റ് ആദ്യ പരാജയത്തിനു ശേഷം 30 ദിവസം വരെ സാധുവായിരിക്കും. ഈ കേസ് അന്വേഷിച്ചു നോക്കുന്നത് ഞങ്ങൾ ശക്തമായി ശുപാർശ ചെയ്യുന്നു, അല്ലെങ്കിൽ നിങ്ങളുടെ ഡൊമെയ്ൻ സാധുവായ SSL കമ്മ്യൂണിക്കേഷനില്ലാത്ത ഒരു അവസ്ഥയിലാകും.",
"emails.certificate.thanks":"നന്ദി",
"emails.certificate.signature":"{{project}} ടീം",
"sms.verification.body":"{{secret}} നിങ്ങളുടെ {{project}} പരിശോധന കോഡാണ്."
"emails.recovery.body":"आपला {{project}}चे पासवर्ड रीसेट करण्यासाठी या लिंकचे अनुसरण करा",
"emails.recovery.footer":"आपण आपला पासवर्ड रीसेट करण्यास सांगितले नसल्यास, आपण या संदेशाकडे दुर्लक्ष करू शकता.",
"emails.recovery.thanks":"धन्यवाद",
@@ -228,5 +228,18 @@
"continents.eu":"यूरोप",
"continents.na":"उत्तर अमेरिका",
"continents.oc":"ओशिनिया",
"continents.sa":"दक्षिण अमेरिका"
"continents.sa":"दक्षिण अमेरिका",
"emails.magicSession.optionButton":"खालील बटणावर क्लिक करा आणि आपल्या {{project}} खात्यात सुरक्षितपणे साइन इन करा. हे १ तासात समाप्त होईल.",
"emails.magicSession.buttonText":"{{project}} मध्ये साइन इन करा",
"emails.magicSession.clientInfo":"ही साइन इन विनंती केली गेली {{agentClient}} वरून {{agentDevice}} {{agentOs}} वापरून. जर आपणास ही साइन इन विनंती केली नसेल तर आपण हा ईमेल सुरक्षितपणे दुर्लक्षित करू शकता.",
"sms.verification.body":"{{secret}} हे तुमच्या {{project}} प्रमाणीकरण कोड आहे.",
"emails.magicSession.securityPhrase":"या ईमेलसाठी सुरक्षा वाक्य हे {{phrase}} आहे. साइन इन केल्यावेळी दाखवलेले वाक्य जर हे वाक्याशी जुळत असेल तर तुम्ही या ईमेलवर विश्वास ठेवू शकता.",
"emails.magicSession.optionUrl":"जर आपण वरील बटणाचा वापर करून साइन इन करू शकत नसाल, तर कृपया खालील दुवा भेट द्या:",
"emails.otpSession.subject":"{{project}} लॉगिन",
"emails.otpSession.hello":"नमस्कार,",
"emails.otpSession.description":"आपल्या {{project}} खात्यावर सुरक्षितपणे साइन इन करण्यासाठी सांगितले जाताना खालील पडताळणी कोड प्रविष्ट करा. हा कोड १५ मिनिटांत समाप्त होईल.",
"emails.otpSession.clientInfo":"ही साइन इन विनंती {{agentClient}} वापरुन {{agentDevice}} {{agentOs}} वरुन करण्यात आली आहे. जर तुम्ही ही साइन इन विनंती केली नसेल, तर तुम्ही हा ईमेल सुरक्षितपणे दुर्लक्ष करू शकता.",
"emails.otpSession.securityPhrase":"या ईमेलसाठीचे सुरक्षा वाक्यांश {{phrase}} आहे. जर हे वाक्यांश साइन इन करताना दाखवल्या गेलेल्या वाक्यांशाशी जुळत असेल तर आपण या ईमेलवर विश्वास ठेवू शकता.",
"emails.recovery.subject":"Menetap semula Kata Laluan",
"emails.recovery.hello":"Hello {{name}}",
"emails.recovery.hello":"Hello {{user}}",
"emails.recovery.body":"Tekan pautan ini untuk menetapkan semula kata laluan {{project}}.",
"emails.recovery.footer":"Sekiranya anda tidak membuat permintaan menetap semula kata laluan, sila abaikan mesej ini.",
"emails.recovery.thanks":"Terima kasih",
@@ -228,5 +228,18 @@
"continents.eu":"Eropah",
"continents.na":"Amerika Utara",
"continents.oc":"Oceania",
"continents.sa":"Amerika Selatan"
"continents.sa":"Amerika Selatan",
"emails.magicSession.optionButton":"Klik butang di bawah untuk log masuk ke akaun {{project}} anda dengan selamat. Ia akan luput dalam masa 1 jam.",
"emails.magicSession.buttonText":"Masuk ke {{project}}",
"emails.magicSession.clientInfo":"Pendaftaran ini diminta menggunakan {{agentClient}} pada {{agentDevice}} {{agentOs}}. Jika anda tidak meminta untuk daftar masuk, anda boleh abaikan e-mel ini dengan selamat.",
"sms.verification.body":"{{secret}} adalah kod pengesahan {{project}} anda.",
"emails.magicSession.securityPhrase":"Frasa keselamatan untuk emel ini adalah {{phrase}}. Anda boleh mempercayai emel ini jika frasa ini sepadan dengan frasa yang ditunjukkan semasa log masuk.",
"emails.magicSession.optionUrl":"Jika anda tidak dapat log masuk menggunakan butang di atas, sila kunjungi pautan berikut:",
"emails.otpSession.subject":"Log Masuk {{project}}",
"emails.otpSession.hello":"Halo,",
"emails.otpSession.description":"Masukkan kod pengesahan berikut apabila diminta untuk log masuk ke akaun {{project}} anda dengan selamat. Ia akan luput dalam masa 15 minit.",
"emails.otpSession.clientInfo":"Penandaan masuk ini telah diminta menggunakan {{agentClient}} pada {{agentDevice}} {{agentOs}}. Jika anda tidak meminta penandaan masuk, anda boleh mengabaikan emel ini dengan selamat.",
"emails.otpSession.securityPhrase":"Frasa keselamatan untuk email ini adalah {{phrase}}. Anda boleh mempercayai email ini jika frasa ini sepadan dengan frasa yang ditunjukkan semasa log masuk.",
"emails.recovery.body":"Følg denne lenken for å nullstille ditt {{project}} passord.",
"emails.recovery.footer":"Dersom du ikke ba om å nullstille passordet ditt, kan du se bort fra denne meldingen.",
"emails.recovery.thanks":"Takk",
@@ -228,5 +228,18 @@
"continents.eu":"Europa",
"continents.na":"Nord-Amerika",
"continents.oc":"Oseania",
"continents.sa":"Sør-Amerika"
}
"continents.sa":"Sør-Amerika",
"emails.magicSession.optionButton":"Klikk på knappen nedenfor for å logge inn på din {{project}}-konto på en sikker måte. Den vil utløpe om 1 time.",
"emails.magicSession.buttonText":"Logg inn på {{project}}",
"emails.magicSession.clientInfo":"Dette innloggingen ble forespurt ved hjelp av {{agentClient}} på {{agentDevice}} {{agentOs}}. Hvis du ikke ba om innloggingen, kan du trygt se bort fra denne e-posten.",
"sms.verification.body":"{{secret}} er din {{project}} bekreftelseskode.",
"emails.magicSession.securityPhrase":"Sikkerhetsfrasen for denne e-posten er {{phrase}}. Du kan stole på denne e-posten hvis denne frasen stemmer overens med frasen som ble vist under innlogging.",
"emails.magicSession.optionUrl":"Hvis du ikke klarer å logge inn ved å bruke knappen ovenfor, vennligst besøk følgende lenke:",
"emails.otpSession.description":"Skriv inn følgende verifiseringskode når du blir bedt om det for å logge på {{project}}-kontoen din på en sikker måte. Den vil utløpe om 15 minutter.",
"emails.otpSession.clientInfo":"Denne innloggingen ble forespurt ved hjelp av {{agentClient}} på {{agentDevice}} {{agentOs}}. Hvis du ikke ba om innloggingen, kan du trygt ignorere denne e-posten.",
"emails.otpSession.securityPhrase":"Sikkerhetsfrasen for denne e-posten er {{phrase}}. Du kan stole på denne e-posten hvis denne frasen stemmer overens med frasen som ble vist under pålogging.",
"emails.recovery.body":"{{project}}को पासवर्ड रिसेट गर्नको लागी यो लिंकमा जानुहोस।",
"emails.recovery.footer":"यदि तपाइँले आफ्नो पासवर्ड रिसेट गर्न सोध्नु भएको छैन भने तपाइँले यो सन्देश लाई बेवास्ता गर्न सक्नुहुन्छ।",
"emails.recovery.thanks":"धन्यवाद",
@@ -228,5 +228,18 @@
"continents.eu":"युरोप",
"continents.na":"उत्तर अमेरिका",
"continents.oc":"ओसिआनिया",
"continents.sa":"दक्षिण अमेरिका"
"continents.sa":"दक्षिण अमेरिका",
"emails.magicSession.optionButton":"कृपया तलको बटनमा क्लिक गरी आफ्नो {{project}} खातामा सुरक्षित रूपमा साइन इन गर्नुहोस्। यो १ घण्टामा समाप्त हुनेछ।",
"emails.magicSession.buttonText":"Connectez-vous à {{project}}",
"emails.magicSession.clientInfo":"यो साइन इन अनुरोध गरिएको थियो {{agentClient}} प्रयोग गरेर {{agentDevice}} {{agentOs}} मा। यदि तपाईंले साइन इन अनुरोध गर्नुभएको छैन भने, यो इमेललाई सुरक्षित रूपमा अनदेखा गर्न सक्नुहुन्छ।",
"sms.verification.body":"{{secret}} तपाईंको {{project}} प्रमाणीकरण कोड हो।",
"emails.magicSession.securityPhrase":"यस ईमेलको लागि सुरक्षा वाक्य {{phrase}} हो। यो वाक्य साइन इन गर्दा देखाइएको वाक्यसँग मेल खाए मात्र तपाईंले यस ईमेललाई विश्वास गर्न सक्नुहुन्छ।",
"emails.magicSession.optionUrl":"सँगै उल्लेख गरिएको बटन प्रयोग गरेर साइन इन गर्न असमर्थ हुनुहुन्छ भने, कृपया तलको लिंकमा भ्रमण गर्नुहोस्:",
"emails.otpSession.subject":"{{project}} लगइन",
"emails.otpSession.hello":"नमस्ते,",
"emails.otpSession.description":"तपाईंलाई तपाईंको {{project}} खातामा सुरक्षित रूपमा साइन इन गर्न को लागि प्रेरित गर्दा तलको प्रमाणीकरण कोड प्रविष्ट गर्नुहोस्। यो १५ मिनेटमा समाप्त हुनेछ।",
"emails.otpSession.clientInfo":"यो साइन इन {{agentClient}} प्रयोग गरेर {{agentDevice}} {{agentOs}} मा अनुरोध गरिएको थियो। यदि तपाईंले साइन इन अनुरोध गर्नुभएको छैन भने, तपाईंले यो इमेललाई ध्यान नदिई सुरक्षित रूपमा अनदेखा गर्न सक्नुहुन्छ।",
"emails.otpSession.securityPhrase":"यस ईमेलको लागि सुरक्षा वाक्य {{phrase}} हो। यदि यो वाक्य साइन इन गर्दा देखाइएको वाक्यसँग मेल खान्छ भने तपाईँले यो ईमेलमा विश्वास गर्न सक्नुहुन्छ।",
"emails.recovery.body":"Volg deze link om het wachtwoord van uw project {{project}} te wijzigen",
"emails.recovery.footer":"Als u geen aanvraag heeft gemaakt om uw wachtwoord te wijzigen, kan u deze mail negeren",
"emails.recovery.thanks":"Bedankt",
@@ -228,5 +228,18 @@
"continents.eu":"Europa",
"continents.na":"Noord Amerika",
"continents.oc":"Oceanië",
"continents.sa":"Zuid Amerika"
}
"continents.sa":"Zuid Amerika",
"emails.magicSession.optionButton":"Klik op de knop hieronder om veilig in te loggen op uw {{project}} account. Deze zal verlopen over 1 uur.",
"emails.magicSession.buttonText":"Meld u aan bij {{project}}",
"emails.magicSession.clientInfo":"Deze aanmelding is aangevraagd met {{agentClient}} op {{agentDevice}} {{agentOs}}. Als u de aanmelding niet hebt aangevraagd, kunt u deze e-mail gerust negeren.",
"sms.verification.body":"{{secret}} is uw {{project}} verificatiecode.",
"emails.magicSession.securityPhrase":"De beveiligingszin voor deze e-mail is {{phrase}}. U kunt deze e-mail vertrouwen als deze zin overeenkomt met de zin die getoond werd tijdens het aanmelden.",
"emails.magicSession.optionUrl":"Als u zich niet kunt aanmelden via de bovenstaande knop, bezoekt u dan de volgende link:",
"emails.otpSession.description":"Voer de volgende verificatiecode in wanneer je wordt gevraagd om veilig in te loggen op je {{project}} account. Deze verloopt over 15 minuten.",
"emails.otpSession.clientInfo":"Deze aanmelding is aangevraagd met {{agentClient}} op {{agentDevice}} {{agentOs}}. Als u de aanmelding niet heeft aangevraagd, kunt u deze e-mail veilig negeren.",
"emails.otpSession.securityPhrase":"De beveiligingszin voor deze e-mail is {{phrase}}. U kunt deze e-mail vertrouwen als deze zin overeenkomt met de zin die wordt getoond tijdens het inloggen.",
"emails.recovery.body":"Følg denne lenkja for å nullstilla ditt {{project}} passord.",
"emails.recovery.footer":"Om du ikkje ba om å nullstilla passordet ditt, kan du ignorera denne meldinga.",
"emails.recovery.thanks":"Takk",
@@ -228,5 +228,24 @@
"continents.eu":"Europa",
"continents.na":"Nord-Amerika",
"continents.oc":"Oseania",
"continents.sa":"Sør-Amerika"
}
"continents.sa":"Sør-Amerika",
"emails.magicSession.optionButton":"Klikk på knappen nedanfor for å trygt logge inn på {{project}}-kontoen din. Den vil utløpe om 1 time.",
"emails.magicSession.buttonText":"Logg inn på {{project}}",
"emails.magicSession.optionUrl":"Om du ikkje kan logge inn ved å bruke knappen over, ver venleg og besøk følgjande lenke:",
"emails.magicSession.clientInfo":"Denne innlogginga blei etterspurd ved hjelp av {{agentClient}} på {{agentDevice}} {{agentOs}}. Om du ikkje ba om innlogginga, kan du trygt ignorere denne e-posten.",
"emails.magicSession.securityPhrase":"Sikkerheitsfrasen for denne e-posten er {{phrase}}. Du kan stole på denne e-posten om frasen stemmer med frasen som vart vist under innlogging.",
"emails.otpSession.description":"Skriv inn denne verifikasjonskoden når du blir beden om å logge på {{project}}-kontoen din på ein sikker måte. Den vil gå ut på dato om 15 minuttar.",
"emails.otpSession.clientInfo":"Dette innloggingsforsøket ble forespurt ved hjelp av {{agentClient}} på {{agentDevice}} {{agentOs}}. Om du ikkje ba om innlogginga, kan du trygt ignorere denne e-posten.",
"emails.otpSession.securityPhrase":"Tryggingsfrasen for denne e-posten er {{phrase}}. Du kan stole på denne e-posten om frasen stemmer med frasen vist under pålogging.",
"emails.certificate.subject":"Sertifikatfeil for %s",
"emails.certificate.hello":"Hei",
"emails.certificate.body":"Sertifikatet for domenet ditt '{{domain}}' kunne ikkje opprettast. Dette er forsøk nr. {{attempt}}, og feilen blei forårsaka av: {{error}}",
"emails.certificate.footer":"Førre sertifikatet ditt vil vere gyldig i 30 dagar sidan den første feilen. Vi rår sterkt til at du undersøkjer denne saka, elles vil domenet ditt ende opp utan gyldig SSL-kommunikasjon.",
"emails.magicSession.optionButton":"Kliknite na gumb ispod kako biste se sigurno prijavili na svoj {{project}} račun. Istječe za 1 sat.",
"emails.magicSession.buttonText":"Inicia sesión en {{project}}",
"emails.magicSession.clientInfo":"Tento přihlašovací požadavek byl zaznamenán pomocí {{agentClient}} na {{agentDevice}} {{agentOs}}. Pokud jste o přihlášení nepožádali, můžete tento e-mail bezpečně ignorovat.",
"sms.verification.body":"{{secret}} est votre code de vérification pour {{project}}.",
"emails.magicSession.securityPhrase":"Frase de segurança para este e-mail é {{phrase}}. Você pode confiar neste e-mail se essa frase coincidir com a frase mostrada durante o acesso.",
"emails.magicSession.optionUrl":"אם אתם לא מצליחים להיכנס באמצעות הכפתור שמעל, אנא בקרו בקישור הבא:",
"emails.magicSession.optionButton":"Haz clic en el botón de abajo para iniciar sesión de manera segura en tu cuenta de {{project}}. Expirará en una hora.",
"emails.magicSession.buttonText":"Inicia sesión en {{project}}",
"emails.magicSession.clientInfo":"Este ingreso fue solicitado usando {{agentClient}} en {{agentDevice}} {{agentOs}}. Si no solicitaste el ingreso, puedes ignorar este correo electrónico sin problema.",
"sms.verification.body":"El {{secret}} es tu código de verificación de {{project}}.",
"emails.magicSession.securityPhrase":"La frase de seguridad para este correo electrónico es {{phrase}}. Puedes confiar en este correo si esta frase coincide con la frase que se muestra al iniciar sesión.",
"emails.magicSession.optionUrl":"Si no puedes iniciar sesión utilizando el botón superior, por favor visita el siguiente enlace:",
"countries.st":"Wyspy Świętego Tomasza i Książęca",
"countries.sr":"Surinam",
"countries.sk":"Słowacja",
"countries.si":"Słowenia",
"countries.se":"Szwecja",
"countries.sz":"Suazi",
"countries.sc":"Seszele",
"countries.sy":"Syria",
"countries.td":"Czad",
"countries.tg":"Togo",
"countries.th":"Tajlandia",
"countries.tj":"Tadżykistan",
"countries.tm":"Turkmenistan",
"countries.tl":"Timor Wschodni",
"countries.to":"Tonga",
"countries.tt":"Trynidad i Tobago",
"countries.tn":"Tunezja",
"countries.tr":"Turcja",
"countries.tv":"Tuvalu",
"countries.tz":"Tanzania",
"countries.ug":"Uganda",
"countries.ua":"Ukraina",
"countries.uy":"Urugwaj",
"countries.us":"Stany Zjednoczone",
"countries.uz":"Uzbekistan",
"countries.va":"Watykan",
"countries.vc":"Saint Vincent i Grenadyny",
"countries.ve":"Wenezuela",
"countries.vn":"Wietnam",
"countries.vu":"Vanuatu",
"countries.ws":"Samoa",
"countries.ye":"Jemen",
"countries.za":"Republika Południowej Afryki",
"countries.zm":"Zambia",
"countries.zw":"Zimbabwe",
"continents.af":"Afryka",
"continents.an":"Antarktyda",
"continents.as":"Azja",
"continents.eu":"Europa",
"continents.na":"Ameryka Północna",
"continents.oc":"Oceania",
"continents.sa":"Ameryka południowa",
"emails.magicSession.optionButton":"Kliknij przycisk poniżej, aby bezpiecznie zalogować się na swoje konto {{project}}. Link wygaśnie po 1 godzinie.",
"emails.magicSession.buttonText":"Zaloguj się do {{project}}",
"emails.magicSession.clientInfo":"To logowanie zostało zażądane przy użyciu {{agentClient}} na {{agentDevice}} {{agentOs}}. Jeśli nie zażądałeś logowania, możesz zignorować tę wiadomość e-mail.",
"sms.verification.body":"{{secret}} jest twoim kodem weryfikacyjnym do {{project}}.",
"emails.magicSession.securityPhrase":"Hasło bezpieczeństwa dla tego e-maila to {{phrase}}. Możesz ufać temu e-mailowi, jeśli hasło to jest zgodne z hasłem wyświetlonym podczas logowania.",
"emails.magicSession.optionUrl":"Jeśli nie możesz się zalogować, używając powyższego przycisku, odwiedź następujący link:",
"emails.otpSession.subject":"Login do {{project}}",
"emails.otpSession.hello":"Cześć,",
"emails.otpSession.description":"Wpisz poniższy kod weryfikacyjny, gdy zostaniesz o to poproszony, aby bezpiecznie zalogować się na swoje konto {{project}}. Kod wygaśnie za 15 minut.",
"emails.otpSession.clientInfo":"To logowanie zostało zażądane przy użyciu {{agentClient}} na {{agentDevice}} {{agentOs}}. Jeśli nie zażądałeś logowania, możesz bezpiecznie zignorować tę wiadomość e-mail.",
"emails.otpSession.securityPhrase":"Hasłem zabezpieczającym dla tego e-maila jest {{phrase}}. Możesz zaufać temu e-mailowi, jeśli hasło zgadza się z hasłem wyświetlonym podczas logowania.",
"emails.recovery.body":"Clique neste link para redefinir sua senha do {{project}}.",
"emails.recovery.footer":"Se você não solicitou a redefinição da sua senha, você pode ignorar essa mensagem.",
"emails.recovery.thanks":"Muito obrigado",
@@ -228,5 +228,18 @@
"continents.eu":"Europa",
"continents.na":"América do Norte",
"continents.oc":"Oceania",
"continents.sa":"América do Sul"
"continents.sa":"América do Sul",
"emails.magicSession.optionButton":"Clique no botão abaixo para acessar sua conta {{project}} com segurança. Ele expirará em 1 hora.",
"emails.magicSession.buttonText":"Faça login no {{project}}",
"emails.magicSession.clientInfo":"Este acesso foi solicitado usando {{agentClient}} em {{agentDevice}} {{agentOs}}. Se você não solicitou o acesso, pode ignorar este e-mail com segurança.",
"sms.verification.body":"{{secret}} é o seu código de verificação do {{project}}.",
"emails.magicSession.securityPhrase":"A frase de segurança para este e-mail é {{phrase}}. Você pode confiar neste e-mail se essa frase corresponder à frase mostrada durante o acesso.",
"emails.magicSession.optionUrl":"Se você não consegue fazer login usando o botão acima, por favor visite o seguinte link:",
"emails.otpSession.subject":"Login do {{project}}",
"emails.otpSession.hello":"Olá,",
"emails.otpSession.description":"Insira o seguinte código de verificação quando solicitado para acessar de forma segura a sua conta {{project}}. Ele expirará em 15 minutos.",
"emails.otpSession.clientInfo":"Este acesso foi solicitado usando {{agentClient}} em {{agentDevice}} {{agentOs}}. Se você não solicitou o acesso, pode ignorar este e-mail com segurança.",
"emails.otpSession.securityPhrase":"A frase de segurança para este e-mail é {{phrase}}. Você pode confiar neste e-mail se esta frase corresponder à frase mostrada durante o login.",
"emails.recovery.body":"tilize este link para redefinir a palavra-passe do seu projecto {{project}}",
"emails.recovery.hello":"Olá {{user}}",
"emails.recovery.body":"Utilize este link para redefinir a palavra-passe do seu projecto {{project}}",
"emails.recovery.footer":"Se não pediu para redefinir a sua palavra-passe, pode ignorar esta mensagem.",
"emails.recovery.thanks":"Obrigado",
"emails.recovery.signature":"Equipa {{project}}",
@@ -228,5 +228,18 @@
"continents.eu":"Europa",
"continents.na":"América do Norte",
"continents.oc":"Oceânia",
"continents.sa":"América do Sul"
}
"continents.sa":"América do Sul",
"emails.magicSession.optionButton":"Clique no botão abaixo para iniciar sessão na sua conta {{project}} de forma segura. Irá expirar em 1 hora.",
"emails.magicSession.buttonText":"Inicie sessão no {{project}}",
"emails.magicSession.clientInfo":"Este início de sessão foi solicitado usando o {{agentClient}} no {{agentDevice}} {{agentOs}}. Se não foi você quem solicitou o início de sessão, pode ignorar este e-mail com segurança.",
"sms.verification.body":"{{secret}} é o seu código de verificação do {{project}}.",
"emails.magicSession.securityPhrase":"A frase de segurança deste e-mail é {{phrase}}. Pode confiar neste e-mail se esta frase coincidir com a frase mostrada durante o início de sessão.",
"emails.magicSession.optionUrl":"Se não conseguir iniciar sessão utilizando o botão acima, por favor visite o seguinte link:",
"emails.otpSession.subject":"Login do {{project}}",
"emails.otpSession.hello":"Olá,",
"emails.otpSession.description":"Digite o seguinte código de verificação quando solicitado para acessar de forma segura a sua conta {{project}}. Ele irá expirar em 15 minutos.",
"emails.otpSession.clientInfo":"Este pedido de entrada foi feito usando {{agentClient}} em {{agentDevice}} {{agentOs}}. Se você não solicitou o acesso, pode ignorar este e-mail com segurança.",
"emails.otpSession.securityPhrase":"A frase de segurança para este email é {{phrase}}. Você pode confiar neste email se essa frase corresponder à frase mostrada durante o login.",
"emails.recovery.body":"Click aici pentru a reseta parola pentru {{project}}",
"emails.recovery.footer":"Dacă nu ai cerut să îți schimbi parola, ignoră acest mesaj.",
"emails.recovery.thanks":"Mulțumim",
@@ -228,5 +228,18 @@
"continents.eu":"Europa",
"continents.na":"America de Nord",
"continents.oc":"Oceania",
"continents.sa":"America de Sud"
"continents.sa":"America de Sud",
"emails.magicSession.optionButton":"Faceți clic pe butonul de mai jos pentru a vă autentifica în siguranță în contul dvs. {{project}}. Va expira în 1 oră.",
"emails.magicSession.buttonText":"Conectați-vă la {{project}}",
"emails.magicSession.clientInfo":"Această autentificare a fost solicitată folosind {{agentClient}} pe {{agentDevice}} {{agentOs}}. Dacă nu ați solicitat autentificarea, puteți ignora în siguranță acest email.",
"sms.verification.body":"{{secret}} este codul de verificare pentru {{project}}.",
"emails.magicSession.securityPhrase":"Frază de securitate pentru acest e-mail este {{phrase}}. Puteți avea încredere în acest e-mail dacă fraza se potrivește cu fraza afișată în timpul autentificării.",
"emails.magicSession.optionUrl":"Dacă nu puteți să vă autentificați folosind butonul de mai sus, vă rugăm să vizitați următorul link:",
"emails.otpSession.description":"Introduceți următorul cod de verificare atunci când vi se solicită pentru a vă autentifica în siguranță la contul dvs. {{project}}. Acesta va expira în 15 minute.",
"emails.otpSession.clientInfo":"Această solicitare de autentificare a fost efectuată folosind {{agentClient}} pe {{agentDevice}} {{agentOs}}. Dacă nu ați cerut autentificarea, puteți ignora în siguranță acest email.",
"emails.otpSession.securityPhrase":"Fraza de securitate pentru acest e-mail este {{phrase}}. Puteți avea încredere în acest e-mail dacă fraza se potrivește cu cea afișată în timpul autentificării.",
"emails.recovery.body":"Перейдите по этой ссылке для того чтобы сбросить свой пароль для проекта {{project}}",
"emails.recovery.footer":"Если вы не запрашивали сброс пароля, проигнорируйте это сообщение.",
"emails.recovery.thanks":"Спасибо",
@@ -228,5 +228,18 @@
"continents.eu":"Европа",
"continents.na":"Северная Америка",
"continents.oc":"Океания",
"continents.sa":"Южная Америка"
}
"continents.sa":"Южная Америка",
"emails.magicSession.optionButton":"Нажмите на кнопку ниже, чтобы безопасно войти в свою учетную запись {{project}}. Срок действия истечет через 1 час.",
"emails.magicSession.buttonText":"Войти в {{project}}",
"emails.magicSession.clientInfo":"Этот вход был запрошен с использованием {{agentClient}} на {{agentDevice}} {{agentOs}}. Если вы не запрашивали вход, можете спокойно игнорировать это письмо.",
"sms.verification.body":"{{secret}} – это ваш код подтверждения для {{project}}.",
"emails.magicSession.securityPhrase":"Фраза безопасности для этого электронного письма - {{phrase}}. Вы можете доверять этому письму, если эта фраза совпадает с фразой, отображаемой при входе в систему.",
"emails.magicSession.optionUrl":"Если вы не можете войти, используя кнопку выше, пожалуйста, посетите следующую ссылку:",
"emails.otpSession.subject":"Вход в систему {{project}}",
"emails.otpSession.hello":"Здравствуйте,",
"emails.otpSession.description":"Введите следующий код подтверждения, когда вас попросят, чтобы безопасно войти в свой аккаунт {{project}}. Он истечет через 15 минут.",
"emails.otpSession.clientInfo":"Этот вход был запрошен с использованием {{agentClient}} на {{agentDevice}} {{agentOs}}. Если вы не запрашивали вход, можете спокойно игнорировать это письмо.",
"emails.otpSession.securityPhrase":"Фраза безопасности для этого письма {{phrase}}. Вы можете доверять этому письму, если эта фраза совпадает с фразой, показанной во время входа в систему.",
"emails.magicSession.optionButton":"اضغط على الزر أدناه لتسجيل الدخول بأمان إلى حساب {{project}} الخاص بك. سينتهي في غضون ساعة واحدة.",
"emails.magicSession.buttonText":"تسجيل الدخول إلى {{project}}",
"emails.magicSession.clientInfo":"هذا الطلب لتسجيل الدخول قد تم باستخدام {{agentClient}} على {{agentDevice}} {{agentOs}}. إذا لم تطلب تسجيل الدخول، يمكنك تجاهل هذا البريد الإلكتروني بأمان.",
"sms.verification.body":"سري هو رمز التحقق الخاص بمشروعك.",
"emails.magicSession.securityPhrase":"العبارة الأمنية لهذا البريد الإلكتروني هي {{phrase}}. يمكنك الوثوق بهذا البريد الإلكتروني إذا كانت هذه العبارة متطابقة مع العبارة المعروضة أثناء تسجيل الدخول.",
"emails.magicSession.optionUrl":"إذا لم تتمكن من تسجيل الدخول باستخدام الزر أعلاه، يرجى زيارة الرابط التالي:",
"emails.magicSession.clientInfo":"هي سائن ان درخواست ورتو {{agentClient}} استعمال ڪري ٿو {{agentDevice}} {{agentOs}}. جيڪڏهن توهان سائن ان جي درخواست ڪئي نه ورتي، ته توهان هن اي ميل کي محفوظ طور تي نظر انداز ڪري سگهو ٿا.",
"emails.magicSession.securityPhrase":"اس ای میل جو سیکيورٽي جملو {{phrase}} آهي. جيڪڏهن هن جملو توهان جي سائن ان وقتي ڏيکاري واري جملي سان ميل آهي ته توهان اس ای میل تي اعتماد ڪري سگھو ٿا.",
"emails.otpSession.subject":"پروجيڪٽ جي لاگ ان",
"emails.otpSession.hello":"ہيلو،",
"emails.otpSession.description":"جڏهن توهان کي محفوظ طريقي سان اپني {{project}} اڪائونٽ ۾ سائن ان ڪرڻ لاءِ ڪہي ويندي، ته هيٺيان دنل ويريفڪيشن ڪوڊ ڏيو. هي 15 منٽن ۾ ختم ٿي ويندي.",
"emails.otpSession.clientInfo":"هي سائن ان توهان جو درخواست گهريو ويو آهي {{agentClient}} جي واپار ۾ {{agentDevice}} {{agentOs}} تي. جيڪڏهن توهان سائن ان جي درخواست ڪئي نه آهي، ته توهان هن ايميل کي نظر انداز ڪري سگهو ٿا.",
"emails.otpSession.securityPhrase":"هن ای میل لاءِ سیکيورٽي جملو {{phrase}} آھي. توهان هن ای میل تي اعتماد ڪري سگهو ٿا جيڪڏهن هن جملو لاڳو ٿيندڙ جملي سان ميل کاندي.",
"emails.otpSession.thanks":"مهرباني",
"emails.otpSession.signature":"پروجيڪٽ جي ٽيم",
"emails.certificate.subject":"%s لاءِ سند جو ناکامی",
"emails.certificate.hello":"هيلو",
"emails.certificate.body":"توهان جي ڊومين '{{domain}}' لاءِ سرٽيفڪيٽ ٺاهڻ جو نه ٿي سگهيو. هي ڪوشش نمبر {{attempt}} آهي، ۽ ناڪامي جو سبب ٿيو: {{error}}",
"emails.certificate.footer":"توهان جو اڳيون سرٽيفڪيٽ اولهو فئيلر جي ݙينهن کان ٣٠ ݙينهن لاءِ ماني ويندو. اسان ان جي چھان بني جي بھرپور خواهش ڪنداسين، نہ ته توهان جو ݙومين بغير ڪوري SSL ڪميونڪيشن آڻي ويندي.",
"emails.certificate.thanks":"شُكريا",
"emails.certificate.signature":"ٽيم",
"sms.verification.body":"{{secret}} توهان جي {{project}} تصديقي ڪوڊ آهي."
"emails.magicSession.optionButton":"Kliknite spodnji gumb, da varno vstopite v svoj {{project}} račun. Poteče čez 1 uro.",
"emails.magicSession.buttonText":"Prijavite se v {{project}}",
"emails.magicSession.clientInfo":"Ta prijava je bila zahtevana z uporabo {{agentClient}} na {{agentDevice}} {{agentOs}}. Če te prijave niste zahtevali, lahko to e-pošto varno prezrete.",
"sms.verification.body":"{{secret}} je vaša {{project}} koda za preverjanje.",
"emails.magicSession.securityPhrase":"Zaščitna fraza za ta e-poštni naslov je {{phrase}}. Temu e-poštnemu naslovu lahko zaupate, če se ta fraza ujema s frazo, prikazano med prijavo.",
"emails.magicSession.optionUrl":"Če se z zgornjim gumbom ne morete prijaviti, obiščite naslednjo povezavo:",
"emails.recovery.body":"Použi tento link pre obnovenie svojho {{project}} hesla.",
"emails.recovery.footer":"Ak si nepožiadal o obnovu svojho hesla, túto správu môžeš ignorovať.",
"emails.recovery.thanks":"Ďakujeme",
@@ -228,5 +228,18 @@
"continents.eu":"Európa",
"continents.na":"Severná Amerika",
"continents.oc":"Oceánia",
"continents.sa":"Južná Amerika"
}
"continents.sa":"Južná Amerika",
"emails.magicSession.optionButton":"Kliknite na tlačidlo nižšie, aby ste sa bezpečne prihlásili do vášho účtu {{project}}. Platnosť vyprší za 1 hodinu.",
"emails.magicSession.buttonText":"Prihláste sa do {{project}}",
"emails.magicSession.clientInfo":"Toto prihlásenie bolo požadované pomocou {{agentClient}} na {{agentDevice}} {{agentOs}}. Ak ste si nepožiadali o prihlásenie, tento e-mail môžete bezpečne ignorovať.",
"sms.verification.body":"{{secret}} je váš overovací kód pre {{project}}.",
"emails.magicSession.securityPhrase":"Bezpečnostná fráza pre tento email je {{phrase}}. Tomuto emailu môžete dôverovať, ak sa táto fráza zhoduje s frázou zobrazenou počas prihlásenia.",
"emails.magicSession.optionUrl":"Ak sa vám nedarí prihlásiť sa pomocou vyššie uvedeného tlačidla, prosím navštívte nasledujúci odkaz:",
"emails.otpSession.subject":"Prihlásenie do projektu {{project}}",
"emails.otpSession.hello":"Dobrý deň,",
"emails.otpSession.description":"Zadajte nasledovný overovací kód, keď budete vyzvaní, aby ste sa bezpečne prihlásili na svoj účet {{project}}. Platnosť kódu vyprší za 15 minút.",
"emails.otpSession.clientInfo":"Toto prihlásenie bolo vyžiadané pomocou {{agentClient}} na {{agentDevice}} {{agentOs}}. Ak ste prihlásenie nevyžiadali, tento e-mail môžete bezpečne ignorovať.",
"emails.otpSession.securityPhrase":"Bezpečnostná fráza pre tento e-mail je {{phrase}}. Tento e-mail môžete dôverovať, ak táto fráza zodpovedá fráze zobrazenej počas prihlasovania.",
"emails.magicSession.optionButton":"Kliknite spodnji gumb, da se varno prijavite v svoj {{project}} račun. Poteče čez 1 uro.",
"emails.magicSession.buttonText":"Vpišite se v {{project}}",
"emails.magicSession.clientInfo":"Ta prijava je bila zahtevana z uporabo {{agentClient}} na {{agentDevice}} {{agentOs}}. Če te prijave niste zahtevali, lahko to e-pošto varno prezrete.",
"sms.verification.body":"{{secret}} je vaša koda za preverjanje {{project}}.",
"emails.magicSession.securityPhrase":"Varnostni stavek za to e-pošto je {{phrase}}. Temu e-poštu lahko zaupate, če se ta stavek ujema s stavkom, prikazanim ob prijavi.",
"emails.magicSession.optionUrl":"Če se ne morete prijaviti s pomočjo zgornjega gumba, prosimo obiščite naslednjo povezavo:",
"emails.otpSession.subject":"Prijavite se v {{project}}",
"emails.otpSession.hello":"Živijo,",
"emails.otpSession.description":"Vnesite naslednjo preverovalno kodo, ko boste pozvani, da se varno prijavite v svoj račun {{project}}. Koda bo potekla čez 15 minut.",
"emails.otpSession.clientInfo":"Za to prijavo je bila uporabljena {{agentClient}} na {{agentDevice}} {{agentOs}}. Če niste zahtevali prijave, lahko to e-pošto varno prezrete.",
"emails.otpSession.securityPhrase":"Varnostni stavek za to e-pošto je {{phrase}}. Temu e-sporočilu lahko zaupate, če se ta stavek ujema s stavkom, ki je prikazan ob prijavi.",
"emails.otpSession.thanks":"Hvala,",
"emails.otpSession.signature":"ekipa {{project}}"
}
Some files were not shown because too many files have changed in this diff
Show More
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.