@akemona-org/strapi-plugin-documentation 3.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +22 -0
- package/README.md +170 -0
- package/admin/src/assets/images/logo.svg +1 -0
- package/admin/src/components/Block/components.js +26 -0
- package/admin/src/components/Block/index.js +39 -0
- package/admin/src/components/Row/ButtonContainer.js +53 -0
- package/admin/src/components/Row/components.js +83 -0
- package/admin/src/components/Row/index.js +57 -0
- package/admin/src/containers/App/index.js +30 -0
- package/admin/src/containers/HomePage/actions.js +72 -0
- package/admin/src/containers/HomePage/components.js +59 -0
- package/admin/src/containers/HomePage/constants.js +14 -0
- package/admin/src/containers/HomePage/index.js +283 -0
- package/admin/src/containers/HomePage/reducer.js +49 -0
- package/admin/src/containers/HomePage/saga.js +126 -0
- package/admin/src/containers/HomePage/selectors.js +34 -0
- package/admin/src/containers/Initializer/index.js +28 -0
- package/admin/src/containers/Initializer/tests/index.test.js +21 -0
- package/admin/src/index.js +57 -0
- package/admin/src/lifecycles.js +13 -0
- package/admin/src/permissions.js +19 -0
- package/admin/src/pluginId.js +5 -0
- package/admin/src/reducers.js +8 -0
- package/admin/src/translations/ar.json +23 -0
- package/admin/src/translations/cs.json +24 -0
- package/admin/src/translations/de.json +30 -0
- package/admin/src/translations/en.json +31 -0
- package/admin/src/translations/es.json +27 -0
- package/admin/src/translations/fr.json +29 -0
- package/admin/src/translations/id.json +28 -0
- package/admin/src/translations/index.js +49 -0
- package/admin/src/translations/it.json +29 -0
- package/admin/src/translations/ko.json +24 -0
- package/admin/src/translations/ms.json +26 -0
- package/admin/src/translations/nl.json +24 -0
- package/admin/src/translations/pl.json +27 -0
- package/admin/src/translations/pt-BR.json +24 -0
- package/admin/src/translations/pt.json +24 -0
- package/admin/src/translations/ru.json +31 -0
- package/admin/src/translations/sk.json +27 -0
- package/admin/src/translations/th.json +27 -0
- package/admin/src/translations/tr.json +23 -0
- package/admin/src/translations/uk.json +26 -0
- package/admin/src/translations/vi.json +27 -0
- package/admin/src/translations/zh-Hans.json +31 -0
- package/admin/src/translations/zh.json +27 -0
- package/admin/src/utils/getTrad.js +5 -0
- package/admin/src/utils/openWithNewTab.js +20 -0
- package/config/functions/bootstrap.js +138 -0
- package/config/policies/index.js +35 -0
- package/config/routes.json +74 -0
- package/config/settings.json +46 -0
- package/controllers/Documentation.js +303 -0
- package/middlewares/documentation/defaults.json +5 -0
- package/middlewares/documentation/index.js +59 -0
- package/package.json +89 -0
- package/public/index.html +57 -0
- package/public/login.html +135 -0
- package/services/Documentation.js +1861 -0
- package/services/Token.js +31 -0
- package/services/utils/components.json +25 -0
- package/services/utils/forms.json +29 -0
- package/services/utils/parametersOptions.json +134 -0
- package/services/utils/unknownComponent.json +11 -0
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components.Row.generatedDate": "Poslední vygenerování",
|
|
3
|
+
"components.Row.open": "Otevřený",
|
|
4
|
+
"components.Row.regenerate": "Znovu vygenerovat",
|
|
5
|
+
"containers.HomePage.Block.title": "Verze",
|
|
6
|
+
"containers.HomePage.Button.open": "Otevřít dokumentaci",
|
|
7
|
+
"containers.HomePage.Button.update": "Uložit",
|
|
8
|
+
"containers.HomePage.PluginHeader.description": "Nastavit zásuvný modul dokumentace",
|
|
9
|
+
"containers.HomePage.PluginHeader.title": "Dokumentace - Nastavení",
|
|
10
|
+
"containers.HomePage.PopUpWarning.confirm": "Rozumím",
|
|
11
|
+
"containers.HomePage.PopUpWarning.message": "Jste si jisti, že chcete odstranit tuto verzi?",
|
|
12
|
+
"containers.HomePage.form.password": "Heslo",
|
|
13
|
+
"containers.HomePage.form.password.inputDescription": "Nastavit heslo pro přístup k dokumentaci.",
|
|
14
|
+
"containers.HomePage.form.restrictedAccess": "Omezený přístup",
|
|
15
|
+
"containers.HomePage.form.restrictedAccess.inputDescription": "Omezit přístup k endpointu dokumentace. Ve výchozím nastavení je přístup veřejný.",
|
|
16
|
+
"containers.HomePage.form.showGeneratedFiles": "Zobrazit vygenerované soubory",
|
|
17
|
+
"containers.HomePage.form.showGeneratedFiles.inputDescription": "Užitečné, pokud chcete přepsat vygenerovanou dokumentaci. \nPokud povolíte tuto možnost, úpravy vaší dokumentace budou snazší.",
|
|
18
|
+
"error.deleteDoc.versionMissing": "Verze kterou se snažíte odstranit neexistuje.",
|
|
19
|
+
"error.noVersion": "Verze je vyžadována",
|
|
20
|
+
"error.regenerateDoc": "Při pokusu o vygenerování dokumentace došlo k chybě",
|
|
21
|
+
"error.regenerateDoc.versionMissing": "Verze kterou se snažíte vygenerovat neexistuje.",
|
|
22
|
+
"notification.update.success": "Nastavení bylo úspěšně uloženo",
|
|
23
|
+
"plugin.name": "Dokumentace"
|
|
24
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components.Row.generatedDate": "Letztes Mal generiert",
|
|
3
|
+
"components.Row.open": "Öffnen",
|
|
4
|
+
"components.Row.regenerate": "Neu generieren",
|
|
5
|
+
"containers.HomePage.Block.title": "Versionen",
|
|
6
|
+
"containers.HomePage.Button.open": "Dokumentation öffnen",
|
|
7
|
+
"containers.HomePage.Button.update": "Aktualisieren",
|
|
8
|
+
"containers.HomePage.copied": "Token in der Zwischenablage kopiert",
|
|
9
|
+
"containers.HomePage.form.jwtToken": "Jwt Token abrufen",
|
|
10
|
+
"containers.HomePage.form.jwtToken.description": "Kopieren Sie diesen Token und nutzen Sie es unter Swagger, um Anfragen zu stellen",
|
|
11
|
+
"containers.HomePage.PluginHeader.description": "Einstellungen des Dokumentation-Plugins ändern",
|
|
12
|
+
"containers.HomePage.PluginHeader.title": "Dokumentation - Einstellungen",
|
|
13
|
+
"containers.HomePage.PopUpWarning.confirm": "Ich verstehe",
|
|
14
|
+
"containers.HomePage.PopUpWarning.message": "Sind Sie sich sicher, dass Sie diese Version löschen wollen?",
|
|
15
|
+
"containers.HomePage.form.password": "Passwort",
|
|
16
|
+
"containers.HomePage.form.password.inputDescription": "Setzen Sie ein Passwort, um die Dokumentation privat zu machen",
|
|
17
|
+
"containers.HomePage.form.restrictedAccess": "Zugriff beschränken",
|
|
18
|
+
"containers.HomePage.form.restrictedAccess.inputDescription": "Den Endpoint der Dokumentation privat machen. Dieser ist standardmäßig öffentlich.",
|
|
19
|
+
"containers.HomePage.form.showGeneratedFiles": "Generierte Dateien anzeigen",
|
|
20
|
+
"containers.HomePage.form.showGeneratedFiles.inputDescription": "Nützlich, wenn Sie die generierte Dokumentation überschreiben möchten. \nDas Plugin wird nach Modell und Plugin geteilte Dateien erzeugen. \nDurch die Aktivierung dieser Option wird es einfacher sein, Ihre Dokumentation anzupassen.",
|
|
21
|
+
"error.deleteDoc.versionMissing": "Die Version, die Sie zu löschen versuchen, existiert nicht.",
|
|
22
|
+
|
|
23
|
+
"error.noVersion": "Eine Version wird benötigt",
|
|
24
|
+
"error.regenerateDoc": "Ein Fehler ist während dem Neu-Erstellen der Dokumentation aufgetreten.",
|
|
25
|
+
"error.regenerateDoc.versionMissing": "Die Version, die Sie zu generieren versuchen, existiert nicht",
|
|
26
|
+
"notification.update.success": "Einstellungen wurden erfolgreich aktualisiert",
|
|
27
|
+
"notification.delete.success": "Dokument wurde erfolgreich gelöscht",
|
|
28
|
+
"notification.generate.success": "Dokument wurde erfolgreich generiert",
|
|
29
|
+
"plugin.name": "Dokumentation"
|
|
30
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components.Row.generatedDate": "Last generation",
|
|
3
|
+
"components.Row.open": "Open",
|
|
4
|
+
"components.Row.regenerate": "Regenerate",
|
|
5
|
+
"containers.HomePage.Block.title": "Versions",
|
|
6
|
+
"containers.HomePage.Button.open": "Open the documentation",
|
|
7
|
+
"containers.HomePage.Button.update": "Update",
|
|
8
|
+
"containers.HomePage.PluginHeader.description": "Configure the documentation plugin",
|
|
9
|
+
"containers.HomePage.PluginHeader.title": "Documentation - Settings",
|
|
10
|
+
"containers.HomePage.PopUpWarning.confirm": "I understand",
|
|
11
|
+
"containers.HomePage.PopUpWarning.message": "Are you sure you want to delete this version?",
|
|
12
|
+
"containers.HomePage.copied": "Token copied to clipboard",
|
|
13
|
+
"containers.HomePage.form.jwtToken": "Retrieve your jwt token",
|
|
14
|
+
"containers.HomePage.form.jwtToken.description": "Copy this token and use it in swagger to make requests",
|
|
15
|
+
"containers.HomePage.form.password": "Password",
|
|
16
|
+
"containers.HomePage.form.password.inputDescription": "Set the password to access the documentation",
|
|
17
|
+
"containers.HomePage.form.restrictedAccess": "Restricted access",
|
|
18
|
+
"containers.HomePage.form.restrictedAccess.inputDescription": "Make the documentation endpoint private. By default, the access is public",
|
|
19
|
+
"containers.HomePage.form.showGeneratedFiles": "Show generated files",
|
|
20
|
+
"containers.HomePage.form.showGeneratedFiles.inputDescription": "Useful when you want to override the generated documentation. \nThe plugin will generate files split by model and plugin. \nBy enabling this option it will be easier to customize your documentation",
|
|
21
|
+
"error.deleteDoc.versionMissing": "The version you are trying to delete does not exist.",
|
|
22
|
+
"error.noVersion": "A version is required",
|
|
23
|
+
"error.regenerateDoc": "An error occurred while regenerating the doc",
|
|
24
|
+
"error.regenerateDoc.versionMissing": "The version you are trying to generate doesn't exist",
|
|
25
|
+
"notification.update.success": "Settings updated successfully",
|
|
26
|
+
"notification.delete.success": "Doc deleted",
|
|
27
|
+
"notification.generate.success": "Doc generated",
|
|
28
|
+
"plugin.name": "Documentation",
|
|
29
|
+
"plugin.description.long": "Create an OpenAPI Document and visualize your API with SWAGGER UI.",
|
|
30
|
+
"plugin.description.short": "Create an OpenAPI Document and visualize your API with SWAGGER UI."
|
|
31
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components.Row.generatedDate": "Última generación",
|
|
3
|
+
"components.Row.open": "Abrir",
|
|
4
|
+
"components.Row.regenerate": "Regenerar",
|
|
5
|
+
"containers.HomePage.Block.title": "Versiones",
|
|
6
|
+
"containers.HomePage.Button.open": "Abrir la documentación",
|
|
7
|
+
"containers.HomePage.Button.update": "Actualizar",
|
|
8
|
+
"containers.HomePage.PluginHeader.description": "Configurar el plugin de documentación",
|
|
9
|
+
"containers.HomePage.PluginHeader.title": "Documentación - Configuración",
|
|
10
|
+
"containers.HomePage.PopUpWarning.confirm": "Confirmar",
|
|
11
|
+
"containers.HomePage.PopUpWarning.message": "¿Estás seguro de que deseas eliminar esta versión?",
|
|
12
|
+
"containers.HomePage.copied": "Token copiado al portapapeles",
|
|
13
|
+
"containers.HomePage.form.jwtToken": "Recupera tu token jwt",
|
|
14
|
+
"containers.HomePage.form.jwtToken.description": "Copie este token y utilícelo con arrogancia para realizar solicitudes",
|
|
15
|
+
"containers.HomePage.form.password": "Contraseña",
|
|
16
|
+
"containers.HomePage.form.password.inputDescription": "Establezca la contraseña para acceder a la documentación",
|
|
17
|
+
"containers.HomePage.form.restrictedAccess": "Acceso restringido",
|
|
18
|
+
"containers.HomePage.form.restrictedAccess.inputDescription": "Haga que el acceso a la documentación sea privado. Por defecto, el acceso es público",
|
|
19
|
+
"containers.HomePage.form.showGeneratedFiles": "Mostrar archivos generados",
|
|
20
|
+
"containers.HomePage.form.showGeneratedFiles.inputDescription": "Útil cuando desea sobreescribir la documentación generada.\nEl plugin generará archivos divididos por modelo y plugin.\nAl habilitar esta opción, será más fácil personalizar su documentación",
|
|
21
|
+
"error.deleteDoc.versionMissing": "La versión que está intentando eliminar no existe.",
|
|
22
|
+
"error.noVersion": "Se requiere una versión",
|
|
23
|
+
"error.regenerateDoc": "Se produjo un error al regenerar el documento.",
|
|
24
|
+
"error.regenerateDoc.versionMissing": "La versión que está intentando generar no existe",
|
|
25
|
+
"notification.update.success": "Configuración actualizada correctamente",
|
|
26
|
+
"plugin.name": "Documentación"
|
|
27
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components.Row.generatedDate": "Dernière création",
|
|
3
|
+
"components.Row.open": "Ouvrir",
|
|
4
|
+
"components.Row.regenerate": "Recréer",
|
|
5
|
+
"containers.HomePage.Block.title": "Versions",
|
|
6
|
+
"containers.HomePage.Button.open": "Ouvrir la documentation",
|
|
7
|
+
"containers.HomePage.Button.update": "Mettre à jour",
|
|
8
|
+
"containers.HomePage.PluginHeader.description": "Configurez votre plugin de documentation",
|
|
9
|
+
"containers.HomePage.PluginHeader.title": "Documentation - Paramètres",
|
|
10
|
+
"containers.HomePage.PopUpWarning.confirm": "Supprimer",
|
|
11
|
+
"containers.HomePage.PopUpWarning.message": "Êtes-vous sûr·e de vouloir supprimer cette version ?",
|
|
12
|
+
"containers.HomePage.copied": "Token copié dans le presse papier",
|
|
13
|
+
"containers.HomePage.form.jwtToken": "Récuperez votre jwt token",
|
|
14
|
+
"containers.HomePage.form.jwtToken.description": "Copiez ce token et utilisez le dans swagger pour effectuer des requêtes",
|
|
15
|
+
"containers.HomePage.form.password": "Mot de passe",
|
|
16
|
+
"containers.HomePage.form.password.inputDescription": "Définir le mot de passe pour accéder à la documentation.",
|
|
17
|
+
"containers.HomePage.form.restrictedAccess": "Accès restreint",
|
|
18
|
+
"containers.HomePage.form.restrictedAccess.inputDescription": "Limiter l'accès à la documentation. Par défaut, celle-ci est publique.",
|
|
19
|
+
"containers.HomePage.form.showGeneratedFiles": "Montrer les fichiers générés",
|
|
20
|
+
"containers.HomePage.form.showGeneratedFiles.inputDescription": "Cette option est pratique lorsque que vous voulez modifier votre documentation. \nLe plugin va générer les fichiers par modèle.",
|
|
21
|
+
"error.deleteDoc.versionMissing": "La version que vous essayez de supprimer n'existe pas.",
|
|
22
|
+
"error.noVersion": "Une version de documentation est nécessaire",
|
|
23
|
+
"error.regenerateDoc": "Une erreur est survenue en recréant la documentation",
|
|
24
|
+
"error.regenerateDoc.versionMissing": "La version que vous essayez de créer n'existe pas.",
|
|
25
|
+
"notification.update.success": "Vos paramètres ont été enregistrés",
|
|
26
|
+
"plugin.name": "Documentation",
|
|
27
|
+
"plugin.description.long": "Créez un document OpenAPI et visualisez votre API avec SWAGGER UI.",
|
|
28
|
+
"plugin.description.short": "Créez un document OpenAPI et visualisez votre API avec SWAGGER UI."
|
|
29
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components.Row.generatedDate": "Generasi terakhir",
|
|
3
|
+
"components.Row.open": "Buka",
|
|
4
|
+
"components.Row.regenerate": "Diperbarui",
|
|
5
|
+
"containers.HomePage.Block.title": "Versi",
|
|
6
|
+
"containers.HomePage.Button.open": "Buka dokumentasi",
|
|
7
|
+
"containers.HomePage.Button.update": "Perbarui",
|
|
8
|
+
"containers.HomePage.PluginHeader.description": "Konfigurasikan plugin dokumentasi",
|
|
9
|
+
"containers.HomePage.PluginHeader.title": "Dokumentasi - Pengaturan",
|
|
10
|
+
"containers.HomePage.PopUpWarning.confirm": "Saya mengerti",
|
|
11
|
+
"containers.HomePage.PopUpWarning.message": "Anda yakin ingin menghapus versi ini?",
|
|
12
|
+
"containers.HomePage.copied": "Token disalin ke papan klip",
|
|
13
|
+
"containers.HomePage.form.jwtToken": "Ambil token jwt Anda",
|
|
14
|
+
"containers.HomePage.form.jwtToken.description": "Salin token ini dan gunakan dengan sombong untuk membuat permintaan",
|
|
15
|
+
"containers.HomePage.form.password": "Kata sandi",
|
|
16
|
+
"containers.HomePage.form.password.inputDescription": "Atur kata sandi untuk mengakses dokumentasi",
|
|
17
|
+
"containers.HomePage.form.restrictedAccess": "Akses terbatas",
|
|
18
|
+
"containers.HomePage.form.restrictedAccess.inputDescription": "Jadikan titik akhir dokumentasi bersifat pribadi. Secara default, aksesnya adalah publik",
|
|
19
|
+
"containers.HomePage.form.showGeneratedFiles": "Tampilkan file yang dibuat",
|
|
20
|
+
"containers.HomePage.form.showGeneratedFiles.inputDescription": "Berguna ketika Anda ingin mengganti dokumentasi yang dihasilkan. \n Plugin akan menghasilkan file yang dipisahkan berdasarkan model dan plugin. \n Dengan mengaktifkan opsi ini, akan lebih mudah untuk menyesuaikan dokumentasi Anda",
|
|
21
|
+
"error.deleteDoc.versionMissing": "Versi yang Anda coba hapus tidak ada.",
|
|
22
|
+
"error.noVersion": "Versi diperlukan",
|
|
23
|
+
"error.regenerateDoc": "Terjadi kesalahan saat membuat ulang dokumen",
|
|
24
|
+
"error.regenerateDoc.versionMissing": "Versi yang Anda coba buat tidak ada",
|
|
25
|
+
"notification.update.success": "Pengaturan berhasil diperbarui",
|
|
26
|
+
"plugin.name": "Dokumentasi"
|
|
27
|
+
}
|
|
28
|
+
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import ar from './ar.json';
|
|
2
|
+
import cs from './cs.json';
|
|
3
|
+
import de from './de.json';
|
|
4
|
+
import en from './en.json';
|
|
5
|
+
import es from './es.json';
|
|
6
|
+
import fr from './fr.json';
|
|
7
|
+
import id from './id.json';
|
|
8
|
+
import it from './it.json';
|
|
9
|
+
import ko from './ko.json';
|
|
10
|
+
import ms from './ms.json';
|
|
11
|
+
import nl from './nl.json';
|
|
12
|
+
import pl from './pl.json';
|
|
13
|
+
import ptBR from './pt-BR.json';
|
|
14
|
+
import pt from './pt.json';
|
|
15
|
+
import ru from './ru.json';
|
|
16
|
+
import th from './th.json';
|
|
17
|
+
import tr from './tr.json';
|
|
18
|
+
import uk from './uk.json';
|
|
19
|
+
import vi from './vi.json';
|
|
20
|
+
import zhHans from './zh-Hans.json';
|
|
21
|
+
import zh from './zh.json';
|
|
22
|
+
import sk from './sk.json';
|
|
23
|
+
|
|
24
|
+
const trads = {
|
|
25
|
+
ar,
|
|
26
|
+
cs,
|
|
27
|
+
de,
|
|
28
|
+
en,
|
|
29
|
+
es,
|
|
30
|
+
fr,
|
|
31
|
+
id,
|
|
32
|
+
it,
|
|
33
|
+
ko,
|
|
34
|
+
ms,
|
|
35
|
+
nl,
|
|
36
|
+
pl,
|
|
37
|
+
'pt-BR': ptBR,
|
|
38
|
+
pt,
|
|
39
|
+
ru,
|
|
40
|
+
th,
|
|
41
|
+
tr,
|
|
42
|
+
uk,
|
|
43
|
+
vi,
|
|
44
|
+
'zh-Hans': zhHans,
|
|
45
|
+
zh,
|
|
46
|
+
sk,
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
export default trads;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components.Row.generatedDate": "Ultima generazione",
|
|
3
|
+
"components.Row.open": "Apri",
|
|
4
|
+
"components.Row.regenerate": "Rigenera",
|
|
5
|
+
"containers.HomePage.Block.title": "Versioni",
|
|
6
|
+
"containers.HomePage.Button.open": "Apri la documentazione",
|
|
7
|
+
"containers.HomePage.Button.update": "Aggiorna",
|
|
8
|
+
"containers.HomePage.PluginHeader.description": "Configura il plugin Documentazione",
|
|
9
|
+
"containers.HomePage.PluginHeader.title": "Documentazione - Impostazioni",
|
|
10
|
+
"containers.HomePage.PopUpWarning.confirm": "Ho capito",
|
|
11
|
+
"containers.HomePage.PopUpWarning.message": "Sei sicuro di voler eliminare questa versione?",
|
|
12
|
+
"containers.HomePage.copied": "Token copiato negli appunti",
|
|
13
|
+
"containers.HomePage.form.jwtToken": "Recupera il tuo token jwt",
|
|
14
|
+
"containers.HomePage.form.jwtToken.description": "Copia questo token e usalo in swagger per fare richieste",
|
|
15
|
+
"containers.HomePage.form.password": "Password",
|
|
16
|
+
"containers.HomePage.form.password.inputDescription": "Imposta una password per accedere alla documentazione",
|
|
17
|
+
"containers.HomePage.form.restrictedAccess": "Accesso limitato",
|
|
18
|
+
"containers.HomePage.form.restrictedAccess.inputDescription": "Rendi l'endpoint della documentazione privato. Di default l'accesso è pubblico",
|
|
19
|
+
"containers.HomePage.form.showGeneratedFiles": "Mostra file generati",
|
|
20
|
+
"containers.HomePage.form.showGeneratedFiles.inputDescription": "Utile quando vuoi sovrascrivere la documentazione generata. \nIl plugin genera file suddivisi per modello e per plugin. \nAbilitando questa opzione sarà più semplice personalizzare la tua documentazione.",
|
|
21
|
+
"error.deleteDoc.versionMissing": "La versione che stai tentando di cancellare non esiste.",
|
|
22
|
+
"error.noVersion": "Una versione è richiesta",
|
|
23
|
+
"error.regenerateDoc": "Si è verificato un errore durante la rigenerazione della documentazione",
|
|
24
|
+
"error.regenerateDoc.versionMissing": "La versione che stai tentando di generare non esiste",
|
|
25
|
+
"notification.update.success": "Impostazioni aggiornate con successo",
|
|
26
|
+
"notification.delete.success": "Doc eliminata",
|
|
27
|
+
"notification.generate.success": "Doc generata",
|
|
28
|
+
"plugin.name": "Documentazione"
|
|
29
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components.Row.generatedDate": "Last generation",
|
|
3
|
+
"components.Row.open": "Open",
|
|
4
|
+
"components.Row.regenerate": "Regenerate",
|
|
5
|
+
"containers.HomePage.Block.title": "Versions",
|
|
6
|
+
"containers.HomePage.Button.open": "Open the documentation",
|
|
7
|
+
"containers.HomePage.Button.update": "Update",
|
|
8
|
+
"containers.HomePage.PluginHeader.description": "Configure the documentation plugin",
|
|
9
|
+
"containers.HomePage.PluginHeader.title": "Documentation - Settings",
|
|
10
|
+
"containers.HomePage.PopUpWarning.confirm": "I understand",
|
|
11
|
+
"containers.HomePage.PopUpWarning.message": "Are you sure you want to delete this version?",
|
|
12
|
+
"containers.HomePage.form.password": "Password",
|
|
13
|
+
"containers.HomePage.form.password.inputDescription": "Set the password to access the documentation",
|
|
14
|
+
"containers.HomePage.form.restrictedAccess": "Restricted access",
|
|
15
|
+
"containers.HomePage.form.restrictedAccess.inputDescription": "Make the documentation endpoint private. By default, the access is public",
|
|
16
|
+
"containers.HomePage.form.showGeneratedFiles": "Show generated files",
|
|
17
|
+
"containers.HomePage.form.showGeneratedFiles.inputDescription": "Useful when you want to override the generated documentation. \nThe plugin will generate files split by model and plugin. \nBy enabling this option it will be easier to customize your documentation",
|
|
18
|
+
"error.deleteDoc.versionMissing": "The version you are trying to delete does not exist.",
|
|
19
|
+
"error.noVersion": "A version is required",
|
|
20
|
+
"error.regenerateDoc": "An error occurred while regenerating the doc",
|
|
21
|
+
"error.regenerateDoc.versionMissing": "The version you are trying to generate doesn't exist",
|
|
22
|
+
"notification.update.success": "Settings updated successfully",
|
|
23
|
+
"plugin.name": "문서"
|
|
24
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components.Row.generatedDate": "Hasil yang lalu",
|
|
3
|
+
"components.Row.open": "Buka",
|
|
4
|
+
"components.Row.regenerate": "Hasilkan Semula",
|
|
5
|
+
"containers.HomePage.Block.title": "Versi",
|
|
6
|
+
"containers.HomePage.Button.open": "Buka Dokumen",
|
|
7
|
+
"containers.HomePage.Button.update": "Kemas Kini",
|
|
8
|
+
"containers.HomePage.PluginHeader.description": "Tetapkan plugin dokumen the documentation plugin",
|
|
9
|
+
"containers.HomePage.PluginHeader.title": "Dokumen - Tetapan",
|
|
10
|
+
"containers.HomePage.PopUpWarning.confirm": "Saya faham",
|
|
11
|
+
"containers.HomePage.PopUpWarning.message": "Anda pasti untuk memadam versi ini?",
|
|
12
|
+
"containers.HomePage.copied": "token disalin di papan keratan",
|
|
13
|
+
"containers.HomePage.form.jwtToken": "Dapatkan token JWT anda",
|
|
14
|
+
"containers.HomePage.form.jwtToken.description": "Salin token ini dan guna ia di swagger untuk menghantar pemintaan",
|
|
15
|
+
"containers.HomePage.form.password": "Kata Laluan",
|
|
16
|
+
"containers.HomePage.form.password.inputDescription": "Tetapkan kata laluan untuk akses dokumen",
|
|
17
|
+
"containers.HomePage.form.restrictedAccess": "Akses Terhad",
|
|
18
|
+
"containers.HomePage.form.restrictedAccess.inputDescription": "Buatkan titik akhir dokumen sebagai rahsia. Pada awalnya, pengaksesannya dibuka secara umum",
|
|
19
|
+
"containers.HomePage.form.showGeneratedFiles": "Tunjukkan fail yang dihasilkan",
|
|
20
|
+
"containers.HomePage.form.showGeneratedFiles.inputDescription": "Berguna ketika anda ingin menggantikan semula dokumen yang telah dihasilkan. \nPlugin akan menghasilkan fail yang dibahagi mengikut model dan plugin. \nDengan mengaktifkan pilihan ini, akan memudahkan untuk mengubah suai dokumen anda",
|
|
21
|
+
"error.deleteDoc.versionMissing": "Versi yang anda cuba hapuskan tidak ada.",
|
|
22
|
+
"error.noVersion": "Versi diperlukan",
|
|
23
|
+
"error.regenerateDoc": "Ralat berlaku sewaktu penghasilan semula dokumen",
|
|
24
|
+
"error.regenerateDoc.versionMissing": "Versi yang anda cuba hasilkan tidak ada",
|
|
25
|
+
"notification.update.success": "Tetapan berjaya dikemas kini"
|
|
26
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components.Row.generatedDate": "Last generation",
|
|
3
|
+
"components.Row.open": "Open",
|
|
4
|
+
"components.Row.regenerate": "Regenerate",
|
|
5
|
+
"containers.HomePage.Block.title": "Versions",
|
|
6
|
+
"containers.HomePage.Button.open": "Open the documentation",
|
|
7
|
+
"containers.HomePage.Button.update": "Update",
|
|
8
|
+
"containers.HomePage.PluginHeader.description": "Configure the documentation plugin",
|
|
9
|
+
"containers.HomePage.PluginHeader.title": "Documentation - Settings",
|
|
10
|
+
"containers.HomePage.PopUpWarning.confirm": "I understand",
|
|
11
|
+
"containers.HomePage.PopUpWarning.message": "Are you sure you want to delete this version?",
|
|
12
|
+
"containers.HomePage.form.password": "Password",
|
|
13
|
+
"containers.HomePage.form.password.inputDescription": "Set the password to access the documentation",
|
|
14
|
+
"containers.HomePage.form.restrictedAccess": "Restricted access",
|
|
15
|
+
"containers.HomePage.form.restrictedAccess.inputDescription": "Make the documentation endpoint private. By default, the access is public",
|
|
16
|
+
"containers.HomePage.form.showGeneratedFiles": "Show generated files",
|
|
17
|
+
"containers.HomePage.form.showGeneratedFiles.inputDescription": "Useful when you want to override the generated documentation. \nThe plugin will generate files split by model and plugin. \nBy enabling this option it will be easier to customize your documentation",
|
|
18
|
+
"error.deleteDoc.versionMissing": "The version you are trying to delete does not exist.",
|
|
19
|
+
"error.noVersion": "A version is required",
|
|
20
|
+
"error.regenerateDoc": "An error occurred while regenerating the doc",
|
|
21
|
+
"error.regenerateDoc.versionMissing": "The version you are trying to generate doesn't exist",
|
|
22
|
+
"notification.update.success": "Settings updated successfully",
|
|
23
|
+
"plugin.name": "Documentatie"
|
|
24
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components.Row.generatedDate": "Data ostatniego wygenerowania",
|
|
3
|
+
"components.Row.open": "Otwórz",
|
|
4
|
+
"components.Row.regenerate": "Wygeneruj ponownie",
|
|
5
|
+
"containers.HomePage.Block.title": "Wersje",
|
|
6
|
+
"containers.HomePage.Button.open": "Otwórz dokumentację",
|
|
7
|
+
"containers.HomePage.Button.update": "Zaktualizuj",
|
|
8
|
+
"containers.HomePage.PluginHeader.description": "Skonfiguruj plugin dokumentacjis",
|
|
9
|
+
"containers.HomePage.PluginHeader.title": "Dokuemntacja - Ustawienia",
|
|
10
|
+
"containers.HomePage.PopUpWarning.confirm": "Rozumiem",
|
|
11
|
+
"containers.HomePage.PopUpWarning.message": "Czy jesteś pewien, że chcesz usunąć tę wersję?",
|
|
12
|
+
"containers.HomePage.copied": "Token skopiowany do schowka",
|
|
13
|
+
"containers.HomePage.form.jwtToken": "Odzyskaj swój token jwt",
|
|
14
|
+
"containers.HomePage.form.jwtToken.description": "Skopiuj token i użyj go w swaggerze aby wykonać request",
|
|
15
|
+
"containers.HomePage.form.password": "Hasło",
|
|
16
|
+
"containers.HomePage.form.password.inputDescription": "Ustaw hasło aby uzyskać dostęp do dokumentacji",
|
|
17
|
+
"containers.HomePage.form.restrictedAccess": "Dostęp Ograniczony",
|
|
18
|
+
"containers.HomePage.form.restrictedAccess.inputDescription": "Ustaw endpoint dokumentacji jako prywatny. Domyślnie dostęp jest publiczny.",
|
|
19
|
+
"containers.HomePage.form.showGeneratedFiles": "Pokaż wygenerowane pliki",
|
|
20
|
+
"containers.HomePage.form.showGeneratedFiles.inputDescription": "Przydatne, gdy chcesz nadpisać wygenerowaną dokumentację. \nWtyczka wygeneruje pliki i podzieli je według modelu i wtyczki. \nWłączenie tej opcji ułatwi dostosowywanie dokumentacji",
|
|
21
|
+
"error.deleteDoc.versionMissing": "Wersja, którą próbujesz usunąć nie istnieje.",
|
|
22
|
+
"error.noVersion": "Wersja jest wymagana",
|
|
23
|
+
"error.regenerateDoc": "Wystąpił błąd podczas ponownego generowania dokumentacji",
|
|
24
|
+
"error.regenerateDoc.versionMissing": "Wersja, którą prubujesz wygenerować nie istnieje.",
|
|
25
|
+
"notification.update.success": "Ustawienia zaktualizowane pomyślnie",
|
|
26
|
+
"plugin.name": "Dokumentacja"
|
|
27
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components.Row.generatedDate": "Last generation",
|
|
3
|
+
"components.Row.open": "Open",
|
|
4
|
+
"components.Row.regenerate": "Regenerate",
|
|
5
|
+
"containers.HomePage.Block.title": "Versions",
|
|
6
|
+
"containers.HomePage.Button.open": "Open the documentation",
|
|
7
|
+
"containers.HomePage.Button.update": "Update",
|
|
8
|
+
"containers.HomePage.PluginHeader.description": "Configure the documentation plugin",
|
|
9
|
+
"containers.HomePage.PluginHeader.title": "Documentation - Settings",
|
|
10
|
+
"containers.HomePage.PopUpWarning.confirm": "I understand",
|
|
11
|
+
"containers.HomePage.PopUpWarning.message": "Are you sure you want to delete this version?",
|
|
12
|
+
"containers.HomePage.form.password": "Password",
|
|
13
|
+
"containers.HomePage.form.password.inputDescription": "Set the password to access the documentation",
|
|
14
|
+
"containers.HomePage.form.restrictedAccess": "Restricted access",
|
|
15
|
+
"containers.HomePage.form.restrictedAccess.inputDescription": "Make the documentation endpoint private. By default, the access is public",
|
|
16
|
+
"containers.HomePage.form.showGeneratedFiles": "Show generated files",
|
|
17
|
+
"containers.HomePage.form.showGeneratedFiles.inputDescription": "Useful when you want to override the generated documentation. \nThe plugin will generate files split by model and plugin. \nBy enabling this option it will be easier to customize your documentation",
|
|
18
|
+
"error.deleteDoc.versionMissing": "The version you are trying to delete does not exist.",
|
|
19
|
+
"error.noVersion": "A version is required",
|
|
20
|
+
"error.regenerateDoc": "An error occurred while regenerating the doc",
|
|
21
|
+
"error.regenerateDoc.versionMissing": "The version you are trying to generate doesn't exist",
|
|
22
|
+
"notification.update.success": "Settings updated successfully",
|
|
23
|
+
"plugin.name": "Documentação"
|
|
24
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components.Row.generatedDate": "Last generation",
|
|
3
|
+
"components.Row.open": "Open",
|
|
4
|
+
"components.Row.regenerate": "Regenerate",
|
|
5
|
+
"containers.HomePage.Block.title": "Versions",
|
|
6
|
+
"containers.HomePage.Button.open": "Open the documentation",
|
|
7
|
+
"containers.HomePage.Button.update": "Update",
|
|
8
|
+
"containers.HomePage.PluginHeader.description": "Configure the documentation plugin",
|
|
9
|
+
"containers.HomePage.PluginHeader.title": "Documentation - Settings",
|
|
10
|
+
"containers.HomePage.PopUpWarning.confirm": "I understand",
|
|
11
|
+
"containers.HomePage.PopUpWarning.message": "Are you sure you want to delete this version?",
|
|
12
|
+
"containers.HomePage.form.password": "Password",
|
|
13
|
+
"containers.HomePage.form.password.inputDescription": "Set the password to access the documentation",
|
|
14
|
+
"containers.HomePage.form.restrictedAccess": "Restricted access",
|
|
15
|
+
"containers.HomePage.form.restrictedAccess.inputDescription": "Make the documentation endpoint private. By default, the access is public",
|
|
16
|
+
"containers.HomePage.form.showGeneratedFiles": "Show generated files",
|
|
17
|
+
"containers.HomePage.form.showGeneratedFiles.inputDescription": "Useful when you want to override the generated documentation. \nThe plugin will generate files split by model and plugin. \nBy enabling this option it will be easier to customize your documentation",
|
|
18
|
+
"error.deleteDoc.versionMissing": "The version you are trying to delete does not exist.",
|
|
19
|
+
"error.noVersion": "A version is required",
|
|
20
|
+
"error.regenerateDoc": "An error occurred while regenerating the doc",
|
|
21
|
+
"error.regenerateDoc.versionMissing": "The version you are trying to generate doesn't exist",
|
|
22
|
+
"notification.update.success": "Settings updated successfully",
|
|
23
|
+
"plugin.name": "Documentação"
|
|
24
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components.Row.generatedDate": "Последнее обновление",
|
|
3
|
+
"components.Row.open": "Открыть",
|
|
4
|
+
"components.Row.regenerate": "Сгенерировать",
|
|
5
|
+
"containers.HomePage.Block.title": "Версии",
|
|
6
|
+
"containers.HomePage.Button.open": "Открыть документацию",
|
|
7
|
+
"containers.HomePage.Button.update": "Обновить",
|
|
8
|
+
"containers.HomePage.PluginHeader.description": "Настройте плагин документации",
|
|
9
|
+
"containers.HomePage.PluginHeader.title": "Документация - Настройки",
|
|
10
|
+
"containers.HomePage.PopUpWarning.confirm": "Я понимаю",
|
|
11
|
+
"containers.HomePage.PopUpWarning.message": "Вы уверены что хотите удалить эту версию?",
|
|
12
|
+
"containers.HomePage.copied": "Токен скопирован в буфер обмена",
|
|
13
|
+
"containers.HomePage.form.jwtToken": "Получите ваш JWT токен",
|
|
14
|
+
"containers.HomePage.form.jwtToken.description": "Скопируйте этот токен и используйте его в swagger для выполнения запросов",
|
|
15
|
+
"containers.HomePage.form.password": "Пароль",
|
|
16
|
+
"containers.HomePage.form.password.inputDescription": "Установите пароль для доступа к документации",
|
|
17
|
+
"containers.HomePage.form.restrictedAccess": "Ограниченный доступ",
|
|
18
|
+
"containers.HomePage.form.restrictedAccess.inputDescription": "Сделайте вашу документацию приватной. По умолчанию доступ открыт",
|
|
19
|
+
"containers.HomePage.form.showGeneratedFiles": "Показать сгенерированные файлы",
|
|
20
|
+
"containers.HomePage.form.showGeneratedFiles.inputDescription": "Полезно, если вы хотите изменить сгенерированную документацию. \nПлагин разделяет файлы на модели и плагины. \nПри включенной опции вам будет проще кастомизировать документацию",
|
|
21
|
+
"error.deleteDoc.versionMissing": "Версии, которую вы пытаетесь удалить, не существует.",
|
|
22
|
+
"error.noVersion": "Необходимо указать версию",
|
|
23
|
+
"error.regenerateDoc": "При генерации документации возникла ошибка",
|
|
24
|
+
"error.regenerateDoc.versionMissing": "Версии, которую вы пытаетесь сгенерировать, не существует",
|
|
25
|
+
"notification.update.success": "Настройки успешно обновлены",
|
|
26
|
+
"plugin.name": "Документация",
|
|
27
|
+
"notification.delete.success": "Документация удалена",
|
|
28
|
+
"notification.generate.success": "Документация сгенерирована",
|
|
29
|
+
"plugin.description.short": "Создайте OpenAPI документацию для удобной работы с вашим API через SWAGGER UI.",
|
|
30
|
+
"plugin.description.long": "Создайте OpenAPI документацию для удобной работы с вашим API через SWAGGER UI."
|
|
31
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components.Row.generatedDate": "Posledný dátum vygenerovania",
|
|
3
|
+
"components.Row.open": "Otvoriť",
|
|
4
|
+
"components.Row.regenerate": "Znova vygenerovať",
|
|
5
|
+
"containers.HomePage.Block.title": "Verzie",
|
|
6
|
+
"containers.HomePage.Button.open": "Otvoriť dokumentáciu",
|
|
7
|
+
"containers.HomePage.Button.update": "Upraviť",
|
|
8
|
+
"containers.HomePage.PluginHeader.description": "Nastavenia dokumentácie",
|
|
9
|
+
"containers.HomePage.PluginHeader.title": "Dokumentácia - Nastavenia",
|
|
10
|
+
"containers.HomePage.PopUpWarning.confirm": "Rozumiem",
|
|
11
|
+
"containers.HomePage.PopUpWarning.message": "Ste si istý, že chcete odstrániť túto verziu?",
|
|
12
|
+
"containers.HomePage.copied": "Token bol skopírovaný do schránky",
|
|
13
|
+
"containers.HomePage.form.jwtToken": "Získať jwt token",
|
|
14
|
+
"containers.HomePage.form.jwtToken.description": "Skopírujte tento token a použijte ho v Swaggeri pri volaniach API",
|
|
15
|
+
"containers.HomePage.form.password": "Heslo",
|
|
16
|
+
"containers.HomePage.form.password.inputDescription": "Nastavte heslo pre prístup k dokumentácii",
|
|
17
|
+
"containers.HomePage.form.restrictedAccess": "Obmedzený prístup",
|
|
18
|
+
"containers.HomePage.form.restrictedAccess.inputDescription": "Nastavte dokumentáciu ako súkromnú. Predvolene je verejne prístupná.",
|
|
19
|
+
"containers.HomePage.form.showGeneratedFiles": "Zobraziť vygenerované súbory",
|
|
20
|
+
"containers.HomePage.form.showGeneratedFiles.inputDescription": "Užitočné, keď potrebujete prepísať vygenerovanú dokumentáciu. \nPlugin vygeneruje súbory rozdelené podľa modelu a pluginu. \nToto uľahčí úpravy dokumentácie.",
|
|
21
|
+
"error.deleteDoc.versionMissing": "Verzia, ktorú sa snažíte vymazať, neexistuje.",
|
|
22
|
+
"error.noVersion": "Verzia je povinná",
|
|
23
|
+
"error.regenerateDoc": "Nastala chyba pri generovaní dokumentácie",
|
|
24
|
+
"error.regenerateDoc.versionMissing": "Verzia, ktorú sa snažíte vygenerovať, neexistuje.",
|
|
25
|
+
"notification.update.success": "Nastavenia boli upravené",
|
|
26
|
+
"plugin.name": "Dokumentácia"
|
|
27
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components.Row.generatedDate": "การสร้างล่าสุด",
|
|
3
|
+
"components.Row.open": "เปิด",
|
|
4
|
+
"components.Row.regenerate": "สร้างใหม่",
|
|
5
|
+
"containers.HomePage.Block.title": "เวอร์ชัน",
|
|
6
|
+
"containers.HomePage.Button.open": "เปิดเอกสารคู่มือ",
|
|
7
|
+
"containers.HomePage.Button.update": "อัพเดต",
|
|
8
|
+
"containers.HomePage.PluginHeader.description": "กำหนดค่าปลั๊กอินเอกสารคู่มือ",
|
|
9
|
+
"containers.HomePage.PluginHeader.title": "เอกสารคู่มือ - การตั้งค่า",
|
|
10
|
+
"containers.HomePage.PopUpWarning.confirm": "ฉันเข้าใจ",
|
|
11
|
+
"containers.HomePage.PopUpWarning.message": "คุณแน่ใจว่าต้องการลบเวอร์ชันนี้หรือไม่?",
|
|
12
|
+
"containers.HomePage.copied": "โทเค็นคัดลอกไปยังคลิปบอร์ด",
|
|
13
|
+
"containers.HomePage.form.jwtToken": "รับโทเค็น jwt ของคุณ",
|
|
14
|
+
"containers.HomePage.form.jwtToken.description": "คัดลอกโทเค็นนี้และใช้ใน swagger เพื่อทำการร้องขอ",
|
|
15
|
+
"containers.HomePage.form.password": "รหัสผ่าน",
|
|
16
|
+
"containers.HomePage.form.password.inputDescription": "ตั้งค่ารหัสผ่านเพื่อเข้าถึงเอกสารคู่มือ",
|
|
17
|
+
"containers.HomePage.form.restrictedAccess": "การเข้าถึงแบบจำกัด",
|
|
18
|
+
"containers.HomePage.form.restrictedAccess.inputDescription": "ทำให้จุดปลายเอกสารคู่มือเป็นแบบส่วนตัว โดยพื้นฐานการเข้าถึงเป็นแบบสาธารณะ",
|
|
19
|
+
"containers.HomePage.form.showGeneratedFiles": "แสดงไฟล์ที่สร้าง",
|
|
20
|
+
"containers.HomePage.form.showGeneratedFiles.inputDescription": "มีประโยชน์เมื่อคุณต้องการแทนที่เอกสารคู่มือที่สร้างขึ้น \nปลั๊กอินจะสร้างไฟล์ที่แบ่งตามโมเดลและปลั๊กอิน \nโดยการเปิดใช้งานอ็อพชันนี้จะเป็นการง่ายที่จะปรับแต่งเอกสารคู่มือของคุณ",
|
|
21
|
+
"error.deleteDoc.versionMissing": "เวอร์ชันที่คุณกำลังพยายามลบไม่มีอยู่",
|
|
22
|
+
"error.noVersion": "จำเป็นต้องมีเวอร์ชัน",
|
|
23
|
+
"error.regenerateDoc": "มีข้อผิดพลาดเกิดขึ้นขณะสร้างเอกสารใหม่",
|
|
24
|
+
"error.regenerateDoc.versionMissing": "เวอร์ชันที่คุณกำลังพยายามสร้างไม่มีอยู่",
|
|
25
|
+
"notification.update.success": "อัปเดตการตั้งค่าเสร็จเรียบร้อย",
|
|
26
|
+
"plugin.name": "เอกสารคู่มือ"
|
|
27
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components.Row.generatedDate": "Last generation",
|
|
3
|
+
"components.Row.open": "Open",
|
|
4
|
+
"components.Row.regenerate": "Regenerate",
|
|
5
|
+
"containers.HomePage.Block.title": "Versions",
|
|
6
|
+
"containers.HomePage.Button.open": "Open the documentation",
|
|
7
|
+
"containers.HomePage.Button.update": "Update",
|
|
8
|
+
"containers.HomePage.PluginHeader.description": "Configure the documentation plugin",
|
|
9
|
+
"containers.HomePage.PluginHeader.title": "Documentation - Settings",
|
|
10
|
+
"containers.HomePage.PopUpWarning.confirm": "I understand",
|
|
11
|
+
"containers.HomePage.PopUpWarning.message": "Are you sure you want to delete this version?",
|
|
12
|
+
"containers.HomePage.form.password": "Password",
|
|
13
|
+
"containers.HomePage.form.password.inputDescription": "Set the password to access the documentation",
|
|
14
|
+
"containers.HomePage.form.restrictedAccess": "Restricted access",
|
|
15
|
+
"containers.HomePage.form.restrictedAccess.inputDescription": "Make the documentation endpoint private. By default, the access is public",
|
|
16
|
+
"containers.HomePage.form.showGeneratedFiles": "Show generated files",
|
|
17
|
+
"containers.HomePage.form.showGeneratedFiles.inputDescription": "Useful when you want to override the generated documentation. \nThe plugin will generate files split by model and plugin. \nBy enabling this option it will be easier to customize your documentation",
|
|
18
|
+
"error.deleteDoc.versionMissing": "The version you are trying to delete does not exist.",
|
|
19
|
+
"error.noVersion": "A version is required",
|
|
20
|
+
"error.regenerateDoc": "An error occurred while regenerating the doc",
|
|
21
|
+
"error.regenerateDoc.versionMissing": "The version you are trying to generate doesn't exist",
|
|
22
|
+
"notification.update.success": "Settings updated successfully"
|
|
23
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components.Row.generatedDate": "Згенеровано востаннє",
|
|
3
|
+
"components.Row.open": "Відкрити",
|
|
4
|
+
"components.Row.regenerate": "Згенерувати",
|
|
5
|
+
"containers.HomePage.Block.title": "Версії",
|
|
6
|
+
"containers.HomePage.Button.open": "Відкрити документацію",
|
|
7
|
+
"containers.HomePage.Button.update": "Оновити",
|
|
8
|
+
"containers.HomePage.PluginHeader.description": "Налаштуйте плаґін документації",
|
|
9
|
+
"containers.HomePage.PluginHeader.title": "Документація - Налаштування",
|
|
10
|
+
"containers.HomePage.PopUpWarning.confirm": "Я усвідомлюю",
|
|
11
|
+
"containers.HomePage.PopUpWarning.message": "Ви впевнені, що хочете видалити цю версію?",
|
|
12
|
+
"containers.HomePage.copied": "Токен скопійовано у буфер обміну",
|
|
13
|
+
"containers.HomePage.form.jwtToken": "Отримайте ваш JWT токен",
|
|
14
|
+
"containers.HomePage.form.jwtToken.description": "Скопіюйте цей токен та застосуйте його в swagger, щоб відправляти запити",
|
|
15
|
+
"containers.HomePage.form.password": "Пароль",
|
|
16
|
+
"containers.HomePage.form.password.inputDescription": "Встановіть пароль доступу до документації",
|
|
17
|
+
"containers.HomePage.form.restrictedAccess": "Обмежений доступ",
|
|
18
|
+
"containers.HomePage.form.restrictedAccess.inputDescription": "Зробіть документацію приватною. За замовченням, документація загальнодоступна",
|
|
19
|
+
"containers.HomePage.form.showGeneratedFiles": "Показати згенеровані файли",
|
|
20
|
+
"containers.HomePage.form.showGeneratedFiles.inputDescription": "Корисно, якщо ви хочете переписати згенеровані документи \nПлаґін згенерує файли окремо для моделі та плаґіну. \nУвімкнувши цю опцію, буде легше налаштувати вашу документацію",
|
|
21
|
+
"error.deleteDoc.versionMissing": "Версія, яку ви намагаєтесь видалити не існує.",
|
|
22
|
+
"error.noVersion": "Необхідна версія",
|
|
23
|
+
"error.regenerateDoc": "Під час генерування документації сталася помилка",
|
|
24
|
+
"error.regenerateDoc.versionMissing": "Версія, яку ви намагаєтесь згенерувати не існує.",
|
|
25
|
+
"notification.update.success": "Налаштування оновлено"
|
|
26
|
+
}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"components.Row.generatedDate": "Lần sinh ra gần nhất",
|
|
3
|
+
"components.Row.open": "Mở",
|
|
4
|
+
"components.Row.regenerate": "Sinh lại",
|
|
5
|
+
"containers.HomePage.Block.title": "Các Phiên Bản",
|
|
6
|
+
"containers.HomePage.Button.open": "Mở tải liệu",
|
|
7
|
+
"containers.HomePage.Button.update": "Cập nhật",
|
|
8
|
+
"containers.HomePage.PluginHeader.description": "Cấu hình cho tài liệu của plugin",
|
|
9
|
+
"containers.HomePage.PluginHeader.title": "Tài liệu - Cài đặt",
|
|
10
|
+
"containers.HomePage.PopUpWarning.confirm": "Tôi hiểu",
|
|
11
|
+
"containers.HomePage.PopUpWarning.message": "Bạn có chắc là muốn xóa phiên bản này không?",
|
|
12
|
+
"containers.HomePage.copied": "Chuỗi khoá đã được sao chép vào bộ nhớ tạm",
|
|
13
|
+
"containers.HomePage.form.jwtToken": "Lấy lại chuỗi khóa jwt của bạn",
|
|
14
|
+
"containers.HomePage.form.jwtToken.description": "Sao chép chuỗi khóa và sử dụng nó trong swagger để truy vấn",
|
|
15
|
+
"containers.HomePage.form.password": "Mật khẩu",
|
|
16
|
+
"containers.HomePage.form.password.inputDescription": "Cài đặt mật khẩu để truy cập tài liệu",
|
|
17
|
+
"containers.HomePage.form.restrictedAccess": "Truy cập bị giới hạn",
|
|
18
|
+
"containers.HomePage.form.restrictedAccess.inputDescription": "Làm cho điểm truy cập tài liệu thành riêng tư. Mặc định, truy cập là công khai.",
|
|
19
|
+
"containers.HomePage.form.showGeneratedFiles": "Hiển thị tập tin đã sinh ra",
|
|
20
|
+
"containers.HomePage.form.showGeneratedFiles.inputDescription": "Hữu ích khi bạn muốn ghi đè lên tài liệu đã sinh ra. \nPlugin này sẽ tạo ra các tập tin phân chia bởi cấu hình và plugin. \nBằng việc kích hoạt tuỳ chọn này, sẽ dễ dàng hơn cho bạn tùy chỉnh tài liệu của bạn.",
|
|
21
|
+
"error.deleteDoc.versionMissing": "Phiên bản bạn đang cố xóa không tồn tại.",
|
|
22
|
+
"error.noVersion": "Bắt buộc phải có một phiên bản",
|
|
23
|
+
"error.regenerateDoc": "Một lỗi đã xảy ra trong khi sinh ra tài liệu",
|
|
24
|
+
"error.regenerateDoc.versionMissing": "Phiên bản bạn đang cố sinh ra không tồn tại",
|
|
25
|
+
"notification.update.success": "Các cài đặt đã được cập nhật thành công",
|
|
26
|
+
"plugin.name": "Tài liệu"
|
|
27
|
+
}
|