* feat: add oidc client create command
* refactor: use own utility for creating random strings (more flexible
than stdlib)
* feat: validate client name to avoid config errors
* refactor: limit to only alphanumeric characters and hyphens
* refactor: remove the need of the logger in the create oidc client cmd
* feat: auto generate example env file
* refactor: simplify build paths func and better slice handling
* chore: forgot to stage everything
* chore: review comments
* refactor: remove square brackets because they mess up the syntax
highlighting
* refactor: use lowercase name to mark dynamic values
* refactor(continue-page): simplify useEffect to avoid unnecessary dependencies
* fix: use the href of the url object instead of the object iself as the
dep in the callback
---------
Co-authored-by: Stavros <steveiliop56@gmail.com>
* Refactor logging to use centralized logger utility
- Removed direct usage of zerolog in multiple files and replaced it with a centralized logging utility in the `utils` package.
- Introduced `Loggers` struct to manage different loggers (Audit, HTTP, App) with configurable levels and outputs.
- Updated all relevant files to utilize the new logging structure, ensuring consistent logging practices across the application.
- Enhanced error handling and logging messages for better traceability and debugging.
* refactor: update logging implementation to use new logger structure
* Refactor logging to use tlog package
- Replaced instances of utils logging with tlog in various controllers, services, and middleware.
- Introduced audit logging for login success, login failure, and logout events.
- Created tlog package with structured logging capabilities using zerolog.
- Added tests for the new tlog logger functionality.
* refactor: update logging configuration in environment files
* fix: adding coderabbit suggestions
* fix: ensure correct audit caller
* fix: include reason in audit login failure logs
* feat: allow any HTTP method for /api/auth/envoy and restrict methods for non-envoy proxies
* feat: add Allow header for invalid methods in proxyHandler
* feat: add session max lifetime and fix refresh logic
* fix: set default value for created_at column and improve session expiration logic
* fix: correct ldapService reference in authService initialization
---------
Co-authored-by: Stavros <steveiliop56@gmail.com>
* feat: allow any HTTP method for /api/auth/envoy and restrict methods for non-envoy proxies
* feat: add Allow header for invalid methods in proxyHandler
* feat: add session max lifetime and fix refresh logic
* fix: set default value for created_at column and improve session expiration logic
---------
Co-authored-by: Stavros <steveiliop56@gmail.com>
* ldap: Add mTLS authentication support to LDAP backend
* ldap: Reuse BindService() for initial bind attempt
* ldap: Make LdapService.config private
Now that we have ldap.BindService(), we don't need to access any
members of LdapService.config externally.
* ldap: Add TODO note about STARTTLS/SASL authentication
* ldap: Add TODO note about mTLS and extra CA certificates
* chore: fix typo
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
---------
Co-authored-by: Stavros <steveiliop56@gmail.com>
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
* feat: allow any HTTP method for /api/auth/envoy and restrict methods for non-envoy proxies
* feat: add Allow header for invalid methods in proxyHandler
* wip
* feat: add paerser as submodule and apply patch for nested maps
* refactor: update release workflows to include submodule and patches
* chore: update contributing instructions
* chore: add yaml config ref
* feat: add initial implementation of a traefik like cli
* refactor: remove dependency on traefik
* chore: update example env
* refactor: update build
* chore: remove unused code
* fix: fix translations not loading
* feat: add experimental config file support
* chore: mod tidy
* fix: review comments
* refactor: move tinyauth to separate package
* chore: add quotes to all env variables
* chore: resolve go mod and sum conflicts
* chore: go mod tidy
* fix: review comments
Previously IsRedirectSafe rejected redirects to the exact cookie domain
when AppURL had multiple subdomain levels, because it stripped the first
label twice.
* feat: add header decoder
* feat: allow for dash substitute over slash for environments like kubernetes
* feat: use decoded headers in proxy controller
* refactor: simplify decode header to node function
* refactor: use stdlib prefix check in header decoder
* fix: lowercase key and filter before comparing
* wip: add middlewares
* refactor: use context fom middleware in handlers
* refactor: use controller approach in handlers
* refactor: move oauth providers into services (non-working)
* feat: create oauth broker service
* refactor: use a boostrap service to bootstrap the app
* refactor: split utils into smaller files
* refactor: use more clear name for frontend assets
* feat: allow customizability of resources dir
* fix: fix typo in ui middleware
* fix: validate resource file paths in ui middleware
* refactor: move resource handling to a controller
* feat: add some logging
* fix: configure middlewares before groups
* fix: use correct api path in login mutation
* fix: coderabbit suggestions
* fix: further coderabbit suggestions
Any router name works as long as it is consistently applied. The `nginx` name for the `whoami` container route can be a bit confusing for new users. Aligning the container and route name is similar to how Traefik generates dynamic routes, makes it easier to read the compose file and logs, and can generally help reduce bugs when extending the example.
Although you will not need the requirements in your machine since the development will happen in docker, I still recommend to install them because this way you will not have import errors. To install the go requirements run:
The project uses Git submodules for some dependencies, so you need to initialize them with:
```sh
```sh
go mod tidy
git submodule init
git submodule update
```
## Install requirements
Although you will not need the requirements in your machine since the development will happen in Docker, I still recommend to install them because this way you will not have import errors. To install the Go requirements run:
```sh
go mod download
```
```
You also need to download the frontend dependencies, this can be done like so:
You also need to download the frontend dependencies, this can be done like so:
@@ -33,13 +42,21 @@ cd frontend/
bun install
bun install
```
```
## Apply patches
Some of the dependencies need to be patched in order to work correctly with the project, you can apply the patches by running:
In order to configure the app you need to create an environment file, this can be done by copying the `.env.example` file to `.env` and modifying the environment variables to suit your needs.
In order to configure the app you need to create an environment file, this can be done by copying the `.env.example` file to `.env` and modifying the environment variables to suit your needs.
## Developing
## Developing
I have designed the development workflow to be entirely in docker, this is because it will directly work with traefik and you will not need to do any building in your host machine. The recommended development setup is to have a subdomain pointing to your machine like this:
I have designed the development workflow to be entirely in Docker, this is because it will directly work with Traefik and you will not need to do any building in your host machine. The recommended development setup is to have a subdomain pointing to your machine like this:
```
```
*.dev.example.com -> 127.0.0.1
*.dev.example.com -> 127.0.0.1
@@ -49,7 +66,7 @@ dev.example.com -> 127.0.0.1
> [!TIP]
> [!TIP]
> You can use [sslip.io](https://sslip.io) as a domain if you don't have one to develop with.
> You can use [sslip.io](https://sslip.io) as a domain if you don't have one to develop with.
Then you can just make sure the domains are correct in the development docker compose file and run:
Then you can just make sure the domains are correct in the development Docker compose file and run:
```sh
```sh
docker compose -f docker-compose.dev.yml up --build
docker compose -f docker-compose.dev.yml up --build
<p>The easiest way to secure your apps with a login screen.</p>
<p>The simplest way to protect your apps with a login screen.</p>
</div>
</div>
<div align="center">
<div align="center">
@@ -14,7 +14,7 @@
<br />
<br />
Tinyauth is a simple authentication middleware that adds a simple login screen or OAuth with Google, Github and any provider to all of your docker apps. It supports all the popular proxies like Traefik, Nginx and Caddy.
Tinyauth is a simple authentication middleware that adds a simple login screen or OAuth with Google, Github or any other provider to all of your apps. It supports all the popular proxies like Traefik, Nginx and Caddy.


@@ -23,7 +23,7 @@ Tinyauth is a simple authentication middleware that adds a simple login screen o
## Getting Started
## Getting Started
You can easily get started with Tinyauth by following the guide in the [documentation](https://tinyauth.app/docs/getting-started.html). There is also an available [docker compose](./docker-compose.example.yml) file that has Traefik, Whoami and Tinyauth to demonstrate its capabilities.
You can easily get started with Tinyauth by following the guide in the [documentation](https://tinyauth.app/docs/getting-started). There is also an available [docker compose](./docker-compose.example.yml) file that has Traefik, Whoami and Tinyauth to demonstrate its capabilities.
## Demo
## Demo
@@ -33,6 +33,8 @@ If you are still not sure if Tinyauth suits your needs you can try out the [demo
You can find documentation and guides on all of the available configuration of Tinyauth in the [website](https://tinyauth.app).
You can find documentation and guides on all of the available configuration of Tinyauth in the [website](https://tinyauth.app).
If you wish to contribute to the documentation head over to the [repository](https://github.com/steveiliop56/tinyauth-docs).
## Discord
## Discord
Tinyauth has a [discord](https://discord.gg/eHzVaCzRRd) server. Feel free to hop in to chat about self-hosting, homelabs and of course Tinyauth. See you there!
Tinyauth has a [discord](https://discord.gg/eHzVaCzRRd) server. Feel free to hop in to chat about self-hosting, homelabs and of course Tinyauth. See you there!
@@ -53,7 +55,7 @@ Tinyauth is licensed under the GNU General Public License v3.0. TL;DR — You ma
A big thank you to the following people for providing me with more coffee:
A big thank you to the following people for providing me with more coffee:
Short:"The simplest way to protect your apps with a login screen.",
Long:`Tinyauth is a simple authentication middleware that adds simple username/password login or OAuth with Google, Github and any generic OAuth provider to all of your docker apps.`,
Run:func(cmd*cobra.Command,args[]string){
varconfigtypes.Config
err:=viper.Unmarshal(&config)
HandleError(err,"Failed to parse config")
// Check if secrets have a file associated with them
rootCmd.Flags().Bool("generic-skip-ssl",false,"Skip SSL verification for the generic OAuth provider.")
rootCmd.Flags().Bool("disable-continue",false,"Disable continue screen and redirect to app directly.")
rootCmd.Flags().String("oauth-whitelist","","Comma separated list of email addresses to whitelist when using OAuth.")
rootCmd.Flags().String("oauth-auto-redirect","none","Auto redirect to the specified OAuth provider if configured. (available providers: github, google, generic)")
rootCmd.Flags().Int("session-expiry",86400,"Session (cookie) expiration time in seconds.")
rootCmd.Flags().Int("login-timeout",300,"Login timeout in seconds after max retries reached (0 to disable).")
rootCmd.Flags().Int("login-max-retries",5,"Maximum login attempts before timeout (0 to disable).")
rootCmd.Flags().Int("log-level",1,"Log level.")
rootCmd.Flags().String("app-title","Tinyauth","Title of the app.")
rootCmd.Flags().String("forgot-password-message","","Message to show on the forgot password page.")
rootCmd.Flags().String("background-image","/background.jpg","Background image URL for the login page.")
rootCmd.Flags().String("ldap-address","","LDAP server address (e.g. ldap://localhost:389).")
fmt.Fprintln(&builder,"You can use either option to configure your OIDC client. Make sure to save these credentials as there is no way to regenerate them.")
tlog.App.Info().Str("user",fmt.Sprintf("%s:%s:%s",user.Username,user.Password,user.TotpSecret)).Msg("Add the totp secret to your authenticator app then use the verify command to ensure everything is working correctly.")
log.Info().Str("user",fmt.Sprintf("%s:%s:%s",user.Username,user.Password,user.TotpSecret)).Msg("Add the totp secret to your authenticator app then use the verify command to ensure everything is working correctly.")
},
}
funcinit(){
GenerateCmd.Flags().BoolVarP(&interactive,"interactive","i",false,"Run in interactive mode")
GenerateCmd.Flags().StringVar(&iUser,"user","","Your current username:hash")
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"errorTitle":"An error occurred",
"errorTitle":"An error occurred",
"errorSubtitleInfo":"The following error occurred while processing your request:",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"fieldRequired":"This field is required",
"fieldRequired":"This field is required",
@@ -58,5 +59,23 @@
"domainWarningTitle":"Invalid Domain",
"domainWarningTitle":"Invalid Domain",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"ignoreTitle":"Ignore",
"ignoreTitle":"Ignore",
"goToCorrectDomainTitle":"Go to correct domain"
"goToCorrectDomainTitle":"Go to correct domain",
"authorizeTitle":"Authorize",
"authorizeCardTitle":"Continue to {{app}}?",
"authorizeSubtitle":"Would you like to continue to this app? Please carefully review the permissions requested by the app.",
"authorizeSubtitleOAuth":"Would you like to continue to this app?",
"authorizeLoadingTitle":"Loading...",
"authorizeLoadingSubtitle":"Please wait while we load the client information.",
"authorizeSuccessTitle":"Authorized",
"authorizeSuccessSubtitle":"You will be redirected to the app in a few seconds.",
"authorizeErrorClientInfo":"An error occurred while loading the client information. Please try again later.",
"authorizeErrorMissingParams":"The following parameters are missing: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Allows the app to access your email address.",
"profileScopeName":"Profile",
"profileScopeDescription":"Allows the app to access your profile information.",
"groupsScopeName":"Groups",
"groupsScopeDescription":"Allows the app to access your group information."
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"errorTitle":"حدث خطأ",
"errorTitle":"حدث خطأ",
"errorSubtitleInfo":"The following error occurred while processing your request:",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"fieldRequired":"This field is required",
"fieldRequired":"This field is required",
"invalidInput":"Invalid input",
"invalidInput":"Invalid input",
"domainWarningTitle":"Invalid Domain",
"domainWarningTitle":"Invalid Domain",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"ignoreTitle":"Ignore",
"ignoreTitle":"تجاهل",
"goToCorrectDomainTitle":"Go to correct domain"
"goToCorrectDomainTitle":"Go to correct domain",
"authorizeTitle":"Authorize",
"authorizeCardTitle":"Continue to {{app}}?",
"authorizeSubtitle":"Would you like to continue to this app? Please carefully review the permissions requested by the app.",
"authorizeSubtitleOAuth":"Would you like to continue to this app?",
"authorizeLoadingTitle":"Loading...",
"authorizeLoadingSubtitle":"Please wait while we load the client information.",
"authorizeSuccessTitle":"Authorized",
"authorizeSuccessSubtitle":"You will be redirected to the app in a few seconds.",
"authorizeErrorClientInfo":"An error occurred while loading the client information. Please try again later.",
"authorizeErrorMissingParams":"The following parameters are missing: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Allows the app to access your email address.",
"profileScopeName":"Profile",
"profileScopeDescription":"Allows the app to access your profile information.",
"groupsScopeName":"Groups",
"groupsScopeDescription":"Allows the app to access your group information."
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"errorTitle":"An error occurred",
"errorTitle":"An error occurred",
"errorSubtitleInfo":"The following error occurred while processing your request:",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"fieldRequired":"This field is required",
"fieldRequired":"This field is required",
@@ -58,5 +59,23 @@
"domainWarningTitle":"Invalid Domain",
"domainWarningTitle":"Invalid Domain",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"ignoreTitle":"Ignore",
"ignoreTitle":"Ignore",
"goToCorrectDomainTitle":"Go to correct domain"
"goToCorrectDomainTitle":"Go to correct domain",
"authorizeTitle":"Authorize",
"authorizeCardTitle":"Continue to {{app}}?",
"authorizeSubtitle":"Would you like to continue to this app? Please carefully review the permissions requested by the app.",
"authorizeSubtitleOAuth":"Would you like to continue to this app?",
"authorizeLoadingTitle":"Loading...",
"authorizeLoadingSubtitle":"Please wait while we load the client information.",
"authorizeSuccessTitle":"Authorized",
"authorizeSuccessSubtitle":"You will be redirected to the app in a few seconds.",
"authorizeErrorClientInfo":"An error occurred while loading the client information. Please try again later.",
"authorizeErrorMissingParams":"The following parameters are missing: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Allows the app to access your email address.",
"profileScopeName":"Profile",
"profileScopeDescription":"Allows the app to access your profile information.",
"groupsScopeName":"Groups",
"groupsScopeDescription":"Allows the app to access your group information."
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"ignoreTitle":"Ignore",
"ignoreTitle":"Ignore",
"goToCorrectDomainTitle":"Go to correct domain"
"goToCorrectDomainTitle":"Go to correct domain",
"authorizeTitle":"Authorize",
"authorizeCardTitle":"Continue to {{app}}?",
"authorizeSubtitle":"Would you like to continue to this app? Please carefully review the permissions requested by the app.",
"authorizeSubtitleOAuth":"Would you like to continue to this app?",
"authorizeLoadingTitle":"Loading...",
"authorizeLoadingSubtitle":"Please wait while we load the client information.",
"authorizeSuccessTitle":"Authorized",
"authorizeSuccessSubtitle":"You will be redirected to the app in a few seconds.",
"authorizeErrorClientInfo":"An error occurred while loading the client information. Please try again later.",
"authorizeErrorMissingParams":"The following parameters are missing: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Allows the app to access your email address.",
"profileScopeName":"Profile",
"profileScopeDescription":"Allows the app to access your profile information.",
"groupsScopeName":"Groups",
"groupsScopeDescription":"Allows the app to access your group information."
"failedToFetchProvidersTitle":"Kunne ikke indlæse godkendelsesudbydere. Tjek venligst din konfiguration.",
"failedToFetchProvidersTitle":"Kunne ikke indlæse godkendelsesudbydere. Tjek venligst din konfiguration.",
"errorTitle":"Der opstod en fejl",
"errorTitle":"Der opstod en fejl",
"errorSubtitleInfo":"The following error occurred while processing your request:",
"errorSubtitle":"Der opstod en fejl under forsøget på at udføre denne handling. Tjek venligst konsollen for mere information.",
"errorSubtitle":"Der opstod en fejl under forsøget på at udføre denne handling. Tjek venligst konsollen for mere information.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"fieldRequired":"This field is required",
"fieldRequired":"This field is required",
@@ -58,5 +59,23 @@
"domainWarningTitle":"Invalid Domain",
"domainWarningTitle":"Invalid Domain",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"ignoreTitle":"Ignore",
"ignoreTitle":"Ignore",
"goToCorrectDomainTitle":"Go to correct domain"
"goToCorrectDomainTitle":"Go to correct domain",
"authorizeTitle":"Authorize",
"authorizeCardTitle":"Continue to {{app}}?",
"authorizeSubtitle":"Would you like to continue to this app? Please carefully review the permissions requested by the app.",
"authorizeSubtitleOAuth":"Would you like to continue to this app?",
"authorizeLoadingTitle":"Loading...",
"authorizeLoadingSubtitle":"Please wait while we load the client information.",
"authorizeSuccessTitle":"Authorized",
"authorizeSuccessSubtitle":"You will be redirected to the app in a few seconds.",
"authorizeErrorClientInfo":"An error occurred while loading the client information. Please try again later.",
"authorizeErrorMissingParams":"The following parameters are missing: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Allows the app to access your email address.",
"profileScopeName":"Profile",
"profileScopeDescription":"Allows the app to access your profile information.",
"groupsScopeName":"Groups",
"groupsScopeDescription":"Allows the app to access your group information."
"continueInsecureRedirectSubtitle":"Sie versuchen von <code>https</code> auf <code>http</code> weiterzuleiten, was unsicher ist. Sind Sie sicher, dass Sie fortfahren möchten?",
"continueInsecureRedirectSubtitle":"Sie versuchen von <code>https</code> auf <code>http</code> weiterzuleiten, was unsicher ist. Sind Sie sicher, dass Sie fortfahren möchten?",
"continueUntrustedRedirectSubtitle":"You are trying to redirect to a domain that does not match your configured domain (<code>{{cookieDomain}}</code>). Are you sure you want to continue?",
"continueUntrustedRedirectSubtitle":"Sie versuchen auf eine Domain umzuleiten, die nicht mit Ihrer konfigurierten Domain übereinstimmt (<code>{{cookieDomain}}</code>). Sind Sie sicher, dass Sie fortfahren möchten?",
"logoutFailTitle":"Abmelden fehlgeschlagen",
"logoutFailTitle":"Abmelden fehlgeschlagen",
"logoutFailSubtitle":"Bitte versuchen Sie es erneut",
"logoutFailSubtitle":"Bitte versuchen Sie es erneut",
"logoutSuccessTitle":"Abgemeldet",
"logoutSuccessTitle":"Abgemeldet",
@@ -51,12 +51,31 @@
"forgotPasswordTitle":"Passwort vergessen?",
"forgotPasswordTitle":"Passwort vergessen?",
"failedToFetchProvidersTitle":"Fehler beim Laden der Authentifizierungsanbieter. Bitte überprüfen Sie Ihre Konfiguration.",
"failedToFetchProvidersTitle":"Fehler beim Laden der Authentifizierungsanbieter. Bitte überprüfen Sie Ihre Konfiguration.",
"errorTitle":"Ein Fehler ist aufgetreten",
"errorTitle":"Ein Fehler ist aufgetreten",
"errorSubtitleInfo":"The following error occurred while processing your request:",
"errorSubtitle":"Beim Versuch, diese Aktion auszuführen, ist ein Fehler aufgetreten. Bitte überprüfen Sie die Konsole für weitere Informationen.",
"errorSubtitle":"Beim Versuch, diese Aktion auszuführen, ist ein Fehler aufgetreten. Bitte überprüfen Sie die Konsole für weitere Informationen.",
"forgotPasswordMessage":"Das Passwort kann durch Änderung der 'USERS' Variable zurückgesetzt werden.",
"forgotPasswordMessage":"Das Passwort kann durch Änderung der 'USERS' Variable zurückgesetzt werden.",
"fieldRequired":"Dieses Feld ist notwendig",
"fieldRequired":"Dieses Feld ist notwendig",
"invalidInput":"Ungültige Eingabe",
"invalidInput":"Ungültige Eingabe",
"domainWarningTitle":"Invalid Domain",
"domainWarningTitle":"Ungültige Domain",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"Diese Instanz ist so konfiguriert, dass sie von <code>{{appUrl}}</code> aufgerufen werden kann, aber <code>{{currentUrl}}</code> wird verwendet. Wenn Sie fortfahren, können Probleme bei der Authentifizierung auftreten.",
"forgotPasswordTitle":"Ξεχάσατε το συνθηματικό σας;",
"forgotPasswordTitle":"Ξεχάσατε το συνθηματικό σας;",
"failedToFetchProvidersTitle":"Αποτυχία φόρτωσης παρόχων πιστοποίησης. Παρακαλώ ελέγξτε τις ρυθμίσεις σας.",
"failedToFetchProvidersTitle":"Αποτυχία φόρτωσης παρόχων πιστοποίησης. Παρακαλώ ελέγξτε τις ρυθμίσεις σας.",
"errorTitle":"Παρουσιάστηκε ένα σφάλμα",
"errorTitle":"Παρουσιάστηκε ένα σφάλμα",
"errorSubtitleInfo":"Το ακόλουθο σφάλμα προέκυψε κατά την επεξεργασία του αιτήματός σας:",
"errorSubtitle":"Παρουσιάστηκε σφάλμα κατά την προσπάθεια εκτέλεσης αυτής της ενέργειας. Ελέγξτε την κονσόλα για περισσότερες πληροφορίες.",
"errorSubtitle":"Παρουσιάστηκε σφάλμα κατά την προσπάθεια εκτέλεσης αυτής της ενέργειας. Ελέγξτε την κονσόλα για περισσότερες πληροφορίες.",
"forgotPasswordMessage":"Μπορείτε να επαναφέρετε τον κωδικό πρόσβασής σας αλλάζοντας τη μεταβλητή περιβάλλοντος `USERS`.",
"forgotPasswordMessage":"Μπορείτε να επαναφέρετε τον κωδικό πρόσβασής σας αλλάζοντας τη μεταβλητή περιβάλλοντος `USERS`.",
"fieldRequired":"Αυτό το πεδίο είναι υποχρεωτικό",
"fieldRequired":"Αυτό το πεδίο είναι υποχρεωτικό",
@@ -58,5 +59,23 @@
"domainWarningTitle":"Μη έγκυρο domain",
"domainWarningTitle":"Μη έγκυρο domain",
"domainWarningSubtitle":"Αυτή η εφαρμογή έχει ρυθμιστεί για πρόσβαση από <code>{{appUrl}}</code>, αλλά <code>{{currentUrl}}</code> χρησιμοποιείται. Αν συνεχίσετε, μπορεί να αντιμετωπίσετε προβλήματα με την ταυτοποίηση.",
"domainWarningSubtitle":"Αυτή η εφαρμογή έχει ρυθμιστεί για πρόσβαση από <code>{{appUrl}}</code>, αλλά <code>{{currentUrl}}</code> χρησιμοποιείται. Αν συνεχίσετε, μπορεί να αντιμετωπίσετε προβλήματα με την ταυτοποίηση.",
"ignoreTitle":"Παράβλεψη",
"ignoreTitle":"Παράβλεψη",
"goToCorrectDomainTitle":"Μεταβείτε στο σωστό domain"
"goToCorrectDomainTitle":"Μεταβείτε στο σωστό domain",
"authorizeTitle":"Εξουσιοδότηση",
"authorizeCardTitle":"Συνέχεια στην εφαρμογή {{app}};",
"authorizeSubtitle":"Θα θέλατε να συνεχίσετε σε αυτή την εφαρμογή; Παρακαλώ ελέγξτε προσεκτικά τα δικαιώματα που ζητούνται από την εφαρμογή.",
"authorizeSubtitleOAuth":"Θα θέλατε να συνεχίσετε σε αυτή την εφαρμογή;",
"authorizeLoadingTitle":"Φόρτωση...",
"authorizeLoadingSubtitle":"Παρακαλώ περιμένετε όσο φορτώνουμε τις απαραίτητες πληροφορίες.",
"authorizeSuccessTitle":"Εξουσιοδοτημένος",
"authorizeSuccessSubtitle":"Θα μεταφερθείτε στην εφαρμογή σε λίγα δευτερόλεπτα.",
"authorizeErrorClientInfo":"Παρουσιάστηκε σφάλμα κατά τη φόρτωση των πληροφοριών. Παρακαλώ προσπαθήστε ξανά αργότερα.",
"authorizeErrorMissingParams":"Οι παρακάτω απαραίτητες πληροφορίες λείπουν από το αίτημά σας: {{missingParams}}",
"openidScopeName":"Σύνδεση OpenID",
"openidScopeDescription":"Επιτρέπει στην εφαρμογή την πρόσβαση στις πληροφορίες σύνδεσης OpenID.",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"errorTitle":"An error occurred",
"errorTitle":"An error occurred",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"errorSubtitleInfo":"The following error occurred while processing your request:",
"errorSubtitle":"An error occurred while trying to perform this action. Please check your browser console or the app logs for more information.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"fieldRequired":"This field is required",
"fieldRequired":"This field is required",
"invalidInput":"Invalid input",
"invalidInput":"Invalid input",
"domainWarningTitle":"Invalid Domain",
"domainWarningTitle":"Invalid Domain",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"ignoreTitle":"Ignore",
"ignoreTitle":"Ignore",
"goToCorrectDomainTitle":"Go to correct domain"
"goToCorrectDomainTitle":"Go to correct domain",
"authorizeTitle":"Authorize",
"authorizeCardTitle":"Continue to {{app}}?",
"authorizeSubtitle":"Would you like to continue to this app? Please carefully review the permissions requested by the app.",
"authorizeSubtitleOAuth":"Would you like to continue to this app?",
"authorizeLoadingTitle":"Loading...",
"authorizeLoadingSubtitle":"Please wait while we load the client information.",
"authorizeSuccessTitle":"Authorized",
"authorizeSuccessSubtitle":"You will be redirected to the app in a few seconds.",
"authorizeErrorClientInfo":"An error occurred while loading the client information. Please try again later.",
"authorizeErrorMissingParams":"The following parameters are missing: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Allows the app to access your email address.",
"profileScopeName":"Profile",
"profileScopeDescription":"Allows the app to access your profile information.",
"groupsScopeName":"Groups",
"groupsScopeDescription":"Allows the app to access your group information."
"continueInsecureRedirectSubtitle":"You are trying to redirect from <code>https</code> to <code>http</code> which is not secure. Are you sure you want to continue?",
"continueInsecureRedirectSubtitle":"You are trying to redirect from <code>https</code> to <code>http</code> which is not secure. Are you sure you want to continue?",
"continueSubtitle":"Click the button to continue to your app.",
"continueUntrustedRedirectSubtitle":"You are trying to redirect to a domain that does not match your configured domain (<code>{{cookieDomain}}</code>). Are you sure you want to continue?",
"logoutFailTitle":"Failed to log out",
"logoutFailTitle":"Failed to log out",
"logoutFailSubtitle":"Please try again",
"logoutFailSubtitle":"Please try again",
"logoutSuccessTitle":"Logged out",
"logoutSuccessTitle":"Logged out",
@@ -44,14 +47,35 @@
"unauthorizedGroupsSubtitle":"The user with username <code>{{username}}</code> is not in the groups required by the resource <code>{{resource}}</code>.",
"unauthorizedGroupsSubtitle":"The user with username <code>{{username}}</code> is not in the groups required by the resource <code>{{resource}}</code>.",
"unauthorizedIpSubtitle":"Your IP address <code>{{ip}}</code> is not authorized to access the resource <code>{{resource}}</code>.",
"unauthorizedIpSubtitle":"Your IP address <code>{{ip}}</code> is not authorized to access the resource <code>{{resource}}</code>.",
"unauthorizedButton":"Try again",
"unauthorizedButton":"Try again",
"untrustedRedirectTitle":"Untrusted redirect",
"untrustedRedirectSubtitle":"You are trying to redirect to a domain that does not match your configured domain (<code>{{domain}}</code>). Are you sure you want to continue?",
"cancelTitle":"Cancel",
"cancelTitle":"Cancel",
"forgotPasswordTitle":"Forgot your password?",
"forgotPasswordTitle":"Forgot your password?",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"errorTitle":"An error occurred",
"errorTitle":"An error occurred",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"errorSubtitleInfo":"The following error occurred while processing your request:",
"errorSubtitle":"An error occurred while trying to perform this action. Please check your browser console or the app logs for more information.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"fieldRequired":"This field is required",
"fieldRequired":"This field is required",
"invalidInput":"Invalid input"
"invalidInput":"Invalid input",
"domainWarningTitle":"Invalid Domain",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"ignoreTitle":"Ignore",
"goToCorrectDomainTitle":"Go to correct domain",
"authorizeTitle":"Authorize",
"authorizeCardTitle":"Continue to {{app}}?",
"authorizeSubtitle":"Would you like to continue to this app? Please carefully review the permissions requested by the app.",
"authorizeSubtitleOAuth":"Would you like to continue to this app?",
"authorizeLoadingTitle":"Loading...",
"authorizeLoadingSubtitle":"Please wait while we load the client information.",
"authorizeSuccessTitle":"Authorized",
"authorizeSuccessSubtitle":"You will be redirected to the app in a few seconds.",
"authorizeErrorClientInfo":"An error occurred while loading the client information. Please try again later.",
"authorizeErrorMissingParams":"The following parameters are missing: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Allows the app to access your email address.",
"profileScopeName":"Profile",
"profileScopeDescription":"Allows the app to access your profile information.",
"groupsScopeName":"Groups",
"groupsScopeDescription":"Allows the app to access your group information."
"failedToFetchProvidersTitle":"Error al cargar los proveedores de autenticación. Por favor revise su configuración.",
"failedToFetchProvidersTitle":"Error al cargar los proveedores de autenticación. Por favor revise su configuración.",
"errorTitle":"Ha ocurrido un error",
"errorTitle":"Ha ocurrido un error",
"errorSubtitleInfo":"The following error occurred while processing your request:",
"errorSubtitle":"Ocurrió un error mientras se trataba de realizar esta acción. Por favor, revise la consola para más información.",
"errorSubtitle":"Ocurrió un error mientras se trataba de realizar esta acción. Por favor, revise la consola para más información.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"fieldRequired":"This field is required",
"fieldRequired":"This field is required",
@@ -58,5 +59,23 @@
"domainWarningTitle":"Invalid Domain",
"domainWarningTitle":"Invalid Domain",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"ignoreTitle":"Ignore",
"ignoreTitle":"Ignore",
"goToCorrectDomainTitle":"Go to correct domain"
"goToCorrectDomainTitle":"Go to correct domain",
"authorizeTitle":"Authorize",
"authorizeCardTitle":"Continue to {{app}}?",
"authorizeSubtitle":"Would you like to continue to this app? Please carefully review the permissions requested by the app.",
"authorizeSubtitleOAuth":"Would you like to continue to this app?",
"authorizeLoadingTitle":"Loading...",
"authorizeLoadingSubtitle":"Please wait while we load the client information.",
"authorizeSuccessTitle":"Authorized",
"authorizeSuccessSubtitle":"You will be redirected to the app in a few seconds.",
"authorizeErrorClientInfo":"An error occurred while loading the client information. Please try again later.",
"authorizeErrorMissingParams":"The following parameters are missing: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Allows the app to access your email address.",
"profileScopeName":"Profile",
"profileScopeDescription":"Allows the app to access your profile information.",
"groupsScopeName":"Groups",
"groupsScopeDescription":"Allows the app to access your group information."
"continueInsecureRedirectSubtitle":"You are trying to redirect from <code>https</code> to <code>http</code> which is not secure. Are you sure you want to continue?",
"continueInsecureRedirectSubtitle":"Yrität siirtyä suojatusta <code>https</code> -sivusta suojaamattomalle <code>http</code> -sivulle. Oletko varma, että haluat jatkaa?",
"continueUntrustedRedirectSubtitle":"You are trying to redirect to a domain that does not match your configured domain (<code>{{cookieDomain}}</code>). Are you sure you want to continue?",
"continueUntrustedRedirectSubtitle":"Yrität uudelleenohjata domainiin, joka ei vastaa määritettyä verkkotunnusta (<code>{{cookieDomain}}</code>). Oletko varma, että haluat jatkaa?",
"logoutFailSubtitle":"Ole hyvä ja yritä uudelleen",
"logoutSuccessTitle":"Logged out",
"logoutSuccessTitle":"Kirjauduttu ulos",
"logoutSuccessSubtitle":"You have been logged out",
"logoutSuccessSubtitle":"Sinut on kirjattu ulos",
"logoutTitle":"Logout",
"logoutTitle":"Kirjaudu ulos",
"logoutUsernameSubtitle":"You are currently logged in as <code>{{username}}</code>. Click the button below to logout.",
"logoutUsernameSubtitle":"Olet kirjautuneena sisään tunnuksella <code>{{username}}</code>. Kirjaudu ulos alla olevasta painikkeesta.",
"logoutOauthSubtitle":"You are currently logged in as <code>{{username}}</code> using the {{provider}} OAuth provider. Click the button below to logout.",
"logoutOauthSubtitle":"Olet kirjautuneena sisään tunnuksella <code>{{username}}</code> OAuth palvelun {{provider}} kautta. Kirjaudu ulos alla olevasta painikkeesta.",
"notFoundTitle":"Page not found",
"notFoundTitle":"Sivua ei löydy",
"notFoundSubtitle":"The page you are looking for does not exist.",
"notFoundSubtitle":"Sivua, jota etsit ei ole olemassa.",
"notFoundButton":"Go home",
"notFoundButton":"Palaa kotinäkymään",
"totpFailTitle":"Failed to verify code",
"totpFailTitle":"Koodin vahvistus epäonnistui",
"totpFailSubtitle":"Please check your code and try again",
"totpFailSubtitle":"Tarkista koodisi ja yritä uudelleen",
"totpSubtitle":"Please enter the code from your authenticator app.",
"totpSubtitle":"Ole hyvä ja syötä koodi todennussovelluksestasi.",
"unauthorizedTitle":"Unauthorized",
"unauthorizedTitle":"Ei sallittu",
"unauthorizedResourceSubtitle":"The user with username <code>{{username}}</code> is not authorized to access the resource <code>{{resource}}</code>.",
"unauthorizedResourceSubtitle":"Käyttäjällä <code>{{username}}</code> ei ole pääsyä kohteeseen <code>{{resource}}</code>.",
"unauthorizedLoginSubtitle":"The user with username <code>{{username}}</code> is not authorized to login.",
"unauthorizedLoginSubtitle":"Käyttäjällä <code>{{username}}</code> ei ole lupaa kirjautua.",
"unauthorizedGroupsSubtitle":"The user with username <code>{{username}}</code> is not in the groups required by the resource <code>{{resource}}</code>.",
"unauthorizedGroupsSubtitle":"Käyttäjä <code>{{username}}</code> ei ole ryhmässä, joka vaaditaan pääsyyn kohteeseen <code>{{resource}}</code>.",
"unauthorizedIpSubtitle":"Your IP address <code>{{ip}}</code> is not authorized to access the resource <code>{{resource}}</code>.",
"unauthorizedIpSubtitle":"IP osoitteestasi <code>{{ip}}</code> ei ole pääsyä kohteeseen <code>{{resource}}</code>.",
"unauthorizedButton":"Try again",
"unauthorizedButton":"Yritä uudelleen",
"cancelTitle":"Cancel",
"cancelTitle":"Peruuta",
"forgotPasswordTitle":"Forgot your password?",
"forgotPasswordTitle":"Unohditko salasanasi?",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningTitle":"Virheellinen verkkotunnus",
"ignoreTitle":"Ignore",
"domainWarningSubtitle":"Tämä instanssi on määritelty käyttämään osoitetta <code>{{appUrl}}</code>, mutta nykyinen osoite on <code>{{currentUrl}}</code>. Jos jatkat, saatat törmätä ongelmiin autentikoinnissa.",
"goToCorrectDomainTitle":"Go to correct domain"
"ignoreTitle":"Jätä huomiotta",
"goToCorrectDomainTitle":"Siirry oikeaan verkkotunnukseen",
"authorizeTitle":"Authorize",
"authorizeCardTitle":"Continue to {{app}}?",
"authorizeSubtitle":"Would you like to continue to this app? Please carefully review the permissions requested by the app.",
"authorizeSubtitleOAuth":"Would you like to continue to this app?",
"authorizeLoadingTitle":"Loading...",
"authorizeLoadingSubtitle":"Please wait while we load the client information.",
"authorizeSuccessTitle":"Authorized",
"authorizeSuccessSubtitle":"You will be redirected to the app in a few seconds.",
"authorizeErrorClientInfo":"An error occurred while loading the client information. Please try again later.",
"authorizeErrorMissingParams":"The following parameters are missing: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Allows the app to access your email address.",
"profileScopeName":"Profile",
"profileScopeDescription":"Allows the app to access your profile information.",
"groupsScopeName":"Groups",
"groupsScopeDescription":"Allows the app to access your group information."
"continueInsecureRedirectTitle":"Redirection non sécurisée",
"continueInsecureRedirectTitle":"Redirection non sécurisée",
"continueInsecureRedirectSubtitle":"Vous tentez de rediriger de <code>https</code> vers <code>http</code>, ce qui n'est pas sécurisé. Êtes-vous sûr de vouloir continuer ?",
"continueInsecureRedirectSubtitle":"Vous tentez de rediriger de <code>https</code> vers <code>http</code>, ce qui n'est pas sécurisé. Êtes-vous sûr de vouloir continuer ?",
"continueUntrustedRedirectTitle":"Redirection non sécurisée",
"continueUntrustedRedirectSubtitle":"You are trying to redirect to a domain that does not match your configured domain (<code>{{cookieDomain}}</code>). Are you sure you want to continue?",
"continueUntrustedRedirectSubtitle":"Vous essayez de rediriger vers un domaine qui ne correspond pas à votre domaine configuré (<code>{{cookieDomain}}</code>). Êtes-vous sûr de vouloir continuer ?",
"logoutFailTitle":"Échec de la déconnexion",
"logoutFailTitle":"Échec de la déconnexion",
"logoutFailSubtitle":"Veuillez réessayer",
"logoutFailSubtitle":"Veuillez réessayer",
"logoutSuccessTitle":"Déconnecté",
"logoutSuccessTitle":"Déconnecté",
@@ -51,12 +51,31 @@
"forgotPasswordTitle":"Mot de passe oublié ?",
"forgotPasswordTitle":"Mot de passe oublié ?",
"failedToFetchProvidersTitle":"Échec du chargement des fournisseurs d'authentification. Veuillez vérifier votre configuration.",
"failedToFetchProvidersTitle":"Échec du chargement des fournisseurs d'authentification. Veuillez vérifier votre configuration.",
"errorTitle":"Une erreur est survenue",
"errorTitle":"Une erreur est survenue",
"errorSubtitleInfo":"L'erreur suivante s'est produite lors du traitement de votre requête :",
"errorSubtitle":"Une erreur est survenue lors de l'exécution de cette action. Veuillez consulter la console pour plus d'informations.",
"errorSubtitle":"Une erreur est survenue lors de l'exécution de cette action. Veuillez consulter la console pour plus d'informations.",
"forgotPasswordMessage":"Vous pouvez réinitialiser votre mot de passe en modifiant la variable d'environnement `USERS`.",
"forgotPasswordMessage":"Vous pouvez réinitialiser votre mot de passe en modifiant la variable d'environnement `USERS`.",
"fieldRequired":"Ce champ est obligatoire",
"fieldRequired":"Ce champ est obligatoire",
"invalidInput":"Saisie non valide",
"invalidInput":"Saisie non valide",
"domainWarningTitle":"Invalid Domain",
"domainWarningTitle":"Domaine invalide",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"Cette instance est configurée pour être accédée depuis <code>{{appUrl}}</code>, mais <code>{{currentUrl}}</code> est utilisé. Si vous continuez, vous pourriez rencontrer des problèmes d'authentification.",
"ignoreTitle":"Ignore",
"ignoreTitle":"Ignorer",
"goToCorrectDomainTitle":"Go to correct domain"
"goToCorrectDomainTitle":"Aller au bon domaine",
"authorizeTitle":"Autoriser",
"authorizeCardTitle":"Continuer vers {{app}} ?",
"authorizeSubtitle":"Voulez-vous continuer vers cette application ? Veuillez examiner attentivement les autorisations demandées par l'application.",
"authorizeSubtitleOAuth":"Voulez-vous continuer vers cette application ?",
"authorizeLoadingTitle":"Chargement...",
"authorizeLoadingSubtitle":"Veuillez patienter pendant que nous chargeons les informations du client.",
"authorizeSuccessTitle":"Autorisé",
"authorizeSuccessSubtitle":"Vous allez être redirigé vers l'application dans quelques secondes.",
"authorizeErrorClientInfo":"Une erreur est survenue lors du chargement des informations du client. Veuillez réessayer plus tard.",
"authorizeErrorMissingParams":"Les paramètres suivants sont manquants : {{missingParams}}",
"openidScopeName":"Connexion OpenID",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Autorise l'application à accéder à votre adresse e-mail.",
"profileScopeName":"Profil",
"profileScopeDescription":"Autorise l'application à accéder aux informations de votre profil.",
"groupsScopeName":"Groupes",
"groupsScopeDescription":"Autorise une application à accéder aux informations de votre groupe."
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"errorTitle":"An error occurred",
"errorTitle":"An error occurred",
"errorSubtitleInfo":"The following error occurred while processing your request:",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"fieldRequired":"This field is required",
"fieldRequired":"This field is required",
@@ -58,5 +59,23 @@
"domainWarningTitle":"Invalid Domain",
"domainWarningTitle":"Invalid Domain",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"ignoreTitle":"Ignore",
"ignoreTitle":"Ignore",
"goToCorrectDomainTitle":"Go to correct domain"
"goToCorrectDomainTitle":"Go to correct domain",
"authorizeTitle":"Authorize",
"authorizeCardTitle":"Continue to {{app}}?",
"authorizeSubtitle":"Would you like to continue to this app? Please carefully review the permissions requested by the app.",
"authorizeSubtitleOAuth":"Would you like to continue to this app?",
"authorizeLoadingTitle":"Loading...",
"authorizeLoadingSubtitle":"Please wait while we load the client information.",
"authorizeSuccessTitle":"Authorized",
"authorizeSuccessSubtitle":"You will be redirected to the app in a few seconds.",
"authorizeErrorClientInfo":"An error occurred while loading the client information. Please try again later.",
"authorizeErrorMissingParams":"The following parameters are missing: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Allows the app to access your email address.",
"profileScopeName":"Profile",
"profileScopeDescription":"Allows the app to access your profile information.",
"groupsScopeName":"Groups",
"groupsScopeDescription":"Allows the app to access your group information."
"continueInsecureRedirectSubtitle":"You are trying to redirect from <code>https</code> to <code>http</code> which is not secure. Are you sure you want to continue?",
"continueInsecureRedirectSubtitle":"You are trying to redirect from <code>https</code> to <code>http</code> which is not secure. Are you sure you want to continue?",
"continueUntrustedRedirectSubtitle":"You are trying to redirect to a domain that does not match your configured domain (<code>{{cookieDomain}}</code>). Are you sure you want to continue?",
"continueUntrustedRedirectSubtitle":"You are trying to redirect to a domain that does not match your configured domain (<code>{{cookieDomain}}</code>). Are you sure you want to continue?",
"logoutFailTitle":"Failed to log out",
"logoutFailTitle":"Sikertelen kijelentkezés",
"logoutFailSubtitle":"Please try again",
"logoutFailSubtitle":"Próbálja újra",
"logoutSuccessTitle":"Logged out",
"logoutSuccessTitle":"Kijelentkezve",
"logoutSuccessSubtitle":"You have been logged out",
"logoutSuccessSubtitle":"Kijelentkeztél",
"logoutTitle":"Logout",
"logoutTitle":"Kijelentkezés",
"logoutUsernameSubtitle":"You are currently logged in as <code>{{username}}</code>. Click the button below to logout.",
"logoutUsernameSubtitle":"You are currently logged in as <code>{{username}}</code>. Click the button below to logout.",
"logoutOauthSubtitle":"You are currently logged in as <code>{{username}}</code> using the {{provider}} OAuth provider. Click the button below to logout.",
"logoutOauthSubtitle":"You are currently logged in as <code>{{username}}</code> using the {{provider}} OAuth provider. Click the button below to logout.",
"notFoundTitle":"Page not found",
"notFoundTitle":"Page not found",
"notFoundSubtitle":"The page you are looking for does not exist.",
"notFoundSubtitle":"The page you are looking for does not exist.",
"notFoundButton":"Go home",
"notFoundButton":"Ugrás a kezdőlapra",
"totpFailTitle":"Failed to verify code",
"totpFailTitle":"Érvénytelen kód",
"totpFailSubtitle":"Please check your code and try again",
"totpFailSubtitle":"Kérjük ellenőrizze a kódot és próbálja újra",
"totpSuccessTitle":"Verified",
"totpSuccessTitle":"Verified",
"totpSuccessSubtitle":"Redirecting to your app",
"totpSuccessSubtitle":"Redirecting to your app",
"totpTitle":"Enter your TOTP code",
"totpTitle":"Enter your TOTP code",
@@ -46,17 +46,36 @@
"unauthorizedLoginSubtitle":"The user with username <code>{{username}}</code> is not authorized to login.",
"unauthorizedLoginSubtitle":"The user with username <code>{{username}}</code> is not authorized to login.",
"unauthorizedGroupsSubtitle":"The user with username <code>{{username}}</code> is not in the groups required by the resource <code>{{resource}}</code>.",
"unauthorizedGroupsSubtitle":"The user with username <code>{{username}}</code> is not in the groups required by the resource <code>{{resource}}</code>.",
"unauthorizedIpSubtitle":"Your IP address <code>{{ip}}</code> is not authorized to access the resource <code>{{resource}}</code>.",
"unauthorizedIpSubtitle":"Your IP address <code>{{ip}}</code> is not authorized to access the resource <code>{{resource}}</code>.",
"unauthorizedButton":"Try again",
"unauthorizedButton":"Próbálja újra",
"cancelTitle":"Cancel",
"cancelTitle":"Mégse",
"forgotPasswordTitle":"Forgot your password?",
"forgotPasswordTitle":"Elfelejtette jelszavát?",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"errorTitle":"An error occurred",
"errorTitle":"Hiba történt",
"errorSubtitleInfo":"The following error occurred while processing your request:",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"fieldRequired":"This field is required",
"fieldRequired":"Ez egy kötelező mező",
"invalidInput":"Invalid input",
"invalidInput":"Invalid input",
"domainWarningTitle":"Invalid Domain",
"domainWarningTitle":"Invalid Domain",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"ignoreTitle":"Ignore",
"ignoreTitle":"Ignore",
"goToCorrectDomainTitle":"Go to correct domain"
"goToCorrectDomainTitle":"Go to correct domain",
"authorizeTitle":"Authorize",
"authorizeCardTitle":"Continue to {{app}}?",
"authorizeSubtitle":"Would you like to continue to this app? Please carefully review the permissions requested by the app.",
"authorizeSubtitleOAuth":"Would you like to continue to this app?",
"authorizeLoadingTitle":"Loading...",
"authorizeLoadingSubtitle":"Please wait while we load the client information.",
"authorizeSuccessTitle":"Authorized",
"authorizeSuccessSubtitle":"You will be redirected to the app in a few seconds.",
"authorizeErrorClientInfo":"An error occurred while loading the client information. Please try again later.",
"authorizeErrorMissingParams":"The following parameters are missing: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Allows the app to access your email address.",
"profileScopeName":"Profile",
"profileScopeDescription":"Allows the app to access your profile information.",
"groupsScopeName":"Groups",
"groupsScopeDescription":"Allows the app to access your group information."
"continueInsecureRedirectTitle":"Destinazione non sicura",
"continueInsecureRedirectSubtitle":"You are trying to redirect from <code>https</code> to <code>http</code> which is not secure. Are you sure you want to continue?",
"continueInsecureRedirectSubtitle":"Stai tentando un reindirizzamento da <code>https</code> a <code>http</code>, il che non è sicuro. Vuoi continuare davvero?",
"continueUntrustedRedirectTitle":"Destinazione non attendibile",
"continueUntrustedRedirectSubtitle":"You are trying to redirect to a domain that does not match your configured domain (<code>{{cookieDomain}}</code>). Are you sure you want to continue?",
"continueUntrustedRedirectSubtitle":"Stai tentando un reindirizzamento a un dominio che non corrisponde al dominio configurato (<code>{{cookieDomain}}</code>). Vuoi continuare davvero?",
"logoutFailTitle":"Failed to log out",
"logoutFailTitle":"Disconnessione fallita",
"logoutFailSubtitle":"Please try again",
"logoutFailSubtitle":"Riprova",
"logoutSuccessTitle":"Logged out",
"logoutSuccessTitle":"Disconnessione effettuata",
"logoutSuccessSubtitle":"You have been logged out",
"logoutSuccessSubtitle":"Sei stato disconnesso",
"logoutTitle":"Logout",
"logoutTitle":"Disconnessione",
"logoutUsernameSubtitle":"You are currently logged in as <code>{{username}}</code>. Click the button below to logout.",
"logoutUsernameSubtitle":"Hai effettuato l'accesso come <code>{{username}}</code>. Clicca sul pulsante qui sotto per disconnetterti.",
"logoutOauthSubtitle":"You are currently logged in as <code>{{username}}</code> using the {{provider}} OAuth provider. Click the button below to logout.",
"logoutOauthSubtitle":"Hai effettuato l'accesso come <code>{{username}}</code> attraverso il provider OAuth {{provider}}. Clicca sul pulsante qui sotto per uscire.",
"notFoundTitle":"Page not found",
"notFoundTitle":"Pagina non trovata",
"notFoundSubtitle":"The page you are looking for does not exist.",
"notFoundSubtitle":"La pagina che stai cercando non esiste.",
"notFoundButton":"Go home",
"notFoundButton":"Vai alla home",
"totpFailTitle":"Failed to verify code",
"totpFailTitle":"Errore nella verifica del codice",
"totpFailSubtitle":"Please check your code and try again",
"totpFailSubtitle":"Si prega di controllare il codice e riprovare",
"totpSuccessTitle":"Verified",
"totpSuccessTitle":"Verificato",
"totpSuccessSubtitle":"Redirecting to your app",
"totpSuccessSubtitle":"Reindirizzamento alla tua app",
"totpTitle":"Enter your TOTP code",
"totpTitle":"Inserisci il tuo codice TOTP",
"totpSubtitle":"Please enter the code from your authenticator app.",
"totpSubtitle":"Inserisci il codice dalla tua app di autenticazione.",
"unauthorizedTitle":"Unauthorized",
"unauthorizedTitle":"Non autorizzato",
"unauthorizedResourceSubtitle":"The user with username <code>{{username}}</code> is not authorized to access the resource <code>{{resource}}</code>.",
"unauthorizedResourceSubtitle":"L'utente <code>{{username}}</code> non è autorizzato ad accedere alla risorsa <code>{{resource}}</code>.",
"unauthorizedLoginSubtitle":"The user with username <code>{{username}}</code> is not authorized to login.",
"unauthorizedLoginSubtitle":"L'utente <code>{{username}}</code> non è autorizzato a effettuare l'accesso.",
"unauthorizedGroupsSubtitle":"The user with username <code>{{username}}</code> is not in the groups required by the resource <code>{{resource}}</code>.",
"unauthorizedGroupsSubtitle":"L'utente <code>{{username}}</code> non fa parte dei gruppi richiesti dalla risorsa <code>{{resource}}</code>.",
"unauthorizedIpSubtitle":"Your IP address <code>{{ip}}</code> is not authorized to access the resource <code>{{resource}}</code>.",
"unauthorizedIpSubtitle":"Il tuo indirizzo IP <code>{{ip}}</code> non è autorizzato ad accedere alla risorsa <code>{{resource}}</code>.",
"unauthorizedButton":"Try again",
"unauthorizedButton":"Riprova",
"cancelTitle":"Cancel",
"cancelTitle":"Annulla",
"forgotPasswordTitle":"Forgot your password?",
"forgotPasswordTitle":"Password dimenticata?",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"failedToFetchProvidersTitle":"Impossibile caricare i provider di autenticazione. Si prega di controllare la configurazione.",
"errorTitle":"An error occurred",
"errorTitle":"Si è verificato un errore",
"errorSubtitleInfo":"Si è verificato il seguente errore durante l'elaborazione della richiesta:",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"forgotPasswordMessage":"Puoi reimpostare la tua password modificando la variabile d'ambiente `USERS`.",
"fieldRequired":"This field is required",
"fieldRequired":"Questo campo è obbligatorio",
"invalidInput":"Invalid input",
"invalidInput":"Input non valido",
"domainWarningTitle":"Invalid Domain",
"domainWarningTitle":"Dominio non valido",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"Questa istanza è configurata per essere accessibile da <code>{{appUrl}}</code>, ma la stai visitando da <code>{{currentUrl}}</code>. Se procedi, potresti incorrere in problemi di autenticazione.",
"ignoreTitle":"Ignore",
"ignoreTitle":"Ignora",
"goToCorrectDomainTitle":"Go to correct domain"
"goToCorrectDomainTitle":"Vai al dominio corretto",
"authorizeTitle":"Autorizza",
"authorizeCardTitle":"Continuare su {{app}}?",
"authorizeSubtitle":"Vuoi continuare su quest'app? Verifica attentamente i permessi richiesti dall'app.",
"authorizeSubtitleOAuth":"Vuoi continuare su quest'app?",
"authorizeLoadingTitle":"Caricamento...",
"authorizeLoadingSubtitle":"Attendi il caricamento delle informazioni del client.",
"authorizeSuccessTitle":"Autorizzato",
"authorizeSuccessSubtitle":"Verrai reindirizzato all'app in pochi secondi.",
"authorizeErrorClientInfo":"Si è verificato un errore durante il caricamento delle informazioni del client. Riprova.",
"authorizeErrorMissingParams":"I seguenti parametri sono mancanti: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Permetti all'app di accedere alle tue informazioni OpenID Connect.",
"emailScopeName":"Email",
"emailScopeDescription":"Consenti all'app di accedere al tuo indirizzo email.",
"profileScopeName":"Profilo",
"profileScopeDescription":"Consenti all'app di accedere alle informazioni del tuo profilo.",
"groupsScopeName":"Gruppi",
"groupsScopeDescription":"Consenti all'app di accedere alle informazioni sui tuoi gruppi."
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"errorTitle":"An error occurred",
"errorTitle":"An error occurred",
"errorSubtitleInfo":"The following error occurred while processing your request:",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"fieldRequired":"This field is required",
"fieldRequired":"This field is required",
@@ -58,5 +59,23 @@
"domainWarningTitle":"Invalid Domain",
"domainWarningTitle":"Invalid Domain",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"ignoreTitle":"Ignore",
"ignoreTitle":"Ignore",
"goToCorrectDomainTitle":"Go to correct domain"
"goToCorrectDomainTitle":"Go to correct domain",
"authorizeTitle":"Authorize",
"authorizeCardTitle":"Continue to {{app}}?",
"authorizeSubtitle":"Would you like to continue to this app? Please carefully review the permissions requested by the app.",
"authorizeSubtitleOAuth":"Would you like to continue to this app?",
"authorizeLoadingTitle":"Loading...",
"authorizeLoadingSubtitle":"Please wait while we load the client information.",
"authorizeSuccessTitle":"Authorized",
"authorizeSuccessSubtitle":"You will be redirected to the app in a few seconds.",
"authorizeErrorClientInfo":"An error occurred while loading the client information. Please try again later.",
"authorizeErrorMissingParams":"The following parameters are missing: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Allows the app to access your email address.",
"profileScopeName":"Profile",
"profileScopeDescription":"Allows the app to access your profile information.",
"groupsScopeName":"Groups",
"groupsScopeDescription":"Allows the app to access your group information."
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"errorTitle":"An error occurred",
"errorTitle":"An error occurred",
"errorSubtitleInfo":"The following error occurred while processing your request:",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"fieldRequired":"This field is required",
"fieldRequired":"This field is required",
@@ -58,5 +59,23 @@
"domainWarningTitle":"Invalid Domain",
"domainWarningTitle":"Invalid Domain",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"ignoreTitle":"Ignore",
"ignoreTitle":"Ignore",
"goToCorrectDomainTitle":"Go to correct domain"
"goToCorrectDomainTitle":"Go to correct domain",
"authorizeTitle":"Authorize",
"authorizeCardTitle":"Continue to {{app}}?",
"authorizeSubtitle":"Would you like to continue to this app? Please carefully review the permissions requested by the app.",
"authorizeSubtitleOAuth":"Would you like to continue to this app?",
"authorizeLoadingTitle":"Loading...",
"authorizeLoadingSubtitle":"Please wait while we load the client information.",
"authorizeSuccessTitle":"Authorized",
"authorizeSuccessSubtitle":"You will be redirected to the app in a few seconds.",
"authorizeErrorClientInfo":"An error occurred while loading the client information. Please try again later.",
"authorizeErrorMissingParams":"The following parameters are missing: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Allows the app to access your email address.",
"profileScopeName":"Profile",
"profileScopeDescription":"Allows the app to access your profile information.",
"groupsScopeName":"Groups",
"groupsScopeDescription":"Allows the app to access your group information."
"continueInsecureRedirectSubtitle":"You are trying to redirect from <code>https</code> to <code>http</code> which is not secure. Are you sure you want to continue?",
"continueInsecureRedirectSubtitle":"Je probeert door te verwijzen van <code>https</code> naar <code>http</code> die niet veilig is. Weet je zeker dat je wilt doorgaan?",
"continueUntrustedRedirectSubtitle":"You are trying to redirect to a domain that does not match your configured domain (<code>{{cookieDomain}}</code>). Are you sure you want to continue?",
"continueUntrustedRedirectSubtitle":"Je probeert door te sturen naar een domein dat niet overeenkomt met je geconfigureerde domein (<code>{{cookieDomain}}</code>). Weet je zeker dat je wilt doorgaan?",
"logoutFailTitle":"Afmelden mislukt",
"logoutFailTitle":"Afmelden mislukt",
"logoutFailSubtitle":"Probeer het opnieuw",
"logoutFailSubtitle":"Probeer het opnieuw",
"logoutSuccessTitle":"Afgemeld",
"logoutSuccessTitle":"Afgemeld",
"logoutSuccessSubtitle":"Je bent afgemeld",
"logoutSuccessSubtitle":"Je bent afgemeld",
"logoutTitle":"Afmelden",
"logoutTitle":"Afmelden",
"logoutUsernameSubtitle":"You are currently logged in as <code>{{username}}</code>. Click the button below to logout.",
"logoutUsernameSubtitle":"Je bent momenteel ingelogd als <code>{{username}}</code>. Klik op de onderstaande knop om uit te loggen.",
"logoutOauthSubtitle":"You are currently logged in as <code>{{username}}</code> using the {{provider}} OAuth provider. Click the button below to logout.",
"logoutOauthSubtitle":"Je bent momenteel ingelogd als <code>{{username}}</code> met behulp van de {{provider}} OAuth provider. Klik op de onderstaande knop om uit te loggen.",
"notFoundTitle":"Pagina niet gevonden",
"notFoundTitle":"Pagina niet gevonden",
"notFoundSubtitle":"De pagina die je zoekt bestaat niet.",
"notFoundSubtitle":"De pagina die je zoekt bestaat niet.",
"notFoundButton":"Naar startpagina",
"notFoundButton":"Naar startpagina",
@@ -40,23 +40,42 @@
"totpSuccessTitle":"Geverifiëerd",
"totpSuccessTitle":"Geverifiëerd",
"totpSuccessSubtitle":"Omleiden naar je app",
"totpSuccessSubtitle":"Omleiden naar je app",
"totpTitle":"Voer je TOTP-code in",
"totpTitle":"Voer je TOTP-code in",
"totpSubtitle":"Please enter the code from your authenticatorapp.",
"totpSubtitle":"Voer de code van je authenticator-app in.",
"unauthorizedTitle":"Ongeautoriseerd",
"unauthorizedTitle":"Ongeautoriseerd",
"unauthorizedResourceSubtitle":"The user with username <code>{{username}}</code> is not authorized to access the resource <code>{{resource}}</code>.",
"unauthorizedResourceSubtitle":"De gebruiker met gebruikersnaam <code>{{username}}</code> is niet gemachtigd om de bron <code>{{resource}}</code> te gebruiken.",
"unauthorizedLoginSubtitle":"The user with username <code>{{username}}</code> is not authorized to login.",
"unauthorizedLoginSubtitle":"De gebruiker met gebruikersnaam <code>{{username}}</code> is niet gemachtigd om in te loggen.",
"unauthorizedGroupsSubtitle":"The user with username <code>{{username}}</code> is not in the groups required by the resource <code>{{resource}}</code>.",
"unauthorizedGroupsSubtitle":"De gebruiker met gebruikersnaam <code>{{username}}</code> maakt geen deel uit van de groepen die vereist zijn door de bron <code>{{resource}}</code>.",
"unauthorizedIpSubtitle":"Your IPaddress <code>{{ip}}</code> is not authorized to access the resource <code>{{resource}}</code>.",
"unauthorizedIpSubtitle":"Jouw IP-adres <code>{{ip}}</code> is niet gemachtigd om de bron <code>{{resource}}</code> te gebruiken.",
"unauthorizedButton":"Opnieuw proberen",
"unauthorizedButton":"Opnieuw proberen",
"cancelTitle":"Cancel",
"cancelTitle":"Annuleren",
"forgotPasswordTitle":"Forgot your password?",
"forgotPasswordTitle":"Wachtwoord vergeten?",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"failedToFetchProvidersTitle":"Fout bij het laden van de authenticatie-providers. Controleer je configuratie.",
"errorTitle":"An error occurred",
"errorTitle":"Er is een fout opgetreden",
"errorSubtitleInfo":"De volgende fout is opgetreden bij het verwerken van het verzoek:",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"forgotPasswordMessage":"Je kunt je wachtwoord opnieuw instellen door de `USERS` omgevingsvariabele te wijzigen.",
"fieldRequired":"This field is required",
"fieldRequired":"Dit veld is verplicht",
"invalidInput":"Invalid input",
"invalidInput":"Ongeldige invoer",
"domainWarningTitle":"Invalid Domain",
"domainWarningTitle":"Ongeldig domein",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"Deze instantie is geconfigureerd voor toegang tot <code>{{appUrl}}</code>, maar <code>{{currentUrl}}</code> wordt gebruikt. Als je doorgaat, kun je problemen ondervinden met authenticatie.",
"ignoreTitle":"Ignore",
"ignoreTitle":"Negeren",
"goToCorrectDomainTitle":"Go to correct domain"
"goToCorrectDomainTitle":"Ga naar het juiste domein",
"authorizeTitle":"Autoriseren",
"authorizeCardTitle":"Doorgaan naar {{app}}?",
"authorizeSubtitle":"Doorgaan naar deze app? Controleer de machtigingen die door de app worden gevraagd.",
"authorizeSubtitleOAuth":"Doorgaan naar deze app?",
"authorizeLoadingTitle":"Laden...",
"authorizeLoadingSubtitle":"Even geduld bij het laden van de cliëntinformatie.",
"authorizeSuccessTitle":"Geautoriseerd",
"authorizeSuccessSubtitle":"Je wordt binnen enkele seconden doorgestuurd naar de app.",
"authorizeErrorClientInfo":"Er is een fout opgetreden tijdens het laden van de cliëntinformatie. Probeer het later opnieuw.",
"authorizeErrorMissingParams":"De volgende parameters ontbreken: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Hiermee kan de app toegang krijgen tot jouw OpenID Connect-informatie.",
"emailScopeName":"E-mail",
"emailScopeDescription":"Hiermee kan de app toegang krijgen tot jouw e-mailadres.",
"profileScopeName":"Profiel",
"profileScopeDescription":"Hiermee kan de app toegang krijgen tot je profielinformatie.",
"groupsScopeName":"Groepen",
"groupsScopeDescription":"Hiermee kan de app toegang krijgen tot jouw groepsinformatie."
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"errorTitle":"An error occurred",
"errorTitle":"An error occurred",
"errorSubtitleInfo":"The following error occurred while processing your request:",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"fieldRequired":"This field is required",
"fieldRequired":"This field is required",
@@ -58,5 +59,23 @@
"domainWarningTitle":"Invalid Domain",
"domainWarningTitle":"Invalid Domain",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"ignoreTitle":"Ignore",
"ignoreTitle":"Ignore",
"goToCorrectDomainTitle":"Go to correct domain"
"goToCorrectDomainTitle":"Go to correct domain",
"authorizeTitle":"Authorize",
"authorizeCardTitle":"Continue to {{app}}?",
"authorizeSubtitle":"Would you like to continue to this app? Please carefully review the permissions requested by the app.",
"authorizeSubtitleOAuth":"Would you like to continue to this app?",
"authorizeLoadingTitle":"Loading...",
"authorizeLoadingSubtitle":"Please wait while we load the client information.",
"authorizeSuccessTitle":"Authorized",
"authorizeSuccessSubtitle":"You will be redirected to the app in a few seconds.",
"authorizeErrorClientInfo":"An error occurred while loading the client information. Please try again later.",
"authorizeErrorMissingParams":"The following parameters are missing: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Allows the app to access your email address.",
"profileScopeName":"Profile",
"profileScopeDescription":"Allows the app to access your profile information.",
"groupsScopeName":"Groups",
"groupsScopeDescription":"Allows the app to access your group information."
"domainWarningSubtitle":"Ta instancja jest skonfigurowana do uzyskania dostępu z <code>{{appUrl}}</code>, ale <code>{{currentUrl}}</code> jest w użyciu. Jeśli będziesz kontynuować, mogą wystąpić problemy z uwierzytelnianiem.",
"domainWarningSubtitle":"Ta instancja jest skonfigurowana do uzyskania dostępu z <code>{{appUrl}}</code>, ale <code>{{currentUrl}}</code> jest w użyciu. Jeśli będziesz kontynuować, mogą wystąpić problemy z uwierzytelnianiem.",
"ignoreTitle":"Zignoruj",
"ignoreTitle":"Zignoruj",
"goToCorrectDomainTitle":"Przejdź do prawidłowej domeny"
"goToCorrectDomainTitle":"Przejdź do prawidłowej domeny",
"authorizeTitle":"Autoryzuj",
"authorizeCardTitle":"Kontynuować do {{app}}?",
"authorizeSubtitle":"Czy chcesz kontynuować do tej aplikacji? Uważnie zapoznaj się zuprawnieniami żądanymi przez aplikację.",
"authorizeSubtitleOAuth":"Czy chcesz kontynuować do tej aplikacji?",
"authorizeLoadingTitle":"Wczytywanie...",
"authorizeLoadingSubtitle":"Proszę czekać, aż załadujemy informacje okliencie.",
"authorizeSuccessTitle":"Autoryzowano",
"authorizeSuccessSubtitle":"Za kilka sekund nastąpi przekierowanie do aplikacji.",
"authorizeErrorClientInfo":"Wystąpił błąd podczas ładowania informacji okliencie. Spróbuj ponownie później.",
"continueInsecureRedirectSubtitle":"You are trying to redirect from <code>https</code> to <code>http</code> which is not secure. Are you sure you want to continue?",
"continueInsecureRedirectSubtitle":"Você está tentando redirecionar de <code>https</code> para <code>http</code>, você tem certeza que deseja continuar?",
"continueUntrustedRedirectTitle":"Redirecionamento não confiável",
"continueUntrustedRedirectSubtitle":"You are trying to redirect to a domain that does not match your configured domain (<code>{{cookieDomain}}</code>). Are you sure you want to continue?",
"continueUntrustedRedirectSubtitle":"Você está tentando redirecionar para um domínio que não corresponde ao seu domínio configurado (<code>{{cookieDomain}}</code>). Tem certeza que deseja continuar?",
"logoutUsernameSubtitle":"You are currently logged in as <code>{{username}}</code>. Click the button below to logout.",
"logoutUsernameSubtitle":"Você está atualmente logado como <code>{{username}}</code>, clique no botão abaixo para sair.",
"logoutOauthSubtitle":"You are currently logged in as <code>{{username}}</code> using the {{provider}} OAuth provider. Click the button below to logout.",
"logoutOauthSubtitle":"Você está atualmente logado como <code>{{username}}</code> usando o provedor {{provider}} OAuth, clique no botão abaixo para sair.",
"notFoundTitle":"Página não encontrada",
"notFoundTitle":"Página não encontrada",
"notFoundSubtitle":"A página que você está procurando não existe.",
"notFoundSubtitle":"A página que você está procurando não existe.",
"notFoundButton":"Voltar para a tela inicial",
"notFoundButton":"Voltar para a tela inicial",
@@ -40,23 +40,42 @@
"totpSuccessTitle":"Verificado",
"totpSuccessTitle":"Verificado",
"totpSuccessSubtitle":"Redirecionando para o seu aplicativo",
"totpSuccessSubtitle":"Redirecionando para o seu aplicativo",
"totpTitle":"Insira o seu código TOTP",
"totpTitle":"Insira o seu código TOTP",
"totpSubtitle":"Please enter the code from your authenticator app.",
"totpSubtitle":"Por favor, insira o código do seu aplicativo de autenticação.",
"unauthorizedTitle":"Não autorizado",
"unauthorizedTitle":"Não autorizado",
"unauthorizedResourceSubtitle":"The user with username <code>{{username}}</code> is not authorized to access the resource <code>{{resource}}</code>.",
"unauthorizedResourceSubtitle":"O usuário com nome de usuário <code>{{username}}</code> não está autorizado a acessar o recurso <code>{{resource}}</code>.",
"unauthorizedLoginSubtitle":"The user with username <code>{{username}}</code> is not authorized to login.",
"unauthorizedLoginSubtitle":"O usuário com o nome <code>{{username}}</code> não está autorizado a acessar.",
"unauthorizedGroupsSubtitle":"The user with username <code>{{username}}</code> is not in the groups required by the resource <code>{{resource}}</code>.",
"unauthorizedGroupsSubtitle":"O usuário <code>{{username}}</code> não está autorizado a acessar o recurso <code>{{resource}}</code>.",
"unauthorizedIpSubtitle":"Your IP address <code>{{ip}}</code> is not authorized to access the resource <code>{{resource}}</code>.",
"unauthorizedIpSubtitle":"Seu endereço IP <code>{{ip}}</code> não está autorizado a acessar o recurso <code>{{resource}}</code>.",
"unauthorizedButton":"Tentar novamente",
"unauthorizedButton":"Tentar novamente",
"cancelTitle":"Cancelar",
"cancelTitle":"Cancelar",
"forgotPasswordTitle":"Esqueceu sua senha?",
"forgotPasswordTitle":"Esqueceu sua senha?",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"failedToFetchProvidersTitle":"Falha ao carregar provedores de autenticação. Verifique sua configuração.",
"errorTitle":"An error occurred",
"errorTitle":"Ocorreu um erro",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"errorSubtitleInfo":"The following error occurred while processing your request:",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"errorSubtitle":"Ocorreu um erro ao tentar executar esta ação. Por favor, verifique o console para mais informações.",
"fieldRequired":"This field is required",
"forgotPasswordMessage":"Você pode redefinir sua senha alterando a variável de ambiente `USERS`.",
"invalidInput":"Invalid input",
"fieldRequired":"Este campo é obrigatório",
"domainWarningTitle":"Invalid Domain",
"invalidInput":"Entrada Inválida",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningTitle":"Domínio inválido",
"ignoreTitle":"Ignore",
"domainWarningSubtitle":"Esta instância está configurada para ser acessada de <code>{{appUrl}}</code>, mas <code>{{currentUrl}}</code> está sendo usado. Se você continuar, você pode encontrar problemas com a autenticação.",
"goToCorrectDomainTitle":"Go to correct domain"
"ignoreTitle":"Ignorar",
"goToCorrectDomainTitle":"Ir para o domínio correto",
"authorizeTitle":"Authorize",
"authorizeCardTitle":"Continue to {{app}}?",
"authorizeSubtitle":"Would you like to continue to this app? Please carefully review the permissions requested by the app.",
"authorizeSubtitleOAuth":"Would you like to continue to this app?",
"authorizeLoadingTitle":"Loading...",
"authorizeLoadingSubtitle":"Please wait while we load the client information.",
"authorizeSuccessTitle":"Authorized",
"authorizeSuccessSubtitle":"You will be redirected to the app in a few seconds.",
"authorizeErrorClientInfo":"An error occurred while loading the client information. Please try again later.",
"authorizeErrorMissingParams":"The following parameters are missing: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Allows the app to access your email address.",
"profileScopeName":"Profile",
"profileScopeDescription":"Allows the app to access your profile information.",
"groupsScopeName":"Groups",
"groupsScopeDescription":"Allows the app to access your group information."
"continueInsecureRedirectSubtitle":"You are trying to redirect from <code>https</code> to <code>http</code> which is not secure. Are you sure you want to continue?",
"continueInsecureRedirectSubtitle":"Estás a tentar redirecionar de <code>https</code> para <code>http</code>, o que não é seguro. Tens a certeza de que queres continuar?",
"continueUntrustedRedirectTitle":"Redirecionamento não fidedigno",
"continueUntrustedRedirectSubtitle":"You are trying to redirect to a domain that does not match your configured domain (<code>{{cookieDomain}}</code>). Are you sure you want to continue?",
"continueUntrustedRedirectSubtitle":"Estás a tentar redirecionar para um domínio que não corresponde ao domínio configurado (<code>{{cookieDomain}}</code>). Tens a certeza de que queres continuar?",
"logoutFailTitle":"Failed to log out",
"logoutFailTitle":"Falha ao terminar sessão",
"logoutFailSubtitle":"Please try again",
"logoutFailSubtitle":"Tenta novamente",
"logoutSuccessTitle":"Logged out",
"logoutSuccessTitle":"Sessão terminada",
"logoutSuccessSubtitle":"You have been logged out",
"logoutSuccessSubtitle":"Terminaste a sessão com sucesso",
"logoutTitle":"Logout",
"logoutTitle":"Terminar sessão",
"logoutUsernameSubtitle":"You are currently logged in as <code>{{username}}</code>. Click the button below to logout.",
"logoutUsernameSubtitle":"Estás com sessão iniciada como <code>{{username}}</code>. Clica no botão abaixo para terminar sessão.",
"logoutOauthSubtitle":"You are currently logged in as <code>{{username}}</code> using the {{provider}} OAuth provider. Click the button below to logout.",
"logoutOauthSubtitle":"Estás com sessão iniciada como <code>{{username}}</code> através do fornecedor OAuth {{provider}}. Clica no botão abaixo para terminar sessão.",
"notFoundTitle":"Page not found",
"notFoundTitle":"Página não encontrada",
"notFoundSubtitle":"The page you are looking for does not exist.",
"notFoundSubtitle":"A página que procuras não existe.",
"notFoundButton":"Go home",
"notFoundButton":"Ir para o início",
"totpFailTitle":"Failed to verify code",
"totpFailTitle":"Falha na verificação do código",
"totpFailSubtitle":"Please check your code and try again",
"totpFailSubtitle":"Verifica o código e tenta novamente",
"totpSuccessTitle":"Verified",
"totpSuccessTitle":"Verificado",
"totpSuccessSubtitle":"Redirecting to your app",
"totpSuccessSubtitle":"A redirecionar para a tua aplicação",
"totpTitle":"Enter your TOTP code",
"totpTitle":"Introduz o teu código TOTP",
"totpSubtitle":"Please enter the code from your authenticator app.",
"totpSubtitle":"Introduz o código da tua aplicação de autenticação.",
"unauthorizedTitle":"Unauthorized",
"unauthorizedTitle":"Não autorizado",
"unauthorizedResourceSubtitle":"The user with username <code>{{username}}</code> is not authorized to access the resource <code>{{resource}}</code>.",
"unauthorizedResourceSubtitle":"O utilizador com o nome <code>{{username}}</code> não tem autorização para aceder ao recurso <code>{{resource}}</code>.",
"unauthorizedLoginSubtitle":"The user with username <code>{{username}}</code> is not authorized to login.",
"unauthorizedLoginSubtitle":"O utilizador com o nome <code>{{username}}</code> não tem autorização para iniciar sessão.",
"unauthorizedGroupsSubtitle":"The user with username <code>{{username}}</code> is not in the groups required by the resource <code>{{resource}}</code>.",
"unauthorizedGroupsSubtitle":"O utilizador com o nome <code>{{username}}</code> não pertence aos grupos exigidos pelo recurso <code>{{resource}}</code>.",
"unauthorizedIpSubtitle":"Your IP address <code>{{ip}}</code> is not authorized to access the resource <code>{{resource}}</code>.",
"unauthorizedIpSubtitle":"O teu endereço IP <code>{{ip}}</code> não tem autorização para aceder ao recurso <code>{{resource}}</code>.",
"unauthorizedButton":"Try again",
"unauthorizedButton":"Tentar novamente",
"cancelTitle":"Cancel",
"cancelTitle":"Cancelar",
"forgotPasswordTitle":"Forgot your password?",
"forgotPasswordTitle":"Esqueceste-te da palavra-passe?",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"failedToFetchProvidersTitle":"Falha ao carregar os fornecedores de autenticação. Verifica a configuração.",
"errorTitle":"An error occurred",
"errorTitle":"Ocorreu um erro",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"errorSubtitleInfo":"The following error occurred while processing your request:",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"errorSubtitle":"Ocorreu um erro ao tentar executar esta ação. Consulta a consola para mais informações.",
"fieldRequired":"This field is required",
"forgotPasswordMessage":"Podes redefinir a tua palavra-passe alterando a variável de ambiente `USERS`.",
"invalidInput":"Invalid input",
"fieldRequired":"Este campo é obrigatório",
"domainWarningTitle":"Invalid Domain",
"invalidInput":"Entrada inválida",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningTitle":"Domínio inválido",
"ignoreTitle":"Ignore",
"domainWarningSubtitle":"Esta instância está configurada para ser acedida a partir de <code>{{appUrl}}</code>, mas está a ser usado <code>{{currentUrl}}</code>. Se continuares, poderás ter problemas de autenticação.",
"goToCorrectDomainTitle":"Go to correct domain"
"ignoreTitle":"Ignorar",
"goToCorrectDomainTitle":"Ir para o domínio correto",
"authorizeTitle":"Authorize",
"authorizeCardTitle":"Continue to {{app}}?",
"authorizeSubtitle":"Would you like to continue to this app? Please carefully review the permissions requested by the app.",
"authorizeSubtitleOAuth":"Would you like to continue to this app?",
"authorizeLoadingTitle":"Loading...",
"authorizeLoadingSubtitle":"Please wait while we load the client information.",
"authorizeSuccessTitle":"Authorized",
"authorizeSuccessSubtitle":"You will be redirected to the app in a few seconds.",
"authorizeErrorClientInfo":"An error occurred while loading the client information. Please try again later.",
"authorizeErrorMissingParams":"The following parameters are missing: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Allows the app to access your email address.",
"profileScopeName":"Profile",
"profileScopeDescription":"Allows the app to access your profile information.",
"groupsScopeName":"Groups",
"groupsScopeDescription":"Allows the app to access your group information."
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"errorTitle":"An error occurred",
"errorTitle":"An error occurred",
"errorSubtitleInfo":"The following error occurred while processing your request:",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"fieldRequired":"This field is required",
"fieldRequired":"This field is required",
@@ -58,5 +59,23 @@
"domainWarningTitle":"Invalid Domain",
"domainWarningTitle":"Invalid Domain",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"ignoreTitle":"Ignore",
"ignoreTitle":"Ignore",
"goToCorrectDomainTitle":"Go to correct domain"
"goToCorrectDomainTitle":"Go to correct domain",
"authorizeTitle":"Authorize",
"authorizeCardTitle":"Continue to {{app}}?",
"authorizeSubtitle":"Would you like to continue to this app? Please carefully review the permissions requested by the app.",
"authorizeSubtitleOAuth":"Would you like to continue to this app?",
"authorizeLoadingTitle":"Loading...",
"authorizeLoadingSubtitle":"Please wait while we load the client information.",
"authorizeSuccessTitle":"Authorized",
"authorizeSuccessSubtitle":"You will be redirected to the app in a few seconds.",
"authorizeErrorClientInfo":"An error occurred while loading the client information. Please try again later.",
"authorizeErrorMissingParams":"The following parameters are missing: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Allows the app to access your email address.",
"profileScopeName":"Profile",
"profileScopeDescription":"Allows the app to access your profile information.",
"groupsScopeName":"Groups",
"groupsScopeDescription":"Allows the app to access your group information."
"continueUntrustedRedirectSubtitle":"You are trying to redirect to a domain that does not match your configured domain (<code>{{cookieDomain}}</code>). Are you sure you want to continue?",
"continueUntrustedRedirectSubtitle":"Вы пытаетесь перенаправить на домен, который не соответствует вашему настроенному домену (<code>{{cookieDomain}}</code>). Вы уверены, что хотите продолжить?",
"logoutFailTitle":"Не удалось выйти",
"logoutFailTitle":"Не удалось выйти",
"logoutFailSubtitle":"Попробуйте ещё раз",
"logoutFailSubtitle":"Попробуйте ещё раз",
"logoutSuccessTitle":"Выход",
"logoutSuccessTitle":"Выход",
"logoutSuccessSubtitle":"Вы вышли из системы",
"logoutSuccessSubtitle":"Вы вышли",
"logoutTitle":"Выйти",
"logoutTitle":"Выйти",
"logoutUsernameSubtitle":"Вход выполнен как <code>{{username}}</code>, нажмите на кнопку ниже, чтобы выйти.",
"logoutUsernameSubtitle":"Вход выполнен как <code>{{username}}</code>, нажмите на кнопку ниже, чтобы выйти.",
"logoutOauthSubtitle":"Вход выполнен как <code>{{username}}</code> с использованием {{provider}} OAuth, нажмите кнопку ниже, чтобы выйти.",
"logoutOauthSubtitle":"Вход выполнен как <code>{{username}}</code> с использованием {{provider}} OAuth, нажмите кнопку ниже, чтобы выйти.",
@@ -40,23 +40,42 @@
"totpSuccessTitle":"Подтверждён",
"totpSuccessTitle":"Подтверждён",
"totpSuccessSubtitle":"Перенаправление в приложение",
"totpSuccessSubtitle":"Перенаправление в приложение",
"totpTitle":"Введите код TOTP",
"totpTitle":"Введите код TOTP",
"totpSubtitle":"Пожалуйста, введите код из вашего приложения-аутентификатора.",
"totpSubtitle":"Пожалуйста, введите код из вашего приложения авторизации.",
"unauthorizedTitle":"Доступ запрещен",
"unauthorizedTitle":"Доступ запрещён",
"unauthorizedResourceSubtitle":"Пользователю <code>{{username}}</code> не разрешен доступ к <code>{{resource}}</code>.",
"unauthorizedResourceSubtitle":"Пользователю <code>{{username}}</code> не разрешён доступ к <code>{{resource}}</code>.",
"unauthorizedLoginSubtitle":"Пользователю <code>{{username}}</code> не разрешен вход.",
"unauthorizedLoginSubtitle":"Пользователю <code>{{username}}</code> не разрешён вход.",
"unauthorizedGroupsSubtitle":"Пользователь <code>{{username}}</code> не состоит в группах, которым разрешен доступ к <code>{{resource}}</code>.",
"unauthorizedGroupsSubtitle":"Пользователь <code>{{username}}</code> не состоит в группах, которым разрешён доступ к <code>{{resource}}</code>.",
"unauthorizedIpSubtitle":"Ваш IPадрес <code>{{ip}}</code> не авторизован для доступа к ресурсу <code>{{resource}}</code>.",
"unauthorizedIpSubtitle":"Вашему IP-адресу <code>{{ip}}</code> не разрешён доступ к ресурсу <code>{{resource}}</code>.",
"unauthorizedButton":"Повторить",
"unauthorizedButton":"Повторить",
"cancelTitle":"Отмена",
"cancelTitle":"Отмена",
"forgotPasswordTitle":"Забыли пароль?",
"forgotPasswordTitle":"Забыли пароль?",
"failedToFetchProvidersTitle":"Не удалось загрузить провайдеров аутентификации. Пожалуйста, проверьте конфигурацию.",
"failedToFetchProvidersTitle":"Не удалось загрузить поставщика авторизации. Пожалуйста, проверьте конфигурацию.",
"errorTitle":"Произошла ошибка",
"errorTitle":"Произошла ошибка",
"errorSubtitleInfo":"The following error occurred while processing your request:",
"errorSubtitle":"Произошла ошибка при попытке выполнить это действие. Проверьте консоль для дополнительной информации.",
"errorSubtitle":"Произошла ошибка при попытке выполнить это действие. Проверьте консоль для дополнительной информации.",
"forgotPasswordMessage":"Вы можете сбросить свой пароль, изменив переменную окружения `USERS`.",
"forgotPasswordMessage":"Вы можете сбросить свой пароль, изменив переменную окружения `USERS`.",
"fieldRequired":"Это поле является обязательным",
"fieldRequired":"Это поле является обязательным",
"invalidInput":"Недопустимый ввод",
"invalidInput":"Недопустимый ввод",
"domainWarningTitle":"Invalid Domain",
"domainWarningTitle":"Неверный домен",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"Этот экземпляр настроен на доступ к нему из <code>{{appUrl}}</code>, но <code>{{currentUrl}}</code> в настоящее время используется. Если вы продолжите, то могут возникнуть проблемы с авторизацией.",
"ignoreTitle":"Ignore",
"ignoreTitle":"Игнорировать",
"goToCorrectDomainTitle":"Go to correct domain"
"goToCorrectDomainTitle":"Перейти к правильному домену",
"authorizeTitle":"Authorize",
"authorizeCardTitle":"Continue to {{app}}?",
"authorizeSubtitle":"Would you like to continue to this app? Please carefully review the permissions requested by the app.",
"authorizeSubtitleOAuth":"Would you like to continue to this app?",
"authorizeLoadingTitle":"Loading...",
"authorizeLoadingSubtitle":"Please wait while we load the client information.",
"authorizeSuccessTitle":"Authorized",
"authorizeSuccessSubtitle":"You will be redirected to the app in a few seconds.",
"authorizeErrorClientInfo":"An error occurred while loading the client information. Please try again later.",
"authorizeErrorMissingParams":"The following parameters are missing: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Allows the app to access your email address.",
"profileScopeName":"Profile",
"profileScopeDescription":"Allows the app to access your profile information.",
"groupsScopeName":"Groups",
"groupsScopeDescription":"Allows the app to access your group information."
"continueInsecureRedirectSubtitle":"Покушавате да преусмерите са <code>https</code> на <code>http</code> што није безбедно. Да ли желите да наставите?",
"continueInsecureRedirectSubtitle":"Покушавате да преусмерите са <code>https</code> на <code>http</code> што није безбедно. Да ли желите да наставите?",
"continueUntrustedRedirectSubtitle":"You are trying to redirect to a domain that does not match your configured domain (<code>{{cookieDomain}}</code>). Are you sure you want to continue?",
"continueUntrustedRedirectSubtitle":"Покушавате да преусмерите на домен који се не поклапа са вашим подешеним доменом (<code>{{cookieDomain}}</code>). Да ли заиста желите да наставите?",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"Ова инстанца је подешена да јојсе приступа са <code>{{appUrl}}</code>, али се користи <code>{{currentUrl}}</code>. Ако наставите, можете искусити проблеме са аутентификацијом.",
"ignoreTitle":"Ignore",
"ignoreTitle":"Игнориши",
"goToCorrectDomainTitle":"Go to correct domain"
"goToCorrectDomainTitle":"Иди на исправан домен",
"authorizeTitle":"Ауторизуј",
"authorizeCardTitle":"Наставити на {{app}}?",
"authorizeSubtitle":"Да ли желите да наставите на ову апликацију? Пажљиво проверите дозволе које вам тражи апликација.",
"authorizeSubtitleOAuth":"Да ли желите да наставите на ову апликацију?",
"authorizeLoadingTitle":"Учитавање...",
"authorizeLoadingSubtitle":"Молим вас сачекајте док ми учитамо информације о клијенту.",
"authorizeSuccessTitle":"Ауторизован",
"authorizeSuccessSubtitle":"Бићете преусмерени на апликацију за неколико секунди.",
"authorizeErrorClientInfo":"Појавила се грешка током учитавања информација о клијенту. Молим вас покушајте поново касније.",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"errorTitle":"An error occurred",
"errorTitle":"An error occurred",
"errorSubtitleInfo":"The following error occurred while processing your request:",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"fieldRequired":"This field is required",
"fieldRequired":"This field is required",
@@ -58,5 +59,23 @@
"domainWarningTitle":"Invalid Domain",
"domainWarningTitle":"Invalid Domain",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"ignoreTitle":"Ignore",
"ignoreTitle":"Ignore",
"goToCorrectDomainTitle":"Go to correct domain"
"goToCorrectDomainTitle":"Go to correct domain",
"authorizeTitle":"Authorize",
"authorizeCardTitle":"Continue to {{app}}?",
"authorizeSubtitle":"Would you like to continue to this app? Please carefully review the permissions requested by the app.",
"authorizeSubtitleOAuth":"Would you like to continue to this app?",
"authorizeLoadingTitle":"Loading...",
"authorizeLoadingSubtitle":"Please wait while we load the client information.",
"authorizeSuccessTitle":"Authorized",
"authorizeSuccessSubtitle":"You will be redirected to the app in a few seconds.",
"authorizeErrorClientInfo":"An error occurred while loading the client information. Please try again later.",
"authorizeErrorMissingParams":"The following parameters are missing: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Allows the app to access your email address.",
"profileScopeName":"Profile",
"profileScopeDescription":"Allows the app to access your profile information.",
"groupsScopeName":"Groups",
"groupsScopeDescription":"Allows the app to access your group information."
"continueInsecureRedirectTitle":"Güvenli olmayan yönlendirme",
"continueInsecureRedirectSubtitle":"You are trying to redirect from <code>https</code> to <code>http</code> which is not secure. Are you sure you want to continue?",
"continueInsecureRedirectSubtitle":"<code>http</code> adresinden <code>http</code> adresine yönlendirme yapmaya çalışıyorsunuz, bu güvenli değil. Devam etmek istediğinizden emin misiniz?",
"continueUntrustedRedirectSubtitle":"You are trying to redirect to a domain that does not match your configured domain (<code>{{cookieDomain}}</code>). Are you sure you want to continue?",
"continueUntrustedRedirectSubtitle":"Yapılandırdığınız alan adıyla eşleşmeyen bir alana yönlendirme yapmaya çalışıyorsunuz (<code>{{cookieDomain}}</code>). Devam etmek istediğinize emin misiniz?",
"logoutFailTitle":"Failed to log out",
"logoutFailTitle":"Çıkış Yapılamadı",
"logoutFailSubtitle":"Lütfen tekrar deneyin",
"logoutFailSubtitle":"Lütfen tekrar deneyin",
"logoutSuccessTitle":"Çıkış yapıldı",
"logoutSuccessTitle":"Çıkış yapıldı",
"logoutSuccessSubtitle":"You have been logged out",
"logoutSuccessSubtitle":"Çıkış yaptınız",
"logoutTitle":"Logout",
"logoutTitle":"Çıkış yap",
"logoutUsernameSubtitle":"You are currently logged in as <code>{{username}}</code>. Click the button below to logout.",
"logoutUsernameSubtitle":"<code>{{username}}</code> olarak giriş yapmış durumdasınız. Çıkış yapmak için aşağıdaki düğmeye tıklayın.",
"logoutOauthSubtitle":"You are currently logged in as <code>{{username}}</code> using the {{provider}} OAuth provider. Click the button below to logout.",
"logoutOauthSubtitle":"Şu anda {{provider}} OAuth sağlayıcısını kullanarak <code>{{username}}</code> olarak oturum açmış durumdasınız. Oturumunuzu kapatmak için aşağıdaki düğmeye tıklayın.",
"notFoundTitle":"Sayfa bulunamadı",
"notFoundTitle":"Sayfa bulunamadı",
"notFoundSubtitle":"Aradığınız sayfa mevcut değil.",
"notFoundSubtitle":"Aradığınız sayfa mevcut değil.",
"notFoundButton":"Ana sayfaya git",
"notFoundButton":"Ana sayfaya git",
"totpFailTitle":"Kod doğrulanamadı",
"totpFailTitle":"Kod doğrulanamadı",
"totpFailSubtitle":"Please check your code and try again",
"totpFailSubtitle":"Lütfen kodunuzu kontrol edin ve tekrar deneyin",
"totpSubtitle":"Please enter the code from your authenticator app.",
"totpSubtitle":"Lütfen kimlik doğrulama uygulamanızdan aldığınız kodu girin.",
"unauthorizedTitle":"Unauthorized",
"unauthorizedTitle":"Yetkisiz",
"unauthorizedResourceSubtitle":"The user with username <code>{{username}}</code> is not authorized to access the resource <code>{{resource}}</code>.",
"unauthorizedResourceSubtitle":"Kullanıcı adı <code>{{username}}</code> olan kullanıcının <code>{{resource}}</code> kaynağına erişim yetkisi bulunmamaktadır.",
"unauthorizedLoginSubtitle":"The user with username <code>{{username}}</code> is not authorized to login.",
"unauthorizedLoginSubtitle":"Kullanıcı adı <code>{{username}}</code> olan kullanıcının oturum açma yetkisi yok.",
"unauthorizedGroupsSubtitle":"The user with username <code>{{username}}</code> is not in the groups required by the resource <code>{{resource}}</code>.",
"unauthorizedGroupsSubtitle":"Kullanıcı adı <code>{{username}}</code> olan kullanıcı, <code>{{resource}}</code> kaynağının gerektirdiği gruplarda bulunmuyor.",
"unauthorizedIpSubtitle":"Your IP address <code>{{ip}}</code> is not authorized to access the resource <code>{{resource}}</code>.",
"unauthorizedIpSubtitle":"IP adresiniz <code>{{ip}}</code>, <code>{{resource}}</code> kaynağına erişim yetkisine sahip değil.",
"unauthorizedButton":"Try again",
"unauthorizedButton":"Tekrar deneyin",
"cancelTitle":"İptal",
"cancelTitle":"İptal",
"forgotPasswordTitle":"Forgot your password?",
"forgotPasswordTitle":"Şifrenizi mi unuttunuz?",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"failedToFetchProvidersTitle":"Kimlik doğrulama sağlayıcıları yüklenemedi. Lütfen yapılandırmanızı kontrol edin.",
"errorTitle":"An error occurred",
"errorTitle":"Bir hata oluştu",
"errorSubtitleInfo":"The following error occurred while processing your request:",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"Bu örnek, <code>{{appUrl}}</code> adresinden erişilecek şekilde yapılandırılmıştır, ancak <code>{{currentUrl}}</code> kullanılmaktadır. Devam ederseniz, kimlik doğrulama ile ilgili sorunlarla karşılaşabilirsiniz.",
"ignoreTitle":"Ignore",
"ignoreTitle":"Yoksay",
"goToCorrectDomainTitle":"Go to correct domain"
"goToCorrectDomainTitle":"Doğru alana gidin",
"authorizeTitle":"Authorize",
"authorizeCardTitle":"Continue to {{app}}?",
"authorizeSubtitle":"Would you like to continue to this app? Please carefully review the permissions requested by the app.",
"authorizeSubtitleOAuth":"Would you like to continue to this app?",
"authorizeLoadingTitle":"Loading...",
"authorizeLoadingSubtitle":"Please wait while we load the client information.",
"authorizeSuccessTitle":"Authorized",
"authorizeSuccessSubtitle":"You will be redirected to the app in a few seconds.",
"authorizeErrorClientInfo":"An error occurred while loading the client information. Please try again later.",
"authorizeErrorMissingParams":"The following parameters are missing: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Allows the app to access your email address.",
"profileScopeName":"Profile",
"profileScopeDescription":"Allows the app to access your profile information.",
"groupsScopeName":"Groups",
"groupsScopeDescription":"Allows the app to access your group information."
"continueInsecureRedirectSubtitle":"You are trying to redirect from <code>https</code> to <code>http</code> which is not secure. Are you sure you want to continue?",
"continueInsecureRedirectSubtitle":"Ви намагаєтесь перенаправити з <code>https</code> на <code>http</code> який не є безпечним. Ви впевнені, що хочете продовжити?",
"continueUntrustedRedirectSubtitle":"You are trying to redirect to a domain that does not match your configured domain (<code>{{cookieDomain}}</code>). Are you sure you want to continue?",
"continueUntrustedRedirectSubtitle":"Ви намагаєтесь перенаправити на домен, який не збігається з вашим налаштованим доменом (<code>{{cookieDomain}}</code>). Впевнені, що хочете продовжити?",
"logoutSuccessSubtitle":"You have been logged out",
"logoutSuccessSubtitle":"Ви вийшли з системи",
"logoutTitle":"Logout",
"logoutTitle":"Вийти",
"logoutUsernameSubtitle":"You are currently logged in as <code>{{username}}</code>. Click the button below to logout.",
"logoutUsernameSubtitle":"Зараз ви увійшли як <code>{{username}}</code>. Натисніть кнопку нижче для виходу.",
"logoutOauthSubtitle":"You are currently logged in as <code>{{username}}</code> using the {{provider}} OAuth provider. Click the button below to logout.",
"logoutOauthSubtitle":"Наразі ви увійшли як <code>{{username}}</code> використовуючи провайдера {{provider}} OAuth. Натисніть кнопку нижче, щоб вийти.",
"notFoundTitle":"Page not found",
"notFoundTitle":"Сторінку не знайдено",
"notFoundSubtitle":"The page you are looking for does not exist.",
"notFoundSubtitle":"Сторінка, яку ви шукаєте, не існує.",
"notFoundButton":"Go home",
"notFoundButton":"На головну",
"totpFailTitle":"Failed to verify code",
"totpFailTitle":"Не вдалося перевірити код",
"totpFailSubtitle":"Please check your code and try again",
"totpFailSubtitle":"Перевірте ваш код і спробуйте ще раз",
"totpSuccessTitle":"Verified",
"totpSuccessTitle":"Перевірено",
"totpSuccessSubtitle":"Redirecting to your app",
"totpSuccessSubtitle":"Перенаправлення до вашого додатку",
"totpTitle":"Enter your TOTP code",
"totpTitle":"Введіть ваш TOTP код",
"totpSubtitle":"Please enter the code from your authenticator app.",
"totpSubtitle":"Будь ласка, введіть код з вашого додатку для автентифікації.",
"unauthorizedTitle":"Unauthorized",
"unauthorizedTitle":"Доступ обмежено",
"unauthorizedResourceSubtitle":"The user with username <code>{{username}}</code> is not authorized to access the resource <code>{{resource}}</code>.",
"unauthorizedResourceSubtitle":"Користувач з ім'ям користувача <code>{{username}}</code> не має права доступу до ресурсу <code>{{resource}}</code>.",
"unauthorizedLoginSubtitle":"The user with username <code>{{username}}</code> is not authorized to login.",
"unauthorizedLoginSubtitle":"Користувач з іменем <code>{{username}}</code> не авторизований для входу.",
"unauthorizedGroupsSubtitle":"The user with username <code>{{username}}</code> is not in the groups required by the resource <code>{{resource}}</code>.",
"unauthorizedGroupsSubtitle":"Користувач з іменем <code>{{username}}</code> не входить до груп, що необхідні для ресурсу <code>{{resource}}</code>.",
"unauthorizedIpSubtitle":"Your IP address <code>{{ip}}</code> is not authorized to access the resource <code>{{resource}}</code>.",
"unauthorizedIpSubtitle":"Ваша IP-адреса <code>{{ip}}</code> не авторизована для доступу до ресурсу <code>{{resource}}</code>.",
"unauthorizedButton":"Try again",
"unauthorizedButton":"Спробуйте ще раз",
"cancelTitle":"Cancel",
"cancelTitle":"Скасовувати",
"forgotPasswordTitle":"Forgot your password?",
"forgotPasswordTitle":"Забули пароль?",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"failedToFetchProvidersTitle":"Не вдалося завантажити провайдерів автентифікації. Будь ласка, перевірте вашу конфігурацію.",
"errorTitle":"An error occurred",
"errorTitle":"Виникла помилка",
"errorSubtitleInfo":"The following error occurred while processing your request:",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"forgotPasswordMessage":"Ви можете скинути пароль, змінивши змінну середовища \"USERS\".",
"fieldRequired":"This field is required",
"fieldRequired":"Це поле обов'язкове для заповнення",
"invalidInput":"Invalid input",
"invalidInput":"Невірне введення",
"domainWarningTitle":"Invalid Domain",
"domainWarningTitle":"Невірний домен",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"Даний ресурс налаштований для доступу з <code>{{appUrl}}</code>, але використовується <code>{{currentUrl}}</code>. Якщо ви продовжите, можуть виникнути проблеми з автентифікацією.",
"ignoreTitle":"Ignore",
"ignoreTitle":"Ігнорувати",
"goToCorrectDomainTitle":"Go to correct domain"
"goToCorrectDomainTitle":"Перейти за коректним доменом",
"authorizeTitle":"Authorize",
"authorizeCardTitle":"Continue to {{app}}?",
"authorizeSubtitle":"Would you like to continue to this app? Please carefully review the permissions requested by the app.",
"authorizeSubtitleOAuth":"Would you like to continue to this app?",
"authorizeLoadingTitle":"Loading...",
"authorizeLoadingSubtitle":"Please wait while we load the client information.",
"authorizeSuccessTitle":"Authorized",
"authorizeSuccessSubtitle":"You will be redirected to the app in a few seconds.",
"authorizeErrorClientInfo":"An error occurred while loading the client information. Please try again later.",
"authorizeErrorMissingParams":"The following parameters are missing: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Allows the app to access your email address.",
"profileScopeName":"Profile",
"profileScopeDescription":"Allows the app to access your profile information.",
"groupsScopeName":"Groups",
"groupsScopeDescription":"Allows the app to access your group information."
"unauthorizedIpSubtitle":"Your IP address <code>{{ip}}</code> is not authorized to access the resource <code>{{resource}}</code>.",
"unauthorizedIpSubtitle":"Your IP address <code>{{ip}}</code> is not authorized to access the resource <code>{{resource}}</code>.",
"unauthorizedButton":"Try again",
"unauthorizedButton":"Try again",
"cancelTitle":"Cancel",
"cancelTitle":"Cancel",
"forgotPasswordTitle":"Forgot your password?",
"forgotPasswordTitle":"Bạn quên mật khẩu?",
"failedToFetchProvidersTitle":"Failed to load authentication providers. Please check your configuration.",
"failedToFetchProvidersTitle":"Không tải được nhà cung cấp xác thực. Vui lòng kiểm tra cấu hình của bạn.",
"errorTitle":"An error occurred",
"errorTitle":"An error occurred",
"errorSubtitle":"An error occurred while trying to perform this action. Please check the console for more information.",
"errorSubtitleInfo":"The following error occurred while processing your request:",
"errorSubtitle":"Đã xảy ra lỗi khi thực hiện thao tác này. Vui lòng kiểm tra bảng điều khiển để biết thêm thông tin.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"forgotPasswordMessage":"You can reset your password by changing the `USERS` environment variable.",
"fieldRequired":"This field is required",
"fieldRequired":"This field is required",
"invalidInput":"Invalid input",
"invalidInput":"Invalid input",
"domainWarningTitle":"Invalid Domain",
"domainWarningTitle":"Invalid Domain",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"ignoreTitle":"Ignore",
"ignoreTitle":"Ignore",
"goToCorrectDomainTitle":"Go to correct domain"
"goToCorrectDomainTitle":"Go to correct domain",
"authorizeTitle":"Authorize",
"authorizeCardTitle":"Continue to {{app}}?",
"authorizeSubtitle":"Would you like to continue to this app? Please carefully review the permissions requested by the app.",
"authorizeSubtitleOAuth":"Would you like to continue to this app?",
"authorizeLoadingTitle":"Loading...",
"authorizeLoadingSubtitle":"Please wait while we load the client information.",
"authorizeSuccessTitle":"Authorized",
"authorizeSuccessSubtitle":"You will be redirected to the app in a few seconds.",
"authorizeErrorClientInfo":"An error occurred while loading the client information. Please try again later.",
"authorizeErrorMissingParams":"The following parameters are missing: {{missingParams}}",
"openidScopeName":"OpenID Connect",
"openidScopeDescription":"Allows the app to access your OpenID Connect information.",
"emailScopeName":"Email",
"emailScopeDescription":"Allows the app to access your email address.",
"profileScopeName":"Profile",
"profileScopeDescription":"Allows the app to access your profile information.",
"groupsScopeName":"Groups",
"groupsScopeDescription":"Allows the app to access your group information."
"continueUntrustedRedirectSubtitle":"You are trying to redirect to a domain that does not match your configured domain (<code>{{cookieDomain}}</code>). Are you sure you want to continue?",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
"continueUntrustedRedirectSubtitle":"You are trying to redirect to a domain that does not match your configured domain (<code>{{cookieDomain}}</code>). Are you sure you want to continue?",
"domainWarningSubtitle":"This instance is configured to be accessed from <code>{{appUrl}}</code>, but <code>{{currentUrl}}</code> is being used. If you proceed, you may encounter issues with authentication.",
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.