mirror of
				https://github.com/strapi/strapi.git
				synced 2025-11-03 19:36:20 +00:00 
			
		
		
		
	Merge branch 'master' into relations/polymorphic
This commit is contained in:
		
						commit
						e2be148071
					
				@ -98,8 +98,8 @@ _Reorganize the mono-repository. The rule to follow is to only have hooks withou
 | 
			
		||||
- ~~[Plugin - Users & Permissions] Integrate providers authentication, email templates and advanced settings~~.
 | 
			
		||||
 | 
			
		||||
`strapi@alpha.10` *(expected release date: 15/02/2018)*:
 | 
			
		||||
- [Framework] New core API to manage settings in database.
 | 
			
		||||
- [Admin] Refactor the Input component to make it more extensible.
 | 
			
		||||
- ~~[Framework] New core API to manage settings in database~~.
 | 
			
		||||
- ~~[Admin] Refactor the Input component to make it more extensible~~.
 | 
			
		||||
 | 
			
		||||
`strapi@alpha.11` *(expected release date: 02/03/2018)*:
 | 
			
		||||
- [Plugin] Upload.
 | 
			
		||||
 | 
			
		||||
@ -15,10 +15,10 @@ The most advanced open-source Content Management Framework to build powerful API
 | 
			
		||||
 | 
			
		||||
{% endcenter %}
 | 
			
		||||
 | 
			
		||||
## v3@alpha.9 is available!
 | 
			
		||||
## v3@alpha.10 is available!
 | 
			
		||||
We've been working on a major update for Strapi during the past months, rewriting the core framework and the dashboard.
 | 
			
		||||
 | 
			
		||||
This documentation is only related to Strapi v3@alpha.9 ([v1 documentation is still available](http://strapi.io/documentation/1.x.x)).
 | 
			
		||||
This documentation is only related to Strapi v3@alpha.10 ([v1 documentation is still available](http://strapi.io/documentation/1.x.x)).
 | 
			
		||||
 | 
			
		||||
**[Get Started](getting-started/installation.md)**<br />
 | 
			
		||||
Learn how to install Strapi and start developing your API.
 | 
			
		||||
 | 
			
		||||
@ -55,3 +55,4 @@
 | 
			
		||||
* [Migrating from v1 to v3](migration/migration-guide.md)
 | 
			
		||||
* [Migrating from 3.0.0-alpha.7.4 to 3.0.0-alpha.8](migration/migration-guide-alpha-7-4-to-alpha-8.md)
 | 
			
		||||
* [Migrating from 3.0.0-alpha.8 to 3.0.0-alpha.9](migration/migration-guide-alpha-8-to-alpha-9.md)
 | 
			
		||||
* [Migrating from 3.0.0-alpha.9 to 3.0.0-alpha.10](migration/migration-guide-alpha-9-to-alpha-10.md)
 | 
			
		||||
 | 
			
		||||
@ -82,7 +82,7 @@ module.exports = {
 | 
			
		||||
 | 
			
		||||
In this example, any time a web browser is pointed to the `/hello` URL on your app, the page will display the text: `Hello World!`.
 | 
			
		||||
 | 
			
		||||
### Where are defined the controllers?
 | 
			
		||||
### Where are the controllers defined?
 | 
			
		||||
 | 
			
		||||
The controllers are defined in each `./api/**/controllers/` folders. Every JavaScript file put in these folders will be loaded as a controller. They are also available through the `strapi.controllers` and `strapi.api.**.controllers` global variables. By convention, controllers' names should be Pascal-cased, so that every word in the file (include the first one) is capitalized `User.js`, `LegalEntity.js`.
 | 
			
		||||
 | 
			
		||||
@ -144,15 +144,15 @@ module.exports = {
 | 
			
		||||
In this example, there is a `User` model which contains two attributes `firstname` and `lastname`.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
### Where are defined the models?
 | 
			
		||||
### Where are the models defined?
 | 
			
		||||
 | 
			
		||||
The models are defined in each `./api/**/models/` folder. Every JavaScript or JSON file put in these folders will be loaded as a model. They are also available through the `strapi.models` and `strapi.api.**.models` global variables. Usable everywhere in the project, they contains the ORM model object that they are referring to. By convention, models' names should be Pascal-cased, so that every word in the file (include the first one) is capitalized `User.js`, `User.settings.json`, `LegalEntity.js`, `LegalEntity.settings.json`.
 | 
			
		||||
The models are defined in each `./api/**/models/` folder. Every JavaScript or JSON file in these folders will be loaded as a model. They are also available through the `strapi.models` and `strapi.api.**.models` global variables. Usable every where in the project, they contain the ORM model object that they are refer to. By convention, models' names should be Pascal-cased, so that every word in the file (including the first one) is capitalized `User.js`, `User.settings.json`, `LegalEntity.js`, `LegalEntity.settings.json`.
 | 
			
		||||
 | 
			
		||||
### Attributes
 | 
			
		||||
 | 
			
		||||
A model must contain a list of attributes, and each of these attributes must have a type.
 | 
			
		||||
 | 
			
		||||
> Please refer to the [models' guide for more informations about attributes](../guides/models.md#define-the-attributes).
 | 
			
		||||
> Please refer to the [models' guide for more informations about the attributes](../guides/models.md#define-the-attributes).
 | 
			
		||||
 | 
			
		||||
### Relations
 | 
			
		||||
 | 
			
		||||
@ -198,7 +198,7 @@ Internationalization and localization (i18n) allows to adapt the project to diff
 | 
			
		||||
 | 
			
		||||
## Plugin
 | 
			
		||||
 | 
			
		||||
A plugin is like a sub-app fully independent. It has its own business logic with its dedicated models, controllers, services, middlewares or hooks. It can also contains an UI integrated into the admin panel to use it easily. It allows to develops or plugs features in a project in a short time span.
 | 
			
		||||
A plugin is like a fully independent sub-application. It has its own business logic with dedicated models, controllers, services, middlewares or hooks. It can also contain an UI integrated into the admin panel to use it easily. It allows to develop or plugin features in a project in a short time span.
 | 
			
		||||
 | 
			
		||||
> Please refer to the [plugins documentation](../plugin-development/quick-start.md) for more informations.
 | 
			
		||||
 | 
			
		||||
@ -206,7 +206,7 @@ A plugin is like a sub-app fully independent. It has its own business logic with
 | 
			
		||||
 | 
			
		||||
## Plugin styles
 | 
			
		||||
 | 
			
		||||
The admin panel uses [Bootstrap](http://getbootstrap.com/) to be styled on top of solid conventions and reusable CSS classes. Also, it uses [PostCSS](https://github.com/postcss/postcss) and [PostCSS SCSS](https://github.com/postcss/postcss-scss) to keep the code maintainable.
 | 
			
		||||
The admin panel uses [Bootstrap](http://getbootstrap.com/) to be styled on top of solid conventions and reusable CSS classes. It is also using [PostCSS](https://github.com/postcss/postcss) and [PostCSS SCSS](https://github.com/postcss/postcss-scss) to keep the code maintainable.
 | 
			
		||||
 | 
			
		||||
> Please refer to the [plugin front-end development](../plugin-development/frontend-development.md#styling) for detailed informations.
 | 
			
		||||
 | 
			
		||||
@ -214,14 +214,14 @@ The admin panel uses [Bootstrap](http://getbootstrap.com/) to be styled on top o
 | 
			
		||||
 | 
			
		||||
## Policies
 | 
			
		||||
 | 
			
		||||
Policies are functions which have the ability to execute a logic on each request before it reaches the controller's action. They are mostly used for securing business logic easily.
 | 
			
		||||
Policies are functions which have the ability to execute specific logic on each request before it reaches the controller's action. They are mostly used for securing business logic easily.
 | 
			
		||||
Each route of the project can be associated to an array of policies. For example, you can create a policy named `isAdmin`, which obviously checks that the request is sent by an admin user, and use it for critical routes.
 | 
			
		||||
 | 
			
		||||
Policies can be:
 | 
			
		||||
 - `global`: so they can be used within the entire project.
 | 
			
		||||
 - `scoped`: used by single API or plugin.
 | 
			
		||||
 | 
			
		||||
### Where are defined the policies?
 | 
			
		||||
### Where are the policies defined?
 | 
			
		||||
 | 
			
		||||
The API and plugins policies (scoped) are defined in each `./api/**/config/policies/` folders and plugins. They are respectively exposed through `strapi.api.**.config.policies` and `strapi.plugins.**.config.policies`. The global policies are defined at `./config/policies/` and accessible via `strapi.config.policies`.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
# Authentication
 | 
			
		||||
 | 
			
		||||
## Register a new user.
 | 
			
		||||
## Register a new user
 | 
			
		||||
 | 
			
		||||
This route lets you create new users.
 | 
			
		||||
 | 
			
		||||
@ -28,7 +28,7 @@ $.ajax({
 | 
			
		||||
 | 
			
		||||
## Login.
 | 
			
		||||
 | 
			
		||||
This route lets you log your users in  by getting an authentication token.
 | 
			
		||||
This route lets you login your users by getting an authentication token.
 | 
			
		||||
 | 
			
		||||
#### Local
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -3,6 +3,7 @@
 | 
			
		||||
See the [models' concepts](../concepts/concepts.md#models) for details.
 | 
			
		||||
 | 
			
		||||
## How to create a model?
 | 
			
		||||
> Note: If you are just starting out it is very convenient to generate some models with the Content Type Builder, directly in the admin interface. You can then review the generated model mappings on the code level. The UI takes over a lot of validation tasks and gives you a fast feeling for available features.
 | 
			
		||||
 | 
			
		||||
Use the CLI, and run the following command `strapi generate:model user firstname:string lastname:string`. Read the [CLI documentation](../cli/CLI.md) for more informations.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -0,0 +1,60 @@
 | 
			
		||||
# Migrating from 3.0.0-alpha.9 to 3.0.0-alpha.10
 | 
			
		||||
 | 
			
		||||
**Here are the major changes:**
 | 
			
		||||
 | 
			
		||||
- Add database store config
 | 
			
		||||
- New lib input
 | 
			
		||||
 | 
			
		||||
> Feel free to [join us on Slack](http://slack.strapi.io) and ask questions about the migration process.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
## Getting started
 | 
			
		||||
 | 
			
		||||
Install Strapi `alpha.10.1` globally on your computer. To do so run `npm install strapi@3.0.0-alpha.10.1 -g`.
 | 
			
		||||
 | 
			
		||||
When it's done, generate a new empty project `strapi new myNewProject` (don't pay attention to the database configuration).
 | 
			
		||||
 | 
			
		||||
## Configurations
 | 
			
		||||
 | 
			
		||||
You will have to update just 1 file: `package.json`
 | 
			
		||||
 | 
			
		||||
- Edit the Strapi's dependencies version: (move Strapi's dependencies to `3.0.0-alpha.10.1` version) in `package.json` file
 | 
			
		||||
 | 
			
		||||
```json
 | 
			
		||||
{
 | 
			
		||||
  "dependencies": {
 | 
			
		||||
    "lodash": "4.x.x",
 | 
			
		||||
    "strapi": "3.0.0-alpha.10.1",
 | 
			
		||||
    "strapi-mongoose": "3.0.0-alpha.10.1"
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
```
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
## Update the Admin
 | 
			
		||||
 | 
			
		||||
Delete your old admin folder and replace it by the new one.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
## Update the Plugins
 | 
			
		||||
 | 
			
		||||
Copy this file `/plugins/users-permissions/config/jwt.json` **from your old project** and paste it in the corresponding one in your new project.
 | 
			
		||||
 | 
			
		||||
Copy the fields and relations you had in your `/plugins/users-permissions/models/User.settings.json` file in the new one.
 | 
			
		||||
 | 
			
		||||
Then, delete your old `plugins` folder and replace it by the new one.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
## ⚠️  Config in database
 | 
			
		||||
 | 
			
		||||
To let you update your configurations when your application is deployed on multiple server instances, we have created a data store for settings. So we moved all the `users-permissions` plugin's configs in database.
 | 
			
		||||
 | 
			
		||||
You will have to reconfigure all your `users-permissions` configs from the admin panel. Then delete the `advanced.json`, `email.json` and `grant.json` files from `plugins/users-permissions/config` folder.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
## ⚠️  Data type Number
 | 
			
		||||
 | 
			
		||||
We fixed how mongoose handles the model's `Number` type. Previously, mongoose stored `Number` type as `String` and now it's `Integer`. So you will have to update all your documents which have a type `Number` in its model and replace their `String` value with a `Number` one.
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
That's all, you have now upgraded to Strapi `alpha.10`.
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "private": true,
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "devDependencies": {
 | 
			
		||||
    "assert": "~1.3.0",
 | 
			
		||||
    "babel-eslint": "^6.1.2",
 | 
			
		||||
 | 
			
		||||
@ -3,6 +3,12 @@
 | 
			
		||||
 | 
			
		||||
.leftMenuLinkContainer { /* stylelint-ignore */
 | 
			
		||||
  padding-top: .6rem;
 | 
			
		||||
  position: absolute;
 | 
			
		||||
  top: 60px;
 | 
			
		||||
  right: 0;
 | 
			
		||||
  bottom: 0;
 | 
			
		||||
  left: 0;
 | 
			
		||||
  overflow-y: scroll;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.title {
 | 
			
		||||
 | 
			
		||||
@ -1,3 +1,3 @@
 | 
			
		||||
{
 | 
			
		||||
  "languages": ["en", "fr"]
 | 
			
		||||
  "languages": ["en", "fr", "de", "pl"]
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										108
									
								
								packages/strapi-admin/admin/src/translations/de.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										108
									
								
								packages/strapi-admin/admin/src/translations/de.json
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,108 @@
 | 
			
		||||
{
 | 
			
		||||
    "app.components.ComingSoonPage.comingSoon": "Bald verfügbar",
 | 
			
		||||
    "app.components.ComingSoonPage.featuresNotAvailable": "Dieses Feature ist derzeit noch in aktiver Entwicklung.",
 | 
			
		||||
  
 | 
			
		||||
    "app.components.DownloadInfo.download": "Download wird ausgeführt...",
 | 
			
		||||
    "app.components.DownloadInfo.text": "Dies könnte kurz dauern. Danke für deine Geduld.",
 | 
			
		||||
  
 | 
			
		||||
    "app.components.HomePage.welcome": "Willkommen an Bord!",
 | 
			
		||||
    "app.components.HomePage.description.part1": "Wir sind froh, dass du einer unserer Nutzer bist!",
 | 
			
		||||
    "app.components.HomePage.description.part2": "Du bist jetzt ein Mitglied unserer Community, die dir dabei helfen kann, deine Traum-App zu entwickeln.",
 | 
			
		||||
    "app.components.HomePage.button": "Erstelle deinen ersten Content-Typ",
 | 
			
		||||
    "app.components.HomePage.feedback": "Stelle uns deine Fragen oder gib uns deine Rückmeldung über einen der folgenden Kanäle.",
 | 
			
		||||
  
 | 
			
		||||
    "app.components.InstallPluginPage.helmet": "Marktplatz - Plugins",
 | 
			
		||||
    "app.components.InstallPluginPage.title": "Marktplatz - Plugins",
 | 
			
		||||
    "app.components.InstallPluginPage.description": "Erweitere problemlos deine App",
 | 
			
		||||
    "app.components.InstallPluginPage.plugin.support-us.description": "Unterstütze uns durch den Kauf eines Strapi T-Shirts. Das erlaubt uns, weiter an dem Projekt arbeiten zu können und es so gut wie nur möglich zu gestalten!",
 | 
			
		||||
    "app.components.InstallPluginPage.InputSearch.label": " ",
 | 
			
		||||
    "app.components.InstallPluginPage.InputSearch.placeholder": "Suche nach einem Plugin... (z.B.: authentication)",
 | 
			
		||||
    "app.components.InstallPluginPopup.downloads": "download",
 | 
			
		||||
    "app.components.InstallPluginPopup.navLink.description": "Beschreibung",
 | 
			
		||||
    "app.components.InstallPluginPopup.navLink.screenshots": "Screenshots",
 | 
			
		||||
    "app.components.InstallPluginPopup.navLink.avis": "avis",
 | 
			
		||||
    "app.components.InstallPluginPopup.navLink.faq": "faq",
 | 
			
		||||
    "app.components.InstallPluginPopup.navLink.changelog": "Änderungsprotokoll",
 | 
			
		||||
    "app.components.InstallPluginPopup.noDescription": "Keine Beschreibung verfügbar",
 | 
			
		||||
  
 | 
			
		||||
    "app.components.LeftMenuFooter.poweredBy": "Stolz präsentiert von",
 | 
			
		||||
    "app.components.LeftMenuLinkContainer.configuration": "Konfiguration",
 | 
			
		||||
    "app.components.LeftMenuLinkContainer.general": "Allgemein",
 | 
			
		||||
    "app.components.LeftMenuLinkContainer.installNewPlugin": "Marktplatz",
 | 
			
		||||
    "app.components.LeftMenuLinkContainer.listPlugins": "Plugins",
 | 
			
		||||
    "app.components.LeftMenuLinkContainer.noPluginsInstalled": "Bisher sind keine Plugins installiert",
 | 
			
		||||
    "app.components.LeftMenuLinkContainer.plugins": "Plugins",
 | 
			
		||||
  
 | 
			
		||||
    "app.components.ListPluginsPage.helmet.title": "Plugins anzeigen",
 | 
			
		||||
    "app.components.ListPluginsPage.title": "Plugins",
 | 
			
		||||
    "app.components.ListPluginsPage.description": "Liste aller im Projekt installierten Plugins.",
 | 
			
		||||
    "app.components.listPluginsPage.deletePlugin.error": "Bei der Entfernung des Plugins ist ein Fehler aufgetreten",
 | 
			
		||||
    "app.components.listPlugins.title.singular": "{number} Plugin ist installiert",
 | 
			
		||||
    "app.components.listPlugins.title.plural": "{number} Plugins sind installiert",
 | 
			
		||||
    "app.components.listPlugins.title.none": "Es ist kein Plugin installiert",
 | 
			
		||||
    "app.components.listPlugins.button": "Neues Plugin hinzufügen",
 | 
			
		||||
  
 | 
			
		||||
    "app.components.NotFoundPage.description": "Nicht gefunden",
 | 
			
		||||
    "app.components.NotFoundPage.back": "Zurück zur Homepage",
 | 
			
		||||
  
 | 
			
		||||
    "app.components.Official": "Offiziell",
 | 
			
		||||
  
 | 
			
		||||
    "app.components.PluginCard.compatible": "Mit der App kompatibel",
 | 
			
		||||
    "app.components.PluginCard.compatibleCommunity": "Mit der Community kompatibel",
 | 
			
		||||
    "app.components.PluginCard.Button.label.download": "Download",
 | 
			
		||||
    "app.components.PluginCard.Button.label.install": "Bereits installiert",
 | 
			
		||||
    "app.components.PluginCard.Button.label.support": "Unterstütze uns",
 | 
			
		||||
    "app.components.PluginCard.price.free": "Umsonst",
 | 
			
		||||
    "app.components.PluginCard.more-details": "Mehr Details",
 | 
			
		||||
  
 | 
			
		||||
    "app.utils.placeholder.defaultMessage": "\u0020",
 | 
			
		||||
    "app.utils.SelectOption.defaultMessage": "\u0020",
 | 
			
		||||
  
 | 
			
		||||
    "components.AutoReloadBlocker.header": "Dieses Plugin benötigt das Neuladen-Feature.",
 | 
			
		||||
    "components.AutoReloadBlocker.description": "Öffne die folgende Datei und aktiviere das Feature.",
 | 
			
		||||
  
 | 
			
		||||
    "components.ErrorBoundary.title": "Etwas ist falsch gelaufen...",
 | 
			
		||||
  
 | 
			
		||||
    "components.OverlayBlocker.title": "Auf Neustart warten...",
 | 
			
		||||
    "components.OverlayBlocker.description": "Du verwendest ein Feature, das einen Neustart des Servers erfordert. Bitte warte, bis der Server wieder gestartet wurde.",
 | 
			
		||||
  
 | 
			
		||||
    "components.ProductionBlocker.header": "Dieses Plugin ist nur in der Entwicklungsumgebung verfügbar.",
 | 
			
		||||
    "components.ProductionBlocker.description": "Aus Sicherheitsgründen müssen wir dieses Plugin in anderen Umgebungen deaktivieren.",
 | 
			
		||||
  
 | 
			
		||||
    "components.popUpWarning.button.cancel": "Abbrechen",
 | 
			
		||||
    "components.popUpWarning.button.confirm": "Bestätigen",
 | 
			
		||||
    "components.popUpWarning.title": "Bitte bestätigen",
 | 
			
		||||
    "components.popUpWarning.message": "Bist du sicher, dass du dies löschen möchtest?",
 | 
			
		||||
  
 | 
			
		||||
    "components.Input.error.validation.email": "Das ist keine gültige E-Mail-Adresse",
 | 
			
		||||
    "components.Input.error.validation.required": "Die Eingabe dieses Wertes ist erforderlich.",
 | 
			
		||||
    "components.Input.error.validation.regex": "Dieser Wert entspricht nicht dem RegEx.",
 | 
			
		||||
    "components.Input.error.validation.max": "Dieser Wert ist zu hoch.",
 | 
			
		||||
    "components.Input.error.validation.min": "Dieser Wert ist zu niedrig.",
 | 
			
		||||
    "components.Input.error.validation.maxLength": "Dieser Wert ist zu lang.",
 | 
			
		||||
    "components.Input.error.validation.minLength": "Dieser Wert ist zu kurz.",
 | 
			
		||||
    "components.Input.error.contentTypeName.taken": "Dieser Name existiert bereits",
 | 
			
		||||
    "components.Input.error.attribute.taken": "Dieser Feldname ist bereits vergeben",
 | 
			
		||||
    "components.Input.error.attribute.key.taken": "Dieser Wert existiert bereits",
 | 
			
		||||
    "components.Input.error.attribute.sameKeyAndName": "Darf nicht gleich sein",
 | 
			
		||||
    "components.Input.error.validation.minSupMax": "Darf nicht höher sein",
 | 
			
		||||
    "components.Input.error.custom-error": "{errorMessage} ",
 | 
			
		||||
  
 | 
			
		||||
    "components.ListRow.empty": "Es gibt keine Daten.",
 | 
			
		||||
  
 | 
			
		||||
    "notification.error": "Ein Fehler ist aufgetreten",
 | 
			
		||||
  
 | 
			
		||||
    "Auth & Permissions": "Auth & Permissions",
 | 
			
		||||
    "Content Manager": "Inhalts-Manager",
 | 
			
		||||
    "Content Type Builder": "Content-Typ-Manager",
 | 
			
		||||
    "Settings Manager": "Einstellungs-Manager",
 | 
			
		||||
    "Email": "E-Mail",
 | 
			
		||||
    "Password": "Passwort",
 | 
			
		||||
    "Username": "Benutzername",
 | 
			
		||||
    "Provider": "Methode",
 | 
			
		||||
    "ResetPasswordToken": "Passwort-Token zurücksetzen",
 | 
			
		||||
    "Role": "Rolle",
 | 
			
		||||
    "New entry": "Neuer Eintrag",
 | 
			
		||||
    "request.error.model.unknow": "Dieses Schema existiert nicht"
 | 
			
		||||
  }
 | 
			
		||||
  
 | 
			
		||||
@ -3,20 +3,20 @@
 | 
			
		||||
  "app.components.ComingSoonPage.featuresNotAvailable": "This feature is still under active development.",
 | 
			
		||||
 | 
			
		||||
  "app.components.DownloadInfo.download": "Download in progress...",
 | 
			
		||||
  "app.components.DownloadInfo.text": "It can take a minute. Thanks for your patience.",
 | 
			
		||||
  "app.components.DownloadInfo.text": "This could take a minute. Thanks for your patience.",
 | 
			
		||||
 | 
			
		||||
  "app.components.HomePage.welcome": "Welcome on board!",
 | 
			
		||||
  "app.components.HomePage.description.part1": "We are happy to have you as one of our users!",
 | 
			
		||||
  "app.components.HomePage.description.part2": "You are now a member of our community which will help you building your dreamed app.",
 | 
			
		||||
  "app.components.HomePage.button": "Create your first content type",
 | 
			
		||||
  "app.components.HomePage.description.part2": "You are now a member of our community which will help you building your dream app.",
 | 
			
		||||
  "app.components.HomePage.button": "Create your first Content Type",
 | 
			
		||||
  "app.components.HomePage.feedback": "Feel free to ask questions or give us feedback by using one of the support channels below.",
 | 
			
		||||
 | 
			
		||||
  "app.components.InstallPluginPage.helmet": "Marketplace - Plugins",
 | 
			
		||||
  "app.components.InstallPluginPage.title": "Marketplace - Plugins",
 | 
			
		||||
  "app.components.InstallPluginPage.description": "Extend your app with no efforts",
 | 
			
		||||
  "app.components.InstallPluginPage.plugin.support-us.description": "Support us by buying the Strapi t-shirt. It will allow us to keep working on the project and try giving the best possible experience!",
 | 
			
		||||
  "app.components.InstallPluginPage.description": "Extend your app effortlessly.",
 | 
			
		||||
  "app.components.InstallPluginPage.plugin.support-us.description": "Support us by buying the Strapi T-shirt. That will allow us to keep working on the project and try giving you the best possible experience!",
 | 
			
		||||
  "app.components.InstallPluginPage.InputSearch.label": " ",
 | 
			
		||||
  "app.components.InstallPluginPage.InputSearch.placeholder": "Search a plugin... (ex: authentication)",
 | 
			
		||||
  "app.components.InstallPluginPage.InputSearch.placeholder": "Search for a plugin... (ex: authentication)",
 | 
			
		||||
  "app.components.InstallPluginPopup.downloads": "download",
 | 
			
		||||
  "app.components.InstallPluginPopup.navLink.description": "Description",
 | 
			
		||||
  "app.components.InstallPluginPopup.navLink.screenshots": "Screenshots",
 | 
			
		||||
@ -36,10 +36,10 @@
 | 
			
		||||
  "app.components.ListPluginsPage.helmet.title": "List plugins",
 | 
			
		||||
  "app.components.ListPluginsPage.title": "Plugins",
 | 
			
		||||
  "app.components.ListPluginsPage.description": "List of the installed plugins in the project.",
 | 
			
		||||
  "app.components.listPluginsPage.deletePlugin.error": "An error occurred during the plugin uninstallation",
 | 
			
		||||
  "app.components.listPluginsPage.deletePlugin.error": "An error occurred while uninstalling the plugin",
 | 
			
		||||
  "app.components.listPlugins.title.singular": "{number} plugin is installed",
 | 
			
		||||
  "app.components.listPlugins.title.plural": "{number} plugins are installed",
 | 
			
		||||
  "app.components.listPlugins.title.none": "No plugin is installed",
 | 
			
		||||
  "app.components.listPlugins.title.none": "No plugins installed",
 | 
			
		||||
  "app.components.listPlugins.button": "Add New Plugin",
 | 
			
		||||
 | 
			
		||||
  "app.components.NotFoundPage.description": "Not Found",
 | 
			
		||||
@ -61,13 +61,13 @@
 | 
			
		||||
  "components.AutoReloadBlocker.header": "Reload feature is required for this plugin.",
 | 
			
		||||
  "components.AutoReloadBlocker.description": "Open the following file and enable the feature.",
 | 
			
		||||
 | 
			
		||||
  "components.ErrorBoundary.title": "Something wen't wrong...",
 | 
			
		||||
  "components.ErrorBoundary.title": "Something went wrong...",
 | 
			
		||||
 | 
			
		||||
  "components.OverlayBlocker.title": "Waiting for restart...",
 | 
			
		||||
  "components.OverlayBlocker.description": "You're using a feature that needs the server to restart. Please wait until the server is up.",
 | 
			
		||||
 | 
			
		||||
  "components.ProductionBlocker.header": "This plugin is only available in development.",
 | 
			
		||||
  "components.ProductionBlocker.description": "For safety we have to disable this plugin in other environments.",
 | 
			
		||||
  "components.ProductionBlocker.description": "For safety purposes we have to disable this plugin in other environments.",
 | 
			
		||||
 | 
			
		||||
  "components.popUpWarning.button.cancel": "Cancel",
 | 
			
		||||
  "components.popUpWarning.button.confirm": "Confirm",
 | 
			
		||||
@ -75,7 +75,7 @@
 | 
			
		||||
  "components.popUpWarning.message": "Are you sure you want to delete this?",
 | 
			
		||||
 | 
			
		||||
  "components.Input.error.validation.email": "This is not an email",
 | 
			
		||||
  "components.Input.error.validation.required": "This value input is required.",
 | 
			
		||||
  "components.Input.error.validation.required": "This value is required.",
 | 
			
		||||
  "components.Input.error.validation.regex": "The value not match the regex.",
 | 
			
		||||
  "components.Input.error.validation.max": "The value is too high.",
 | 
			
		||||
  "components.Input.error.validation.min": "The value is too low.",
 | 
			
		||||
@ -84,7 +84,7 @@
 | 
			
		||||
  "components.Input.error.contentTypeName.taken": "This name already exists",
 | 
			
		||||
  "components.Input.error.attribute.taken": "This field name already exists",
 | 
			
		||||
  "components.Input.error.attribute.key.taken": "This value already exists",
 | 
			
		||||
  "components.Input.error.attribute.sameKeyAndName": "Can't be equals",
 | 
			
		||||
  "components.Input.error.attribute.sameKeyAndName": "Can't be equal",
 | 
			
		||||
  "components.Input.error.validation.minSupMax": "Can't be superior",
 | 
			
		||||
  "components.Input.error.custom-error": "{errorMessage} ",
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										112
									
								
								packages/strapi-admin/admin/src/translations/pl.json
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										112
									
								
								packages/strapi-admin/admin/src/translations/pl.json
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,112 @@
 | 
			
		||||
{
 | 
			
		||||
  "app.components.ComingSoonPage.comingSoon": "Wkrótce",
 | 
			
		||||
  "app.components.ComingSoonPage.featuresNotAvailable": "Ta funkcjonalność wciąż jest w fazie tworzenia.",
 | 
			
		||||
 | 
			
		||||
  "app.components.DownloadInfo.download": "Pobieranie w toku...",
 | 
			
		||||
  "app.components.DownloadInfo.text": "To może chwilę potrwać. Dziękujemy za cierpliwość.",
 | 
			
		||||
 | 
			
		||||
  "app.components.HomePage.welcome": "Witaj na pokładzie!",
 | 
			
		||||
  "app.components.HomePage.description.part1": "Cieszymy się, że jesteś jednym z naszych użytkowników!",
 | 
			
		||||
  "app.components.HomePage.description.part2": "Należysz teraz do społeczności która pomoże ci zbudować wymarzoną aplikację.",
 | 
			
		||||
  "app.components.HomePage.button": "Stwórz swój pierwszy model",
 | 
			
		||||
  "app.components.HomePage.feedback": "Możesz zadawać pytania lub przesyłać nam opinie, korzystając z jednego z poniższych kanałów pomocy.",
 | 
			
		||||
 | 
			
		||||
  "app.components.InputFile.newFile": "DODAJ NOWY PLIK",
 | 
			
		||||
  "app.components.InputFileDetails.details": "Szczegóły",
 | 
			
		||||
  "app.components.ImgPreview.hint": "Przeciągnij i upuść plik w tym obszarze lub {browse}, aby przesłać plik",
 | 
			
		||||
  "app.components.ImgPreview.hint.browse": "przeglądaj",
 | 
			
		||||
 | 
			
		||||
  "app.components.InstallPluginPage.helmet": "Sklep – Wtyczki",
 | 
			
		||||
  "app.components.InstallPluginPage.title": "Sklep – Wtyczki",
 | 
			
		||||
  "app.components.InstallPluginPage.description": "Rozszerz swoją aplikację bez wysiłku",
 | 
			
		||||
  "app.components.InstallPluginPage.plugin.support-us.description": "Wesprzyj nas kupując koszulkę Strapi. Pozwoli nam to kontynuuować pracę nad projektem i wzbogacanie go, tak aby dać ci jak najlepsze wrażenia.",
 | 
			
		||||
  "app.components.InstallPluginPage.InputSearch.label": " ",
 | 
			
		||||
  "app.components.InstallPluginPage.InputSearch.placeholder": "Wyszukaj wtyczkę... (np: authentication)",
 | 
			
		||||
  "app.components.InstallPluginPopup.downloads": "pobierz",
 | 
			
		||||
  "app.components.InstallPluginPopup.navLink.description": "Opis",
 | 
			
		||||
  "app.components.InstallPluginPopup.navLink.screenshots": "Zrzuty ekranu",
 | 
			
		||||
  "app.components.InstallPluginPopup.navLink.avis": "avis",
 | 
			
		||||
  "app.components.InstallPluginPopup.navLink.faq": "faq",
 | 
			
		||||
  "app.components.InstallPluginPopup.navLink.changelog": "dziennik zmian",
 | 
			
		||||
  "app.components.InstallPluginPopup.noDescription": "Brak dostępnego opisu",
 | 
			
		||||
 | 
			
		||||
  "app.components.LeftMenuFooter.poweredBy": "Dumnie wspierane przez",
 | 
			
		||||
  "app.components.LeftMenuLinkContainer.configuration": "Konfiguracje",
 | 
			
		||||
  "app.components.LeftMenuLinkContainer.general": "Ogólne",
 | 
			
		||||
  "app.components.LeftMenuLinkContainer.installNewPlugin": "Sklep",
 | 
			
		||||
  "app.components.LeftMenuLinkContainer.listPlugins": "Wtyczki",
 | 
			
		||||
  "app.components.LeftMenuLinkContainer.noPluginsInstalled": "Brak zainstalowanych wtyczek",
 | 
			
		||||
  "app.components.LeftMenuLinkContainer.plugins": "Wtyczki",
 | 
			
		||||
 | 
			
		||||
  "app.components.ListPluginsPage.helmet.title": "Lista wtyczek",
 | 
			
		||||
  "app.components.ListPluginsPage.title": "Wtyczki",
 | 
			
		||||
  "app.components.ListPluginsPage.description": "Lista zainstalowanych wtyczek w projekcie.",
 | 
			
		||||
  "app.components.listPluginsPage.deletePlugin.error": "Wystąpił błąd podczas dezinstalacji wtyczki",
 | 
			
		||||
  "app.components.listPlugins.title.singular": "{number} wtyczka jest zainstalowana",
 | 
			
		||||
  "app.components.listPlugins.title.plural": "{number} wtyczek jest zainstalowanych",
 | 
			
		||||
  "app.components.listPlugins.title.none": "Żadna wtyczka nie jest zainstalowana",
 | 
			
		||||
  "app.components.listPlugins.button": "Dodaj nową wtyczkę",
 | 
			
		||||
 | 
			
		||||
  "app.components.NotFoundPage.description": "Nie znaleziono",
 | 
			
		||||
  "app.components.NotFoundPage.back": "Powrót do strony głównej",
 | 
			
		||||
 | 
			
		||||
  "app.components.Official": "Oficjalna",
 | 
			
		||||
 | 
			
		||||
  "app.components.PluginCard.compatible": "Kompatybilna z twoją aplikacją",
 | 
			
		||||
  "app.components.PluginCard.compatibleCommunity": "Kompatybilna ze społecznością",
 | 
			
		||||
  "app.components.PluginCard.Button.label.download": "Pobierz",
 | 
			
		||||
  "app.components.PluginCard.Button.label.install": "Zainstalowana",
 | 
			
		||||
  "app.components.PluginCard.Button.label.support": "Wesprzyj nas",
 | 
			
		||||
  "app.components.PluginCard.price.free": "Darmowa",
 | 
			
		||||
  "app.components.PluginCard.more-details": "Więcej szczegółów",
 | 
			
		||||
 | 
			
		||||
  "app.utils.placeholder.defaultMessage": "\u0020",
 | 
			
		||||
  "app.utils.SelectOption.defaultMessage": "\u0020",
 | 
			
		||||
 | 
			
		||||
  "components.AutoReloadBlocker.header": "Do tej wtyczki wymagana jest funkcja przeładowania.",
 | 
			
		||||
  "components.AutoReloadBlocker.description": "Otwórz następujący plik i włącz funkcjonalność.",
 | 
			
		||||
 | 
			
		||||
  "components.ErrorBoundary.title": "Coś poszło nie tak...",
 | 
			
		||||
 | 
			
		||||
  "components.OverlayBlocker.title": "Oczekiwanie na ponowne uruchomienie...",
 | 
			
		||||
  "components.OverlayBlocker.description": "Używasz funkcjonalności która wymaga ponownego uruchomienia serwera. Poczekaj proszę aż aplikacja znów będzie aktywna.",
 | 
			
		||||
 | 
			
		||||
  "components.ProductionBlocker.header": "Ta wtyczka jest dostępna tylko w wersji deweloperskiej.",
 | 
			
		||||
  "components.ProductionBlocker.description": "Ze względów bezpieczeństwa wtyczka jest wyłączona w innych środowiskach.",
 | 
			
		||||
 | 
			
		||||
  "components.popUpWarning.button.cancel": "Nie",
 | 
			
		||||
  "components.popUpWarning.button.confirm": "Tak",
 | 
			
		||||
  "components.popUpWarning.title": "Potwierdzenie",
 | 
			
		||||
  "components.popUpWarning.message": "Czy na pewno chcesz to usunąć?",
 | 
			
		||||
 | 
			
		||||
  "components.Input.error.validation.email": "To nie jest email",
 | 
			
		||||
  "components.Input.error.validation.required": "Wpisanie wartości dla tego atrybutu jest wymagane.",
 | 
			
		||||
  "components.Input.error.validation.regex": "Wartość nie jest zgodna z wymaganym wzorcem.",
 | 
			
		||||
  "components.Input.error.validation.max": "Wartość jest za wysoka.",
 | 
			
		||||
  "components.Input.error.validation.min": "Wartość jest za niska.",
 | 
			
		||||
  "components.Input.error.validation.maxLength": "Wartość jest za długa.",
 | 
			
		||||
  "components.Input.error.validation.minLength": "Wartość jest za krótka.",
 | 
			
		||||
  "components.Input.error.contentTypeName.taken": "Ta nazwa już istnieje",
 | 
			
		||||
  "components.Input.error.attribute.taken": "Ta nazwa pola już istnieje",
 | 
			
		||||
  "components.Input.error.attribute.key.taken": "Ta wartość już istnieje",
 | 
			
		||||
  "components.Input.error.attribute.sameKeyAndName": "Nie mogą być takie same",
 | 
			
		||||
  "components.Input.error.validation.minSupMax": "Nie może być większa",
 | 
			
		||||
  "components.Input.error.custom-error": "{errorMessage} ",
 | 
			
		||||
 | 
			
		||||
  "components.ListRow.empty": "Nie ma żadnych danych do wyświetlenia.",
 | 
			
		||||
 | 
			
		||||
  "notification.error": "Wystąpił błąd",
 | 
			
		||||
 | 
			
		||||
  "Auth & Permissions": "Użytkownicy & Uprawnienia",
 | 
			
		||||
  "Content Manager": "Menedżer treści",
 | 
			
		||||
  "Content Type Builder": "Konstruktor modeli",
 | 
			
		||||
  "Settings Manager": "Menedżer ustawień",
 | 
			
		||||
  "Email": "Email",
 | 
			
		||||
  "Password": "Hasło",
 | 
			
		||||
  "Username": "Nazwa użytkownika",
 | 
			
		||||
  "Provider": "Dostawca",
 | 
			
		||||
  "ResetPasswordToken": "Token resetu hasła",
 | 
			
		||||
  "Role": "Rola",
 | 
			
		||||
  "New entry": "Nowy wpis",
 | 
			
		||||
  "request.error.model.unknow": "Ten model nie istnieje"
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-admin",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "Strapi Admin",
 | 
			
		||||
  "repository": {
 | 
			
		||||
    "type": "git",
 | 
			
		||||
@ -27,8 +27,8 @@
 | 
			
		||||
  },
 | 
			
		||||
  "devDependencies": {
 | 
			
		||||
    "sanitize.css": "^4.1.0",
 | 
			
		||||
    "strapi-helper-plugin": "3.0.0-alpha.9.3",
 | 
			
		||||
    "strapi-utils": "3.0.0-alpha.9.3"
 | 
			
		||||
    "strapi-helper-plugin": "3.0.0-alpha.10.1",
 | 
			
		||||
    "strapi-utils": "3.0.0-alpha.10.1"
 | 
			
		||||
  },
 | 
			
		||||
  "author": {
 | 
			
		||||
    "name": "Strapi",
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-bookshelf",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "Bookshelf hook for the Strapi framework",
 | 
			
		||||
  "homepage": "http://strapi.io",
 | 
			
		||||
  "keywords": [
 | 
			
		||||
@ -19,8 +19,8 @@
 | 
			
		||||
    "bookshelf": "^0.10.3",
 | 
			
		||||
    "lodash": "^4.17.4",
 | 
			
		||||
    "pluralize": "^6.0.0",
 | 
			
		||||
    "strapi-knex": "3.0.0-alpha.9.3",
 | 
			
		||||
    "strapi-utils": "3.0.0-alpha.9.3"
 | 
			
		||||
    "strapi-knex": "3.0.0-alpha.10.1",
 | 
			
		||||
    "strapi-utils": "3.0.0-alpha.10.1"
 | 
			
		||||
  },
 | 
			
		||||
  "strapi": {
 | 
			
		||||
    "isHook": true,
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-ejs",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "EJS hook for the Strapi framework",
 | 
			
		||||
  "homepage": "http://strapi.io",
 | 
			
		||||
  "keywords": [
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-generate-admin",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "Generate the default admin panel for a Strapi application.",
 | 
			
		||||
  "homepage": "http://strapi.io",
 | 
			
		||||
  "keywords": [
 | 
			
		||||
@ -15,7 +15,7 @@
 | 
			
		||||
  "dependencies": {
 | 
			
		||||
    "fs-extra": "^4.0.1",
 | 
			
		||||
    "lodash": "^4.17.4",
 | 
			
		||||
    "strapi-admin": "3.0.0-alpha.9.3"
 | 
			
		||||
    "strapi-admin": "3.0.0-alpha.10.1"
 | 
			
		||||
  },
 | 
			
		||||
  "author": {
 | 
			
		||||
    "email": "hi@strapi.io",
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-generate-api",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "Generate an API for a Strapi application.",
 | 
			
		||||
  "homepage": "http://strapi.io",
 | 
			
		||||
  "keywords": [
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-generate-controller",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "Generate a controller for a Strapi API.",
 | 
			
		||||
  "homepage": "http://strapi.io",
 | 
			
		||||
  "keywords": [
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-generate-model",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "Generate a model for a Strapi API.",
 | 
			
		||||
  "homepage": "http://strapi.io",
 | 
			
		||||
  "keywords": [
 | 
			
		||||
 | 
			
		||||
@ -63,11 +63,6 @@ module.exports = {
 | 
			
		||||
    // Empty public directory.
 | 
			
		||||
    'public': {
 | 
			
		||||
      folder: {}
 | 
			
		||||
    },
 | 
			
		||||
 | 
			
		||||
    // Empty node_modules directory.
 | 
			
		||||
    'node_modules': {
 | 
			
		||||
      folder: {}
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-generate-new",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "Generate a new Strapi application.",
 | 
			
		||||
  "homepage": "http://strapi.io",
 | 
			
		||||
  "keywords": [
 | 
			
		||||
@ -18,7 +18,7 @@
 | 
			
		||||
    "get-installed-path": "^3.0.1",
 | 
			
		||||
    "inquirer": "^4.0.2",
 | 
			
		||||
    "lodash": "^4.17.4",
 | 
			
		||||
    "strapi-utils": "3.0.0-alpha.9.3",
 | 
			
		||||
    "strapi-utils": "3.0.0-alpha.10.1",
 | 
			
		||||
    "uuid": "^3.1.0"
 | 
			
		||||
  },
 | 
			
		||||
  "scripts": {
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-generate-plugin",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "Generate an plugin for a Strapi application.",
 | 
			
		||||
  "homepage": "http://strapi.io",
 | 
			
		||||
  "keywords": [
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-generate-policy",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "Generate a policy for a Strapi API.",
 | 
			
		||||
  "homepage": "http://strapi.io",
 | 
			
		||||
  "keywords": [
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-generate-service",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "Generate a service for a Strapi API.",
 | 
			
		||||
  "homepage": "http://strapi.io",
 | 
			
		||||
  "keywords": [
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-generate",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "Master of ceremonies for the Strapi generators.",
 | 
			
		||||
  "homepage": "http://strapi.io",
 | 
			
		||||
  "keywords": [
 | 
			
		||||
@ -17,7 +17,7 @@
 | 
			
		||||
    "fs-extra": "^4.0.0",
 | 
			
		||||
    "lodash": "^4.17.4",
 | 
			
		||||
    "reportback": "^2.0.1",
 | 
			
		||||
    "strapi-utils": "3.0.0-alpha.9.3"
 | 
			
		||||
    "strapi-utils": "3.0.0-alpha.10.1"
 | 
			
		||||
  },
 | 
			
		||||
  "author": {
 | 
			
		||||
    "name": "Strapi team",
 | 
			
		||||
 | 
			
		||||
@ -14,7 +14,7 @@
 | 
			
		||||
.iconEyeSubWrapper {
 | 
			
		||||
  position: absolute;
 | 
			
		||||
  top: -2.6rem;
 | 
			
		||||
  right: 2.7rem;
 | 
			
		||||
  right: 1.7rem;
 | 
			
		||||
  color: #9EA7B8;
 | 
			
		||||
  &:hover {
 | 
			
		||||
    color: black!important;
 | 
			
		||||
 | 
			
		||||
@ -77,6 +77,7 @@ class InputPasswordWithErrors extends React.Component {
 | 
			
		||||
      labelClassName,
 | 
			
		||||
      labelStyle,
 | 
			
		||||
      name,
 | 
			
		||||
      noErrorsDescription,
 | 
			
		||||
      onChange,
 | 
			
		||||
      onFocus,
 | 
			
		||||
      placeholder,
 | 
			
		||||
@ -122,7 +123,7 @@ class InputPasswordWithErrors extends React.Component {
 | 
			
		||||
        />
 | 
			
		||||
        <InputErrors
 | 
			
		||||
          className={errorsClassName}
 | 
			
		||||
          errors={this.state.errors}
 | 
			
		||||
          errors={!noErrorsDescription && this.state.errors || []}
 | 
			
		||||
          style={errorsStyle}
 | 
			
		||||
        />
 | 
			
		||||
      </div>
 | 
			
		||||
@ -150,6 +151,7 @@ InputPasswordWithErrors.defaultProps = {
 | 
			
		||||
  label: '',
 | 
			
		||||
  labelClassName: '',
 | 
			
		||||
  labelStyle: {},
 | 
			
		||||
  noErrorsDescription: false,
 | 
			
		||||
  placeholder: 'app.utils.placeholder.defaultMessage',
 | 
			
		||||
  style: {},
 | 
			
		||||
  tabIndex: '0',
 | 
			
		||||
@ -190,6 +192,7 @@ InputPasswordWithErrors.propTypes = {
 | 
			
		||||
  labelClassName: PropTypes.string,
 | 
			
		||||
  labelStyle: PropTypes.object,
 | 
			
		||||
  name: PropTypes.string.isRequired,
 | 
			
		||||
  noErrorsDescription: PropTypes.bool,
 | 
			
		||||
  onBlur: PropTypes.oneOfType([
 | 
			
		||||
    PropTypes.bool,
 | 
			
		||||
    PropTypes.func,
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-helper-plugin",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "Helper for Strapi plugins development",
 | 
			
		||||
  "engines": {
 | 
			
		||||
    "node": ">= 8.0.0",
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-knex",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "Knex hook for the Strapi framework",
 | 
			
		||||
  "homepage": "http://strapi.io",
 | 
			
		||||
  "keywords": [
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-middleware-views",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "Views hook to enable server-side rendering for the Strapi framework",
 | 
			
		||||
  "homepage": "http://strapi.io",
 | 
			
		||||
  "keywords": [
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-mongoose",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "Mongoose hook for the Strapi framework",
 | 
			
		||||
  "homepage": "http://strapi.io",
 | 
			
		||||
  "keywords": [
 | 
			
		||||
@ -19,7 +19,7 @@
 | 
			
		||||
    "mongoose": "^5.0.4",
 | 
			
		||||
    "mongoose-float": "^1.0.2",
 | 
			
		||||
    "pluralize": "^6.0.0",
 | 
			
		||||
    "strapi-utils": "3.0.0-alpha.9.3"
 | 
			
		||||
    "strapi-utils": "3.0.0-alpha.10.1"
 | 
			
		||||
  },
 | 
			
		||||
  "strapi": {
 | 
			
		||||
    "isHook": true
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										55
									
								
								packages/strapi-plugin-content-manager/admin/src/translations/de.json
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							
							
						
						
									
										55
									
								
								packages/strapi-plugin-content-manager/admin/src/translations/de.json
									
									
									
									
									
										
										
										Executable file → Normal file
									
								
							@ -1 +1,54 @@
 | 
			
		||||
{}
 | 
			
		||||
{
 | 
			
		||||
    "plugin.description.short": "Greife blitzschnell auf alle Daten in der Datenbank zu und manipuliere sie.",
 | 
			
		||||
    "plugin.description.long": "Greife blitzschnell auf alle Daten in der Datenbank zu und manipuliere sie.",
 | 
			
		||||
    "containers.Home.pluginHeaderTitle": "Inhalts-Manager",
 | 
			
		||||
    "containers.Home.introduction": "Um deine Einträge zu verwalten, klicke auf den entsprechenden Link im Menü links. Dieses Plugin ist noch in aktiver Entwicklung und seine Einstellungen können nicht optimal angepasst werden.",
 | 
			
		||||
    "containers.Home.pluginHeaderDescription": "Verwalte deine Einträge mithilfe eines mächtigen und wunderschönen Interfaces.",
 | 
			
		||||
    "containers.Edit.submit": "Speichern",
 | 
			
		||||
    "containers.Edit.editing": "Bearbeite...",
 | 
			
		||||
    "containers.Edit.delete": "Löschen",
 | 
			
		||||
    "containers.Edit.cancel": "Abbrechen",
 | 
			
		||||
    "containers.Edit.returnList": "Zu Liste zurückkehren",
 | 
			
		||||
    "containers.List.addAnEntry": "Füge {entity} hinzu",
 | 
			
		||||
    "containers.List.pluginHeaderDescription": "{label} Einträge gefunden",
 | 
			
		||||
    "containers.List.pluginHeaderDescription.singular": "{label} Eintrag gefunden",
 | 
			
		||||
    "components.LimitSelect.itemsPerPage": "Einträge pro Seite",
 | 
			
		||||
    "containers.List.errorFetchRecords": "Fehler",
 | 
			
		||||
  
 | 
			
		||||
    "emptyAttributes.title": "Es gibt noch keine Felder",
 | 
			
		||||
    "emptyAttributes.description": "Füge deinem Content-Typen das erste Feld hinzu",
 | 
			
		||||
    "emptyAttributes.button": "Den Content-Typ-Generator öffnen",
 | 
			
		||||
  
 | 
			
		||||
    "error.schema.generation": "Bei der Generierung des Schemas ist ein Fehler aufgetreten.",
 | 
			
		||||
    "error.records.count": "Beim Abruf von count records ist ein Fehler aufgetreten.",
 | 
			
		||||
    "error.records.fetch": "Beim Abruf von Dokumenten ist ein Fehler aufgetreten.",
 | 
			
		||||
    "error.record.fetch": "Beim Abruf eines Dokuments ist ein Fehler aufgetreten.",
 | 
			
		||||
    "error.record.create": "Beim Anlegen eines Dokuments ist ein Fehler aufgetreten.",
 | 
			
		||||
    "error.record.update": "Beim Aktualisieren eines Dokuments ist ein Fehler aufgetreten.",
 | 
			
		||||
    "error.record.delete": "Beim Löschen eines Dokuments ist ein Fehler aufgetreten.",
 | 
			
		||||
    "error.model.fetch": "Beim Abruf von model config fetch ist ein Fehler aufgetreten.",
 | 
			
		||||
    "error.validation.required": "Dieser Wert ist erforderlich.",
 | 
			
		||||
    "error.validation.regex": "Dieser Wert entspricht nicht dem RegEx.",
 | 
			
		||||
    "error.validation.max": "Dieser Wert ist zu hoch.",
 | 
			
		||||
    "error.validation.min": "Dieser Wert ist zu niedrig.",
 | 
			
		||||
    "error.validation.maxLength": "Dieser Wert ist zu lang.",
 | 
			
		||||
    "error.validation.minLength": "Dieser Wert ist zu kurz.",
 | 
			
		||||
    "error.contentTypeName.taken": "Dieser Name existiert bereits",
 | 
			
		||||
    "error.attribute.taken": "Dieser Feldname ist bereits vergeben",
 | 
			
		||||
    "error.attribute.key.taken": "Dieser Wert existiert bereits",
 | 
			
		||||
    "error.attribute.sameKeyAndName": "Darf nicht gleich sein",
 | 
			
		||||
    "error.validation.minSupMax": "Darf nicht höher sein",
 | 
			
		||||
  
 | 
			
		||||
    "notification.error.relationship.fetch": "Beim Abruf von Beziehungen ist ein Fehler aufgetreten.",
 | 
			
		||||
  
 | 
			
		||||
    "success.record.delete": "Gelöscht",
 | 
			
		||||
    "success.record.save": "Gespeichert",
 | 
			
		||||
  
 | 
			
		||||
    "pageNotFound": "Seite nicht gefunden",
 | 
			
		||||
  
 | 
			
		||||
    "popUpWarning.button.cancel": "Abbrechen",
 | 
			
		||||
    "popUpWarning.button.confirm": "Bestätigen",
 | 
			
		||||
    "popUpWarning.title": "Bitte bestätigen",
 | 
			
		||||
    "popUpWarning.bodyMessage.contentType.delete": "Bist du sicher, dass du diesen Content-Typ löschen willst?"
 | 
			
		||||
  }
 | 
			
		||||
  
 | 
			
		||||
@ -7,7 +7,7 @@
 | 
			
		||||
  "containers.Edit.submit": "Save",
 | 
			
		||||
  "containers.Edit.editing": "Editing...",
 | 
			
		||||
  "containers.Edit.delete": "Delete",
 | 
			
		||||
  "containers.Edit.cancel": "Cancel",
 | 
			
		||||
  "containers.Edit.cancel": "Reset",
 | 
			
		||||
  "containers.Edit.returnList": "Return to list",
 | 
			
		||||
  "containers.List.addAnEntry": "Add New {entity}",
 | 
			
		||||
  "containers.List.pluginHeaderDescription": "{label} entries found",
 | 
			
		||||
 | 
			
		||||
@ -0,0 +1,53 @@
 | 
			
		||||
{
 | 
			
		||||
  "plugin.description.short": "Szybki sposób na przeglądanie, zmianę i usuwanie wpisów z twojej bazy danych.",
 | 
			
		||||
  "plugin.description.long": "Szybki sposób na przeglądanie, zmianę i usuwanie wpisów z twojej bazy danych.",
 | 
			
		||||
  "containers.Home.pluginHeaderTitle": "Menedżer treści",
 | 
			
		||||
  "containers.Home.introduction": "Aby edytować wpisy przejdź do odpowiedniego linku w menu po lewej. Ta wtyczka nie ma odpowiedniego sposobu na edytowanie ustawień i nadal jest w trakcie rozwijania.",
 | 
			
		||||
  "containers.Home.pluginHeaderDescription": "Zarządzaj swoimi wpisami za pomocą potężnego i pięknego interfejsu.",
 | 
			
		||||
  "containers.Edit.submit": "Zapisz",
 | 
			
		||||
  "containers.Edit.editing": "Edytowanie...",
 | 
			
		||||
  "containers.Edit.delete": "Usuń",
 | 
			
		||||
  "containers.Edit.cancel": "Anuluj",
 | 
			
		||||
  "containers.Edit.returnList": "Wróć do listy",
 | 
			
		||||
  "containers.List.addAnEntry": "Dodaj {entity}",
 | 
			
		||||
  "containers.List.pluginHeaderDescription": "{label} wpisów znalezionych",
 | 
			
		||||
  "containers.List.pluginHeaderDescription.singular": "{label} wpis znaleziony",
 | 
			
		||||
  "components.LimitSelect.itemsPerPage": "Wpisów na stronę",
 | 
			
		||||
  "containers.List.errorFetchRecords": "Błąd",
 | 
			
		||||
 | 
			
		||||
  "emptyAttributes.title": "Nie ma jeszcze żadnych atrybutów",
 | 
			
		||||
  "emptyAttributes.description": "Dodaj swoje pierwszy atrybut do modelu",
 | 
			
		||||
  "emptyAttributes.button": "Przejdź do konstruktora modeli",
 | 
			
		||||
 | 
			
		||||
  "error.schema.generation": "Wystąpił błąd podczas generowania schematu.",
 | 
			
		||||
  "error.records.count": "Wystąpił błąd podczas liczenia rekordów.",
 | 
			
		||||
  "error.records.fetch": "Wystąpił błąd podczas pobierania rekordów.",
 | 
			
		||||
  "error.record.fetch": "Wystąpił błąd podczas pobierania rekordu.",
 | 
			
		||||
  "error.record.create": "Wystąpił błąd podczas tworzenia rekordu.",
 | 
			
		||||
  "error.record.update": "Wystąpił błąd podczas zmiany rekordu.",
 | 
			
		||||
  "error.record.delete": "Wystąpił błąd podczas usuwania rekordu.",
 | 
			
		||||
  "error.model.fetch": "Wystąpił błąd podczas pobierania konfiguracji modelów.",
 | 
			
		||||
  "error.validation.required": "Wpisanie wartości dla tego atrybutu jest wymagane.",
 | 
			
		||||
  "error.validation.regex": "Wartość nie jest zgodna z wymaganym wzorcem.",
 | 
			
		||||
  "error.validation.max": "Wartość jest za wysoka.",
 | 
			
		||||
  "error.validation.min": "Wartość jest za niska.",
 | 
			
		||||
  "error.validation.maxLength": "Wartość jest za długa.",
 | 
			
		||||
  "error.validation.minLength": "Wartość jest za krótka.",
 | 
			
		||||
  "error.contentTypeName.taken": "Ta nazwa już istnieje",
 | 
			
		||||
  "error.attribute.taken": "Atrybut o tej nazwie już istnieje",
 | 
			
		||||
  "error.attribute.key.taken": "Ta wartość już istnieje",
 | 
			
		||||
  "error.attribute.sameKeyAndName": "Nie mogą być takie same",
 | 
			
		||||
  "error.validation.minSupMax": "Nie może być większa",
 | 
			
		||||
 | 
			
		||||
  "notification.error.relationship.fetch": "Wystąpił błąd podczas pobierania relacji.",
 | 
			
		||||
 | 
			
		||||
  "success.record.delete": "Usunięto",
 | 
			
		||||
  "success.record.save": "Zapisano",
 | 
			
		||||
 | 
			
		||||
  "pageNotFound": "Strona nie znaleziona",
 | 
			
		||||
 | 
			
		||||
  "popUpWarning.button.cancel": "Nie",
 | 
			
		||||
  "popUpWarning.button.confirm": "Tak",
 | 
			
		||||
  "popUpWarning.title": "Potwierdzenie",
 | 
			
		||||
  "popUpWarning.bodyMessage.contentType.delete": "Czy na pewno chcesz usunąć ten wpis?"
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-plugin-content-manager",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "A powerful UI to easily manage your data.",
 | 
			
		||||
  "strapi": {
 | 
			
		||||
    "name": "Content Manager",
 | 
			
		||||
@ -24,7 +24,7 @@
 | 
			
		||||
  },
 | 
			
		||||
  "devDependencies": {
 | 
			
		||||
    "react-select": "^1.0.0-rc.5",
 | 
			
		||||
    "strapi-helper-plugin": "3.0.0-alpha.9.3"
 | 
			
		||||
    "strapi-helper-plugin": "3.0.0-alpha.10.1"
 | 
			
		||||
  },
 | 
			
		||||
  "author": {
 | 
			
		||||
    "name": "Strapi team",
 | 
			
		||||
 | 
			
		||||
@ -0,0 +1,160 @@
 | 
			
		||||
{
 | 
			
		||||
    "plugin.description.short": "Modelliere die Datenstruktur deiner API.",
 | 
			
		||||
    "plugin.description.long": "Modelliere die Datenstruktur deiner API. Lege neue Felder und Beziehungen innerhalb von einer Minute an. Erforderliche Dateien werden automatisch in deinem Projekt angelegt und aktualisiert.",
 | 
			
		||||
    "attribute.string": "String",
 | 
			
		||||
    "attribute.text": "Text",
 | 
			
		||||
    "attribute.boolean": "Boolean",
 | 
			
		||||
    "attribute.float": "Float",
 | 
			
		||||
    "attribute.integer": "Integer",
 | 
			
		||||
    "attribute.decimal": "Decimal",
 | 
			
		||||
    "attribute.date": "Datum",
 | 
			
		||||
    "attribute.json": "JSON",
 | 
			
		||||
    "attribute.media": "Medien",
 | 
			
		||||
    "attribute.email": "E-Mail",
 | 
			
		||||
    "attribute.password": "Passwort",
 | 
			
		||||
    "attribute.relation": "Beziehung",
 | 
			
		||||
  
 | 
			
		||||
    "contentType.temporaryDisplay": "(Nicht gespeichert)",
 | 
			
		||||
    "from": "aus",
 | 
			
		||||
    "home.contentTypeBuilder.name": "Content-Typen",
 | 
			
		||||
    "home.contentTypeBuilder.description": "Verwalte deine Content-Typen.",
 | 
			
		||||
    "home.emptyContentType.title": "Es sind keine Content-Typen verfügbar",
 | 
			
		||||
    "home.emptyContentType.description": "Lege deinen ersten Content-Typ an, Daten deiner API abrufen zu können.",
 | 
			
		||||
  
 | 
			
		||||
    "home.emptyAttributes.title": "Es gibt noch keine Felder",
 | 
			
		||||
    "home.emptyAttributes.description": "Füge deinem Content-Typen das erste Feld hinzu",
 | 
			
		||||
  
 | 
			
		||||
    "button.contentType.create": "Lege einen Content-Typ an",
 | 
			
		||||
    "button.contentType.add": "Neuer Content-Typ",
 | 
			
		||||
    "button.attributes.add": "Neues Feld",
 | 
			
		||||
  
 | 
			
		||||
    "error.validation.required": "Dieser Wert ist erforderlich.",
 | 
			
		||||
    "error.validation.regex": "Dieser Wert entspricht nicht dem RegEx.",
 | 
			
		||||
    "error.validation.max": "Dieser Wert ist zu hoch.",
 | 
			
		||||
    "error.validation.min": "Dieser Wert ist zu niedrig.",
 | 
			
		||||
    "error.validation.maxLength": "Dieser Wert ist zu lang.",
 | 
			
		||||
    "error.validation.minLength": "Dieser Wert ist zu kurz.",
 | 
			
		||||
    "error.contentTypeName.taken": "Dieser Name existiert bereits",
 | 
			
		||||
    "error.attribute.taken": "Dieser Feldname ist bereits vergeben",
 | 
			
		||||
    "error.attribute.key.taken": "Dieser Wert existiert bereits",
 | 
			
		||||
    "error.attribute.sameKeyAndName": "Darf nicht gleich sein",
 | 
			
		||||
    "error.validation.minSupMax": "Darf nicht höher sein",
 | 
			
		||||
  
 | 
			
		||||
    "form.attribute.item.textarea.name": "Name",
 | 
			
		||||
    "form.attribute.item.number.name": "Name",
 | 
			
		||||
    "form.attribute.item.date.name": "Name",
 | 
			
		||||
    "form.attribute.item.media.name": "Name",
 | 
			
		||||
    "form.attribute.item.json.name": "Name",
 | 
			
		||||
    "form.attribute.item.boolean.name": "Name",
 | 
			
		||||
    "form.attribute.item.string.name": "Name",
 | 
			
		||||
    "form.attribute.item.settings.name": "Einstellungen",
 | 
			
		||||
    "form.attribute.item.requiredField": "Benötigtes Feld",
 | 
			
		||||
    "form.attribute.item.uniqueField": "Einzigartiges Feld",
 | 
			
		||||
    "form.attribute.item.minimum": "Mindestwert",
 | 
			
		||||
    "form.attribute.item.minimumLength": "Mindestlänge",
 | 
			
		||||
    "form.attribute.item.maximumLength": "Maximallänge",
 | 
			
		||||
    "form.attribute.item.maximum": "Maximalwert",
 | 
			
		||||
    "form.attribute.item.requiredField.description": "Du wirst keinen Eintrag anlegen können, wenn dieses Feld leer ist",
 | 
			
		||||
    "form.attribute.item.uniqueField.description": "Du wirst keinen Eintrag anlegen können, wenn es bereits einen Eintrag mit identischem Inhalt gibt",
 | 
			
		||||
    "form.attribute.item.defineRelation.fieldName": "Feldname",
 | 
			
		||||
    "form.attribute.item.customColumnName": "Eigener Spaltenname",
 | 
			
		||||
    "form.attribute.item.customColumnName.description": "Dies ist nützlich, um Spalten in der Datenbank für Antworten der API umzubenennen",
 | 
			
		||||
    "form.attribute.item.number.type": "Zahlenformat",
 | 
			
		||||
    "form.attribute.item.number.type.integer": "integer (ex: 10)",
 | 
			
		||||
    "form.attribute.item.number.type.float": "float (ex: 3.33333333)",
 | 
			
		||||
    "form.attribute.item.number.type.decimal": "decimal (ex: 2.22)",
 | 
			
		||||
  
 | 
			
		||||
    "form.button.cancel": "Abbrechen",
 | 
			
		||||
    "form.button.continue": "Weiter",
 | 
			
		||||
    "form.button.save": "Speichern",
 | 
			
		||||
  
 | 
			
		||||
    "form.contentType.item.connections": "Verbindung",
 | 
			
		||||
    "form.contentType.item.name": "Name",
 | 
			
		||||
    "form.contentType.item.name.description": "Der Name des Content-Typs sollte Singular sein. {link}",
 | 
			
		||||
    "form.contentType.item.name.link.description": "Schau dir unsere Dokumentation an.",
 | 
			
		||||
    "form.contentType.item.description": "Beschreibung",
 | 
			
		||||
    "form.contentType.item.description.placeholder": "Beschreibe deinen Content-Typ",
 | 
			
		||||
    "form.contentType.item.collectionName": "Name des Dokuments in der Datenbank",
 | 
			
		||||
    "form.contentType.item.collectionName.inputDescription": "Nützlich, wenn Content-Typ und Datenbankname unterschiedlich sind",
 | 
			
		||||
  
 | 
			
		||||
    "menu.section.contentTypeBuilder.name.plural": "Content-Typen",
 | 
			
		||||
    "menu.section.contentTypeBuilder.name.singular": "Content-Typ",
 | 
			
		||||
    "menu.section.documentation.name": "Dokumentation",
 | 
			
		||||
    "menu.section.documentation.guide": "Mehr über Content-Typen findest du in unserer",
 | 
			
		||||
    "menu.section.documentation.guideLink": "Anleitung.",
 | 
			
		||||
    "menu.section.documentation.tutorial": "Schau dir unser",
 | 
			
		||||
    "menu.section.documentation.tutorialLink": "Tutorial an.",
 | 
			
		||||
  
 | 
			
		||||
    "modelPage.contentHeader.emptyDescription.description": "Dieser Content-Typ hat keine Beschreibung",
 | 
			
		||||
    "modelPage.contentType.list.title.plural": "Felder",
 | 
			
		||||
    "modelPage.contentType.list.title.singular": "Feld",
 | 
			
		||||
    "modelPage.contentType.list.title.including": "schließt ein",
 | 
			
		||||
    "modelPage.contentType.list.relationShipTitle.plural": "Beziehungen",
 | 
			
		||||
    "modelPage.contentType.list.relationShipTitle.singular": "Beziehung",
 | 
			
		||||
    "modelPage.attribute.relationWith": "Beziehung mit",
 | 
			
		||||
  
 | 
			
		||||
    "noTableWarning.description": "Vergiss nicht, die Tabelle `{modelName}` in deiner Datenbank zu erstellen",
 | 
			
		||||
    "noTableWarning.infos": "Mehr Informationen",
 | 
			
		||||
  
 | 
			
		||||
    "notification.error.message": "Ein Fehler ist aufgetreten",
 | 
			
		||||
    "notification.info.contentType.creating.notSaved": "Bitte speichere zuerst diesen Content-Typ bevor du einen neuen anlegst",
 | 
			
		||||
    "notification.info.optimized": "Dieses Plugin ist auf deinen localStorage optimiert",
 | 
			
		||||
    "notification.success.message.contentType.edit": "Der Content-Typ wurde aktualisiert",
 | 
			
		||||
    "notification.success.message.contentType.create": "Der Content-Typ wurde angelegt",
 | 
			
		||||
    "notification.success.contentTypeDeleted": "Der Content-Typ wurde gelöscht",
 | 
			
		||||
  
 | 
			
		||||
    "popUpForm.attributes.string.description": "Titel, Namen, Namenslisten",
 | 
			
		||||
    "popUpForm.attributes.text.description": "Beschreibungen, Paragraphen, Artikel",
 | 
			
		||||
    "popUpForm.attributes.boolean.description": "Ja/Nein, 1 oder 0, Wahr/Falsch",
 | 
			
		||||
    "popUpForm.attributes.number.description": "Jegliche Zahlen",
 | 
			
		||||
    "popUpForm.attributes.date.description": "Event-Daten, Öffnungszeiten",
 | 
			
		||||
    "popUpForm.attributes.json.description": "Daten in JSON-Format",
 | 
			
		||||
    "popUpForm.attributes.media.description": "Bilder, Videos, PDFs und andere",
 | 
			
		||||
    "popUpForm.attributes.relation.description": "Bezieht sich auf einen Content-Typ",
 | 
			
		||||
    "popUpForm.attributes.email.description": "E-Mail-Adressen von Benutzern",
 | 
			
		||||
    "popUpForm.attributes.password.description": "Passwörter von Benutzers",
 | 
			
		||||
  
 | 
			
		||||
    "popUpForm.attributes.string.name": "String",
 | 
			
		||||
    "popUpForm.attributes.text.name": "Text",
 | 
			
		||||
    "popUpForm.attributes.boolean.name": "Boolean",
 | 
			
		||||
    "popUpForm.attributes.date.name": "Datum",
 | 
			
		||||
    "popUpForm.attributes.json.name": "JSON",
 | 
			
		||||
    "popUpForm.attributes.media.name": "Medien",
 | 
			
		||||
    "popUpForm.attributes.number.name": "Zahl",
 | 
			
		||||
    "popUpForm.attributes.relation.name": "Beziehung",
 | 
			
		||||
    "popUpForm.attributes.email.name": "E-Mail",
 | 
			
		||||
    "popUpForm.attributes.password.name": "Passwort",
 | 
			
		||||
    "popUpForm.create": "Neu",
 | 
			
		||||
    "popUpForm.edit": "Bearbeiten",
 | 
			
		||||
    "popUpForm.field": "Feld",
 | 
			
		||||
    "popUpForm.create.contentType.header.title": "Neuer Content-Typ",
 | 
			
		||||
    "popUpForm.choose.attributes.header.title": "Neues Feld hinzufügen",
 | 
			
		||||
    "popUpForm.edit.contentType.header.title": "Content-Typen bearbeiten",
 | 
			
		||||
  
 | 
			
		||||
    "popUpForm.navContainer.relation": "Beziehung definieren",
 | 
			
		||||
    "popUpForm.navContainer.base": "Grundeinstellungen",
 | 
			
		||||
    "popUpForm.navContainer.advanced": "Fortgeschrittene Einstellungen",
 | 
			
		||||
  
 | 
			
		||||
    "popUpRelation.title": "Beziehung",
 | 
			
		||||
  
 | 
			
		||||
    "popUpWarning.button.cancel": "Abbrechen",
 | 
			
		||||
    "popUpWarning.button.confirm": "Bestätigen",
 | 
			
		||||
    "popUpWarning.title": "Bitte bestätigen",
 | 
			
		||||
    "popUpWarning.bodyMessage.contentType.delete": "Bist du sicher, dass du diesen Content-Typ löschen willst?",
 | 
			
		||||
    "popUpWarning.bodyMessage.attribute.delete": "Bist du sicher, dass du dieses Feld löschen willst?",
 | 
			
		||||
  
 | 
			
		||||
  
 | 
			
		||||
    "table.contentType.title.plural": "Content-Typen sind verfügbar",
 | 
			
		||||
    "table.contentType.title.singular": "Content-Typ ist verfügbar",
 | 
			
		||||
    "table.contentType.head.name": "Name",
 | 
			
		||||
    "table.contentType.head.description": "Beschreibung",
 | 
			
		||||
    "table.contentType.head.fields": "Felder",
 | 
			
		||||
  
 | 
			
		||||
    "relation.oneToOne": "hat ein(en)",
 | 
			
		||||
    "relation.oneToMany": "gehört zu vielen",
 | 
			
		||||
    "relation.manyToOne": "hat viele",
 | 
			
		||||
    "relation.manyToMany": "hat und gehört zu vielen",
 | 
			
		||||
    "relation.attributeName.placeholder": "z.B.: Autor, Kategorie"
 | 
			
		||||
  
 | 
			
		||||
  }
 | 
			
		||||
  
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "plugin.description.short": "Modelize the data structure of you API.",
 | 
			
		||||
  "plugin.description.long": "Modelize the data structure of you API. Create new fields and relations in a minute. The files are automatically created and updated in your project.",
 | 
			
		||||
  "plugin.description.short": "Modelize the data structure of your API.",
 | 
			
		||||
  "plugin.description.long": "Modelize the data structure of your API. Create new fields and relations in just a minute. The files are automatically created and updated in your project.",
 | 
			
		||||
  "attribute.string": "String",
 | 
			
		||||
  "attribute.text": "Text",
 | 
			
		||||
  "attribute.boolean": "Boolean",
 | 
			
		||||
@ -17,8 +17,8 @@
 | 
			
		||||
  "contentType.temporaryDisplay": "(Not saved)",
 | 
			
		||||
  "from": "from",
 | 
			
		||||
  "home.contentTypeBuilder.name": "Content Types",
 | 
			
		||||
  "home.contentTypeBuilder.description": "Create, update your own content types.",
 | 
			
		||||
  "home.emptyContentType.title": "There are no Content Types Available",
 | 
			
		||||
  "home.contentTypeBuilder.description": "Create and update your own Content Types.",
 | 
			
		||||
  "home.emptyContentType.title": "There are no Content Types available",
 | 
			
		||||
  "home.emptyContentType.description": "Create your first Content Type to be able to retrieve data from your API.",
 | 
			
		||||
 | 
			
		||||
  "home.emptyAttributes.title": "There are no fields yet",
 | 
			
		||||
@ -37,7 +37,7 @@
 | 
			
		||||
  "error.contentTypeName.taken": "This name already exists",
 | 
			
		||||
  "error.attribute.taken": "This field name already exists",
 | 
			
		||||
  "error.attribute.key.taken": "This value already exists",
 | 
			
		||||
  "error.attribute.sameKeyAndName": "Can't be equals",
 | 
			
		||||
  "error.attribute.sameKeyAndName": "Can't be equal",
 | 
			
		||||
  "error.validation.minSupMax": "Can't be superior",
 | 
			
		||||
 | 
			
		||||
  "form.attribute.item.textarea.name": "Name",
 | 
			
		||||
@ -70,17 +70,17 @@
 | 
			
		||||
 | 
			
		||||
  "form.contentType.item.connections": "Connection",
 | 
			
		||||
  "form.contentType.item.name": "Name",
 | 
			
		||||
  "form.contentType.item.name.description": "Content type name's should be singular, {link}",
 | 
			
		||||
  "form.contentType.item.name.link.description": "check out our documentation",
 | 
			
		||||
  "form.contentType.item.name.description": "Content Type names should be singular: {link}",
 | 
			
		||||
  "form.contentType.item.name.link.description": "Check out our documentation",
 | 
			
		||||
  "form.contentType.item.description": "Description",
 | 
			
		||||
  "form.contentType.item.description.placeholder": "Write your little description here...",
 | 
			
		||||
  "form.contentType.item.collectionName": "Collection Name",
 | 
			
		||||
  "form.contentType.item.collectionName.inputDescription": "Useful when your Content Type Name and your table name is different",
 | 
			
		||||
  "form.contentType.item.collectionName.inputDescription": "Useful when the name of your Content Type and your table name differ",
 | 
			
		||||
 | 
			
		||||
  "menu.section.contentTypeBuilder.name.plural": "Content Types",
 | 
			
		||||
  "menu.section.contentTypeBuilder.name.singular": "Content Type",
 | 
			
		||||
  "menu.section.documentation.name": "Documentation",
 | 
			
		||||
  "menu.section.documentation.guide": "Read more about content types in our",
 | 
			
		||||
  "menu.section.documentation.guide": "Read more about Content Types in our",
 | 
			
		||||
  "menu.section.documentation.guideLink": "guide.",
 | 
			
		||||
  "menu.section.documentation.tutorial": "Check out our",
 | 
			
		||||
  "menu.section.documentation.tutorialLink": "tutorial video.",
 | 
			
		||||
@ -94,14 +94,14 @@
 | 
			
		||||
  "modelPage.attribute.relationWith": "Relation with",
 | 
			
		||||
 | 
			
		||||
  "noTableWarning.description": "Don't forget to create the table `{modelName}` in your database",
 | 
			
		||||
  "noTableWarning.infos": "More infos",
 | 
			
		||||
  "noTableWarning.infos": "More info",
 | 
			
		||||
 | 
			
		||||
  "notification.error.message": "An error occured",
 | 
			
		||||
  "notification.info.contentType.creating.notSaved": "Please save your current Content Type before creating a new one",
 | 
			
		||||
  "notification.info.optimized": "This plugin is optimized with your localStorage",
 | 
			
		||||
  "notification.success.message.contentType.edit": "Your content type has been updated",
 | 
			
		||||
  "notification.success.message.contentType.create": "Your content type has been created",
 | 
			
		||||
  "notification.success.contentTypeDeleted": "The content type has been deleted",
 | 
			
		||||
  "notification.success.message.contentType.edit": "Your Content Type has been updated",
 | 
			
		||||
  "notification.success.message.contentType.create": "Your Content Type has been created",
 | 
			
		||||
  "notification.success.contentTypeDeleted": "The Content Type has been deleted",
 | 
			
		||||
 | 
			
		||||
  "popUpForm.attributes.string.description": "Titles, names, paragraphs, list of names",
 | 
			
		||||
  "popUpForm.attributes.text.description": "Descriptions, text paragraphs, articles ",
 | 
			
		||||
 | 
			
		||||
@ -0,0 +1,159 @@
 | 
			
		||||
{
 | 
			
		||||
  "plugin.description.short": "Modeluj strukturę danych swojego API.",
 | 
			
		||||
  "plugin.description.long": "Modeluj strukturę danych swojego API. Twórz atrybuty i relacje w minutę. Pliki są automatycznie tworzone i aktualizowane w twoim projekcie.",
 | 
			
		||||
  "attribute.string": "Ciąg",
 | 
			
		||||
  "attribute.text": "Tekst",
 | 
			
		||||
  "attribute.boolean": "Typ logiczny",
 | 
			
		||||
  "attribute.float": "Zmiennoprzecinkowa",
 | 
			
		||||
  "attribute.integer": "Całkowita",
 | 
			
		||||
  "attribute.decimal": "Dziesiętna",
 | 
			
		||||
  "attribute.date": "Data",
 | 
			
		||||
  "attribute.json": "JSON",
 | 
			
		||||
  "attribute.media": "Media",
 | 
			
		||||
  "attribute.email": "Email",
 | 
			
		||||
  "attribute.password": "Hasło",
 | 
			
		||||
  "attribute.relation": "Relacja",
 | 
			
		||||
 | 
			
		||||
  "contentType.temporaryDisplay": "(Nie zapisany)",
 | 
			
		||||
  "from": "z",
 | 
			
		||||
  "home.contentTypeBuilder.name": "Modele",
 | 
			
		||||
  "home.contentTypeBuilder.description": "Twórz i dowolnie zmieniaj struktury danych",
 | 
			
		||||
  "home.emptyContentType.title": "Nie został jeszcze utworzony żaden model",
 | 
			
		||||
  "home.emptyContentType.description": "Stwórz swój pierwszy model, aby móc pobierać dane z interfejsu API.",
 | 
			
		||||
 | 
			
		||||
  "home.emptyAttributes.title": "Nie został jeszcze utworzony żaden atrybut",
 | 
			
		||||
  "home.emptyAttributes.description": "Dodaj pierwszy atrybut do nowego modelu",
 | 
			
		||||
 | 
			
		||||
  "button.contentType.create": "Model",
 | 
			
		||||
  "button.contentType.add": "Model",
 | 
			
		||||
  "button.attributes.add": "Atrybut",
 | 
			
		||||
 | 
			
		||||
  "error.validation.required": "Wpisanie wartości dla tego atrybutu jest wymagane.",
 | 
			
		||||
  "error.validation.regex": "Wartość nie jest zgodna z wymaganym wzorcem.",
 | 
			
		||||
  "error.validation.max": "Wartość jest za wysoka.",
 | 
			
		||||
  "error.validation.min": "Wartość jest za niska.",
 | 
			
		||||
  "error.validation.maxLength": "Wartość jest za długa.",
 | 
			
		||||
  "error.validation.minLength": "Wartość jest za krótka",
 | 
			
		||||
  "error.contentTypeName.taken": "Ta nazwa już istnieje",
 | 
			
		||||
  "error.attribute.taken": "Taki atrybut już istnieje",
 | 
			
		||||
  "error.attribute.key.taken": "Ta wartość już istnieje",
 | 
			
		||||
  "error.attribute.sameKeyAndName": "Nie mogą być takie same",
 | 
			
		||||
  "error.validation.minSupMax": "Nie może być większa",
 | 
			
		||||
 | 
			
		||||
  "form.attribute.item.textarea.name": "Nazwa",
 | 
			
		||||
  "form.attribute.item.number.name": "Nazwa",
 | 
			
		||||
  "form.attribute.item.date.name": "Nazwa",
 | 
			
		||||
  "form.attribute.item.media.name": "Nazwa",
 | 
			
		||||
  "form.attribute.item.json.name": "Nazwa",
 | 
			
		||||
  "form.attribute.item.boolean.name": "Nazwa",
 | 
			
		||||
  "form.attribute.item.string.name": "Nazwa",
 | 
			
		||||
  "form.attribute.item.settings.name": "Ustawienia",
 | 
			
		||||
  "form.attribute.item.requiredField": "Wymagany",
 | 
			
		||||
  "form.attribute.item.uniqueField": "Unikalny",
 | 
			
		||||
  "form.attribute.item.minimum": "Minimalna wartość",
 | 
			
		||||
  "form.attribute.item.minimumLength": "Minimalna długość",
 | 
			
		||||
  "form.attribute.item.maximumLength": "Maksymalna długość",
 | 
			
		||||
  "form.attribute.item.maximum": "Maksymalna wartość",
 | 
			
		||||
  "form.attribute.item.requiredField.description": "Nie będziesz w stanie stworzyć wpisu jeżeli atrybut będzie pusty",
 | 
			
		||||
  "form.attribute.item.uniqueField.description": "Nie będziesz w stanie stworzyć wpisu jeżeli wartość atrybutu będzie już wykorzystywana",
 | 
			
		||||
  "form.attribute.item.defineRelation.fieldName": "Atrybut",
 | 
			
		||||
  "form.attribute.item.customColumnName": "Własne nazwy tabel",
 | 
			
		||||
  "form.attribute.item.customColumnName.description": "Jest to przydatne do zmiany nazwy tabel bazy danych w bardziej wszechstronnym formacie odpowiedzi API",
 | 
			
		||||
  "form.attribute.item.number.type": "Forma",
 | 
			
		||||
  "form.attribute.item.number.type.integer": "całkowita (np: 10)",
 | 
			
		||||
  "form.attribute.item.number.type.float": "zmiennoprzecinkowa (np: 3.33333333)",
 | 
			
		||||
  "form.attribute.item.number.type.decimal": "dziesiętna (np: 2.22)",
 | 
			
		||||
 | 
			
		||||
  "form.button.cancel": "Anuluj",
 | 
			
		||||
  "form.button.continue": "Kontynuuj",
 | 
			
		||||
  "form.button.save": "Zapisz",
 | 
			
		||||
 | 
			
		||||
  "form.contentType.item.connections": "Połączenie",
 | 
			
		||||
  "form.contentType.item.name": "Nazwa",
 | 
			
		||||
  "form.contentType.item.name.description": "Nazwa modelu powinna być w liczbie pojedyńczej",
 | 
			
		||||
  "form.contentType.item.name.link.description": "zobacz naszą dokumentację",
 | 
			
		||||
  "form.contentType.item.description": "Opis",
 | 
			
		||||
  "form.contentType.item.description.placeholder": "Wpisz krótki opis tutaj...",
 | 
			
		||||
  "form.contentType.item.collectionName": "Kolekcja",
 | 
			
		||||
  "form.contentType.item.collectionName.inputDescription": "Przydatne kiedy nazwa modelu jest inna niż nazwa tabeli w bazie danych",
 | 
			
		||||
 | 
			
		||||
  "menu.section.contentTypeBuilder.name.plural": "Modele",
 | 
			
		||||
  "menu.section.contentTypeBuilder.name.singular": "Model",
 | 
			
		||||
  "menu.section.documentation.name": "Dokumentacja",
 | 
			
		||||
  "menu.section.documentation.guide": "Dowiedz się więcej na temat modeli w naszym",
 | 
			
		||||
  "menu.section.documentation.guideLink": "poradniku.",
 | 
			
		||||
  "menu.section.documentation.tutorial": "Zobacz nasz",
 | 
			
		||||
  "menu.section.documentation.tutorialLink": "poradnik wideo.",
 | 
			
		||||
 | 
			
		||||
  "modelPage.contentHeader.emptyDescription.description": "Ten model nie posiada opisu",
 | 
			
		||||
  "modelPage.contentType.list.title.plural": "atrybutów",
 | 
			
		||||
  "modelPage.contentType.list.title.singular": "atrybut",
 | 
			
		||||
  "modelPage.contentType.list.title.including": "w tym",
 | 
			
		||||
  "modelPage.contentType.list.relationShipTitle.plural": "relacji",
 | 
			
		||||
  "modelPage.contentType.list.relationShipTitle.singular": "relacja",
 | 
			
		||||
  "modelPage.attribute.relationWith": "Relacja z",
 | 
			
		||||
 | 
			
		||||
  "noTableWarning.description": "Nie zapomnij stworzyć tabeli `{modelName}` w bazie danych.",
 | 
			
		||||
  "noTableWarning.infos": "Więcej informacji",
 | 
			
		||||
 | 
			
		||||
  "notification.error.message": "Wystąpił błąd",
 | 
			
		||||
  "notification.info.contentType.creating.notSaved": "Zapisz proszę aktualny model zanim stworzysz nowy",
 | 
			
		||||
  "notification.info.optimized": "Ta wtyczka jest zoptymalizowana z localStorage",
 | 
			
		||||
  "notification.success.message.contentType.edit": "Model został zmieniony",
 | 
			
		||||
  "notification.success.message.contentType.create": "Model został utworzony",
 | 
			
		||||
  "notification.success.contentTypeDeleted": "Model został usunięty",
 | 
			
		||||
 | 
			
		||||
  "popUpForm.attributes.string.description": "Tytuły, nazwy, paragrafy, lista nazwisk",
 | 
			
		||||
  "popUpForm.attributes.text.description": "Opisy, paragrafy, artykuły ",
 | 
			
		||||
  "popUpForm.attributes.boolean.description": "Tak lub nie, 1 lub 0, prawda lub fałsz",
 | 
			
		||||
  "popUpForm.attributes.number.description": "Wszystko co jest liczbą",
 | 
			
		||||
  "popUpForm.attributes.date.description": "Data wydarzenia, godziny otwarcia",
 | 
			
		||||
  "popUpForm.attributes.json.description": "Data w formacie JSON",
 | 
			
		||||
  "popUpForm.attributes.media.description": "Obrazy, filmy, PDF'y i inne pliki",
 | 
			
		||||
  "popUpForm.attributes.relation.description": "Odnosi się do modelu",
 | 
			
		||||
  "popUpForm.attributes.email.description": "Email użytkownika...",
 | 
			
		||||
  "popUpForm.attributes.password.description": "Hasło użytkownika...",
 | 
			
		||||
 | 
			
		||||
  "popUpForm.attributes.string.name": "Ciąg",
 | 
			
		||||
  "popUpForm.attributes.text.name": "Tekst",
 | 
			
		||||
  "popUpForm.attributes.boolean.name": "Typ logiczny",
 | 
			
		||||
  "popUpForm.attributes.date.name": "Data",
 | 
			
		||||
  "popUpForm.attributes.json.name": "JSON",
 | 
			
		||||
  "popUpForm.attributes.media.name": "Media",
 | 
			
		||||
  "popUpForm.attributes.number.name": "Numer",
 | 
			
		||||
  "popUpForm.attributes.relation.name": "Relacja",
 | 
			
		||||
  "popUpForm.attributes.email.name": "Email",
 | 
			
		||||
  "popUpForm.attributes.password.name": "Hasło",
 | 
			
		||||
  "popUpForm.create": "Nowy",
 | 
			
		||||
  "popUpForm.edit": "Zmień",
 | 
			
		||||
  "popUpForm.field": "Atrybut",
 | 
			
		||||
  "popUpForm.create.contentType.header.title": "Model",
 | 
			
		||||
  "popUpForm.choose.attributes.header.title": "Atrybut",
 | 
			
		||||
  "popUpForm.edit.contentType.header.title": "Model",
 | 
			
		||||
 | 
			
		||||
  "popUpForm.navContainer.relation": "Relacja",
 | 
			
		||||
  "popUpForm.navContainer.base": "Podstawowe",
 | 
			
		||||
  "popUpForm.navContainer.advanced": "Zaawansowane",
 | 
			
		||||
 | 
			
		||||
  "popUpRelation.title": "Relacja",
 | 
			
		||||
 | 
			
		||||
  "popUpWarning.button.cancel": "Nie",
 | 
			
		||||
  "popUpWarning.button.confirm": "Tak",
 | 
			
		||||
  "popUpWarning.title": "Potwierdzenie",
 | 
			
		||||
  "popUpWarning.bodyMessage.contentType.delete": "Czy na pewno chcesz usunąć ten model?",
 | 
			
		||||
  "popUpWarning.bodyMessage.attribute.delete": "Czy na pewno chcesz usunąć ten atrybut?",
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
  "table.contentType.title.plural": "Modeli jest dostępnych",
 | 
			
		||||
  "table.contentType.title.singular": "Model jest dostępny",
 | 
			
		||||
  "table.contentType.head.name": "Nazwa",
 | 
			
		||||
  "table.contentType.head.description": "Opis",
 | 
			
		||||
  "table.contentType.head.fields": "Atrybuty",
 | 
			
		||||
 | 
			
		||||
  "relation.oneToOne": "ma jeden",
 | 
			
		||||
  "relation.oneToMany": "należy do wielu",
 | 
			
		||||
  "relation.manyToOne": "ma wiele",
 | 
			
		||||
  "relation.manyToMany": "ma i należy do wielu",
 | 
			
		||||
  "relation.attributeName.placeholder": "Np: autor, kategoria, tag"
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-plugin-content-type-builder",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "Strapi plugin to create content type (API).",
 | 
			
		||||
  "strapi": {
 | 
			
		||||
    "name": "Content Type Builder",
 | 
			
		||||
@ -24,11 +24,11 @@
 | 
			
		||||
  },
 | 
			
		||||
  "dependencies": {
 | 
			
		||||
    "pluralize": "^7.0.0",
 | 
			
		||||
    "strapi-generate": "3.0.0-alpha.9.3",
 | 
			
		||||
    "strapi-generate-api": "3.0.0-alpha.9.3"
 | 
			
		||||
    "strapi-generate": "3.0.0-alpha.10.1",
 | 
			
		||||
    "strapi-generate-api": "3.0.0-alpha.10.1"
 | 
			
		||||
  },
 | 
			
		||||
  "devDependencies": {
 | 
			
		||||
    "strapi-helper-plugin": "3.0.0-alpha.9.3"
 | 
			
		||||
    "strapi-helper-plugin": "3.0.0-alpha.10.1"
 | 
			
		||||
  },
 | 
			
		||||
  "author": {
 | 
			
		||||
    "name": "Strapi team",
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										4
									
								
								packages/strapi-plugin-email/admin/src/translations/de.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										4
									
								
								packages/strapi-plugin-email/admin/src/translations/de.json
									
									
									
									
									
										Executable file
									
								
							@ -0,0 +1,4 @@
 | 
			
		||||
{
 | 
			
		||||
  "plugin.description.short": "Zum Versand von E-Mails.",
 | 
			
		||||
  "plugin.description.long": "Zum Versand von E-Mails."
 | 
			
		||||
}
 | 
			
		||||
@ -1,4 +1,4 @@
 | 
			
		||||
{
 | 
			
		||||
  "plugin.description.short": "Send emails",
 | 
			
		||||
  "plugin.description.long": "Send emails"
 | 
			
		||||
  "plugin.description.short": "Send emails.",
 | 
			
		||||
  "plugin.description.long": "Send emails."
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -0,0 +1,4 @@
 | 
			
		||||
{
 | 
			
		||||
  "plugin.description.short": "Wysyłaj E-maile",
 | 
			
		||||
  "plugin.description.long": "Wysyłaj E-maile"
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-plugin-email",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "This is the description of the plugin.",
 | 
			
		||||
  "strapi": {
 | 
			
		||||
    "name": "Email",
 | 
			
		||||
@ -26,7 +26,7 @@
 | 
			
		||||
    "sendmail": "^1.2.0"
 | 
			
		||||
  },
 | 
			
		||||
  "devDependencies": {
 | 
			
		||||
    "strapi-helper-plugin": "3.0.0-alpha.9.3"
 | 
			
		||||
    "strapi-helper-plugin": "3.0.0-alpha.10.1"
 | 
			
		||||
  },
 | 
			
		||||
  "author": {
 | 
			
		||||
    "name": "Strapi team",
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										654
									
								
								packages/strapi-plugin-settings-manager/admin/src/translations/de.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										654
									
								
								packages/strapi-plugin-settings-manager/admin/src/translations/de.json
									
									
									
									
									
										Executable file
									
								
							@ -0,0 +1,654 @@
 | 
			
		||||
{
 | 
			
		||||
  "components.DownloadDb.download": "Installiere...",
 | 
			
		||||
  "components.DownloadDb.text": "Dies kann kurz dauern. Danke für deine Geduld.",
 | 
			
		||||
  "plugin.description.short": "Passe dein Projekt in Sekundenschnelle an.",
 | 
			
		||||
  "plugin.description.long": "Passe dein Projekt in Sekundenschnelle an.",
 | 
			
		||||
  "menu.section.global-settings": "Systemweite Einstellungen",
 | 
			
		||||
  "menu.item.application": "Anwendung",
 | 
			
		||||
  "menu.item.languages": "Sprachen",
 | 
			
		||||
  "menu.item.advanced": "Fortgeschritten",
 | 
			
		||||
 | 
			
		||||
  "menu.section.environments": "Umgebungen",
 | 
			
		||||
  "menu.item.database": "Datenbank",
 | 
			
		||||
  "menu.item.request": "Anfragen",
 | 
			
		||||
  "menu.item.response": "Antwort",
 | 
			
		||||
  "menu.item.security": "Sicherheit",
 | 
			
		||||
  "menu.item.server": "Server",
 | 
			
		||||
 | 
			
		||||
  "form.button.cancel": "Abbrechen",
 | 
			
		||||
  "form.button.save": "Speichern",
 | 
			
		||||
  "form.button.confirm": "Bestätigen",
 | 
			
		||||
 | 
			
		||||
  "form.databases.name": "Datenbank",
 | 
			
		||||
  "form.databases.description": "Verwalte deine Datenbankeinstellungen.",
 | 
			
		||||
 | 
			
		||||
  "form.database.item.name": "Verbindungsname",
 | 
			
		||||
  "form.database.item.client": "Client",
 | 
			
		||||
  "form.database.item.connector": "Connector",
 | 
			
		||||
  "form.database.item.host": "Host",
 | 
			
		||||
  "form.database.item.port": "Port",
 | 
			
		||||
  "form.database.item.username": "Benutzername",
 | 
			
		||||
  "form.database.item.password": "Passwort",
 | 
			
		||||
  "form.database.item.database": "Datenbanken",
 | 
			
		||||
  "form.database.item.default": "Als Standard festgelegt",
 | 
			
		||||
  "form.database.item.provider.mongo": "Mongo",
 | 
			
		||||
  "form.database.item.provider.postgres": "PostgreSQL",
 | 
			
		||||
  "form.database.item.provider.mysql": "MySQL",
 | 
			
		||||
  "form.database.item.provider.sqlite3": "SQlite3",
 | 
			
		||||
  "form.database.item.provider.redis": "Redis",
 | 
			
		||||
 | 
			
		||||
  "form.application.name": "Anwendung",
 | 
			
		||||
  "form.application.description": "Verwalte allgemeine Einstellungen.",
 | 
			
		||||
 | 
			
		||||
  "form.application.item.name": "Name",
 | 
			
		||||
  "form.application.item.description": "Beschreibung",
 | 
			
		||||
  "form.application.item.version": "Version",
 | 
			
		||||
 | 
			
		||||
  "form.advanced.name": "Fortgeschritten",
 | 
			
		||||
  "form.advanced.description": "Verwalte fortgeschrittene Einstellungen.",
 | 
			
		||||
 | 
			
		||||
  "form.advanced.item.admin": "URL des Adminbereichs",
 | 
			
		||||
  "form.advanced.item.prefix": "Präfix API",
 | 
			
		||||
 | 
			
		||||
  "form.request.name": "Anfragen",
 | 
			
		||||
  "form.request.description": "Verwalte deine Anfrageneinstellungen.",
 | 
			
		||||
  "form.request.item.parser": "Parser",
 | 
			
		||||
  "form.request.item.parser.multipart": "Parser Multipart",
 | 
			
		||||
  "form.request.item.prefix": "Präfix",
 | 
			
		||||
  "form.request.item.prefix.prefix": "Präfix",
 | 
			
		||||
  "form.request.item.logger": "Logger",
 | 
			
		||||
  "form.request.item.logger.level": "Stufe",
 | 
			
		||||
  "form.request.item.logger.exposeInContext": "An Kontext übergeben",
 | 
			
		||||
  "form.request.item.logger.requests": "Anfragen",
 | 
			
		||||
  "form.request.item.router": "Router",
 | 
			
		||||
  "form.request.item.router.prefix": "Präfix",
 | 
			
		||||
 | 
			
		||||
  "form.response.name": "Antwort",
 | 
			
		||||
  "form.response.description": "Verwalte deine Antworteinstellungen.",
 | 
			
		||||
  "form.response.item.gzip.enabled": "Gzip",
 | 
			
		||||
  "form.response.item.responseTime.enabled": "Antwortzeit",
 | 
			
		||||
 | 
			
		||||
  "form.security.name": "Sicherheit",
 | 
			
		||||
  "form.security.description": "Verwalte deine Sicherheitseinstellungen.",
 | 
			
		||||
 | 
			
		||||
  "form.security.item.csrf": "CSRF",
 | 
			
		||||
  "form.security.item.p3p": "P3P",
 | 
			
		||||
  "form.security.item.p3p.value": "Wert",
 | 
			
		||||
  "form.security.item.hsts": "HOSTS",
 | 
			
		||||
  "form.security.item.csrf.key": "Key",
 | 
			
		||||
  "form.security.item.csrf.secret": "Secret",
 | 
			
		||||
  "form.security.item.csrf.cookie": "Cookie",
 | 
			
		||||
  "form.security.item.csrf.angular": "Angular",
 | 
			
		||||
  "form.security.item.hsts.maxAge": "Max Age",
 | 
			
		||||
  "form.security.item.hsts.includeSubDomains": "Subdomain mit einschließen",
 | 
			
		||||
  "form.security.item.hsts.preload": "Vorladen",
 | 
			
		||||
 | 
			
		||||
  "form.security.item.session": "Session",
 | 
			
		||||
  "form.security.item.session.key": "Secret key",
 | 
			
		||||
  "form.security.item.session.maxAge": "Maximum age",
 | 
			
		||||
 | 
			
		||||
  "form.security.item.xframe": "Xframe",
 | 
			
		||||
  "form.security.item.xframe.value": "Options",
 | 
			
		||||
  "form.security.item.xframe.deny": "DENY",
 | 
			
		||||
  "form.security.item.xframe.sameorigin": "SAMEORIGIN",
 | 
			
		||||
  "form.security.item.xframe.allow-from": "ALLOW-FROM",
 | 
			
		||||
 | 
			
		||||
  "form.security.item.xssProtection": "xss Protection",
 | 
			
		||||
  "form.security.item.xssProtection.mode": "Mode",
 | 
			
		||||
 | 
			
		||||
  "form.security.item.cors": "Cors",
 | 
			
		||||
  "form.security.item.cors.origin": "Origin",
 | 
			
		||||
 | 
			
		||||
  "form.server.name": "Server",
 | 
			
		||||
  "form.server.description": "Verwalte deine Servereinstellungen.",
 | 
			
		||||
 | 
			
		||||
  "form.server.item.host": "Host",
 | 
			
		||||
  "form.server.item.port": "Port",
 | 
			
		||||
  "form.server.item.cron": "Cron",
 | 
			
		||||
 | 
			
		||||
  "form.language.name": "Sprachen",
 | 
			
		||||
  "form.language.description": "Verwalte installierte Sprachen.",
 | 
			
		||||
  "form.language.choose": "Wähle eine Sprache:",
 | 
			
		||||
 | 
			
		||||
  "request.error.database.exist": "Diese Verbindung gibt es bereits",
 | 
			
		||||
  "request.error.type.string": "Ein Text ist erforderlich.",
 | 
			
		||||
  "request.error.type.number": "Eine Nummer ist erforderlich.",
 | 
			
		||||
  "request.error.type.boolean": "Ein Boolean ist erforderlich.",
 | 
			
		||||
  "request.error.type.select": "Der Wert muss in der vordefinierten Liste enthalten sein.",
 | 
			
		||||
 | 
			
		||||
  "request.error.validation.required": "Dieser Wert ist erforderlich.",
 | 
			
		||||
  "request.error.validation.regex": "Dieser Wert entspricht nicht dem RegEx.",
 | 
			
		||||
  "request.error.validation.max": "Dieser Wert ist zu hoch.",
 | 
			
		||||
  "request.error.validation.min": "Dieser Wert ist zu niedrig.",
 | 
			
		||||
  "request.error.validation.maxLength": "Dieser Wert ist zu lang.",
 | 
			
		||||
  "request.error.validation.minLength": "Dieser Wert ist zu kurz.",
 | 
			
		||||
 | 
			
		||||
  "request.error.config": "Konfigurationsdatei fehlt.",
 | 
			
		||||
  "request.error.environment.required": "Umgebung ist erforderlich.",
 | 
			
		||||
  "request.error.environment.unknow": "Unbekannte Umgebung.",
 | 
			
		||||
  "request.error.languages.exist": "Diese Sprache ist bereits installiert.",
 | 
			
		||||
  "request.error.languages.unknow": "Diese Sprache ist nicht installiert.",
 | 
			
		||||
  "request.error.languages.incorrect": "Diese Sprache ist inkorrekt.",
 | 
			
		||||
 | 
			
		||||
  "list.languages.button.label": "Eine neue Sprache hinzufügen",
 | 
			
		||||
  "list.languages.title.singular": "Sprache ist verfügbar",
 | 
			
		||||
  "list.languages.title.plural": "Sprachen sind verfügbar",
 | 
			
		||||
  "list.languages.default.languages": "Standard",
 | 
			
		||||
  "list.languages.set.languages": "Als Standard festlegen",
 | 
			
		||||
  "list.databases.button.label": "Eine neue Verbindung hinzufügen",
 | 
			
		||||
  "list.databases.title.singular": "Verbindung in dieser Umgebung",
 | 
			
		||||
  "list.databases.title.plural": "Verbindungen in dieser Umgebung",
 | 
			
		||||
 | 
			
		||||
  "popUpWarning.title": "Bitte bestätigen",
 | 
			
		||||
  "popUpWarning.databases.danger.message": "Es gibt noch hiermit verbundene Content-Typen. Durch das Löschen könntest du deine Anwendung beschädigen. Sei vorsichtig...",
 | 
			
		||||
  "popUpWarning.danger.ok.message": "Ich stimme zu",
 | 
			
		||||
  "popUpWarning.databases.delete.message": "Bist du sicher, dass du diese Datenbank löschen möchtest?",
 | 
			
		||||
  "popUpWarning.languages.delete.message": "Bist du sicher, dass du diese Sprache entfernen möchtest?",
 | 
			
		||||
  "strapi.notification.info.settingsEqual": "Settings are equals",
 | 
			
		||||
  "strapi.notification.success.databaseDelete": "Die Datenbank wurde erfolgreich gelöscht.",
 | 
			
		||||
  "strapi.notification.success.languageDelete": "Die Sprache wurde erfolgreich entfernt.",
 | 
			
		||||
  "strapi.notification.success.languageAdd": "Die Sprache wurde erfolgreich hinzugefügt.",
 | 
			
		||||
  "strapi.notification.success.databaseAdd": "Die Datenbank wurde erfolgreich erstellt.",
 | 
			
		||||
  "strapi.notification.success.databaseEdit": "Die Datenbankeinstellungen wurden erfolgreich aktualisiert.",
 | 
			
		||||
  "strapi.notification.success.databaseDeleted": "Diese Datenbank wurde gelöscht.",
 | 
			
		||||
  "strapi.notification.success.settingsEdit": "Die Einstellungen wurden erfolgreich aktualisiert.",
 | 
			
		||||
  "strapi.notification.error": "Ein Fehler ist aufgetreten",
 | 
			
		||||
  "strapi.notification.info.serverRestart": "Der Server startet neu",
 | 
			
		||||
 | 
			
		||||
  "language.af": "Afrikaans",
 | 
			
		||||
  "language.af_NA": "Afrikaans (Namibië)",
 | 
			
		||||
  "language.af_ZA": "Afrikaans (Suid-Afrika)",
 | 
			
		||||
  "language.agq": "Aghem",
 | 
			
		||||
  "language.agq_CM": "Aghem (Kàmàlûŋ)",
 | 
			
		||||
  "language.ak": "Akan",
 | 
			
		||||
  "language.ak_GH": "Akan (Gaana)",
 | 
			
		||||
  "language.am": "አማርኛ",
 | 
			
		||||
  "language.am_ET": "አማርኛ (ኢትዮጵያ)",
 | 
			
		||||
  "language.ar": "العربية",
 | 
			
		||||
  "language.ar_001": "العربية (العالم)",
 | 
			
		||||
  "language.ar_AE": "العربية (الإمارات العربية المتحدة)",
 | 
			
		||||
  "language.ar_BH": "العربية (البحرين)",
 | 
			
		||||
  "language.ar_DZ": "العربية (الجزائر)",
 | 
			
		||||
  "language.ar_EG": "العربية (مصر)",
 | 
			
		||||
  "language.ar_IQ": "العربية (العراق)",
 | 
			
		||||
  "language.ar_JO": "العربية (الأردن)",
 | 
			
		||||
  "language.ar_KW": "العربية (الكويت)",
 | 
			
		||||
  "language.ar_LB": "العربية (لبنان)",
 | 
			
		||||
  "language.ar_LY": "العربية (ليبيا)",
 | 
			
		||||
  "language.ar_MA": "العربية (المغرب)",
 | 
			
		||||
  "language.ar_OM": "العربية (عُمان)",
 | 
			
		||||
  "language.ar_QA": "العربية (قطر)",
 | 
			
		||||
  "language.ar_SA": "العربية (المملكة العربية السعودية)",
 | 
			
		||||
  "language.ar_SD": "العربية (السودان)",
 | 
			
		||||
  "language.ar_SY": "العربية (سوريا)",
 | 
			
		||||
  "language.ar_TN": "العربية (تونس)",
 | 
			
		||||
  "language.ar_YE": "العربية (اليمن)",
 | 
			
		||||
  "language.as": "অসমীয়া",
 | 
			
		||||
  "language.as_IN": "অসমীয়া (ভাৰত)",
 | 
			
		||||
  "language.asa": "Kipare",
 | 
			
		||||
  "language.asa_TZ": "Kipare (Tadhania)",
 | 
			
		||||
  "language.az": "azərbaycanca",
 | 
			
		||||
  "language.az_Cyrl": "Азәрбајҹан (kiril)",
 | 
			
		||||
  "language.az_Cyrl_AZ": "Азәрбајҹан (kiril, Азәрбајҹан)",
 | 
			
		||||
  "language.az_Latn": "azərbaycanca (latın)",
 | 
			
		||||
  "language.az_Latn_AZ": "azərbaycanca (latın, Azərbaycan)",
 | 
			
		||||
  "language.bas": "Ɓàsàa",
 | 
			
		||||
  "language.bas_CM": "Ɓàsàa (Kàmɛ̀rûn)",
 | 
			
		||||
  "language.be": "беларуская",
 | 
			
		||||
  "language.be_BY": "беларуская (Беларусь)",
 | 
			
		||||
  "language.bem": "Ichibemba",
 | 
			
		||||
  "language.bem_ZM": "Ichibemba (Zambia)",
 | 
			
		||||
  "language.bez": "Hibena",
 | 
			
		||||
  "language.bez_TZ": "Hibena (Hutanzania)",
 | 
			
		||||
  "language.bg": "български",
 | 
			
		||||
  "language.bg_BG": "български (България)",
 | 
			
		||||
  "language.bm": "bamanakan",
 | 
			
		||||
  "language.bm_ML": "bamanakan (Mali)",
 | 
			
		||||
  "language.bn": "বাংলা",
 | 
			
		||||
  "language.bn_BD": "বাংলা (বাংলাদেশ)",
 | 
			
		||||
  "language.bn_IN": "বাংলা (ভারত)",
 | 
			
		||||
  "language.bo": "པོད་སྐད་",
 | 
			
		||||
  "language.bo_CN": "པོད་སྐད་ (རྒྱ་ནག)",
 | 
			
		||||
  "language.bo_IN": "པོད་སྐད་ (རྒྱ་གར་)",
 | 
			
		||||
  "language.br": "brezhoneg",
 | 
			
		||||
  "language.br_FR": "brezhoneg (Frañs)",
 | 
			
		||||
  "language.brx": "बड़ो",
 | 
			
		||||
  "language.brx_IN": "बड़ो (भारत)",
 | 
			
		||||
  "language.bs": "bosanski",
 | 
			
		||||
  "language.bs_BA": "bosanski (Bosna i Hercegovina)",
 | 
			
		||||
  "language.ca": "català",
 | 
			
		||||
  "language.ca_ES": "català (Espanya)",
 | 
			
		||||
  "language.cgg": "Rukiga",
 | 
			
		||||
  "language.cgg_UG": "Rukiga (Uganda)",
 | 
			
		||||
  "language.chr": "ᏣᎳᎩ",
 | 
			
		||||
  "language.chr_US": "ᏣᎳᎩ (ᎠᎹᏰᏟ)",
 | 
			
		||||
  "language.cs": "čeština",
 | 
			
		||||
  "language.cs_CZ": "čeština (Česká republika)",
 | 
			
		||||
  "language.cy": "Cymraeg",
 | 
			
		||||
  "language.cy_GB": "Cymraeg (Prydain Fawr)",
 | 
			
		||||
  "language.da": "dansk",
 | 
			
		||||
  "language.da_DK": "dansk (Danmark)",
 | 
			
		||||
  "language.dav": "Kitaita",
 | 
			
		||||
  "language.dav_KE": "Kitaita (Kenya)",
 | 
			
		||||
  "language.de": "Deutsch",
 | 
			
		||||
  "language.de_AT": "Deutsch (Österreich)",
 | 
			
		||||
  "language.de_BE": "Deutsch (Belgien)",
 | 
			
		||||
  "language.de_CH": "Deutsch (Schweiz)",
 | 
			
		||||
  "language.de_DE": "Deutsch (Deutschland)",
 | 
			
		||||
  "language.de_LI": "Deutsch (Liechtenstein)",
 | 
			
		||||
  "language.de_LU": "Deutsch (Luxemburg)",
 | 
			
		||||
  "language.dje": "Zarmaciine",
 | 
			
		||||
  "language.dje_NE": "Zarmaciine (Nižer)",
 | 
			
		||||
  "language.dua": "duálá",
 | 
			
		||||
  "language.dua_CM": "duálá (Cameroun)",
 | 
			
		||||
  "language.dyo": "joola",
 | 
			
		||||
  "language.dyo_SN": "joola (Senegal)",
 | 
			
		||||
  "language.ebu": "Kĩembu",
 | 
			
		||||
  "language.ebu_KE": "Kĩembu (Kenya)",
 | 
			
		||||
  "language.ee": "eʋegbe",
 | 
			
		||||
  "language.ee_GH": "eʋegbe (Ghana nutome)",
 | 
			
		||||
  "language.ee_TG": "eʋegbe (Togo nutome)",
 | 
			
		||||
  "language.el": "Ελληνικά",
 | 
			
		||||
  "language.el_CY": "Ελληνικά (Κύπρος)",
 | 
			
		||||
  "language.el_GR": "Ελληνικά (Ελλάδα)",
 | 
			
		||||
  "language.en": "English",
 | 
			
		||||
  "language.en_AS": "English (American Samoa)",
 | 
			
		||||
  "language.en_AU": "English (Australia)",
 | 
			
		||||
  "language.en_BB": "English (Barbados)",
 | 
			
		||||
  "language.en_BE": "English (Belgium)",
 | 
			
		||||
  "language.en_BM": "English (Bermuda)",
 | 
			
		||||
  "language.en_BW": "English (Botswana)",
 | 
			
		||||
  "language.en_BZ": "English (Belize)",
 | 
			
		||||
  "language.en_CA": "English (Canada)",
 | 
			
		||||
  "language.en_GB": "English (United Kingdom)",
 | 
			
		||||
  "language.en_GU": "English (Guam)",
 | 
			
		||||
  "language.en_GY": "English (Guyana)",
 | 
			
		||||
  "language.en_HK": "English (Hong Kong SAR China)",
 | 
			
		||||
  "language.en_IE": "English (Ireland)",
 | 
			
		||||
  "language.en_IN": "English (India)",
 | 
			
		||||
  "language.en_JM": "English (Jamaica)",
 | 
			
		||||
  "language.en_MH": "English (Marshall Islands)",
 | 
			
		||||
  "language.en_MP": "English (Northern Mariana Islands)",
 | 
			
		||||
  "language.en_MT": "English (Malta)",
 | 
			
		||||
  "language.en_MU": "English (Mauritius)",
 | 
			
		||||
  "language.en_NA": "English (Namibia)",
 | 
			
		||||
  "language.en_NZ": "English (New Zealand)",
 | 
			
		||||
  "language.en_PH": "English (Philippines)",
 | 
			
		||||
  "language.en_PK": "English (Pakistan)",
 | 
			
		||||
  "language.en_SG": "English (Singapore)",
 | 
			
		||||
  "language.en_TT": "English (Trinidad and Tobago)",
 | 
			
		||||
  "language.en_UM": "English (U.S. Minor Outlying Islands)",
 | 
			
		||||
  "language.en_US": "English (United States)",
 | 
			
		||||
  "language.en_US_POSIX": "English (United States, Computer)",
 | 
			
		||||
  "language.en_VI": "English (U.S. Virgin Islands)",
 | 
			
		||||
  "language.en_ZA": "English (South Africa)",
 | 
			
		||||
  "language.en_ZW": "English (Zimbabwe)",
 | 
			
		||||
  "language.eo": "esperanto",
 | 
			
		||||
  "language.es": "español",
 | 
			
		||||
  "language.es_419": "español (Latinoamérica)",
 | 
			
		||||
  "language.es_AR": "español (Argentina)",
 | 
			
		||||
  "language.es_BO": "español (Bolivia)",
 | 
			
		||||
  "language.es_CL": "español (Chile)",
 | 
			
		||||
  "language.es_CO": "español (Colombia)",
 | 
			
		||||
  "language.es_CR": "español (Costa Rica)",
 | 
			
		||||
  "language.es_DO": "español (República Dominicana)",
 | 
			
		||||
  "language.es_EC": "español (Ecuador)",
 | 
			
		||||
  "language.es_ES": "español (España)",
 | 
			
		||||
  "language.es_GQ": "español (Guinea Ecuatorial)",
 | 
			
		||||
  "language.es_GT": "español (Guatemala)",
 | 
			
		||||
  "language.es_HN": "español (Honduras)",
 | 
			
		||||
  "language.es_MX": "español (México)",
 | 
			
		||||
  "language.es_NI": "español (Nicaragua)",
 | 
			
		||||
  "language.es_PA": "español (Panamá)",
 | 
			
		||||
  "language.es_PE": "español (Perú)",
 | 
			
		||||
  "language.es_PR": "español (Puerto Rico)",
 | 
			
		||||
  "language.es_PY": "español (Paraguay)",
 | 
			
		||||
  "language.es_SV": "español (El Salvador)",
 | 
			
		||||
  "language.es_US": "español (Estados Unidos)",
 | 
			
		||||
  "language.es_UY": "español (Uruguay)",
 | 
			
		||||
  "language.es_VE": "español (Venezuela)",
 | 
			
		||||
  "language.et": "eesti",
 | 
			
		||||
  "language.et_EE": "eesti (Eesti)",
 | 
			
		||||
  "language.eu": "euskara",
 | 
			
		||||
  "language.eu_ES": "euskara (Espainia)",
 | 
			
		||||
  "language.ewo": "ewondo",
 | 
			
		||||
  "language.ewo_CM": "ewondo (Kamǝrún)",
 | 
			
		||||
  "language.fa": "فارسی",
 | 
			
		||||
  "language.fa_AF": "دری (افغانستان)",
 | 
			
		||||
  "language.fa_IR": "فارسی (ایران)",
 | 
			
		||||
  "language.ff": "Pulaar",
 | 
			
		||||
  "language.ff_SN": "Pulaar (Senegaal)",
 | 
			
		||||
  "language.fi": "suomi",
 | 
			
		||||
  "language.fi_FI": "suomi (Suomi)",
 | 
			
		||||
  "language.fil": "Filipino",
 | 
			
		||||
  "language.fil_PH": "Filipino (Pilipinas)",
 | 
			
		||||
  "language.fo": "føroyskt",
 | 
			
		||||
  "language.fo_FO": "føroyskt (Føroyar)",
 | 
			
		||||
  "language.fr": "français",
 | 
			
		||||
  "language.fr_BE": "français (Belgique)",
 | 
			
		||||
  "language.fr_BF": "français (Burkina Faso)",
 | 
			
		||||
  "language.fr_BI": "français (Burundi)",
 | 
			
		||||
  "language.fr_BJ": "français (Bénin)",
 | 
			
		||||
  "language.fr_BL": "français (Saint-Barthélémy)",
 | 
			
		||||
  "language.fr_CA": "français (Canada)",
 | 
			
		||||
  "language.fr_CD": "français (République démocratique du Congo)",
 | 
			
		||||
  "language.fr_CF": "français (République centrafricaine)",
 | 
			
		||||
  "language.fr_CG": "français (Congo-Brazzaville)",
 | 
			
		||||
  "language.fr_CH": "français (Suisse)",
 | 
			
		||||
  "language.fr_CI": "français (Côte d’Ivoire)",
 | 
			
		||||
  "language.fr_CM": "français (Cameroun)",
 | 
			
		||||
  "language.fr_DJ": "français (Djibouti)",
 | 
			
		||||
  "language.fr_FR": "français (France)",
 | 
			
		||||
  "language.fr_GA": "français (Gabon)",
 | 
			
		||||
  "language.fr_GF": "français (Guyane française)",
 | 
			
		||||
  "language.fr_GN": "français (Guinée)",
 | 
			
		||||
  "language.fr_GP": "français (Guadeloupe)",
 | 
			
		||||
  "language.fr_GQ": "français (Guinée équatoriale)",
 | 
			
		||||
  "language.fr_KM": "français (Comores)",
 | 
			
		||||
  "language.fr_LU": "français (Luxembourg)",
 | 
			
		||||
  "language.fr_MC": "français (Monaco)",
 | 
			
		||||
  "language.fr_MF": "français (Saint-Martin)",
 | 
			
		||||
  "language.fr_MG": "français (Madagascar)",
 | 
			
		||||
  "language.fr_ML": "français (Mali)",
 | 
			
		||||
  "language.fr_MQ": "français (Martinique)",
 | 
			
		||||
  "language.fr_NE": "français (Niger)",
 | 
			
		||||
  "language.fr_RE": "français (Réunion)",
 | 
			
		||||
  "language.fr_RW": "français (Rwanda)",
 | 
			
		||||
  "language.fr_SN": "français (Sénégal)",
 | 
			
		||||
  "language.fr_TD": "français (Tchad)",
 | 
			
		||||
  "language.fr_TG": "français (Togo)",
 | 
			
		||||
  "language.fr_YT": "français (Mayotte)",
 | 
			
		||||
  "language.ga": "Gaeilge",
 | 
			
		||||
  "language.ga_IE": "Gaeilge (Éire)",
 | 
			
		||||
  "language.gl": "galego",
 | 
			
		||||
  "language.gl_ES": "galego (España)",
 | 
			
		||||
  "language.gsw": "Schwiizertüütsch",
 | 
			
		||||
  "language.gsw_CH": "Schwiizertüütsch (Schwiiz)",
 | 
			
		||||
  "language.gu": "ગુજરાતી",
 | 
			
		||||
  "language.gu_IN": "ગુજરાતી (ભારત)",
 | 
			
		||||
  "language.guz": "Ekegusii",
 | 
			
		||||
  "language.guz_KE": "Ekegusii (Kenya)",
 | 
			
		||||
  "language.gv": "Gaelg",
 | 
			
		||||
  "language.gv_GB": "Gaelg (Rywvaneth Unys)",
 | 
			
		||||
  "language.ha": "Hausa",
 | 
			
		||||
  "language.ha_Latn": "Hausa (Latn)",
 | 
			
		||||
  "language.ha_Latn_GH": "Hausa (Latn, Gana)",
 | 
			
		||||
  "language.ha_Latn_NE": "Hausa (Latn, Nijar)",
 | 
			
		||||
  "language.ha_Latn_NG": "Hausa (Latn, Najeriya)",
 | 
			
		||||
  "language.haw": "ʻŌlelo Hawaiʻi",
 | 
			
		||||
  "language.haw_US": "ʻŌlelo Hawaiʻi (ʻAmelika Hui Pū ʻIa)",
 | 
			
		||||
  "language.he": "עברית",
 | 
			
		||||
  "language.he_IL": "עברית (ישראל)",
 | 
			
		||||
  "language.hi": "हिन्दी",
 | 
			
		||||
  "language.hi_IN": "हिन्दी (भारत)",
 | 
			
		||||
  "language.hr": "hrvatski",
 | 
			
		||||
  "language.hr_HR": "hrvatski (Hrvatska)",
 | 
			
		||||
  "language.hu": "magyar",
 | 
			
		||||
  "language.hu_HU": "magyar (Magyarország)",
 | 
			
		||||
  "language.hy": "Հայերէն",
 | 
			
		||||
  "language.hy_AM": "Հայերէն (Հայաստանի Հանրապետութիւն)",
 | 
			
		||||
  "language.id": "Bahasa Indonesia",
 | 
			
		||||
  "language.id_ID": "Bahasa Indonesia (Indonesia)",
 | 
			
		||||
  "language.ig": "Igbo",
 | 
			
		||||
  "language.ig_NG": "Igbo (Nigeria)",
 | 
			
		||||
  "language.ii": "ꆈꌠꉙ",
 | 
			
		||||
  "language.ii_CN": "ꆈꌠꉙ (ꍏꇩ)",
 | 
			
		||||
  "language.is": "íslenska",
 | 
			
		||||
  "language.is_IS": "íslenska (Ísland)",
 | 
			
		||||
  "language.it": "italiano",
 | 
			
		||||
  "language.it_CH": "italiano (Svizzera)",
 | 
			
		||||
  "language.it_IT": "italiano (Italia)",
 | 
			
		||||
  "language.ja": "日本語",
 | 
			
		||||
  "language.ja_JP": "日本語(日本)",
 | 
			
		||||
  "language.jmc": "Kimachame",
 | 
			
		||||
  "language.jmc_TZ": "Kimachame (Tanzania)",
 | 
			
		||||
  "language.ka": "ქართული",
 | 
			
		||||
  "language.ka_GE": "ქართული (საქართველო)",
 | 
			
		||||
  "language.kab": "Taqbaylit",
 | 
			
		||||
  "language.kab_DZ": "Taqbaylit (Lezzayer)",
 | 
			
		||||
  "language.kam": "Kikamba",
 | 
			
		||||
  "language.kam_KE": "Kikamba (Kenya)",
 | 
			
		||||
  "language.kde": "Chimakonde",
 | 
			
		||||
  "language.kde_TZ": "Chimakonde (Tanzania)",
 | 
			
		||||
  "language.kea": "kabuverdianu",
 | 
			
		||||
  "language.kea_CV": "kabuverdianu (Kabu Verdi)",
 | 
			
		||||
  "language.khq": "Koyra ciini",
 | 
			
		||||
  "language.khq_ML": "Koyra ciini (Maali)",
 | 
			
		||||
  "language.ki": "Gikuyu",
 | 
			
		||||
  "language.ki_KE": "Gikuyu (Kenya)",
 | 
			
		||||
  "language.kk": "қазақ тілі",
 | 
			
		||||
  "language.kk_Cyrl": "қазақ тілі (кириллица)",
 | 
			
		||||
  "language.kk_Cyrl_KZ": "қазақ тілі (кириллица, Қазақстан)",
 | 
			
		||||
  "language.kl": "kalaallisut",
 | 
			
		||||
  "language.kl_GL": "kalaallisut (Kalaallit Nunaat)",
 | 
			
		||||
  "language.kln": "Kalenjin",
 | 
			
		||||
  "language.kln_KE": "Kalenjin (Emetab Kenya)",
 | 
			
		||||
  "language.km": "ភាសាខ្មែរ",
 | 
			
		||||
  "language.km_KH": "ភាសាខ្មែរ (កម្ពុជា)",
 | 
			
		||||
  "language.kn": "ಕನ್ನಡ",
 | 
			
		||||
  "language.kn_IN": "ಕನ್ನಡ (ಭಾರತ)",
 | 
			
		||||
  "language.ko": "한국어",
 | 
			
		||||
  "language.ko_KR": "한국어(대한민국)",
 | 
			
		||||
  "language.kok": "कोंकणी",
 | 
			
		||||
  "language.kok_IN": "कोंकणी (भारत)",
 | 
			
		||||
  "language.ksb": "Kishambaa",
 | 
			
		||||
  "language.ksb_TZ": "Kishambaa (Tanzania)",
 | 
			
		||||
  "language.ksf": "rikpa",
 | 
			
		||||
  "language.ksf_CM": "rikpa (kamɛrún)",
 | 
			
		||||
  "language.kw": "kernewek",
 | 
			
		||||
  "language.kw_GB": "kernewek (Rywvaneth Unys)",
 | 
			
		||||
  "language.lag": "Kɨlaangi",
 | 
			
		||||
  "language.lag_TZ": "Kɨlaangi (Taansanía)",
 | 
			
		||||
  "language.lg": "Luganda",
 | 
			
		||||
  "language.lg_UG": "Luganda (Yuganda)",
 | 
			
		||||
  "language.ln": "lingála",
 | 
			
		||||
  "language.ln_CD": "lingála (Repibiki demokratiki ya Kongó)",
 | 
			
		||||
  "language.ln_CG": "lingála (Kongo)",
 | 
			
		||||
  "language.lt": "lietuvių",
 | 
			
		||||
  "language.lt_LT": "lietuvių (Lietuva)",
 | 
			
		||||
  "language.lu": "Tshiluba",
 | 
			
		||||
  "language.lu_CD": "Tshiluba (Ditunga wa Kongu)",
 | 
			
		||||
  "language.luo": "Dholuo",
 | 
			
		||||
  "language.luo_KE": "Dholuo (Kenya)",
 | 
			
		||||
  "language.luy": "Luluhia",
 | 
			
		||||
  "language.luy_KE": "Luluhia (Kenya)",
 | 
			
		||||
  "language.lv": "latviešu",
 | 
			
		||||
  "language.lv_LV": "latviešu (Latvija)",
 | 
			
		||||
  "language.mas": "Maa",
 | 
			
		||||
  "language.mas_KE": "Maa (Kenya)",
 | 
			
		||||
  "language.mas_TZ": "Maa (Tansania)",
 | 
			
		||||
  "language.mer": "Kĩmĩrũ",
 | 
			
		||||
  "language.mer_KE": "Kĩmĩrũ (Kenya)",
 | 
			
		||||
  "language.mfe": "kreol morisien",
 | 
			
		||||
  "language.mfe_MU": "kreol morisien (Moris)",
 | 
			
		||||
  "language.mg": "Malagasy",
 | 
			
		||||
  "language.mg_MG": "Malagasy (Madagasikara)",
 | 
			
		||||
  "language.mgh": "Makua",
 | 
			
		||||
  "language.mgh_MZ": "Makua (Umozambiki)",
 | 
			
		||||
  "language.mk": "македонски",
 | 
			
		||||
  "language.mk_MK": "македонски (Македонија)",
 | 
			
		||||
  "language.ml": "മലയാളം",
 | 
			
		||||
  "language.ml_IN": "മലയാളം (ഇന്ത്യ)",
 | 
			
		||||
  "language.mr": "मराठी",
 | 
			
		||||
  "language.mr_IN": "मराठी (भारत)",
 | 
			
		||||
  "language.ms": "Bahasa Melayu",
 | 
			
		||||
  "language.ms_BN": "Bahasa Melayu (Brunei)",
 | 
			
		||||
  "language.ms_MY": "Bahasa Melayu (Malaysia)",
 | 
			
		||||
  "language.mt": "Malti",
 | 
			
		||||
  "language.mt_MT": "Malti (Malta)",
 | 
			
		||||
  "language.mua": "MUNDAŊ",
 | 
			
		||||
  "language.mua_CM": "MUNDAŊ (kameruŋ)",
 | 
			
		||||
  "language.my": "ဗမာ",
 | 
			
		||||
  "language.my_MM": "ဗမာ (မြန်မာ)",
 | 
			
		||||
  "language.naq": "Khoekhoegowab",
 | 
			
		||||
  "language.naq_NA": "Khoekhoegowab (Namibiab)",
 | 
			
		||||
  "language.nb": "norsk bokmål",
 | 
			
		||||
  "language.nb_NO": "norsk bokmål (Norge)",
 | 
			
		||||
  "language.nd": "isiNdebele",
 | 
			
		||||
  "language.nd_ZW": "isiNdebele (Zimbabwe)",
 | 
			
		||||
  "language.ne": "नेपाली",
 | 
			
		||||
  "language.ne_IN": "नेपाली (भारत)",
 | 
			
		||||
  "language.ne_NP": "नेपाली (नेपाल)",
 | 
			
		||||
  "language.nl": "Nederlands",
 | 
			
		||||
  "language.nl_AW": "Nederlands (Aruba)",
 | 
			
		||||
  "language.nl_BE": "Nederlands (België)",
 | 
			
		||||
  "language.nl_CW": "Nederlands (Curaçao)",
 | 
			
		||||
  "language.nl_NL": "Nederlands (Nederland)",
 | 
			
		||||
  "language.nl_SX": "Nederlands (Sint Maarten)",
 | 
			
		||||
  "language.nmg": "nmg",
 | 
			
		||||
  "language.nmg_CM": "nmg (Kamerun)",
 | 
			
		||||
  "language.nn": "nynorsk",
 | 
			
		||||
  "language.nn_NO": "nynorsk (Noreg)",
 | 
			
		||||
  "language.nus": "Thok Nath",
 | 
			
		||||
  "language.nus_SD": "Thok Nath (Sudan)",
 | 
			
		||||
  "language.nyn": "Runyankore",
 | 
			
		||||
  "language.nyn_UG": "Runyankore (Uganda)",
 | 
			
		||||
  "language.om": "Oromoo",
 | 
			
		||||
  "language.om_ET": "Oromoo (Itoophiyaa)",
 | 
			
		||||
  "language.om_KE": "Oromoo (Keeniyaa)",
 | 
			
		||||
  "language.or": "ଓଡ଼ିଆ",
 | 
			
		||||
  "language.or_IN": "ଓଡ଼ିଆ (ଭାରତ)",
 | 
			
		||||
  "language.pa": "ਪੰਜਾਬੀ",
 | 
			
		||||
  "language.pa_Arab": "پنجاب (العربية)",
 | 
			
		||||
  "language.pa_Arab_PK": "پنجاب (العربية, پکستان)",
 | 
			
		||||
  "language.pa_Guru": "ਪੰਜਾਬੀ (Guru)",
 | 
			
		||||
  "language.pa_Guru_IN": "ਪੰਜਾਬੀ (Guru, ਭਾਰਤ)",
 | 
			
		||||
  "language.pl": "polski",
 | 
			
		||||
  "language.pl_PL": "polski (Polska)",
 | 
			
		||||
  "language.ps": "پښتو",
 | 
			
		||||
  "language.ps_AF": "پښتو (افغانستان)",
 | 
			
		||||
  "language.pt": "português",
 | 
			
		||||
  "language.pt_AO": "português (Angola)",
 | 
			
		||||
  "language.pt_BR": "português (Brasil)",
 | 
			
		||||
  "language.pt_GW": "português (Guiné Bissau)",
 | 
			
		||||
  "language.pt_MZ": "português (Moçambique)",
 | 
			
		||||
  "language.pt_PT": "português (Portugal)",
 | 
			
		||||
  "language.pt_ST": "português (São Tomé e Príncipe)",
 | 
			
		||||
  "language.rm": "rumantsch",
 | 
			
		||||
  "language.rm_CH": "rumantsch (Svizra)",
 | 
			
		||||
  "language.rn": "Ikirundi",
 | 
			
		||||
  "language.rn_BI": "Ikirundi (Uburundi)",
 | 
			
		||||
  "language.ro": "română",
 | 
			
		||||
  "language.ro_MD": "română (Republica Moldova)",
 | 
			
		||||
  "language.ro_RO": "română (România)",
 | 
			
		||||
  "language.rof": "Kihorombo",
 | 
			
		||||
  "language.rof_TZ": "Kihorombo (Tanzania)",
 | 
			
		||||
  "language.ru": "русский",
 | 
			
		||||
  "language.ru_MD": "русский (Молдова)",
 | 
			
		||||
  "language.ru_RU": "русский (Россия)",
 | 
			
		||||
  "language.ru_UA": "русский (Украина)",
 | 
			
		||||
  "language.rw": "Kinyarwanda",
 | 
			
		||||
  "language.rw_RW": "Kinyarwanda (Rwanda)",
 | 
			
		||||
  "language.rwk": "Kiruwa",
 | 
			
		||||
  "language.rwk_TZ": "Kiruwa (Tanzania)",
 | 
			
		||||
  "language.saq": "Kisampur",
 | 
			
		||||
  "language.saq_KE": "Kisampur (Kenya)",
 | 
			
		||||
  "language.sbp": "Ishisangu",
 | 
			
		||||
  "language.sbp_TZ": "Ishisangu (Tansaniya)",
 | 
			
		||||
  "language.seh": "sena",
 | 
			
		||||
  "language.seh_MZ": "sena (Moçambique)",
 | 
			
		||||
  "language.ses": "Koyraboro senni",
 | 
			
		||||
  "language.ses_ML": "Koyraboro senni (Maali)",
 | 
			
		||||
  "language.sg": "Sängö",
 | 
			
		||||
  "language.sg_CF": "Sängö (Ködörösêse tî Bêafrîka)",
 | 
			
		||||
  "language.shi": "tamazight",
 | 
			
		||||
  "language.shi_Latn": "tamazight (Latn)",
 | 
			
		||||
  "language.shi_Latn_MA": "tamazight (Latn, lmɣrib)",
 | 
			
		||||
  "language.shi_Tfng": "ⵜⴰⵎⴰⵣⵉⵖⵜ (Tfng)",
 | 
			
		||||
  "language.shi_Tfng_MA": "ⵜⴰⵎⴰⵣⵉⵖⵜ (Tfng, ⵍⵎⵖⵔⵉⴱ)",
 | 
			
		||||
  "language.si": "සිංහල",
 | 
			
		||||
  "language.si_LK": "සිංහල (ශ්රී ලංකාව)",
 | 
			
		||||
  "language.sk": "slovenčina",
 | 
			
		||||
  "language.sk_SK": "slovenčina (Slovenská republika)",
 | 
			
		||||
  "language.sl": "slovenščina",
 | 
			
		||||
  "language.sl_SI": "slovenščina (Slovenija)",
 | 
			
		||||
  "language.sn": "chiShona",
 | 
			
		||||
  "language.sn_ZW": "chiShona (Zimbabwe)",
 | 
			
		||||
  "language.so": "Soomaali",
 | 
			
		||||
  "language.so_DJ": "Soomaali (Jabuuti)",
 | 
			
		||||
  "language.so_ET": "Soomaali (Itoobiya)",
 | 
			
		||||
  "language.so_KE": "Soomaali (Kiiniya)",
 | 
			
		||||
  "language.so_SO": "Soomaali (Soomaaliya)",
 | 
			
		||||
  "language.sq": "shqip",
 | 
			
		||||
  "language.sq_AL": "shqip (Shqipëria)",
 | 
			
		||||
  "language.sr": "Српски",
 | 
			
		||||
  "language.sr_Cyrl": "Српски (Ћирилица)",
 | 
			
		||||
  "language.sr_Cyrl_BA": "Српски (Ћирилица, Босна и Херцеговина)",
 | 
			
		||||
  "language.sr_Cyrl_ME": "Српски (Ћирилица, Црна Гора)",
 | 
			
		||||
  "language.sr_Cyrl_RS": "Српски (Ћирилица, Србија)",
 | 
			
		||||
  "language.sr_Latn": "Srpski (Latinica)",
 | 
			
		||||
  "language.sr_Latn_BA": "Srpski (Latinica, Bosna i Hercegovina)",
 | 
			
		||||
  "language.sr_Latn_ME": "Srpski (Latinica, Crna Gora)",
 | 
			
		||||
  "language.sr_Latn_RS": "Srpski (Latinica, Srbija)",
 | 
			
		||||
  "language.sv": "svenska",
 | 
			
		||||
  "language.sv_FI": "svenska (Finland)",
 | 
			
		||||
  "language.sv_SE": "svenska (Sverige)",
 | 
			
		||||
  "language.sw": "Kiswahili",
 | 
			
		||||
  "language.sw_KE": "Kiswahili (Kenya)",
 | 
			
		||||
  "language.sw_TZ": "Kiswahili (Tanzania)",
 | 
			
		||||
  "language.swc": "Kiswahili ya Kongo",
 | 
			
		||||
  "language.swc_CD": "Kiswahili ya Kongo (Jamhuri ya Kidemokrasia ya Kongo)",
 | 
			
		||||
  "language.ta": "தமிழ்",
 | 
			
		||||
  "language.ta_IN": "தமிழ் (இந்தியா)",
 | 
			
		||||
  "language.ta_LK": "தமிழ் (இலங்கை)",
 | 
			
		||||
  "language.te": "తెలుగు",
 | 
			
		||||
  "language.te_IN": "తెలుగు (భారత దేశం)",
 | 
			
		||||
  "language.teo": "Kiteso",
 | 
			
		||||
  "language.teo_KE": "Kiteso (Kenia)",
 | 
			
		||||
  "language.teo_UG": "Kiteso (Uganda)",
 | 
			
		||||
  "language.th": "ไทย",
 | 
			
		||||
  "language.th_TH": "ไทย (ไทย)",
 | 
			
		||||
  "language.ti": "ትግርኛ",
 | 
			
		||||
  "language.ti_ER": "ትግርኛ (ER)",
 | 
			
		||||
  "language.ti_ET": "ትግርኛ (ET)",
 | 
			
		||||
  "language.to": "lea fakatonga",
 | 
			
		||||
  "language.to_TO": "lea fakatonga (Tonga)",
 | 
			
		||||
  "language.tr": "Türkçe",
 | 
			
		||||
  "language.tr_TR": "Türkçe (Türkiye)",
 | 
			
		||||
  "language.twq": "Tasawaq senni",
 | 
			
		||||
  "language.twq_NE": "Tasawaq senni (Nižer)",
 | 
			
		||||
  "language.tzm": "Tamaziɣt",
 | 
			
		||||
  "language.tzm_Latn": "Tamaziɣt (Latn)",
 | 
			
		||||
  "language.tzm_Latn_MA": "Tamaziɣt (Latn, Meṛṛuk)",
 | 
			
		||||
  "language.uk": "українська",
 | 
			
		||||
  "language.uk_UA": "українська (Україна)",
 | 
			
		||||
  "language.ur": "اردو",
 | 
			
		||||
  "language.ur_IN": "اردو (بھارت)",
 | 
			
		||||
  "language.ur_PK": "اردو (پاکستان)",
 | 
			
		||||
  "language.uz": "Ўзбек",
 | 
			
		||||
  "language.uz_Arab": "اۉزبېک (Arab)",
 | 
			
		||||
  "language.uz_Arab_AF": "اۉزبېک (Arab, افغانستان)",
 | 
			
		||||
  "language.uz_Cyrl": "Ўзбек (Cyrl)",
 | 
			
		||||
  "language.uz_Cyrl_UZ": "Ўзбек (Cyrl, Ўзбекистон)",
 | 
			
		||||
  "language.uz_Latn": "oʼzbekcha (Lotin)",
 | 
			
		||||
  "language.uz_Latn_UZ": "oʼzbekcha (Lotin, Oʼzbekiston)",
 | 
			
		||||
  "language.vai": "ꕙꔤ",
 | 
			
		||||
  "language.vai_Latn": "Vai (Latn)",
 | 
			
		||||
  "language.vai_Latn_LR": "Vai (Latn, Laibhiya)",
 | 
			
		||||
  "language.vai_Vaii": "ꕙꔤ (Vaii)",
 | 
			
		||||
  "language.vai_Vaii_LR": "ꕙꔤ (Vaii, ꕞꔤꔫꕩ)",
 | 
			
		||||
  "language.vi": "Tiếng Việt",
 | 
			
		||||
  "language.vi_VN": "Tiếng Việt (Việt Nam)",
 | 
			
		||||
  "language.vun": "Kyivunjo",
 | 
			
		||||
  "language.vun_TZ": "Kyivunjo (Tanzania)",
 | 
			
		||||
  "language.xog": "Olusoga",
 | 
			
		||||
  "language.xog_UG": "Olusoga (Yuganda)",
 | 
			
		||||
  "language.yav": "nuasue",
 | 
			
		||||
  "language.yav_CM": "nuasue (Kemelún)",
 | 
			
		||||
  "language.yo": "Èdè Yorùbá",
 | 
			
		||||
  "language.yo_NG": "Èdè Yorùbá (Orílẹ́ède Nàìjíríà)",
 | 
			
		||||
  "language.zh": "中文",
 | 
			
		||||
  "language.zh_Hans": "中文(简体中文)",
 | 
			
		||||
  "language.zh_Hans_CN": "中文(简体中文、中国)",
 | 
			
		||||
  "language.zh_Hans_HK": "中文(简体中文、中国香港特别行政区)",
 | 
			
		||||
  "language.zh_Hans_MO": "中文(简体中文、中国澳门特别行政区)",
 | 
			
		||||
  "language.zh_Hans_SG": "中文(简体中文、新加坡)",
 | 
			
		||||
  "language.zh_Hant": "中文(繁體中文)",
 | 
			
		||||
  "language.zh_Hant_HK": "中文(繁體中文,中華人民共和國香港特別行政區)",
 | 
			
		||||
  "language.zh_Hant_MO": "中文(繁體中文,中華人民共和國澳門特別行政區)",
 | 
			
		||||
  "language.zh_Hant_TW": "中文(繁體中文,台灣)",
 | 
			
		||||
  "language.zu": "isiZulu",
 | 
			
		||||
  "language.zu_ZA": "isiZulu (iNingizimu Afrika)",
 | 
			
		||||
 | 
			
		||||
  "pageNotFound": "Page not found"
 | 
			
		||||
}
 | 
			
		||||
@ -1,8 +1,8 @@
 | 
			
		||||
{
 | 
			
		||||
  "components.DownloadDb.download": "Installation in progess...",
 | 
			
		||||
  "components.DownloadDb.text": "It can take a minute or so. Thanks for your patience.",
 | 
			
		||||
  "plugin.description.short": "Configure your project in seconds",
 | 
			
		||||
  "plugin.description.long": "Configure your project in seconds",
 | 
			
		||||
  "components.DownloadDb.text": "This could take a minute or so. Thanks for your patience.",
 | 
			
		||||
  "plugin.description.short": "Configure your project within seconds.",
 | 
			
		||||
  "plugin.description.long": "Configure your project within seconds.",
 | 
			
		||||
  "menu.section.global-settings": "Global settings",
 | 
			
		||||
  "menu.item.application": "Application",
 | 
			
		||||
  "menu.item.languages": "Languages",
 | 
			
		||||
@ -17,10 +17,10 @@
 | 
			
		||||
 | 
			
		||||
  "form.button.cancel": "Cancel",
 | 
			
		||||
  "form.button.save": "Save",
 | 
			
		||||
  "form.button.confirm": "Confim",
 | 
			
		||||
  "form.button.confirm": "Confirm",
 | 
			
		||||
 | 
			
		||||
  "form.databases.name": "Database",
 | 
			
		||||
  "form.databases.description": "Configure your database settings by environnement.",
 | 
			
		||||
  "form.databases.description": "Configure your database settings by environment.",
 | 
			
		||||
 | 
			
		||||
  "form.database.item.name": "Connection Name",
 | 
			
		||||
  "form.database.item.client": "Client",
 | 
			
		||||
@ -125,7 +125,7 @@
 | 
			
		||||
 | 
			
		||||
  "request.error.config": "Config file doesn't exist.",
 | 
			
		||||
  "request.error.environment.required": "Environment is required.",
 | 
			
		||||
  "request.error.environment.unknow": "Environment is unknow.",
 | 
			
		||||
  "request.error.environment.unknow": "Environment is unknown.",
 | 
			
		||||
  "request.error.languages.exist": "This language already exist.",
 | 
			
		||||
  "request.error.languages.unknow": "This language doesn't exist.",
 | 
			
		||||
  "request.error.languages.incorrect": "This language is incorrect.",
 | 
			
		||||
@ -134,16 +134,16 @@
 | 
			
		||||
  "list.languages.title.singular": "language is available",
 | 
			
		||||
  "list.languages.title.plural": "languages are available",
 | 
			
		||||
  "list.languages.default.languages": "Default language",
 | 
			
		||||
  "list.languages.set.languages": "Set to default",
 | 
			
		||||
  "list.languages.set.languages": "Set as default",
 | 
			
		||||
  "list.databases.button.label": "Add a new connection",
 | 
			
		||||
  "list.databases.title.singular": "connection in this environment",
 | 
			
		||||
  "list.databases.title.plural": "connections in this environment",
 | 
			
		||||
 | 
			
		||||
  "popUpWarning.title": "Please confirm",
 | 
			
		||||
  "popUpWarning.databases.danger.message": "Content Types are still linked with this connection. By removing it, you could cause criticals issues to your app. Be careful...",
 | 
			
		||||
  "popUpWarning.databases.danger.message": "Content Types are still linked with this connection. By removing it, you could cause critical issues to your app. Be careful...",
 | 
			
		||||
  "popUpWarning.danger.ok.message": "I Understand",
 | 
			
		||||
  "popUpWarning.databases.delete.message": "Are you sure you want to delete this database ?",
 | 
			
		||||
  "popUpWarning.languages.delete.message": "Are you sure you want to delete this language ?",
 | 
			
		||||
  "popUpWarning.databases.delete.message": "Are you sure you want to delete this database?",
 | 
			
		||||
  "popUpWarning.languages.delete.message": "Are you sure you want to delete this language?",
 | 
			
		||||
  "strapi.notification.info.settingsEqual": "Settings are equals",
 | 
			
		||||
  "strapi.notification.success.databaseDelete": "The database has been successfully deleted.",
 | 
			
		||||
  "strapi.notification.success.languageDelete": "The language has been successfully deleted.",
 | 
			
		||||
 | 
			
		||||
@ -0,0 +1,654 @@
 | 
			
		||||
{
 | 
			
		||||
  "components.DownloadDb.download": "Instalacja w toku...",
 | 
			
		||||
  "components.DownloadDb.text": "To może chwilę potrwać. Dziękujemy za cierpliwość.",
 | 
			
		||||
  "plugin.description.short": "Skonfiguruj swój projekt w kilka sekund",
 | 
			
		||||
  "plugin.description.long": "Skonfiguruj swój projekt w kilka sekund",
 | 
			
		||||
  "menu.section.global-settings": "Globalne",
 | 
			
		||||
  "menu.item.application": "Aplikacja",
 | 
			
		||||
  "menu.item.languages": "Języki",
 | 
			
		||||
  "menu.item.advanced": "Zaawansowane",
 | 
			
		||||
 | 
			
		||||
  "menu.section.environments": "Środowiska",
 | 
			
		||||
  "menu.item.database": "Bazy danych",
 | 
			
		||||
  "menu.item.request": "Żądania",
 | 
			
		||||
  "menu.item.response": "Odpowiedzi",
 | 
			
		||||
  "menu.item.security": "Bezpieczeństwo",
 | 
			
		||||
  "menu.item.server": "Serwer",
 | 
			
		||||
 | 
			
		||||
  "form.button.cancel": "Anuluj",
 | 
			
		||||
  "form.button.save": "Zapisz",
 | 
			
		||||
  "form.button.confirm": "Potwierdź",
 | 
			
		||||
 | 
			
		||||
  "form.databases.name": "Bazy danych",
 | 
			
		||||
  "form.databases.description": "Konfiguruj ustawienia baz danych według środowiska.",
 | 
			
		||||
 | 
			
		||||
  "form.database.item.name": "Nazwa",
 | 
			
		||||
  "form.database.item.client": "Klient",
 | 
			
		||||
  "form.database.item.connector": "Łącznik",
 | 
			
		||||
  "form.database.item.host": "Host",
 | 
			
		||||
  "form.database.item.port": "Port",
 | 
			
		||||
  "form.database.item.username": "Nazwa użytkownika",
 | 
			
		||||
  "form.database.item.password": "Hasło",
 | 
			
		||||
  "form.database.item.database": "Baza danych",
 | 
			
		||||
  "form.database.item.default": "Ustaw jako domyślne połączenie",
 | 
			
		||||
  "form.database.item.provider.mongo": "Mongo",
 | 
			
		||||
  "form.database.item.provider.postgres": "PostgresSQL",
 | 
			
		||||
  "form.database.item.provider.mysql": "MySQL",
 | 
			
		||||
  "form.database.item.provider.sqlite3": "SQlite3",
 | 
			
		||||
  "form.database.item.provider.redis": "Redis",
 | 
			
		||||
 | 
			
		||||
  "form.application.name": "Aplikacja",
 | 
			
		||||
  "form.application.description": "Skonfiguruj ustawienia aplikacji.",
 | 
			
		||||
 | 
			
		||||
  "form.application.item.name": "Nazwa",
 | 
			
		||||
  "form.application.item.description": "Opis",
 | 
			
		||||
  "form.application.item.version": "Wersja",
 | 
			
		||||
 | 
			
		||||
  "form.advanced.name": "Zaawansowane",
 | 
			
		||||
  "form.advanced.description": "Skonfiguruj zaawansowane ustawienia.",
 | 
			
		||||
 | 
			
		||||
  "form.advanced.item.admin": "Adres panelu administratora",
 | 
			
		||||
  "form.advanced.item.prefix": "Prefiks API",
 | 
			
		||||
 | 
			
		||||
  "form.request.name": "Żądania",
 | 
			
		||||
  "form.request.description": "Konfiguruj ustawienia żądań.",
 | 
			
		||||
  "form.request.item.parser": "Parser",
 | 
			
		||||
  "form.request.item.parser.multipart": "Parser Multipart",
 | 
			
		||||
  "form.request.item.prefix": "Prefiks",
 | 
			
		||||
  "form.request.item.prefix.prefix": "Prefiks",
 | 
			
		||||
  "form.request.item.logger": "Logger",
 | 
			
		||||
  "form.request.item.logger.level": "Poziom",
 | 
			
		||||
  "form.request.item.logger.exposeInContext": "Odsłoń w kontekście",
 | 
			
		||||
  "form.request.item.logger.requests": "Żądania",
 | 
			
		||||
  "form.request.item.router": "Router",
 | 
			
		||||
  "form.request.item.router.prefix": "Prefiks",
 | 
			
		||||
 | 
			
		||||
  "form.response.name": "Odpowiedzi",
 | 
			
		||||
  "form.response.description": "Konfiguruj ustawienia odpowiedzi.",
 | 
			
		||||
  "form.response.item.gzip.enabled": "Gzip",
 | 
			
		||||
  "form.response.item.responseTime.enabled": "Czas odpowiedzi",
 | 
			
		||||
 | 
			
		||||
  "form.security.name": "Bezpieczeństwo",
 | 
			
		||||
  "form.security.description": "Konfiguruj ustawienia bezpieczeństwa.",
 | 
			
		||||
 | 
			
		||||
  "form.security.item.csrf": "CSRF",
 | 
			
		||||
  "form.security.item.p3p": "P3P",
 | 
			
		||||
  "form.security.item.p3p.value": "Wartość",
 | 
			
		||||
  "form.security.item.hsts": "HOSTS",
 | 
			
		||||
  "form.security.item.csrf.key": "Klucz",
 | 
			
		||||
  "form.security.item.csrf.secret": "Sekretny klucz",
 | 
			
		||||
  "form.security.item.csrf.cookie": "Cookie",
 | 
			
		||||
  "form.security.item.csrf.angular": "Angular",
 | 
			
		||||
  "form.security.item.hsts.maxAge": "Max Age",
 | 
			
		||||
  "form.security.item.hsts.includeSubDomains": "Subdomeny",
 | 
			
		||||
  "form.security.item.hsts.preload": "Preload",
 | 
			
		||||
 | 
			
		||||
  "form.security.item.session": "Sesja",
 | 
			
		||||
  "form.security.item.session.key": "Sekretny klucz",
 | 
			
		||||
  "form.security.item.session.maxAge": "Maksymalny czas",
 | 
			
		||||
 | 
			
		||||
  "form.security.item.xframe": "Xframe",
 | 
			
		||||
  "form.security.item.xframe.value": "Opcje",
 | 
			
		||||
  "form.security.item.xframe.deny": "DENY",
 | 
			
		||||
  "form.security.item.xframe.sameorigin": "SAMEORIGIN",
 | 
			
		||||
  "form.security.item.xframe.allow-from": "ALLOW-FROM",
 | 
			
		||||
 | 
			
		||||
  "form.security.item.xssProtection": "Ochrona xss",
 | 
			
		||||
  "form.security.item.xssProtection.mode": "Tryb",
 | 
			
		||||
 | 
			
		||||
  "form.security.item.cors": "Cors",
 | 
			
		||||
  "form.security.item.cors.origin": "Źródło",
 | 
			
		||||
 | 
			
		||||
  "form.server.name": "Serwer",
 | 
			
		||||
  "form.server.description": "Konfiguruj ustaweinia serwera.",
 | 
			
		||||
 | 
			
		||||
  "form.server.item.host": "Host",
 | 
			
		||||
  "form.server.item.port": "Port",
 | 
			
		||||
  "form.server.item.cron": "Cron",
 | 
			
		||||
 | 
			
		||||
  "form.language.name": "Języki",
 | 
			
		||||
  "form.language.description": "Konfiguruj języki.",
 | 
			
		||||
  "form.language.choose": "Nazwa:",
 | 
			
		||||
 | 
			
		||||
  "request.error.database.exist": "Takie połączenie już istnieje",
 | 
			
		||||
  "request.error.type.string": "Tekst jest wymagany.",
 | 
			
		||||
  "request.error.type.number": "Liczba jest wymagana.",
 | 
			
		||||
  "request.error.type.boolean": "Typ logiczny jest wymagany.",
 | 
			
		||||
  "request.error.type.select": "Wartość musi znajdować się na uprzednio zdefiniowanej liście.",
 | 
			
		||||
 | 
			
		||||
  "request.error.validation.required": "Wpisanie wartości dla tego atrybutu jest wymagane.",
 | 
			
		||||
  "request.error.validation.regex": "The value does not match the regex.",
 | 
			
		||||
  "request.error.validation.max": "Ta wartość jest za wysoka.",
 | 
			
		||||
  "request.error.validation.min": "Ta wartość jest za niska",
 | 
			
		||||
  "request.error.validation.maxLength": "Ta wartość jest za długa.",
 | 
			
		||||
  "request.error.validation.minLength": "Ta wartość jest za krótka.",
 | 
			
		||||
 | 
			
		||||
  "request.error.config": "Plik konfiguracyjny nie istnieje.",
 | 
			
		||||
  "request.error.environment.required": "Środowisko jest wymagane.",
 | 
			
		||||
  "request.error.environment.unknow": "Środowisko jest nieokreślone.",
 | 
			
		||||
  "request.error.languages.exist": "Taki język już istnieje.",
 | 
			
		||||
  "request.error.languages.unknow": "Taki język nie istnieje.",
 | 
			
		||||
  "request.error.languages.incorrect": "Ten język jest niepoprawny.",
 | 
			
		||||
 | 
			
		||||
  "list.languages.button.label": "Język",
 | 
			
		||||
  "list.languages.title.singular": "język jest dostępny",
 | 
			
		||||
  "list.languages.title.plural": "języków jest dostępnych",
 | 
			
		||||
  "list.languages.default.languages": "Domyślny",
 | 
			
		||||
  "list.languages.set.languages": "Ustaw jako domyślny",
 | 
			
		||||
  "list.databases.button.label": "Połączenie",
 | 
			
		||||
  "list.databases.title.singular": "połączenie w tym środowisku",
 | 
			
		||||
  "list.databases.title.plural": "połączeń w tym środowisku",
 | 
			
		||||
 | 
			
		||||
  "popUpWarning.title": "Potwierdzenie",
 | 
			
		||||
  "popUpWarning.databases.danger.message": "Modele wciąż są powiązane z tym połączeniem. Usuwając je możesz spowodować krytyczne problemy w aplikacji. Ostrożnie...",
 | 
			
		||||
  "popUpWarning.danger.ok.message": "Rozumiem",
 | 
			
		||||
  "popUpWarning.databases.delete.message": "Czy na pewno chcesz usunąć tę bazę danych?",
 | 
			
		||||
  "popUpWarning.languages.delete.message": "Czy na pewno chcesz usunąć ten język?",
 | 
			
		||||
  "strapi.notification.info.settingsEqual": "Ustawienia są takie same",
 | 
			
		||||
  "strapi.notification.success.databaseDelete": "Baza danych została pomyślnie usunięta.",
 | 
			
		||||
  "strapi.notification.success.languageDelete": "Język został pomyślnie usunięty.",
 | 
			
		||||
  "strapi.notification.success.languageAdd": "Język został pomyślnie dodany.",
 | 
			
		||||
  "strapi.notification.success.databaseAdd": "Baza danych została pomyślnie dodana.",
 | 
			
		||||
  "strapi.notification.success.databaseEdit": "Ustawienia bazy danych zostały pomyślnie zmienione.",
 | 
			
		||||
  "strapi.notification.success.databaseDeleted": "Baza danych została usunięta.",
 | 
			
		||||
  "strapi.notification.success.settingsEdit": "Ustawienia zostały pomyślnie zmienione.",
 | 
			
		||||
  "strapi.notification.error": "Wystąpił błąd",
 | 
			
		||||
  "strapi.notification.info.serverRestart": "Serwer uruchomi się ponownie",
 | 
			
		||||
 | 
			
		||||
  "language.af": "Afrikaans",
 | 
			
		||||
  "language.af_NA": "Afrikaans (Namibië)",
 | 
			
		||||
  "language.af_ZA": "Afrikaans (Suid-Afrika)",
 | 
			
		||||
  "language.agq": "Aghem",
 | 
			
		||||
  "language.agq_CM": "Aghem (Kàmàlûŋ)",
 | 
			
		||||
  "language.ak": "Akan",
 | 
			
		||||
  "language.ak_GH": "Akan (Gaana)",
 | 
			
		||||
  "language.am": "አማርኛ",
 | 
			
		||||
  "language.am_ET": "አማርኛ (ኢትዮጵያ)",
 | 
			
		||||
  "language.ar": "العربية",
 | 
			
		||||
  "language.ar_001": "العربية (العالم)",
 | 
			
		||||
  "language.ar_AE": "العربية (الإمارات العربية المتحدة)",
 | 
			
		||||
  "language.ar_BH": "العربية (البحرين)",
 | 
			
		||||
  "language.ar_DZ": "العربية (الجزائر)",
 | 
			
		||||
  "language.ar_EG": "العربية (مصر)",
 | 
			
		||||
  "language.ar_IQ": "العربية (العراق)",
 | 
			
		||||
  "language.ar_JO": "العربية (الأردن)",
 | 
			
		||||
  "language.ar_KW": "العربية (الكويت)",
 | 
			
		||||
  "language.ar_LB": "العربية (لبنان)",
 | 
			
		||||
  "language.ar_LY": "العربية (ليبيا)",
 | 
			
		||||
  "language.ar_MA": "العربية (المغرب)",
 | 
			
		||||
  "language.ar_OM": "العربية (عُمان)",
 | 
			
		||||
  "language.ar_QA": "العربية (قطر)",
 | 
			
		||||
  "language.ar_SA": "العربية (المملكة العربية السعودية)",
 | 
			
		||||
  "language.ar_SD": "العربية (السودان)",
 | 
			
		||||
  "language.ar_SY": "العربية (سوريا)",
 | 
			
		||||
  "language.ar_TN": "العربية (تونس)",
 | 
			
		||||
  "language.ar_YE": "العربية (اليمن)",
 | 
			
		||||
  "language.as": "অসমীয়া",
 | 
			
		||||
  "language.as_IN": "অসমীয়া (ভাৰত)",
 | 
			
		||||
  "language.asa": "Kipare",
 | 
			
		||||
  "language.asa_TZ": "Kipare (Tadhania)",
 | 
			
		||||
  "language.az": "azərbaycanca",
 | 
			
		||||
  "language.az_Cyrl": "Азәрбајҹан (kiril)",
 | 
			
		||||
  "language.az_Cyrl_AZ": "Азәрбајҹан (kiril, Азәрбајҹан)",
 | 
			
		||||
  "language.az_Latn": "azərbaycanca (latın)",
 | 
			
		||||
  "language.az_Latn_AZ": "azərbaycanca (latın, Azərbaycan)",
 | 
			
		||||
  "language.bas": "Ɓàsàa",
 | 
			
		||||
  "language.bas_CM": "Ɓàsàa (Kàmɛ̀rûn)",
 | 
			
		||||
  "language.be": "беларуская",
 | 
			
		||||
  "language.be_BY": "беларуская (Беларусь)",
 | 
			
		||||
  "language.bem": "Ichibemba",
 | 
			
		||||
  "language.bem_ZM": "Ichibemba (Zambia)",
 | 
			
		||||
  "language.bez": "Hibena",
 | 
			
		||||
  "language.bez_TZ": "Hibena (Hutanzania)",
 | 
			
		||||
  "language.bg": "български",
 | 
			
		||||
  "language.bg_BG": "български (България)",
 | 
			
		||||
  "language.bm": "bamanakan",
 | 
			
		||||
  "language.bm_ML": "bamanakan (Mali)",
 | 
			
		||||
  "language.bn": "বাংলা",
 | 
			
		||||
  "language.bn_BD": "বাংলা (বাংলাদেশ)",
 | 
			
		||||
  "language.bn_IN": "বাংলা (ভারত)",
 | 
			
		||||
  "language.bo": "པོད་སྐད་",
 | 
			
		||||
  "language.bo_CN": "པོད་སྐད་ (རྒྱ་ནག)",
 | 
			
		||||
  "language.bo_IN": "པོད་སྐད་ (རྒྱ་གར་)",
 | 
			
		||||
  "language.br": "brezhoneg",
 | 
			
		||||
  "language.br_FR": "brezhoneg (Frañs)",
 | 
			
		||||
  "language.brx": "बड़ो",
 | 
			
		||||
  "language.brx_IN": "बड़ो (भारत)",
 | 
			
		||||
  "language.bs": "bosanski",
 | 
			
		||||
  "language.bs_BA": "bosanski (Bosna i Hercegovina)",
 | 
			
		||||
  "language.ca": "català",
 | 
			
		||||
  "language.ca_ES": "català (Espanya)",
 | 
			
		||||
  "language.cgg": "Rukiga",
 | 
			
		||||
  "language.cgg_UG": "Rukiga (Uganda)",
 | 
			
		||||
  "language.chr": "ᏣᎳᎩ",
 | 
			
		||||
  "language.chr_US": "ᏣᎳᎩ (ᎠᎹᏰᏟ)",
 | 
			
		||||
  "language.cs": "čeština",
 | 
			
		||||
  "language.cs_CZ": "čeština (Česká republika)",
 | 
			
		||||
  "language.cy": "Cymraeg",
 | 
			
		||||
  "language.cy_GB": "Cymraeg (Prydain Fawr)",
 | 
			
		||||
  "language.da": "dansk",
 | 
			
		||||
  "language.da_DK": "dansk (Danmark)",
 | 
			
		||||
  "language.dav": "Kitaita",
 | 
			
		||||
  "language.dav_KE": "Kitaita (Kenya)",
 | 
			
		||||
  "language.de": "Deutsch",
 | 
			
		||||
  "language.de_AT": "Deutsch (Österreich)",
 | 
			
		||||
  "language.de_BE": "Deutsch (Belgien)",
 | 
			
		||||
  "language.de_CH": "Deutsch (Schweiz)",
 | 
			
		||||
  "language.de_DE": "Deutsch (Deutschland)",
 | 
			
		||||
  "language.de_LI": "Deutsch (Liechtenstein)",
 | 
			
		||||
  "language.de_LU": "Deutsch (Luxemburg)",
 | 
			
		||||
  "language.dje": "Zarmaciine",
 | 
			
		||||
  "language.dje_NE": "Zarmaciine (Nižer)",
 | 
			
		||||
  "language.dua": "duálá",
 | 
			
		||||
  "language.dua_CM": "duálá (Cameroun)",
 | 
			
		||||
  "language.dyo": "joola",
 | 
			
		||||
  "language.dyo_SN": "joola (Senegal)",
 | 
			
		||||
  "language.ebu": "Kĩembu",
 | 
			
		||||
  "language.ebu_KE": "Kĩembu (Kenya)",
 | 
			
		||||
  "language.ee": "eʋegbe",
 | 
			
		||||
  "language.ee_GH": "eʋegbe (Ghana nutome)",
 | 
			
		||||
  "language.ee_TG": "eʋegbe (Togo nutome)",
 | 
			
		||||
  "language.el": "Ελληνικά",
 | 
			
		||||
  "language.el_CY": "Ελληνικά (Κύπρος)",
 | 
			
		||||
  "language.el_GR": "Ελληνικά (Ελλάδα)",
 | 
			
		||||
  "language.en": "English",
 | 
			
		||||
  "language.en_AS": "English (American Samoa)",
 | 
			
		||||
  "language.en_AU": "English (Australia)",
 | 
			
		||||
  "language.en_BB": "English (Barbados)",
 | 
			
		||||
  "language.en_BE": "English (Belgium)",
 | 
			
		||||
  "language.en_BM": "English (Bermuda)",
 | 
			
		||||
  "language.en_BW": "English (Botswana)",
 | 
			
		||||
  "language.en_BZ": "English (Belize)",
 | 
			
		||||
  "language.en_CA": "English (Canada)",
 | 
			
		||||
  "language.en_GB": "English (United Kingdom)",
 | 
			
		||||
  "language.en_GU": "English (Guam)",
 | 
			
		||||
  "language.en_GY": "English (Guyana)",
 | 
			
		||||
  "language.en_HK": "English (Hong Kong SAR China)",
 | 
			
		||||
  "language.en_IE": "English (Ireland)",
 | 
			
		||||
  "language.en_IN": "English (India)",
 | 
			
		||||
  "language.en_JM": "English (Jamaica)",
 | 
			
		||||
  "language.en_MH": "English (Marshall Islands)",
 | 
			
		||||
  "language.en_MP": "English (Northern Mariana Islands)",
 | 
			
		||||
  "language.en_MT": "English (Malta)",
 | 
			
		||||
  "language.en_MU": "English (Mauritius)",
 | 
			
		||||
  "language.en_NA": "English (Namibia)",
 | 
			
		||||
  "language.en_NZ": "English (New Zealand)",
 | 
			
		||||
  "language.en_PH": "English (Philippines)",
 | 
			
		||||
  "language.en_PK": "English (Pakistan)",
 | 
			
		||||
  "language.en_SG": "English (Singapore)",
 | 
			
		||||
  "language.en_TT": "English (Trinidad and Tobago)",
 | 
			
		||||
  "language.en_UM": "English (U.S. Minor Outlying Islands)",
 | 
			
		||||
  "language.en_US": "English (United States)",
 | 
			
		||||
  "language.en_US_POSIX": "English (United States, Computer)",
 | 
			
		||||
  "language.en_VI": "English (U.S. Virgin Islands)",
 | 
			
		||||
  "language.en_ZA": "English (South Africa)",
 | 
			
		||||
  "language.en_ZW": "English (Zimbabwe)",
 | 
			
		||||
  "language.eo": "esperanto",
 | 
			
		||||
  "language.es": "español",
 | 
			
		||||
  "language.es_419": "español (Latinoamérica)",
 | 
			
		||||
  "language.es_AR": "español (Argentina)",
 | 
			
		||||
  "language.es_BO": "español (Bolivia)",
 | 
			
		||||
  "language.es_CL": "español (Chile)",
 | 
			
		||||
  "language.es_CO": "español (Colombia)",
 | 
			
		||||
  "language.es_CR": "español (Costa Rica)",
 | 
			
		||||
  "language.es_DO": "español (República Dominicana)",
 | 
			
		||||
  "language.es_EC": "español (Ecuador)",
 | 
			
		||||
  "language.es_ES": "español (España)",
 | 
			
		||||
  "language.es_GQ": "español (Guinea Ecuatorial)",
 | 
			
		||||
  "language.es_GT": "español (Guatemala)",
 | 
			
		||||
  "language.es_HN": "español (Honduras)",
 | 
			
		||||
  "language.es_MX": "español (México)",
 | 
			
		||||
  "language.es_NI": "español (Nicaragua)",
 | 
			
		||||
  "language.es_PA": "español (Panamá)",
 | 
			
		||||
  "language.es_PE": "español (Perú)",
 | 
			
		||||
  "language.es_PR": "español (Puerto Rico)",
 | 
			
		||||
  "language.es_PY": "español (Paraguay)",
 | 
			
		||||
  "language.es_SV": "español (El Salvador)",
 | 
			
		||||
  "language.es_US": "español (Estados Unidos)",
 | 
			
		||||
  "language.es_UY": "español (Uruguay)",
 | 
			
		||||
  "language.es_VE": "español (Venezuela)",
 | 
			
		||||
  "language.et": "eesti",
 | 
			
		||||
  "language.et_EE": "eesti (Eesti)",
 | 
			
		||||
  "language.eu": "euskara",
 | 
			
		||||
  "language.eu_ES": "euskara (Espainia)",
 | 
			
		||||
  "language.ewo": "ewondo",
 | 
			
		||||
  "language.ewo_CM": "ewondo (Kamǝrún)",
 | 
			
		||||
  "language.fa": "فارسی",
 | 
			
		||||
  "language.fa_AF": "دری (افغانستان)",
 | 
			
		||||
  "language.fa_IR": "فارسی (ایران)",
 | 
			
		||||
  "language.ff": "Pulaar",
 | 
			
		||||
  "language.ff_SN": "Pulaar (Senegaal)",
 | 
			
		||||
  "language.fi": "suomi",
 | 
			
		||||
  "language.fi_FI": "suomi (Suomi)",
 | 
			
		||||
  "language.fil": "Filipino",
 | 
			
		||||
  "language.fil_PH": "Filipino (Pilipinas)",
 | 
			
		||||
  "language.fo": "føroyskt",
 | 
			
		||||
  "language.fo_FO": "føroyskt (Føroyar)",
 | 
			
		||||
  "language.fr": "français",
 | 
			
		||||
  "language.fr_BE": "français (Belgique)",
 | 
			
		||||
  "language.fr_BF": "français (Burkina Faso)",
 | 
			
		||||
  "language.fr_BI": "français (Burundi)",
 | 
			
		||||
  "language.fr_BJ": "français (Bénin)",
 | 
			
		||||
  "language.fr_BL": "français (Saint-Barthélémy)",
 | 
			
		||||
  "language.fr_CA": "français (Canada)",
 | 
			
		||||
  "language.fr_CD": "français (République démocratique du Congo)",
 | 
			
		||||
  "language.fr_CF": "français (République centrafricaine)",
 | 
			
		||||
  "language.fr_CG": "français (Congo-Brazzaville)",
 | 
			
		||||
  "language.fr_CH": "français (Suisse)",
 | 
			
		||||
  "language.fr_CI": "français (Côte d’Ivoire)",
 | 
			
		||||
  "language.fr_CM": "français (Cameroun)",
 | 
			
		||||
  "language.fr_DJ": "français (Djibouti)",
 | 
			
		||||
  "language.fr_FR": "français (France)",
 | 
			
		||||
  "language.fr_GA": "français (Gabon)",
 | 
			
		||||
  "language.fr_GF": "français (Guyane française)",
 | 
			
		||||
  "language.fr_GN": "français (Guinée)",
 | 
			
		||||
  "language.fr_GP": "français (Guadeloupe)",
 | 
			
		||||
  "language.fr_GQ": "français (Guinée équatoriale)",
 | 
			
		||||
  "language.fr_KM": "français (Comores)",
 | 
			
		||||
  "language.fr_LU": "français (Luxembourg)",
 | 
			
		||||
  "language.fr_MC": "français (Monaco)",
 | 
			
		||||
  "language.fr_MF": "français (Saint-Martin)",
 | 
			
		||||
  "language.fr_MG": "français (Madagascar)",
 | 
			
		||||
  "language.fr_ML": "français (Mali)",
 | 
			
		||||
  "language.fr_MQ": "français (Martinique)",
 | 
			
		||||
  "language.fr_NE": "français (Niger)",
 | 
			
		||||
  "language.fr_RE": "français (Réunion)",
 | 
			
		||||
  "language.fr_RW": "français (Rwanda)",
 | 
			
		||||
  "language.fr_SN": "français (Sénégal)",
 | 
			
		||||
  "language.fr_TD": "français (Tchad)",
 | 
			
		||||
  "language.fr_TG": "français (Togo)",
 | 
			
		||||
  "language.fr_YT": "français (Mayotte)",
 | 
			
		||||
  "language.ga": "Gaeilge",
 | 
			
		||||
  "language.ga_IE": "Gaeilge (Éire)",
 | 
			
		||||
  "language.gl": "galego",
 | 
			
		||||
  "language.gl_ES": "galego (España)",
 | 
			
		||||
  "language.gsw": "Schwiizertüütsch",
 | 
			
		||||
  "language.gsw_CH": "Schwiizertüütsch (Schwiiz)",
 | 
			
		||||
  "language.gu": "ગુજરાતી",
 | 
			
		||||
  "language.gu_IN": "ગુજરાતી (ભારત)",
 | 
			
		||||
  "language.guz": "Ekegusii",
 | 
			
		||||
  "language.guz_KE": "Ekegusii (Kenya)",
 | 
			
		||||
  "language.gv": "Gaelg",
 | 
			
		||||
  "language.gv_GB": "Gaelg (Rywvaneth Unys)",
 | 
			
		||||
  "language.ha": "Hausa",
 | 
			
		||||
  "language.ha_Latn": "Hausa (Latn)",
 | 
			
		||||
  "language.ha_Latn_GH": "Hausa (Latn, Gana)",
 | 
			
		||||
  "language.ha_Latn_NE": "Hausa (Latn, Nijar)",
 | 
			
		||||
  "language.ha_Latn_NG": "Hausa (Latn, Najeriya)",
 | 
			
		||||
  "language.haw": "ʻŌlelo Hawaiʻi",
 | 
			
		||||
  "language.haw_US": "ʻŌlelo Hawaiʻi (ʻAmelika Hui Pū ʻIa)",
 | 
			
		||||
  "language.he": "עברית",
 | 
			
		||||
  "language.he_IL": "עברית (ישראל)",
 | 
			
		||||
  "language.hi": "हिन्दी",
 | 
			
		||||
  "language.hi_IN": "हिन्दी (भारत)",
 | 
			
		||||
  "language.hr": "hrvatski",
 | 
			
		||||
  "language.hr_HR": "hrvatski (Hrvatska)",
 | 
			
		||||
  "language.hu": "magyar",
 | 
			
		||||
  "language.hu_HU": "magyar (Magyarország)",
 | 
			
		||||
  "language.hy": "Հայերէն",
 | 
			
		||||
  "language.hy_AM": "Հայերէն (Հայաստանի Հանրապետութիւն)",
 | 
			
		||||
  "language.id": "Bahasa Indonesia",
 | 
			
		||||
  "language.id_ID": "Bahasa Indonesia (Indonesia)",
 | 
			
		||||
  "language.ig": "Igbo",
 | 
			
		||||
  "language.ig_NG": "Igbo (Nigeria)",
 | 
			
		||||
  "language.ii": "ꆈꌠꉙ",
 | 
			
		||||
  "language.ii_CN": "ꆈꌠꉙ (ꍏꇩ)",
 | 
			
		||||
  "language.is": "íslenska",
 | 
			
		||||
  "language.is_IS": "íslenska (Ísland)",
 | 
			
		||||
  "language.it": "italiano",
 | 
			
		||||
  "language.it_CH": "italiano (Svizzera)",
 | 
			
		||||
  "language.it_IT": "italiano (Italia)",
 | 
			
		||||
  "language.ja": "日本語",
 | 
			
		||||
  "language.ja_JP": "日本語(日本)",
 | 
			
		||||
  "language.jmc": "Kimachame",
 | 
			
		||||
  "language.jmc_TZ": "Kimachame (Tanzania)",
 | 
			
		||||
  "language.ka": "ქართული",
 | 
			
		||||
  "language.ka_GE": "ქართული (საქართველო)",
 | 
			
		||||
  "language.kab": "Taqbaylit",
 | 
			
		||||
  "language.kab_DZ": "Taqbaylit (Lezzayer)",
 | 
			
		||||
  "language.kam": "Kikamba",
 | 
			
		||||
  "language.kam_KE": "Kikamba (Kenya)",
 | 
			
		||||
  "language.kde": "Chimakonde",
 | 
			
		||||
  "language.kde_TZ": "Chimakonde (Tanzania)",
 | 
			
		||||
  "language.kea": "kabuverdianu",
 | 
			
		||||
  "language.kea_CV": "kabuverdianu (Kabu Verdi)",
 | 
			
		||||
  "language.khq": "Koyra ciini",
 | 
			
		||||
  "language.khq_ML": "Koyra ciini (Maali)",
 | 
			
		||||
  "language.ki": "Gikuyu",
 | 
			
		||||
  "language.ki_KE": "Gikuyu (Kenya)",
 | 
			
		||||
  "language.kk": "қазақ тілі",
 | 
			
		||||
  "language.kk_Cyrl": "қазақ тілі (кириллица)",
 | 
			
		||||
  "language.kk_Cyrl_KZ": "қазақ тілі (кириллица, Қазақстан)",
 | 
			
		||||
  "language.kl": "kalaallisut",
 | 
			
		||||
  "language.kl_GL": "kalaallisut (Kalaallit Nunaat)",
 | 
			
		||||
  "language.kln": "Kalenjin",
 | 
			
		||||
  "language.kln_KE": "Kalenjin (Emetab Kenya)",
 | 
			
		||||
  "language.km": "ភាសាខ្មែរ",
 | 
			
		||||
  "language.km_KH": "ភាសាខ្មែរ (កម្ពុជា)",
 | 
			
		||||
  "language.kn": "ಕನ್ನಡ",
 | 
			
		||||
  "language.kn_IN": "ಕನ್ನಡ (ಭಾರತ)",
 | 
			
		||||
  "language.ko": "한국어",
 | 
			
		||||
  "language.ko_KR": "한국어(대한민국)",
 | 
			
		||||
  "language.kok": "कोंकणी",
 | 
			
		||||
  "language.kok_IN": "कोंकणी (भारत)",
 | 
			
		||||
  "language.ksb": "Kishambaa",
 | 
			
		||||
  "language.ksb_TZ": "Kishambaa (Tanzania)",
 | 
			
		||||
  "language.ksf": "rikpa",
 | 
			
		||||
  "language.ksf_CM": "rikpa (kamɛrún)",
 | 
			
		||||
  "language.kw": "kernewek",
 | 
			
		||||
  "language.kw_GB": "kernewek (Rywvaneth Unys)",
 | 
			
		||||
  "language.lag": "Kɨlaangi",
 | 
			
		||||
  "language.lag_TZ": "Kɨlaangi (Taansanía)",
 | 
			
		||||
  "language.lg": "Luganda",
 | 
			
		||||
  "language.lg_UG": "Luganda (Yuganda)",
 | 
			
		||||
  "language.ln": "lingála",
 | 
			
		||||
  "language.ln_CD": "lingála (Repibiki demokratiki ya Kongó)",
 | 
			
		||||
  "language.ln_CG": "lingála (Kongo)",
 | 
			
		||||
  "language.lt": "lietuvių",
 | 
			
		||||
  "language.lt_LT": "lietuvių (Lietuva)",
 | 
			
		||||
  "language.lu": "Tshiluba",
 | 
			
		||||
  "language.lu_CD": "Tshiluba (Ditunga wa Kongu)",
 | 
			
		||||
  "language.luo": "Dholuo",
 | 
			
		||||
  "language.luo_KE": "Dholuo (Kenya)",
 | 
			
		||||
  "language.luy": "Luluhia",
 | 
			
		||||
  "language.luy_KE": "Luluhia (Kenya)",
 | 
			
		||||
  "language.lv": "latviešu",
 | 
			
		||||
  "language.lv_LV": "latviešu (Latvija)",
 | 
			
		||||
  "language.mas": "Maa",
 | 
			
		||||
  "language.mas_KE": "Maa (Kenya)",
 | 
			
		||||
  "language.mas_TZ": "Maa (Tansania)",
 | 
			
		||||
  "language.mer": "Kĩmĩrũ",
 | 
			
		||||
  "language.mer_KE": "Kĩmĩrũ (Kenya)",
 | 
			
		||||
  "language.mfe": "kreol morisien",
 | 
			
		||||
  "language.mfe_MU": "kreol morisien (Moris)",
 | 
			
		||||
  "language.mg": "Malagasy",
 | 
			
		||||
  "language.mg_MG": "Malagasy (Madagasikara)",
 | 
			
		||||
  "language.mgh": "Makua",
 | 
			
		||||
  "language.mgh_MZ": "Makua (Umozambiki)",
 | 
			
		||||
  "language.mk": "македонски",
 | 
			
		||||
  "language.mk_MK": "македонски (Македонија)",
 | 
			
		||||
  "language.ml": "മലയാളം",
 | 
			
		||||
  "language.ml_IN": "മലയാളം (ഇന്ത്യ)",
 | 
			
		||||
  "language.mr": "मराठी",
 | 
			
		||||
  "language.mr_IN": "मराठी (भारत)",
 | 
			
		||||
  "language.ms": "Bahasa Melayu",
 | 
			
		||||
  "language.ms_BN": "Bahasa Melayu (Brunei)",
 | 
			
		||||
  "language.ms_MY": "Bahasa Melayu (Malaysia)",
 | 
			
		||||
  "language.mt": "Malti",
 | 
			
		||||
  "language.mt_MT": "Malti (Malta)",
 | 
			
		||||
  "language.mua": "MUNDAŊ",
 | 
			
		||||
  "language.mua_CM": "MUNDAŊ (kameruŋ)",
 | 
			
		||||
  "language.my": "ဗမာ",
 | 
			
		||||
  "language.my_MM": "ဗမာ (မြန်မာ)",
 | 
			
		||||
  "language.naq": "Khoekhoegowab",
 | 
			
		||||
  "language.naq_NA": "Khoekhoegowab (Namibiab)",
 | 
			
		||||
  "language.nb": "norsk bokmål",
 | 
			
		||||
  "language.nb_NO": "norsk bokmål (Norge)",
 | 
			
		||||
  "language.nd": "isiNdebele",
 | 
			
		||||
  "language.nd_ZW": "isiNdebele (Zimbabwe)",
 | 
			
		||||
  "language.ne": "नेपाली",
 | 
			
		||||
  "language.ne_IN": "नेपाली (भारत)",
 | 
			
		||||
  "language.ne_NP": "नेपाली (नेपाल)",
 | 
			
		||||
  "language.nl": "Nederlands",
 | 
			
		||||
  "language.nl_AW": "Nederlands (Aruba)",
 | 
			
		||||
  "language.nl_BE": "Nederlands (België)",
 | 
			
		||||
  "language.nl_CW": "Nederlands (Curaçao)",
 | 
			
		||||
  "language.nl_NL": "Nederlands (Nederland)",
 | 
			
		||||
  "language.nl_SX": "Nederlands (Sint Maarten)",
 | 
			
		||||
  "language.nmg": "nmg",
 | 
			
		||||
  "language.nmg_CM": "nmg (Kamerun)",
 | 
			
		||||
  "language.nn": "nynorsk",
 | 
			
		||||
  "language.nn_NO": "nynorsk (Noreg)",
 | 
			
		||||
  "language.nus": "Thok Nath",
 | 
			
		||||
  "language.nus_SD": "Thok Nath (Sudan)",
 | 
			
		||||
  "language.nyn": "Runyankore",
 | 
			
		||||
  "language.nyn_UG": "Runyankore (Uganda)",
 | 
			
		||||
  "language.om": "Oromoo",
 | 
			
		||||
  "language.om_ET": "Oromoo (Itoophiyaa)",
 | 
			
		||||
  "language.om_KE": "Oromoo (Keeniyaa)",
 | 
			
		||||
  "language.or": "ଓଡ଼ିଆ",
 | 
			
		||||
  "language.or_IN": "ଓଡ଼ିଆ (ଭାରତ)",
 | 
			
		||||
  "language.pa": "ਪੰਜਾਬੀ",
 | 
			
		||||
  "language.pa_Arab": "پنجاب (العربية)",
 | 
			
		||||
  "language.pa_Arab_PK": "پنجاب (العربية, پکستان)",
 | 
			
		||||
  "language.pa_Guru": "ਪੰਜਾਬੀ (Guru)",
 | 
			
		||||
  "language.pa_Guru_IN": "ਪੰਜਾਬੀ (Guru, ਭਾਰਤ)",
 | 
			
		||||
  "language.pl": "polski",
 | 
			
		||||
  "language.pl_PL": "polski (Polska)",
 | 
			
		||||
  "language.ps": "پښتو",
 | 
			
		||||
  "language.ps_AF": "پښتو (افغانستان)",
 | 
			
		||||
  "language.pt": "português",
 | 
			
		||||
  "language.pt_AO": "português (Angola)",
 | 
			
		||||
  "language.pt_BR": "português (Brasil)",
 | 
			
		||||
  "language.pt_GW": "português (Guiné Bissau)",
 | 
			
		||||
  "language.pt_MZ": "português (Moçambique)",
 | 
			
		||||
  "language.pt_PT": "português (Portugal)",
 | 
			
		||||
  "language.pt_ST": "português (São Tomé e Príncipe)",
 | 
			
		||||
  "language.rm": "rumantsch",
 | 
			
		||||
  "language.rm_CH": "rumantsch (Svizra)",
 | 
			
		||||
  "language.rn": "Ikirundi",
 | 
			
		||||
  "language.rn_BI": "Ikirundi (Uburundi)",
 | 
			
		||||
  "language.ro": "română",
 | 
			
		||||
  "language.ro_MD": "română (Republica Moldova)",
 | 
			
		||||
  "language.ro_RO": "română (România)",
 | 
			
		||||
  "language.rof": "Kihorombo",
 | 
			
		||||
  "language.rof_TZ": "Kihorombo (Tanzania)",
 | 
			
		||||
  "language.ru": "русский",
 | 
			
		||||
  "language.ru_MD": "русский (Молдова)",
 | 
			
		||||
  "language.ru_RU": "русский (Россия)",
 | 
			
		||||
  "language.ru_UA": "русский (Украина)",
 | 
			
		||||
  "language.rw": "Kinyarwanda",
 | 
			
		||||
  "language.rw_RW": "Kinyarwanda (Rwanda)",
 | 
			
		||||
  "language.rwk": "Kiruwa",
 | 
			
		||||
  "language.rwk_TZ": "Kiruwa (Tanzania)",
 | 
			
		||||
  "language.saq": "Kisampur",
 | 
			
		||||
  "language.saq_KE": "Kisampur (Kenya)",
 | 
			
		||||
  "language.sbp": "Ishisangu",
 | 
			
		||||
  "language.sbp_TZ": "Ishisangu (Tansaniya)",
 | 
			
		||||
  "language.seh": "sena",
 | 
			
		||||
  "language.seh_MZ": "sena (Moçambique)",
 | 
			
		||||
  "language.ses": "Koyraboro senni",
 | 
			
		||||
  "language.ses_ML": "Koyraboro senni (Maali)",
 | 
			
		||||
  "language.sg": "Sängö",
 | 
			
		||||
  "language.sg_CF": "Sängö (Ködörösêse tî Bêafrîka)",
 | 
			
		||||
  "language.shi": "tamazight",
 | 
			
		||||
  "language.shi_Latn": "tamazight (Latn)",
 | 
			
		||||
  "language.shi_Latn_MA": "tamazight (Latn, lmɣrib)",
 | 
			
		||||
  "language.shi_Tfng": "ⵜⴰⵎⴰⵣⵉⵖⵜ (Tfng)",
 | 
			
		||||
  "language.shi_Tfng_MA": "ⵜⴰⵎⴰⵣⵉⵖⵜ (Tfng, ⵍⵎⵖⵔⵉⴱ)",
 | 
			
		||||
  "language.si": "සිංහල",
 | 
			
		||||
  "language.si_LK": "සිංහල (ශ්රී ලංකාව)",
 | 
			
		||||
  "language.sk": "slovenčina",
 | 
			
		||||
  "language.sk_SK": "slovenčina (Slovenská republika)",
 | 
			
		||||
  "language.sl": "slovenščina",
 | 
			
		||||
  "language.sl_SI": "slovenščina (Slovenija)",
 | 
			
		||||
  "language.sn": "chiShona",
 | 
			
		||||
  "language.sn_ZW": "chiShona (Zimbabwe)",
 | 
			
		||||
  "language.so": "Soomaali",
 | 
			
		||||
  "language.so_DJ": "Soomaali (Jabuuti)",
 | 
			
		||||
  "language.so_ET": "Soomaali (Itoobiya)",
 | 
			
		||||
  "language.so_KE": "Soomaali (Kiiniya)",
 | 
			
		||||
  "language.so_SO": "Soomaali (Soomaaliya)",
 | 
			
		||||
  "language.sq": "shqip",
 | 
			
		||||
  "language.sq_AL": "shqip (Shqipëria)",
 | 
			
		||||
  "language.sr": "Српски",
 | 
			
		||||
  "language.sr_Cyrl": "Српски (Ћирилица)",
 | 
			
		||||
  "language.sr_Cyrl_BA": "Српски (Ћирилица, Босна и Херцеговина)",
 | 
			
		||||
  "language.sr_Cyrl_ME": "Српски (Ћирилица, Црна Гора)",
 | 
			
		||||
  "language.sr_Cyrl_RS": "Српски (Ћирилица, Србија)",
 | 
			
		||||
  "language.sr_Latn": "Srpski (Latinica)",
 | 
			
		||||
  "language.sr_Latn_BA": "Srpski (Latinica, Bosna i Hercegovina)",
 | 
			
		||||
  "language.sr_Latn_ME": "Srpski (Latinica, Crna Gora)",
 | 
			
		||||
  "language.sr_Latn_RS": "Srpski (Latinica, Srbija)",
 | 
			
		||||
  "language.sv": "svenska",
 | 
			
		||||
  "language.sv_FI": "svenska (Finland)",
 | 
			
		||||
  "language.sv_SE": "svenska (Sverige)",
 | 
			
		||||
  "language.sw": "Kiswahili",
 | 
			
		||||
  "language.sw_KE": "Kiswahili (Kenya)",
 | 
			
		||||
  "language.sw_TZ": "Kiswahili (Tanzania)",
 | 
			
		||||
  "language.swc": "Kiswahili ya Kongo",
 | 
			
		||||
  "language.swc_CD": "Kiswahili ya Kongo (Jamhuri ya Kidemokrasia ya Kongo)",
 | 
			
		||||
  "language.ta": "தமிழ்",
 | 
			
		||||
  "language.ta_IN": "தமிழ் (இந்தியா)",
 | 
			
		||||
  "language.ta_LK": "தமிழ் (இலங்கை)",
 | 
			
		||||
  "language.te": "తెలుగు",
 | 
			
		||||
  "language.te_IN": "తెలుగు (భారత దేశం)",
 | 
			
		||||
  "language.teo": "Kiteso",
 | 
			
		||||
  "language.teo_KE": "Kiteso (Kenia)",
 | 
			
		||||
  "language.teo_UG": "Kiteso (Uganda)",
 | 
			
		||||
  "language.th": "ไทย",
 | 
			
		||||
  "language.th_TH": "ไทย (ไทย)",
 | 
			
		||||
  "language.ti": "ትግርኛ",
 | 
			
		||||
  "language.ti_ER": "ትግርኛ (ER)",
 | 
			
		||||
  "language.ti_ET": "ትግርኛ (ET)",
 | 
			
		||||
  "language.to": "lea fakatonga",
 | 
			
		||||
  "language.to_TO": "lea fakatonga (Tonga)",
 | 
			
		||||
  "language.tr": "Türkçe",
 | 
			
		||||
  "language.tr_TR": "Türkçe (Türkiye)",
 | 
			
		||||
  "language.twq": "Tasawaq senni",
 | 
			
		||||
  "language.twq_NE": "Tasawaq senni (Nižer)",
 | 
			
		||||
  "language.tzm": "Tamaziɣt",
 | 
			
		||||
  "language.tzm_Latn": "Tamaziɣt (Latn)",
 | 
			
		||||
  "language.tzm_Latn_MA": "Tamaziɣt (Latn, Meṛṛuk)",
 | 
			
		||||
  "language.uk": "українська",
 | 
			
		||||
  "language.uk_UA": "українська (Україна)",
 | 
			
		||||
  "language.ur": "اردو",
 | 
			
		||||
  "language.ur_IN": "اردو (بھارت)",
 | 
			
		||||
  "language.ur_PK": "اردو (پاکستان)",
 | 
			
		||||
  "language.uz": "Ўзбек",
 | 
			
		||||
  "language.uz_Arab": "اۉزبېک (Arab)",
 | 
			
		||||
  "language.uz_Arab_AF": "اۉزبېک (Arab, افغانستان)",
 | 
			
		||||
  "language.uz_Cyrl": "Ўзбек (Cyrl)",
 | 
			
		||||
  "language.uz_Cyrl_UZ": "Ўзбек (Cyrl, Ўзбекистон)",
 | 
			
		||||
  "language.uz_Latn": "oʼzbekcha (Lotin)",
 | 
			
		||||
  "language.uz_Latn_UZ": "oʼzbekcha (Lotin, Oʼzbekiston)",
 | 
			
		||||
  "language.vai": "ꕙꔤ",
 | 
			
		||||
  "language.vai_Latn": "Vai (Latn)",
 | 
			
		||||
  "language.vai_Latn_LR": "Vai (Latn, Laibhiya)",
 | 
			
		||||
  "language.vai_Vaii": "ꕙꔤ (Vaii)",
 | 
			
		||||
  "language.vai_Vaii_LR": "ꕙꔤ (Vaii, ꕞꔤꔫꕩ)",
 | 
			
		||||
  "language.vi": "Tiếng Việt",
 | 
			
		||||
  "language.vi_VN": "Tiếng Việt (Việt Nam)",
 | 
			
		||||
  "language.vun": "Kyivunjo",
 | 
			
		||||
  "language.vun_TZ": "Kyivunjo (Tanzania)",
 | 
			
		||||
  "language.xog": "Olusoga",
 | 
			
		||||
  "language.xog_UG": "Olusoga (Yuganda)",
 | 
			
		||||
  "language.yav": "nuasue",
 | 
			
		||||
  "language.yav_CM": "nuasue (Kemelún)",
 | 
			
		||||
  "language.yo": "Èdè Yorùbá",
 | 
			
		||||
  "language.yo_NG": "Èdè Yorùbá (Orílẹ́ède Nàìjíríà)",
 | 
			
		||||
  "language.zh": "中文",
 | 
			
		||||
  "language.zh_Hans": "中文(简体中文)",
 | 
			
		||||
  "language.zh_Hans_CN": "中文(简体中文、中国)",
 | 
			
		||||
  "language.zh_Hans_HK": "中文(简体中文、中国香港特别行政区)",
 | 
			
		||||
  "language.zh_Hans_MO": "中文(简体中文、中国澳门特别行政区)",
 | 
			
		||||
  "language.zh_Hans_SG": "中文(简体中文、新加坡)",
 | 
			
		||||
  "language.zh_Hant": "中文(繁體中文)",
 | 
			
		||||
  "language.zh_Hant_HK": "中文(繁體中文,中華人民共和國香港特別行政區)",
 | 
			
		||||
  "language.zh_Hant_MO": "中文(繁體中文,中華人民共和國澳門特別行政區)",
 | 
			
		||||
  "language.zh_Hant_TW": "中文(繁體中文,台灣)",
 | 
			
		||||
  "language.zu": "isiZulu",
 | 
			
		||||
  "language.zu_ZA": "isiZulu (iNingizimu Afrika)",
 | 
			
		||||
 | 
			
		||||
  "pageNotFound": "Strona nie znaleziona"
 | 
			
		||||
}
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-plugin-settings-manager",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "Strapi plugin to manage settings.",
 | 
			
		||||
  "strapi": {
 | 
			
		||||
    "name": "Settings Manager",
 | 
			
		||||
@ -25,7 +25,7 @@
 | 
			
		||||
  "devDependencies": {
 | 
			
		||||
    "flag-icon-css": "^2.8.0",
 | 
			
		||||
    "react-select": "^1.0.0-rc.5",
 | 
			
		||||
    "strapi-helper-plugin": "3.0.0-alpha.9.3"
 | 
			
		||||
    "strapi-helper-plugin": "3.0.0-alpha.10.1"
 | 
			
		||||
  },
 | 
			
		||||
  "author": {
 | 
			
		||||
    "name": "Strapi team",
 | 
			
		||||
 | 
			
		||||
@ -72,6 +72,7 @@ export function* submitData(action) {
 | 
			
		||||
 | 
			
		||||
    yield call(request, `/users-permissions/${action.endPoint}`, opts);
 | 
			
		||||
    yield put(submitSucceeded());
 | 
			
		||||
    strapi.notification.success('users-permissions.notification.success.submit');
 | 
			
		||||
  } catch(error) {
 | 
			
		||||
    strapi.notification.error('notification.error');
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										174
									
								
								packages/strapi-plugin-users-permissions/admin/src/translations/de.json
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										174
									
								
								packages/strapi-plugin-users-permissions/admin/src/translations/de.json
									
									
									
									
									
										Executable file
									
								
							@ -0,0 +1,174 @@
 | 
			
		||||
{
 | 
			
		||||
  "Auth.form.button.register-success": "Erneut schicken",
 | 
			
		||||
  "Auth.form.button.forgot-password.success": "Erneut schicken",
 | 
			
		||||
  "Auth.form.button.forgot-password": "E-Mail versenden",
 | 
			
		||||
  "Auth.form.button.reset-password": "Passwort ändern",
 | 
			
		||||
  "Auth.form.button.login": "Login",
 | 
			
		||||
  "Auth.form.button.register": "Bereit zum Start",
 | 
			
		||||
  "Auth.form.error.noAdminAccess": "Du hast keinen Zugriff auf den Administrator-Bereich.",
 | 
			
		||||
 | 
			
		||||
  "Auth.form.forgot-password.email.label": "Gib deine E-Mail ein",
 | 
			
		||||
  "Auth.form.forgot-password.email.label.success": "Eine E-Mail wurde erfolgreich verschickt an",
 | 
			
		||||
  "Auth.form.forgot-password.email.placeholder": "mysuperemail@gmail.com",
 | 
			
		||||
 | 
			
		||||
  "Auth.header.register.description": "Erstelle bitte einen Administrator durch Ausfüllen der folgenden Felder, um die Einrichtung deiner App abzuschließen.",
 | 
			
		||||
  "Auth.form.header.login": "strapi",
 | 
			
		||||
  "Auth.form.header.forgot-password": "strapi",
 | 
			
		||||
  "Auth.form.header.register": "Willkommen!",
 | 
			
		||||
  "Auth.form.header.register-success": "strapi",
 | 
			
		||||
 | 
			
		||||
  "Auth.form.login.password.label": "Passwort",
 | 
			
		||||
  "Auth.form.login.rememberMe.label": "Eingeloggt bleiben",
 | 
			
		||||
  "Auth.form.login.username.label": "Benutzername",
 | 
			
		||||
  "Auth.form.login.username.placeholder": "John Doe",
 | 
			
		||||
 | 
			
		||||
  "Auth.form.register.email.label": "E-Mail",
 | 
			
		||||
  "Auth.form.register.email.placeholder": "johndoe@gmail.com",
 | 
			
		||||
  "Auth.form.register.username.label": "Benutzername",
 | 
			
		||||
  "Auth.form.register.username.placeholder": "John Doe",
 | 
			
		||||
  "Auth.form.register.password.label": "Passwort",
 | 
			
		||||
  "Auth.form.register.confirmPassword.label": "Passwort-Bestätigung",
 | 
			
		||||
 | 
			
		||||
  "Auth.form.register-success.email.label": "Eine E-Mail wurde erfolgreich verschickt an",
 | 
			
		||||
  "Auth.form.register-success.email.placeholder": "mysuperemail@gmail.com",
 | 
			
		||||
 | 
			
		||||
  "Auth.form.error.email.provide": "Bitte nenne uns deinen Benutzernamen oder deine E-Mail-Adresse.",
 | 
			
		||||
  "Auth.form.error.email.invalid": "Diese E-Mail-Adresse ist ungültig.",
 | 
			
		||||
  "Auth.form.error.password.provide": "Bitte gib dein Passwort ein.",
 | 
			
		||||
  "Auth.form.error.invalid": "Ungültige Login-Daten.",
 | 
			
		||||
  "Auth.form.error.password.local": "Dieser Benutzer hat kein lokales Passwort. Bitte logge dich mithilfe des Providers ein, den du bei der Erstellung deines Accounts genutzt hast.",
 | 
			
		||||
  "Auth.form.error.password.format": "Dein Passwort darf nicht mehr als dreimal das Symbol `$` enthalten.",
 | 
			
		||||
  "Auth.form.error.user.not-exist": "Diese E-Mail-Adresse ist nicht registriert.",
 | 
			
		||||
  "Auth.form.error.code.provide": "Ungültiger Code.",
 | 
			
		||||
  "Auth.form.error.password.matching": "Passwörter sind nicht gleich.",
 | 
			
		||||
  "Auth.form.error.params.provide": "Ungültige Parameter.",
 | 
			
		||||
  "Auth.form.error.username.taken": "Der Benutzername ist bereits vergeben",
 | 
			
		||||
  "Auth.form.error.email.taken": "Die E-Mail-Adresse wird bereits genutzt",
 | 
			
		||||
 | 
			
		||||
  "Auth.link.forgot-password": "Passwort vergessen?",
 | 
			
		||||
  "Auth.link.ready": "Bereit für den Login?",
 | 
			
		||||
 | 
			
		||||
  "BoundRoute.title": "Pfad gebunden an",
 | 
			
		||||
 | 
			
		||||
  "components.Input.error.password.noMatch": "Passwörter stimmen nicht überein",
 | 
			
		||||
 | 
			
		||||
  "Controller.input.label": "{label} ",
 | 
			
		||||
  "Controller.selectAll": "Alle auswählen",
 | 
			
		||||
 | 
			
		||||
  "EditForm.inputSelect.subscriptions.label": "Manage subscriptions quotas",
 | 
			
		||||
  "EditForm.inputSelect.subscriptions.description": "Lege die Anzahl an subscriptions pro Stunde und IP fest.",
 | 
			
		||||
  "EditForm.inputSelect.durations.label": "Dauer",
 | 
			
		||||
  "EditForm.inputSelect.durations.description": "Anzahl Stunden, während derer eine Registration unmöglich ist.",
 | 
			
		||||
 | 
			
		||||
  "EditForm.inputToggle.label.email": "Ein Account pro E-Mail-Adresse",
 | 
			
		||||
  "EditForm.inputToggle.label.sign-up": "Registration ermöglichen",
 | 
			
		||||
  "EditForm.inputToggle.description.email": "Verbiete das Anlegen verschiedener Accounts derselben E-Mail-Adresse bei unterschiedlichen Anmeldemethoden.",
 | 
			
		||||
  "EditForm.inputToggle.description.sign-up": "Wenn deaktiviert (OFF), wird der Registrationsprozess unterbunden. Niemand kann sich mehr registrieren.",
 | 
			
		||||
 | 
			
		||||
  "EditPage.cancel": "Abbrechen",
 | 
			
		||||
  "EditPage.submit": "Speichern",
 | 
			
		||||
  "EditPage.form.roles": "Details zu Rollen",
 | 
			
		||||
  "EditPage.form.roles.label.description": "Beschreibung",
 | 
			
		||||
  "EditPage.form.roles.label.name": "Name",
 | 
			
		||||
  "EditPage.form.roles.label.users": "Benutzer mit dieser Rolle ({number})",
 | 
			
		||||
  "EditPage.form.roles.name.error": "Dieser Wert ist erforderlich.",
 | 
			
		||||
  "EditPage.header.title": "{name} ",
 | 
			
		||||
  "EditPage.header.title.create": "Erstelle eine neue Rolle",
 | 
			
		||||
  "EditPage.header.description": "{description} ",
 | 
			
		||||
  "EditPage.header.description.create": " ",
 | 
			
		||||
 | 
			
		||||
  "EditPage.notification.permissions.error": "Beim Abruf von Befugnissen ist ein Fehler aufgetreten",
 | 
			
		||||
  "EditPage.notification.policies.error": "Beim Abruf von policies ist ein Fehler aufgetreten",
 | 
			
		||||
  "EditPage.notification.role.error": "Beim Abruf der Rolle ist ein Fehler aufgetreten",
 | 
			
		||||
 | 
			
		||||
  "HeaderNav.link.advancedSettings": "Erweiterte Einstellungen",
 | 
			
		||||
  "HeaderNav.link.emailTemplates": "E-Mail-Templates",
 | 
			
		||||
  "HeaderNav.link.providers": "Methoden",
 | 
			
		||||
  "HeaderNav.link.roles": "Rollen",
 | 
			
		||||
 | 
			
		||||
  "HomePage.header.title": "Benutzer & Befugnisse",
 | 
			
		||||
  "HomePage.header.description": "Lege Rollen und deren Befugnisse fest",
 | 
			
		||||
 | 
			
		||||
  "InputSearch.placeholder": "Suche nach einem Benutzer",
 | 
			
		||||
 | 
			
		||||
  "List.button.roles": "Neue Rolle hinzufügen",
 | 
			
		||||
  "List.button.providers": "Neue Methode hinzufügen",
 | 
			
		||||
 | 
			
		||||
  "List.title.emailTemplates.singular": "{number} E-Mail-Template ist verfügbar",
 | 
			
		||||
  "List.title.emailTemplates.plural": "{number} E-Mail-Templates sind verfügbar",
 | 
			
		||||
 | 
			
		||||
  "List.title.providers.disabled.singular": "{number} ist deaktiviert",
 | 
			
		||||
  "List.title.providers.disabled.plural": "{number} sind deaktiviert",
 | 
			
		||||
  "List.title.providers.enabled.singular": "{number} Methode ist aktiviert und",
 | 
			
		||||
  "List.title.providers.enabled.plural": "{number} Methoden sind aktiviert und",
 | 
			
		||||
 | 
			
		||||
  "List.title.roles.singular": "{number} Rolle ist verfügbar",
 | 
			
		||||
  "List.title.roles.plural": "{number} Rollen sind verfügbar",
 | 
			
		||||
 | 
			
		||||
  "notification.error.delete": "Beim Löschen des Objekts ist ein Fehler aufgetreten",
 | 
			
		||||
  "notification.error.fetch": "Beim Abruf von Daten ist ein Fehler aufgetreten",
 | 
			
		||||
  "notification.error.fetchUser": "Beim Abruf von Benutzern ist ein Fehler aufgetreten",
 | 
			
		||||
  "notification.info.emailSent": "Die E-Mail wurde versendet",
 | 
			
		||||
  "notification.success.delete": "Das Objekt wurde gelöscht",
 | 
			
		||||
  "notification.success.submit": "Einstellungen aktualisiert",
 | 
			
		||||
 | 
			
		||||
  "plugin.description.short": "Beschütze deine API mit einem vollständigen Authentifikationsprozess basierend auf JWT.",
 | 
			
		||||
  "plugin.description.long": "Beschütze deine API mit einem vollständigen Authentifikationsprozess basierend auf JWT. Zudem bietet dieses Plugin eine ACL-Strategie, die erlaubt, die Befugnisse zwischen Benutzergruppen festzulegen.",
 | 
			
		||||
 | 
			
		||||
  "Plugin.permissions.application.description": "Definiere die möglichen Aktionen deines Projekts.",
 | 
			
		||||
  "Plugin.permissions.plugins.description": "Definiere die möglichen Aktionen des {name} Plugins.",
 | 
			
		||||
 | 
			
		||||
  "Plugins.header.title": "Befugnisse",
 | 
			
		||||
  "Plugins.header.description": "Nur Aktionen, die an einen Pfad gebunden sind, werden hier gelistet.",
 | 
			
		||||
 | 
			
		||||
  "Policies.InputSelect.empty": "Keine",
 | 
			
		||||
  "Policies.InputSelect.label": "Diese Aktion folgenden erlauben:",
 | 
			
		||||
  "Policies.header.hint": "Wähle eine Aktion aus und klicke auf das Zahnrad, um den an diese Aktion gebundenen Pfand anzuzeigen",
 | 
			
		||||
  "Policies.header.title": "Fortgeschrittene Einstellungen",
 | 
			
		||||
 | 
			
		||||
  "Email.template.validation_email": "Validierung der E-Mail-Adresse",
 | 
			
		||||
  "Email.template.reset_password": "Passwort zurücksetzen",
 | 
			
		||||
  "Email.template.success_register": "Anmeldung erfolgreich",
 | 
			
		||||
 | 
			
		||||
  "Auth.advanced.allow_register": "",
 | 
			
		||||
 | 
			
		||||
  "PopUpForm.button.cancel": "Abbrechen",
 | 
			
		||||
  "PopUpForm.button.save": "Speichern",
 | 
			
		||||
  "PopUpForm.header.add.providers": "Neue Methode hinzufügen",
 | 
			
		||||
  "PopUpForm.header.edit.email-templates": "E-Mail-Templates bearbeiten",
 | 
			
		||||
  "PopUpForm.header.edit.providers": "Methode {provider} bearbeiten",
 | 
			
		||||
  "PopUpForm.inputSelect.providers.label": "Wähle die Methode aus",
 | 
			
		||||
  "PopUpForm.Email.options.from.name.label": "Name des Absenders",
 | 
			
		||||
  "PopUpForm.Email.options.from.email.label": "E-Mail-Adresse des Absenders",
 | 
			
		||||
  "PopUpForm.Email.options.response_email.label": "Antwort E-Mail-Adresse",
 | 
			
		||||
  "PopUpForm.Email.options.object.label": "Betreff",
 | 
			
		||||
  "PopUpForm.Email.options.message.label": "Nachricht",
 | 
			
		||||
  "PopUpForm.Email.validation_email.options.object.placeholder": "Bitte bestätige deine E-Mail-Adresse für %APP_NAME%",
 | 
			
		||||
  "PopUpForm.Email.reset_password.options.object.placeholder": "Bitte bestätige deine E-Mail-Adresse für %APP_NAME%",
 | 
			
		||||
  "PopUpForm.Email.success_register.options.object.placeholder": "Bitte bestätige deine E-Mail-Adresse für %APP_NAME%",
 | 
			
		||||
  "PopUpForm.Email.validation_email.options.message.placeholder": "<p>Hier klicken, um deinen Account zu bestätigen</p>",
 | 
			
		||||
  "PopUpForm.Email.reset_password.options.message.placeholder": "<p>Hier klicken, um deinen Account zu bestätigen</p>",
 | 
			
		||||
  "PopUpForm.Email.success_register.options.message.placeholder": "<p>Hier klicken, um deinen Account zu bestätigen</p>",
 | 
			
		||||
  "PopUpForm.Email.options.from.email.placeholder": "johndoe@gmail.com",
 | 
			
		||||
  "PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
 | 
			
		||||
  "PopUpForm.Email.options.from.name.placeholder": "John Doe",
 | 
			
		||||
  "PopUpForm.Providers.enabled.label": "Aktivieren",
 | 
			
		||||
  "PopUpForm.Providers.enabled.description": "Wenn deaktiviert, kann diese Methode nicht verwendet werden.",
 | 
			
		||||
  "PopUpForm.Providers.key.label": "Client ID",
 | 
			
		||||
  "PopUpForm.Providers.key.placeholder": "TEXT",
 | 
			
		||||
  "PopUpForm.Providers.secret.label": "Client Secret",
 | 
			
		||||
  "PopUpForm.Providers.secret.placeholder": "TEXT",
 | 
			
		||||
  "PopUpForm.Providers.redirectURL.front-end.label": "Die URL, die zur Weiterleitung zu deiner Frontend-App verwendet wird",
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
  "PopUpForm.Providers.facebook.providerConfig.redirectURL": "Die URL, die in den Einstellungen deiner Facebook-App gesetzt wird",
 | 
			
		||||
  "PopUpForm.Providers.google.providerConfig.redirectURL": "Die URL, die in den Einstellungen deiner Google-App gesetzt wird",
 | 
			
		||||
  "PopUpForm.Providers.github.providerConfig.redirectURL": "Die URL, die in den Einstellungen deiner Github-App gesetzt wird",
 | 
			
		||||
  "PopUpForm.Providers.linkedin2.providerConfig.redirectURL": "Die URL, die in den Einstellungen deiner LinkedIn-App gesetzt wird",
 | 
			
		||||
  "PopUpForm.Providers.twitter.providerConfig.redirectURL": "Die URL, die in den Einstellungen deiner Twitter-App gesetzt wird",
 | 
			
		||||
 | 
			
		||||
  "PopUpForm.Providers.callback.placeholder": "TEXT",
 | 
			
		||||
  "PopUpForm.Email.email_templates.inputDescription": "Für mehr Informationen, {link}",
 | 
			
		||||
  "PopUpForm.Email.link.documentation": "schau in unsere Dokumentation."
 | 
			
		||||
}
 | 
			
		||||
@ -5,13 +5,13 @@
 | 
			
		||||
  "Auth.form.button.reset-password": "Change password",
 | 
			
		||||
  "Auth.form.button.login": "Log in",
 | 
			
		||||
  "Auth.form.button.register": "Ready to start",
 | 
			
		||||
  "Auth.form.error.noAdminAccess": "You can't access to the administration panel.",
 | 
			
		||||
  "Auth.form.error.noAdminAccess": "You can't access the administration panel.",
 | 
			
		||||
 | 
			
		||||
  "Auth.form.forgot-password.email.label": "Enter your email",
 | 
			
		||||
  "Auth.form.forgot-password.email.label.success": "Email sent with success to",
 | 
			
		||||
  "Auth.form.forgot-password.email.label.success": "Email successfully sent to",
 | 
			
		||||
  "Auth.form.forgot-password.email.placeholder": "mysuperemail@gmail.com",
 | 
			
		||||
 | 
			
		||||
  "Auth.header.register.description": "To finish setup and secure your app, please create the first user (root admin) by filling informations below.",
 | 
			
		||||
  "Auth.header.register.description": "To finish setup and secure your app, please create the first user (root admin) by entering the necessary information below.",
 | 
			
		||||
  "Auth.form.header.login": "strapi",
 | 
			
		||||
  "Auth.form.header.forgot-password": "strapi",
 | 
			
		||||
  "Auth.form.header.register": "Welcome!",
 | 
			
		||||
@ -32,12 +32,12 @@
 | 
			
		||||
  "Auth.form.register-success.email.label": "Email sent with success to",
 | 
			
		||||
  "Auth.form.register-success.email.placeholder": "mysuperemail@gmail.com",
 | 
			
		||||
 | 
			
		||||
  "Auth.form.error.email.provide": "Please provide your username or your e-mail.",
 | 
			
		||||
  "Auth.form.error.email.invalid": "This e-mail is invalid.",
 | 
			
		||||
  "Auth.form.error.email.provide": "Please provide your username or your email.",
 | 
			
		||||
  "Auth.form.error.email.invalid": "This email is invalid.",
 | 
			
		||||
  "Auth.form.error.password.provide": "Please provide your password.",
 | 
			
		||||
  "Auth.form.error.invalid": "Identifier or password invalid.",
 | 
			
		||||
  "Auth.form.error.password.local": "This user never set a local password, please login thanks to the provider used during account creation.",
 | 
			
		||||
  "Auth.form.error.password.format": "Your password can not contain more than three times the symbol `$`.",
 | 
			
		||||
  "Auth.form.error.password.local": "This user never set a local password, please login via the provider used during account creation.",
 | 
			
		||||
  "Auth.form.error.password.format": "Your password cannot contain the symbol `$` more than three times.",
 | 
			
		||||
  "Auth.form.error.user.not-exist": "This email does not exist.",
 | 
			
		||||
  "Auth.form.error.code.provide": "Incorrect code provided.",
 | 
			
		||||
  "Auth.form.error.password.matching": "Passwords do not match.",
 | 
			
		||||
@ -46,32 +46,32 @@
 | 
			
		||||
  "Auth.form.error.email.taken": "Email is already taken",
 | 
			
		||||
 | 
			
		||||
  "Auth.link.forgot-password": "Forgot your password?",
 | 
			
		||||
  "Auth.link.ready": "Ready to sign-in?",
 | 
			
		||||
  "Auth.link.ready": "Ready to sign in?",
 | 
			
		||||
 | 
			
		||||
  "BoundRoute.title": "Bound route to",
 | 
			
		||||
 | 
			
		||||
  "components.Input.error.password.noMatch": "Password don't match",
 | 
			
		||||
  "components.Input.error.password.noMatch": "Passwords do not match",
 | 
			
		||||
 | 
			
		||||
  "Controller.input.label": "{label} ",
 | 
			
		||||
  "Controller.selectAll": "Select all",
 | 
			
		||||
 | 
			
		||||
  "EditForm.inputSelect.subscriptions.label": "Manage subscriptions quotas",
 | 
			
		||||
  "EditForm.inputSelect.subscriptions.label": "Manage subscription quotas",
 | 
			
		||||
  "EditForm.inputSelect.subscriptions.description": "Limit the number of subscriptions per IP per hour.",
 | 
			
		||||
  "EditForm.inputSelect.durations.label": "Duration",
 | 
			
		||||
  "EditForm.inputSelect.durations.description": "Number of hours during the user can't subscribe.",
 | 
			
		||||
  "EditForm.inputSelect.durations.description": "Number of hours during which the user can't subscribe.",
 | 
			
		||||
 | 
			
		||||
  "EditForm.inputToggle.label.email": "One account per email address",
 | 
			
		||||
  "EditForm.inputToggle.label.sign-up": "Enable sign-up",
 | 
			
		||||
  "EditForm.inputToggle.label.sign-up": "Enable sign-ups",
 | 
			
		||||
  "EditForm.inputToggle.description.email": "Disallow the user to create multiple accounts using the same email address with different authentication providers.",
 | 
			
		||||
  "EditForm.inputToggle.description.sign-up": "When disabled (OFF), the registration process is forbidden. No one can subscribe anymore no matter the used provider.",
 | 
			
		||||
 | 
			
		||||
  "EditPage.cancel": "Cancel",
 | 
			
		||||
  "EditPage.submit": "Save",
 | 
			
		||||
  "EditPage.form.roles": "Roles details",
 | 
			
		||||
  "EditPage.form.roles": "Role details",
 | 
			
		||||
  "EditPage.form.roles.label.description": "Description",
 | 
			
		||||
  "EditPage.form.roles.label.name": "Name",
 | 
			
		||||
  "EditPage.form.roles.label.users": "Users associated with this role ({number})",
 | 
			
		||||
  "EditPage.form.roles.name.error": "This value input is required.",
 | 
			
		||||
  "EditPage.form.roles.name.error": "This value is required.",
 | 
			
		||||
  "EditPage.header.title": "{name} ",
 | 
			
		||||
  "EditPage.header.title.create": "Create a new role",
 | 
			
		||||
  "EditPage.header.description": "{description} ",
 | 
			
		||||
@ -87,7 +87,7 @@
 | 
			
		||||
  "HeaderNav.link.roles": "Roles",
 | 
			
		||||
 | 
			
		||||
  "HomePage.header.title": "Users & Permissions",
 | 
			
		||||
  "HomePage.header.description": "Define the roles and permissions for every one of them",
 | 
			
		||||
  "HomePage.header.description": "Define the roles and permissions for your users.",
 | 
			
		||||
 | 
			
		||||
  "InputSearch.placeholder": "Search for a user",
 | 
			
		||||
 | 
			
		||||
@ -110,24 +110,25 @@
 | 
			
		||||
  "notification.error.fetchUser": "An error occurred while trying to fetch users",
 | 
			
		||||
  "notification.info.emailSent": "The email has been sent",
 | 
			
		||||
  "notification.success.delete": "The item has been deleted",
 | 
			
		||||
  "notification.success.submit": "Settings have been updated",
 | 
			
		||||
 | 
			
		||||
  "plugin.description.short": "Protect your API with a full-authentication process based on JWT",
 | 
			
		||||
  "plugin.description.long": "Protect your API with a full-authentication process based on JWT. This plugin comes also with an ACL strategy that allows you to manage the permissions between the groups of users.",
 | 
			
		||||
  "plugin.description.short": "Protect your API with a full authentication process based on JWT",
 | 
			
		||||
  "plugin.description.long": "Protect your API with a full authentication process based on JWT. This plugin comes also with an ACL strategy that allows you to manage the permissions between the groups of users.",
 | 
			
		||||
 | 
			
		||||
  "Plugin.permissions.application.description": "Define the allowed actions in your project.",
 | 
			
		||||
  "Plugin.permissions.plugins.description": "Define the allowed actions in the {name} plugin.",
 | 
			
		||||
  "Plugin.permissions.application.description": "Define all your project's allowed actions.",
 | 
			
		||||
  "Plugin.permissions.plugins.description": "Define all allowed actions for the {name} plugin.",
 | 
			
		||||
 | 
			
		||||
  "Plugins.header.title": "Permissions",
 | 
			
		||||
  "Plugins.header.description": "Only actions bound by a route are listed below.",
 | 
			
		||||
 | 
			
		||||
  "Policies.InputSelect.empty": "None",
 | 
			
		||||
  "Policies.InputSelect.label": "Allow to perform this action for:",
 | 
			
		||||
  "Policies.header.hint": "Select the application's actions or the plugin's actions and click on the cog icon to display the bounded route",
 | 
			
		||||
  "Policies.header.hint": "Select the application's actions or the plugin's actions and click on the cog icon to display the bound route",
 | 
			
		||||
  "Policies.header.title": "Advanced settings",
 | 
			
		||||
 | 
			
		||||
  "Email.template.validation_email": "Email address validation",
 | 
			
		||||
  "Email.template.reset_password": "Reset password",
 | 
			
		||||
  "Email.template.success_register": "Successfull registration",
 | 
			
		||||
  "Email.template.success_register": "Registration successful",
 | 
			
		||||
 | 
			
		||||
  "Auth.advanced.allow_register": "",
 | 
			
		||||
 | 
			
		||||
@ -140,7 +141,7 @@
 | 
			
		||||
  "PopUpForm.Email.options.from.name.label": "Shipper name",
 | 
			
		||||
  "PopUpForm.Email.options.from.email.label": "Shipper email",
 | 
			
		||||
  "PopUpForm.Email.options.response_email.label": "Response email",
 | 
			
		||||
  "PopUpForm.Email.options.object.label": "Object",
 | 
			
		||||
  "PopUpForm.Email.options.object.label": "Subject",
 | 
			
		||||
  "PopUpForm.Email.options.message.label": "Message",
 | 
			
		||||
  "PopUpForm.Email.validation_email.options.object.placeholder": "Please confirm your email address for %APP_NAME%",
 | 
			
		||||
  "PopUpForm.Email.reset_password.options.object.placeholder": "Please confirm your email address for %APP_NAME%",
 | 
			
		||||
@ -152,7 +153,7 @@
 | 
			
		||||
  "PopUpForm.Email.options.response_email.placeholder": "johndoe@gmail.com",
 | 
			
		||||
  "PopUpForm.Email.options.from.name.placeholder": "John Doe",
 | 
			
		||||
  "PopUpForm.Providers.enabled.label": "Enable",
 | 
			
		||||
  "PopUpForm.Providers.enabled.description": "If disabled, the users won't be able to use this provider.",
 | 
			
		||||
  "PopUpForm.Providers.enabled.description": "If disabled, users won't be able to use this provider.",
 | 
			
		||||
  "PopUpForm.Providers.key.label": "Client ID",
 | 
			
		||||
  "PopUpForm.Providers.key.placeholder": "TEXT",
 | 
			
		||||
  "PopUpForm.Providers.secret.label": "Client Secret",
 | 
			
		||||
@ -168,6 +169,6 @@
 | 
			
		||||
  "PopUpForm.Providers.twitter.providerConfig.redirectURL": "The redirect URL to add in your  Twitter application configurations",
 | 
			
		||||
 | 
			
		||||
  "PopUpForm.Providers.callback.placeholder": "TEXT",
 | 
			
		||||
  "PopUpForm.Email.email_templates.inputDescription": "Don't know how to set variables, {link}",
 | 
			
		||||
  "PopUpForm.Email.email_templates.inputDescription": "If you're unsure how to use variables, {link}",
 | 
			
		||||
  "PopUpForm.Email.link.documentation": "check out our documentation."
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -110,6 +110,7 @@
 | 
			
		||||
  "notification.error.fetchUser": "Une erreur est survenue en esssayent de récupérer les users",
 | 
			
		||||
  "notification.info.emailSent": "L'email a été envoyé",
 | 
			
		||||
  "notification.success.delete": "L'élément a bien été supprimé",
 | 
			
		||||
  "notification.success.submit": "Les configurations ont bien été sauvegardés",
 | 
			
		||||
 | 
			
		||||
  "plugin.description.short": "Protégez votre API avec un système d'authentification complet basé sur JWT",
 | 
			
		||||
  "plugin.description.long": "Protégez votre API avec un système d'authentification complet basé sur JWT (JSON Web Token). Ce plugin ajoute aussi une stratégie ACL (Access Control Layer) qui vous permet de gérer les permissions entre les groupes d'utilisateurs.",
 | 
			
		||||
 | 
			
		||||
@ -0,0 +1,173 @@
 | 
			
		||||
{
 | 
			
		||||
  "Auth.form.button.register-success": "Wyślij ponownie",
 | 
			
		||||
  "Auth.form.button.forgot-password.success": "Wyślij ponownie",
 | 
			
		||||
  "Auth.form.button.forgot-password": "Wyślij e-mail",
 | 
			
		||||
  "Auth.form.button.reset-password": "Zmień hasło",
 | 
			
		||||
  "Auth.form.button.login": "Zaloguj się",
 | 
			
		||||
  "Auth.form.button.register": "Rejestracja",
 | 
			
		||||
  "Auth.form.error.noAdminAccess": "Nie masz dostępu do panelu administracyjnego.",
 | 
			
		||||
 | 
			
		||||
  "Auth.form.forgot-password.email.label": "Email",
 | 
			
		||||
  "Auth.form.forgot-password.email.label.success": "E-mail wysłany z powodzeniem do",
 | 
			
		||||
  "Auth.form.forgot-password.email.placeholder": "jannowak@gmail.com",
 | 
			
		||||
 | 
			
		||||
  "Auth.header.register.description": "Aby zakończyć konfigurację i zabezpieczyć swoją aplikację, utwórz pierwszego użytkownika (administratora root), wypełniając poniższe informacje.",
 | 
			
		||||
  "Auth.form.header.login": "strapi",
 | 
			
		||||
  "Auth.form.header.forgot-password": "strapi",
 | 
			
		||||
  "Auth.form.header.register": "Witaj!",
 | 
			
		||||
  "Auth.form.header.register-success": "strapi",
 | 
			
		||||
 | 
			
		||||
  "Auth.form.login.password.label": "Hasło",
 | 
			
		||||
  "Auth.form.login.rememberMe.label": "Zapamiętaj",
 | 
			
		||||
  "Auth.form.login.username.label": "Użytkownik",
 | 
			
		||||
  "Auth.form.login.username.placeholder": "Jan Nowak",
 | 
			
		||||
 | 
			
		||||
  "Auth.form.register.email.label": "Email",
 | 
			
		||||
  "Auth.form.register.email.placeholder": "jannowak@gmail.com",
 | 
			
		||||
  "Auth.form.register.username.label": "Użytkownik",
 | 
			
		||||
  "Auth.form.register.username.placeholder": "Jan Nowak",
 | 
			
		||||
  "Auth.form.register.password.label": "Hasło",
 | 
			
		||||
  "Auth.form.register.confirmPassword.label": "Potwierdzenie hasła",
 | 
			
		||||
 | 
			
		||||
  "Auth.form.register-success.email.label": "E-mail wysłany z powodzeniem do",
 | 
			
		||||
  "Auth.form.register-success.email.placeholder": "jannowak@gmail.com",
 | 
			
		||||
 | 
			
		||||
  "Auth.form.error.email.provide": "Podaj swoją nazwę użytkownika lub adres email.",
 | 
			
		||||
  "Auth.form.error.email.invalid": "Ten e-mail jest nieprawidłowy.",
 | 
			
		||||
  "Auth.form.error.password.provide": "Podaj hasło.",
 | 
			
		||||
  "Auth.form.error.invalid": "Niepoprawny identyfikator lub hasło.",
 | 
			
		||||
  "Auth.form.error.password.local": "Ten użytkownik nigdy nie ustawił lokalnego hasła, zaloguj się dzięki dostawcy używanemu podczas tworzenia konta.",
 | 
			
		||||
  "Auth.form.error.password.format": "Twoje hasło nie może zawierać więcej niż trzykrotności symbolu `$`.",
 | 
			
		||||
  "Auth.form.error.user.not-exist": "Ten email nie istnieje.",
 | 
			
		||||
  "Auth.form.error.code.provide": "Dostarczono niepoprawny kod.",
 | 
			
		||||
  "Auth.form.error.password.matching": "Hasła się nie zgadzają.",
 | 
			
		||||
  "Auth.form.error.params.provide": "Dostarczono niepoprawne parametry.",
 | 
			
		||||
  "Auth.form.error.username.taken": "Nazwa użytkownika jest już zajęta",
 | 
			
		||||
  "Auth.form.error.email.taken": "Adres email jest już zajęty",
 | 
			
		||||
 | 
			
		||||
  "Auth.link.forgot-password": "Nie pamiętasz hasła?",
 | 
			
		||||
  "Auth.link.ready": "Zaczynamy?",
 | 
			
		||||
 | 
			
		||||
  "BoundRoute.title": "Wywoływanie",
 | 
			
		||||
 | 
			
		||||
  "components.Input.error.password.noMatch": "Hasło nie pasuje",
 | 
			
		||||
 | 
			
		||||
  "Controller.input.label": "{label} ",
 | 
			
		||||
  "Controller.selectAll": "Zaznacz wszystko",
 | 
			
		||||
 | 
			
		||||
  "EditForm.inputSelect.subscriptions.label": "Rejestracje",
 | 
			
		||||
  "EditForm.inputSelect.subscriptions.description": "Ogranicz liczbę rejestracji z tego samego IP na godzinę.",
 | 
			
		||||
  "EditForm.inputSelect.durations.label": "Okres",
 | 
			
		||||
  "EditForm.inputSelect.durations.description": "Liczba godzin podczas których użytkownik nie może dołączyć.",
 | 
			
		||||
 | 
			
		||||
  "EditForm.inputToggle.label.email": "Jedno konto na adres email",
 | 
			
		||||
  "EditForm.inputToggle.label.sign-up": "Rejestracja",
 | 
			
		||||
  "EditForm.inputToggle.description.email": "Nie zezwalaj użytkownikowi na tworzenie wielu kont za pomocą tego samego adresu e-mail u różnych dostawców uwierzytelniania.",
 | 
			
		||||
  "EditForm.inputToggle.description.sign-up": "Po wyłączeniu (OFF) proces rejestracji jest zabroniony. Nikt nie może już dołączyć bez względu na używanego dostawcę.",
 | 
			
		||||
 | 
			
		||||
  "EditPage.cancel": "Anuluj",
 | 
			
		||||
  "EditPage.submit": "Zapisz",
 | 
			
		||||
  "EditPage.form.roles": "Szczegóły",
 | 
			
		||||
  "EditPage.form.roles.label.description": "Opis",
 | 
			
		||||
  "EditPage.form.roles.label.name": "Nazwa",
 | 
			
		||||
  "EditPage.form.roles.label.users": "Użytkownicy powiązani z tą rolą ({number})",
 | 
			
		||||
  "EditPage.form.roles.name.error": "Wpisanie wartości dla tego atrybutu jest wymagane.",
 | 
			
		||||
  "EditPage.header.title": "{name} ",
 | 
			
		||||
  "EditPage.header.title.create": "Rola",
 | 
			
		||||
  "EditPage.header.description": "{description} ",
 | 
			
		||||
  "EditPage.header.description.create": " ",
 | 
			
		||||
 | 
			
		||||
  "EditPage.notification.permissions.error": "Wystąpił błąd podczas pobierania uprawnień",
 | 
			
		||||
  "EditPage.notification.policies.error": "Wystąpił błąd podczas pobierania polityk",
 | 
			
		||||
  "EditPage.notification.role.error": "Wystąpił błąd podczas pobierania ról",
 | 
			
		||||
 | 
			
		||||
  "HeaderNav.link.advancedSettings": "Zaawansowane",
 | 
			
		||||
  "HeaderNav.link.emailTemplates": "Szablony e-mail",
 | 
			
		||||
  "HeaderNav.link.providers": "Dostawcy",
 | 
			
		||||
  "HeaderNav.link.roles": "Role",
 | 
			
		||||
 | 
			
		||||
  "HomePage.header.title": "Użytkownicy & Uprawnienia",
 | 
			
		||||
  "HomePage.header.description": "Określ role i uprawnienia dla każdego z użytkowników.",
 | 
			
		||||
 | 
			
		||||
  "InputSearch.placeholder": "Wyszukaj",
 | 
			
		||||
 | 
			
		||||
  "List.button.roles": "Rola",
 | 
			
		||||
  "List.button.providers": "Dostawca",
 | 
			
		||||
 | 
			
		||||
  "List.title.emailTemplates.singular": "{number} szablon e-mail jest dostępny",
 | 
			
		||||
  "List.title.emailTemplates.plural": "{number} szablonów e-mail jest dostępnych",
 | 
			
		||||
 | 
			
		||||
  "List.title.providers.disabled.singular": "{number} jest wyłączony",
 | 
			
		||||
  "List.title.providers.disabled.plural": "{number} jest wyłączonych",
 | 
			
		||||
  "List.title.providers.enabled.singular": "{number} dostawca jest włączony i",
 | 
			
		||||
  "List.title.providers.enabled.plural": "{number} dostawców jest włączonych i",
 | 
			
		||||
 | 
			
		||||
  "List.title.roles.singular": "{number} rola jest dostępna",
 | 
			
		||||
  "List.title.roles.plural": "{number} ról jest dostępnych",
 | 
			
		||||
 | 
			
		||||
  "notification.error.delete": "Wystąpił błąd podczas usuwania pozycji",
 | 
			
		||||
  "notification.error.fetch": "Wystąpił błąd podczas pobierania danych",
 | 
			
		||||
  "notification.error.fetchUser": "Wystąpił błąd podczas pobierania użytkowników",
 | 
			
		||||
  "notification.info.emailSent": "E-mail został wysłany",
 | 
			
		||||
  "notification.success.delete": "Pozycja została usunięta",
 | 
			
		||||
 | 
			
		||||
  "plugin.description.short": "Chroń API za pomocą procesu pełnego uwierzytelniania opartego na JWT",
 | 
			
		||||
  "plugin.description.long": "Chroń API za pomocą procesu pełnego uwierzytelniania opartego na JWT. Ta wtyczka zawiera również strategię ACL, która pozwala zarządzać uprawnieniami między grupami użytkowników.",
 | 
			
		||||
 | 
			
		||||
  "Plugin.permissions.application.description": "Określ dozwolone działania w projekcie.",
 | 
			
		||||
  "Plugin.permissions.plugins.description": "Określ dozwolone działania w wtyczce {name}.",
 | 
			
		||||
 | 
			
		||||
  "Plugins.header.title": "Uprawnienia",
 | 
			
		||||
  "Plugins.header.description": "Jedynie akcje związane z wywoływaniami wymienionymi poniżej.",
 | 
			
		||||
 | 
			
		||||
  "Policies.InputSelect.empty": "Nikogo",
 | 
			
		||||
  "Policies.InputSelect.label": "Zezwól na wykonanie tej akcji dla:",
 | 
			
		||||
  "Policies.header.hint": "Wybierz działania aplikacji lub działania wtyczki i kliknij ikonę koła zębatego, aby wyświetlić wywoływania",
 | 
			
		||||
  "Policies.header.title": "Zaawansowane",
 | 
			
		||||
 | 
			
		||||
  "Email.template.validation_email": "Sprawdzanie adresu e-mail",
 | 
			
		||||
  "Email.template.reset_password": "Reset hasła",
 | 
			
		||||
  "Email.template.success_register": "Pomyślna rejestracja",
 | 
			
		||||
 | 
			
		||||
  "Auth.advanced.allow_register": "",
 | 
			
		||||
 | 
			
		||||
  "PopUpForm.button.cancel": "Anuluj",
 | 
			
		||||
  "PopUpForm.button.save": "Zapisz",
 | 
			
		||||
  "PopUpForm.header.add.providers": "Dostawca",
 | 
			
		||||
  "PopUpForm.header.edit.email-templates": "Zmień szablony e-mail",
 | 
			
		||||
  "PopUpForm.header.edit.providers": "Edytuj dostawcę {provider}",
 | 
			
		||||
  "PopUpForm.inputSelect.providers.label": "Dostawca",
 | 
			
		||||
  "PopUpForm.Email.options.from.name.label": "Nazwa nadawcy",
 | 
			
		||||
  "PopUpForm.Email.options.from.email.label": "Email nadawcy",
 | 
			
		||||
  "PopUpForm.Email.options.response_email.label": "Email zwrotny",
 | 
			
		||||
  "PopUpForm.Email.options.object.label": "Temat",
 | 
			
		||||
  "PopUpForm.Email.options.message.label": "Wiadomość",
 | 
			
		||||
  "PopUpForm.Email.validation_email.options.object.placeholder": "Potwierdź swój adres email dla %APP_NAME%",
 | 
			
		||||
  "PopUpForm.Email.reset_password.options.object.placeholder": "Potwierdź swój adres e-mail dla %APP_NAME%",
 | 
			
		||||
  "PopUpForm.Email.success_register.options.object.placeholder": "Potwierdź swój adres e-mail dla %APP_NAME%",
 | 
			
		||||
  "PopUpForm.Email.validation_email.options.message.placeholder": "<p>Kliknij ten link, aby potwierdzić swoje konto</p>",
 | 
			
		||||
  "PopUpForm.Email.reset_password.options.message.placeholder": "<p>Kliknij ten link, aby potwierdzić swoje konto</p>",
 | 
			
		||||
  "PopUpForm.Email.success_register.options.message.placeholder": "<p>Kliknij ten link, aby potwierdzić swoje konto</p>",
 | 
			
		||||
  "PopUpForm.Email.options.from.email.placeholder": "jannowak@gmail.com",
 | 
			
		||||
  "PopUpForm.Email.options.response_email.placeholder": "jannowak@gmail.com",
 | 
			
		||||
  "PopUpForm.Email.options.from.name.placeholder": "Jan Nowak",
 | 
			
		||||
  "PopUpForm.Providers.enabled.label": "Włączony",
 | 
			
		||||
  "PopUpForm.Providers.enabled.description": "W przypadku wyłączenia, użytkownicy nie będą mogli skorzystać z tego dostawcy.",
 | 
			
		||||
  "PopUpForm.Providers.key.label": "ID klienta",
 | 
			
		||||
  "PopUpForm.Providers.key.placeholder": "TEKST",
 | 
			
		||||
  "PopUpForm.Providers.secret.label": "Klucz sekretny klienta",
 | 
			
		||||
  "PopUpForm.Providers.secret.placeholder": "TEKST",
 | 
			
		||||
  "PopUpForm.Providers.redirectURL.front-end.label": "Adres przekierowania do własnej aplikacji",
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
  "PopUpForm.Providers.facebook.providerConfig.redirectURL": "Adres przekierowania do dodania w aplikacji Facebook",
 | 
			
		||||
  "PopUpForm.Providers.google.providerConfig.redirectURL": "Adres przekierowania do dodania w aplikacji Google",
 | 
			
		||||
  "PopUpForm.Providers.github.providerConfig.redirectURL": "Adres przekierowania do dodania w aplikacji GitHub",
 | 
			
		||||
  "PopUpForm.Providers.linkedin2.providerConfig.redirectURL": "Adres przekierowania do dodania w aplikacji Linkedin",
 | 
			
		||||
  "PopUpForm.Providers.twitter.providerConfig.redirectURL": "Adres przekierowania do dodania w aplikacji Twitter",
 | 
			
		||||
 | 
			
		||||
  "PopUpForm.Providers.callback.placeholder": "TEKST",
 | 
			
		||||
  "PopUpForm.Email.email_templates.inputDescription": "Nie wiesz jak skonfigurować zmienne? {link}",
 | 
			
		||||
  "PopUpForm.Email.link.documentation": "Zajrzyj do dokumentacji."
 | 
			
		||||
}
 | 
			
		||||
@ -29,7 +29,7 @@ module.exports = async cb => {
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  const pluginStore = strapi.store({
 | 
			
		||||
    environment: strapi.config.environment,
 | 
			
		||||
    environment: '',
 | 
			
		||||
    type: 'plugin',
 | 
			
		||||
    name: 'users-permissions'
 | 
			
		||||
  });
 | 
			
		||||
 | 
			
		||||
@ -16,6 +16,7 @@ module.exports = {
 | 
			
		||||
    const params = ctx.request.body;
 | 
			
		||||
 | 
			
		||||
    const store = await strapi.store({
 | 
			
		||||
      environment: '',
 | 
			
		||||
      type: 'plugin',
 | 
			
		||||
      name: 'users-permissions'
 | 
			
		||||
    });
 | 
			
		||||
@ -128,6 +129,7 @@ module.exports = {
 | 
			
		||||
 | 
			
		||||
  connect: async (ctx, next) => {
 | 
			
		||||
    const grantConfig = await strapi.store({
 | 
			
		||||
      environment: '',
 | 
			
		||||
      type: 'plugin',
 | 
			
		||||
      name: 'users-permissions',
 | 
			
		||||
      key: 'grant'
 | 
			
		||||
@ -170,7 +172,11 @@ module.exports = {
 | 
			
		||||
    // Set the property code.
 | 
			
		||||
    user.resetPasswordToken = resetPasswordToken;
 | 
			
		||||
 | 
			
		||||
    const settings = strapi.plugins['users-permissions'].config.email['reset_password'].options;
 | 
			
		||||
    const settings = (await strapi.store({
 | 
			
		||||
      environment: '',
 | 
			
		||||
      type: 'plugin',
 | 
			
		||||
      name: 'users-permissions'
 | 
			
		||||
    }).get({ key: 'email' }))['reset_password'].options;
 | 
			
		||||
 | 
			
		||||
    settings.message = await strapi.plugins['users-permissions'].services.userspermissions.template(settings.message, {
 | 
			
		||||
      URL: url,
 | 
			
		||||
@ -204,6 +210,7 @@ module.exports = {
 | 
			
		||||
 | 
			
		||||
  register: async (ctx) => {
 | 
			
		||||
    if (!(await strapi.store({
 | 
			
		||||
      environment: '',
 | 
			
		||||
      type: 'plugin',
 | 
			
		||||
      name: 'users-permissions',
 | 
			
		||||
      key: 'advanced'
 | 
			
		||||
 | 
			
		||||
@ -71,6 +71,7 @@ module.exports = {
 | 
			
		||||
 | 
			
		||||
  create: async (ctx) => {
 | 
			
		||||
    if ((await strapi.store({
 | 
			
		||||
      environment: '',
 | 
			
		||||
      type: 'plugin',
 | 
			
		||||
      name: 'users-permissions',
 | 
			
		||||
      key: 'advanced'
 | 
			
		||||
@ -101,6 +102,7 @@ module.exports = {
 | 
			
		||||
  update: async (ctx, next) => {
 | 
			
		||||
    try {
 | 
			
		||||
      const advancedConfigs = await strapi.store({
 | 
			
		||||
        environment: '',
 | 
			
		||||
        type: 'plugin',
 | 
			
		||||
        name: 'users-permissions',
 | 
			
		||||
        key: 'advanced'
 | 
			
		||||
 | 
			
		||||
@ -172,6 +172,7 @@ module.exports = {
 | 
			
		||||
 | 
			
		||||
  getEmailTemplate: async (ctx) => {
 | 
			
		||||
    ctx.send(await strapi.store({
 | 
			
		||||
      environment: '',
 | 
			
		||||
      type: 'plugin',
 | 
			
		||||
      name: 'users-permissions',
 | 
			
		||||
      key: 'email'
 | 
			
		||||
@ -184,6 +185,7 @@ module.exports = {
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    await strapi.store({
 | 
			
		||||
      environment: '',
 | 
			
		||||
      type: 'plugin',
 | 
			
		||||
      name: 'users-permissions',
 | 
			
		||||
      key: 'email'
 | 
			
		||||
@ -194,6 +196,7 @@ module.exports = {
 | 
			
		||||
 | 
			
		||||
  getAdvancedSettings: async (ctx) => {
 | 
			
		||||
    ctx.send(await strapi.store({
 | 
			
		||||
      environment: '',
 | 
			
		||||
      type: 'plugin',
 | 
			
		||||
      name: 'users-permissions',
 | 
			
		||||
      key: 'advanced'
 | 
			
		||||
@ -206,6 +209,7 @@ module.exports = {
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    await strapi.store({
 | 
			
		||||
      environment: '',
 | 
			
		||||
      type: 'plugin',
 | 
			
		||||
      name: 'users-permissions',
 | 
			
		||||
      key: 'advanced'
 | 
			
		||||
@ -216,6 +220,7 @@ module.exports = {
 | 
			
		||||
 | 
			
		||||
  getProviders: async (ctx) => {
 | 
			
		||||
    ctx.send(await strapi.store({
 | 
			
		||||
      environment: '',
 | 
			
		||||
      type: 'plugin',
 | 
			
		||||
      name: 'users-permissions',
 | 
			
		||||
      key: 'grant'
 | 
			
		||||
@ -228,6 +233,7 @@ module.exports = {
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    await strapi.store({
 | 
			
		||||
      environment: '',
 | 
			
		||||
      type: 'plugin',
 | 
			
		||||
      name: 'users-permissions',
 | 
			
		||||
      key: 'grant'
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-plugin-users-permissions",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "Protect your API with a full-authentication process based on JWT",
 | 
			
		||||
  "strapi": {
 | 
			
		||||
    "name": "Users & Permissions",
 | 
			
		||||
@ -32,7 +32,7 @@
 | 
			
		||||
    "uuid": "^3.1.0"
 | 
			
		||||
  },
 | 
			
		||||
  "devDependencies": {
 | 
			
		||||
    "strapi-helper-plugin": "3.0.0-alpha.9.3"
 | 
			
		||||
    "strapi-helper-plugin": "3.0.0-alpha.10.1"
 | 
			
		||||
  },
 | 
			
		||||
  "author": {
 | 
			
		||||
    "name": "Strapi team",
 | 
			
		||||
 | 
			
		||||
@ -50,6 +50,7 @@ exports.connect = (provider, query) => {
 | 
			
		||||
        });
 | 
			
		||||
 | 
			
		||||
        const advanced = await strapi.store({
 | 
			
		||||
          environment: '',
 | 
			
		||||
          type: 'plugin',
 | 
			
		||||
          name: 'users-permissions',
 | 
			
		||||
          key: 'advanced'
 | 
			
		||||
@ -97,6 +98,7 @@ const getProfile = async (provider, query, callback) => {
 | 
			
		||||
  const access_token = query.access_token || query.code || query.oauth_token;
 | 
			
		||||
 | 
			
		||||
  const grant = await strapi.store({
 | 
			
		||||
    environment: '',
 | 
			
		||||
    type: 'plugin',
 | 
			
		||||
    name: 'users-permissions',
 | 
			
		||||
    key: 'grant'
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-redis",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "Redis hook for the Strapi framework",
 | 
			
		||||
  "homepage": "http://strapi.io",
 | 
			
		||||
  "keywords": [
 | 
			
		||||
@ -18,7 +18,7 @@
 | 
			
		||||
    "ioredis": "^3.1.2",
 | 
			
		||||
    "lodash": "^4.17.4",
 | 
			
		||||
    "stack-trace": "0.0.10",
 | 
			
		||||
    "strapi-utils": "3.0.0-alpha.9.3"
 | 
			
		||||
    "strapi-utils": "3.0.0-alpha.10.1"
 | 
			
		||||
  },
 | 
			
		||||
  "strapi": {
 | 
			
		||||
    "isHook": true
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi-utils",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "Shared utilities for the Strapi packages",
 | 
			
		||||
  "homepage": "http://strapi.io",
 | 
			
		||||
  "keywords": [
 | 
			
		||||
 | 
			
		||||
@ -1,6 +1,6 @@
 | 
			
		||||
{
 | 
			
		||||
  "name": "strapi",
 | 
			
		||||
  "version": "3.0.0-alpha.9.3",
 | 
			
		||||
  "version": "3.0.0-alpha.10.1",
 | 
			
		||||
  "description": "An open source solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier.",
 | 
			
		||||
  "homepage": "http://strapi.io",
 | 
			
		||||
  "keywords": [
 | 
			
		||||
@ -55,14 +55,14 @@
 | 
			
		||||
    "rimraf": "^2.6.2",
 | 
			
		||||
    "semver": "^5.4.1",
 | 
			
		||||
    "stack-trace": "0.0.10",
 | 
			
		||||
    "strapi-generate": "3.0.0-alpha.9.3",
 | 
			
		||||
    "strapi-generate-admin": "3.0.0-alpha.9.3",
 | 
			
		||||
    "strapi-generate-api": "3.0.0-alpha.9.3",
 | 
			
		||||
    "strapi-generate-new": "3.0.0-alpha.9.3",
 | 
			
		||||
    "strapi-generate-plugin": "3.0.0-alpha.9.3",
 | 
			
		||||
    "strapi-generate-policy": "3.0.0-alpha.9.3",
 | 
			
		||||
    "strapi-generate-service": "3.0.0-alpha.9.3",
 | 
			
		||||
    "strapi-utils": "3.0.0-alpha.9.3"
 | 
			
		||||
    "strapi-generate": "3.0.0-alpha.10.1",
 | 
			
		||||
    "strapi-generate-admin": "3.0.0-alpha.10.1",
 | 
			
		||||
    "strapi-generate-api": "3.0.0-alpha.10.1",
 | 
			
		||||
    "strapi-generate-new": "3.0.0-alpha.10.1",
 | 
			
		||||
    "strapi-generate-plugin": "3.0.0-alpha.10.1",
 | 
			
		||||
    "strapi-generate-policy": "3.0.0-alpha.10.1",
 | 
			
		||||
    "strapi-generate-service": "3.0.0-alpha.10.1",
 | 
			
		||||
    "strapi-utils": "3.0.0-alpha.10.1"
 | 
			
		||||
  },
 | 
			
		||||
  "author": {
 | 
			
		||||
    "email": "hi@strapi.io",
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user