core-maugli 1.2.4 → 1.2.5

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.
Files changed (66) hide show
  1. package/package.json +1 -1
  2. package/public/img/default/autor_default.webp +0 -0
  3. package/public/img/default/blog_default.webp +0 -0
  4. package/public/img/default/default.webp +0 -0
  5. package/public/img/default/product_default.webp +0 -0
  6. package/public/img/default/project_default.webp +0 -0
  7. package/public/img/default/rubric_default.webp +0 -0
  8. package/public/img/default/test.webp +0 -0
  9. package/public/img/default/test2.webp +0 -0
  10. package/scripts/update-components.js +14 -5
  11. package/src/i18n/de.json +126 -0
  12. package/src/i18n/en.json +126 -0
  13. package/src/i18n/es.json +126 -0
  14. package/src/i18n/fr.json +126 -0
  15. package/src/i18n/index.ts +10 -0
  16. package/src/i18n/ja.json +126 -0
  17. package/src/i18n/languages.ts +23 -0
  18. package/src/i18n/pt.json +126 -0
  19. package/src/i18n/ru.json +123 -0
  20. package/src/i18n/zh.json +126 -0
  21. package/src/icons/ArrowLeft.astro +13 -0
  22. package/src/icons/ArrowRight.astro +13 -0
  23. package/src/icons/flags/brazil.svg +14 -0
  24. package/src/icons/flags/china.svg +15 -0
  25. package/src/icons/flags/france.svg +12 -0
  26. package/src/icons/flags/germany.svg +12 -0
  27. package/src/icons/flags/japan.svg +11 -0
  28. package/src/icons/flags/russia.svg +12 -0
  29. package/src/icons/flags/spain.svg +12 -0
  30. package/src/icons/flags/united arab emirates.svg +13 -0
  31. package/src/icons/flags/united states.svg +15 -0
  32. package/src/icons/socials/BlueskyIcon.astro +9 -0
  33. package/src/icons/socials/EmailIcon.astro +8 -0
  34. package/src/icons/socials/LinkedinIcon.astro +9 -0
  35. package/src/icons/socials/MastodonIcon.astro +9 -0
  36. package/src/icons/socials/MediumIcon.astro +9 -0
  37. package/src/icons/socials/RedditIcon.astro +11 -0
  38. package/src/icons/socials/TelegramIcon.astro +11 -0
  39. package/src/icons/socials/TwitterIcon.astro +9 -0
  40. package/src/layouts/BaseLayout.astro +59 -0
  41. package/src/pages/404.astro +24 -0
  42. package/src/pages/[...id].astro +50 -0
  43. package/src/pages/about.astro +0 -0
  44. package/src/pages/authors/[...page].astro +105 -0
  45. package/src/pages/authors/[id].astro +175 -0
  46. package/src/pages/blog/[...page].astro +59 -0
  47. package/src/pages/blog/[id].astro +175 -0
  48. package/src/pages/index.astro +90 -0
  49. package/src/pages/products/[...page].astro +50 -0
  50. package/src/pages/products/[id].astro +221 -0
  51. package/src/pages/projects/[...page].astro +74 -0
  52. package/src/pages/projects/[id].astro +165 -0
  53. package/src/pages/projects/tags/[id]/[...page].astro +58 -0
  54. package/src/pages/rss.xml.js +5 -0
  55. package/src/pages/tags/[id]/[...page].astro +110 -0
  56. package/src/pages/tags/index.astro +124 -0
  57. package/src/scripts/infoCardFadeIn.js +22 -0
  58. package/src/styles/global.css +273 -0
  59. package/src/utils/common-utils.ts +0 -0
  60. package/src/utils/content-loader.ts +14 -0
  61. package/src/utils/data-utils.ts +49 -0
  62. package/src/utils/featuredManager.ts +118 -0
  63. package/src/utils/posts.ts +43 -0
  64. package/src/utils/reading-time.ts +28 -0
  65. package/src/utils/remark-slugify.js +8 -0
  66. package/src/utils/rss.ts +23 -0
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "core-maugli",
3
3
  "description": "Astro & Tailwind CSS blog theme for Maugli.",
4
4
  "type": "module",
5
- "version": "1.2.4",
5
+ "version": "1.2.5",
6
6
  "license": "GPL-3.0-or-later OR Commercial",
7
7
  "repository": {
8
8
  "type": "git",
Binary file
Binary file
Binary file
@@ -8,11 +8,14 @@ const __filename = fileURLToPath(import.meta.url);
8
8
  const __dirname = path.dirname(__filename);
9
9
 
10
10
  // Определяем корневые папки
11
- const packageRoot = __dirname.includes('node_modules')
11
+ const isInNodeModules = __dirname.includes('node_modules');
12
+ const isSourceProject = !isInNodeModules && (__dirname.includes('core-maugli-blog') || process.cwd().includes('core-maugli-blog'));
13
+
14
+ const packageRoot = isInNodeModules
12
15
  ? path.join(__dirname, '../../..', 'node_modules', 'core-maugli') // из node_modules
13
- : path.join(__dirname, '..'); // из исходников (для разработки)
16
+ : path.join(__dirname, '..'); // из исходников
14
17
 
15
- const userRoot = __dirname.includes('node_modules')
18
+ const userRoot = isInNodeModules
16
19
  ? path.join(__dirname, '../../..') // корень пользовательского проекта
17
20
  : process.env.INIT_CWD || process.cwd(); // для разработки
18
21
 
@@ -102,12 +105,18 @@ async function updateStyles() {
102
105
  async function updateComponents() {
103
106
  console.log('🔄 Updating Maugli components and assets...');
104
107
 
105
- // Проверяем, что мы не в том же проекте (чтобы не удалить исходники)
106
- if (packageRoot === userRoot) {
108
+ // Проверяем, что мы не в исходном проекте (чтобы не удалить исходники)
109
+ if (isSourceProject) {
107
110
  console.log('⚠️ Skipping component update (running in source project)');
108
111
  return;
109
112
  }
110
113
 
114
+ // Дополнительная проверка
115
+ if (packageRoot === userRoot) {
116
+ console.log('⚠️ Skipping component update (packageRoot equals userRoot)');
117
+ return;
118
+ }
119
+
111
120
  let updatedCount = 0;
112
121
 
113
122
  for (const updatePath of FORCE_UPDATE_PATHS) {
@@ -0,0 +1,126 @@
1
+ {
2
+ "buttons": {
3
+ "share": "Teilen",
4
+ "subscribe": "Abonnieren",
5
+ "moreAboutProduct": "Mehr über das Produkt",
6
+ "copied": "Kopiert!",
7
+ "copyLink": "Link kopieren",
8
+ "copyLinkToArticle": "Link zum Artikel kopieren",
9
+ "morePosts": "Weitere Artikel"
10
+ },
11
+ "form": {
12
+ "emailPlaceholder": "E-Mail",
13
+ "emailLabel": "E-Mail",
14
+ "subscribeAriaLabel": "Abonnement-Formular"
15
+ },
16
+
17
+ "nav": {
18
+ "blog": "Blog",
19
+ "products": "Produkte",
20
+ "projects": "Fälle",
21
+ "authors": "Autoren",
22
+ "tags": "Kategorien",
23
+ "openMenu": "Menü öffnen",
24
+ "closeMenu": "Menü schließen"
25
+ },
26
+ "pages": {
27
+ "authors": {
28
+ "title": "Autoren",
29
+ "description": "Lernen Sie unser Expertenteam kennen, das für {brand} schreibt",
30
+ "goToAuthor": "Zum Autor gehen",
31
+ "avatarAlt": "Avatar",
32
+ "onPlatform": "auf"
33
+ },
34
+ "tags": {
35
+ "title": "Kategorien",
36
+ "description": "Alle Artikel nach Kategorie",
37
+ "blogRubrics": "Blog-Kategorien"
38
+ },
39
+ "index": {
40
+ "title": "<Blog>",
41
+ "description": "Blog über Automatisierung aus Sicht der KI",
42
+ "articles": "Artikel",
43
+ "minutes": "Min"
44
+ },
45
+ "products": {
46
+ "title": "Produkte",
47
+ "description": "Alle Maugli-Produkte"
48
+ },
49
+ "projects": {
50
+ "tagTitle": "Services nach Tag",
51
+ "title": "Services"
52
+ },
53
+ "blog": {
54
+ "moreByTag": "Mehr zum Thema"
55
+ },
56
+ "productsId": {
57
+ "articlesByTag": "Artikel zum Thema",
58
+ "casesByTag": "Fälle zum Thema"
59
+ }
60
+ },
61
+ "socials": {
62
+ "email": "E-Mail",
63
+ "linkedin": "LinkedIn",
64
+ "twitter": "Twitter",
65
+ "telegram": "Telegram",
66
+ "reddit": "Reddit",
67
+ "medium": "Medium",
68
+ "mastodon": "Mastodon",
69
+ "bluesky": "Bluesky"
70
+ },
71
+ "footer": {
72
+ "allRightsReserved": "Alle Rechte vorbehalten"
73
+ },
74
+ "shareIconAriaLabel": {
75
+ "twitter": "Auf Twitter teilen",
76
+ "copy": "Link kopieren",
77
+ "telegram": "Auf Telegram teilen",
78
+ "linkedin": "Auf LinkedIn teilen",
79
+ "whatsapp": "Auf WhatsApp teilen",
80
+ "facebook": "Auf Facebook teilen",
81
+ "copied": "Link kopiert"
82
+ },
83
+ "date": {
84
+ "today": "heute",
85
+ "yesterday": "gestern"
86
+ },
87
+ "sidebarAriaLabel": "Seitenleiste",
88
+ "summaryFAQCard": {
89
+ "ariaLabel": "Zusammenfassung und FAQ",
90
+ "summaryLabel": "Zusammenfassung:",
91
+ "faqLabel": "FAQ:"
92
+ },
93
+ "tableOfContents": {
94
+ "title": "Inhalt",
95
+ "ariaLabel": "Inhalt"
96
+ },
97
+ "tagPill": {
98
+ "ariaLabel": "Tag: {tag}"
99
+ },
100
+ "tagPills": {
101
+ "ariaLabel": "Tag: {name} ({count})"
102
+ },
103
+ "tagsSection": {
104
+ "allCases": "Alle Fälle",
105
+ "allArticles": "Alle Artikel",
106
+ "allTags": "Alle Tags",
107
+ "rubricAlt": "Kategorie",
108
+ "tagAriaLabel": "Tag: {name} ({count})"
109
+ },
110
+ "themeToggle": {
111
+ "ariaLabel": "Farbschema wechseln"
112
+ },
113
+ "pagination": {
114
+ "goToPage": "Gehe zu Seite {page} von {lastPage}",
115
+ "pageOf": "Seite {currentPage} von {lastPage}"
116
+ },
117
+ "subscribe": {
118
+ "heading": "Abonniere für Updates",
119
+ "mutedText": "Erhalte die neuesten Artikel und Nachrichten zuerst!"
120
+ },
121
+ "notFound": {
122
+ "title": "Seite nicht gefunden",
123
+ "description": "Entschuldigung, diese Seite existiert nicht oder wurde entfernt.",
124
+ "button": "Zur Hauptseite"
125
+ }
126
+ }
@@ -0,0 +1,126 @@
1
+ {
2
+ "buttons": {
3
+ "share": "Share",
4
+ "subscribe": "Subscribe",
5
+ "moreAboutProduct": "More about the product",
6
+ "copied": "Copied!",
7
+ "copyLink": "Copy link",
8
+ "copyLinkToArticle": "Copy link to article",
9
+ "morePosts": "More posts"
10
+ },
11
+ "form": {
12
+ "emailPlaceholder": "email",
13
+ "emailLabel": "Email",
14
+ "subscribeAriaLabel": "Subscription form"
15
+ },
16
+
17
+ "nav": {
18
+ "blog": "Blog",
19
+ "products": "Products",
20
+ "projects": "Cases",
21
+ "authors": "Authors",
22
+ "tags": "Topics",
23
+ "openMenu": "Open menu",
24
+ "closeMenu": "Close menu"
25
+ },
26
+ "pages": {
27
+ "authors": {
28
+ "title": "Authors",
29
+ "description": "Meet our team of experts writing for {brand}",
30
+ "goToAuthor": "Go to author",
31
+ "avatarAlt": "Avatar",
32
+ "onPlatform": "on"
33
+ },
34
+ "tags": {
35
+ "title": "Categories",
36
+ "description": "All articles by category",
37
+ "blogRubrics": "Blog categories"
38
+ },
39
+ "index": {
40
+ "title": "<Blog>",
41
+ "description": "Blog about automation through AI's eyes",
42
+ "articles": "Articles",
43
+ "minutes": "min"
44
+ },
45
+ "products": {
46
+ "title": "Products",
47
+ "description": "All Maugli products"
48
+ },
49
+ "projects": {
50
+ "tagTitle": "Services by tag",
51
+ "title": "Services"
52
+ },
53
+ "blog": {
54
+ "moreByTag": "More on the topic"
55
+ },
56
+ "productsId": {
57
+ "articlesByTag": "Articles on the topic",
58
+ "casesByTag": "Cases on the topic"
59
+ }
60
+ },
61
+ "socials": {
62
+ "email": "email",
63
+ "linkedin": "LinkedIn",
64
+ "twitter": "Twitter",
65
+ "telegram": "Telegram",
66
+ "reddit": "Reddit",
67
+ "medium": "Medium",
68
+ "mastodon": "Mastodon",
69
+ "bluesky": "Bluesky"
70
+ },
71
+ "footer": {
72
+ "allRightsReserved": "All rights reserved"
73
+ },
74
+ "shareIconAriaLabel": {
75
+ "twitter": "Share on Twitter",
76
+ "copy": "Copy link",
77
+ "telegram": "Share on Telegram",
78
+ "linkedin": "Share on LinkedIn",
79
+ "whatsapp": "Share on WhatsApp",
80
+ "facebook": "Share on Facebook",
81
+ "copied": "Link copied"
82
+ },
83
+ "date": {
84
+ "today": "today",
85
+ "yesterday": "yesterday"
86
+ },
87
+ "sidebarAriaLabel": "Sidebar",
88
+ "summaryFAQCard": {
89
+ "ariaLabel": "Summary and FAQ",
90
+ "summaryLabel": "Summary:",
91
+ "faqLabel": "FAQ:"
92
+ },
93
+ "tableOfContents": {
94
+ "title": "Contents",
95
+ "ariaLabel": "Contents"
96
+ },
97
+ "tagPill": {
98
+ "ariaLabel": "Tag: {tag}"
99
+ },
100
+ "tagPills": {
101
+ "ariaLabel": "Tag: {name} ({count})"
102
+ },
103
+ "tagsSection": {
104
+ "allCases": "All cases",
105
+ "allArticles": "All articles",
106
+ "allTags": "All tags",
107
+ "rubricAlt": "Category",
108
+ "tagAriaLabel": "Tag: {name} ({count})"
109
+ },
110
+ "themeToggle": {
111
+ "ariaLabel": "Change color scheme"
112
+ },
113
+ "pagination": {
114
+ "goToPage": "Go to page {page} of {lastPage}",
115
+ "pageOf": "Page {currentPage} of {lastPage}"
116
+ },
117
+ "subscribe": {
118
+ "heading": "Subscribe for updates",
119
+ "mutedText": "Get the latest articles and news first!"
120
+ },
121
+ "notFound": {
122
+ "title": "Page not found",
123
+ "description": "Sorry, this page does not exist or has been removed.",
124
+ "button": "Go to main page"
125
+ }
126
+ }
@@ -0,0 +1,126 @@
1
+ {
2
+ "buttons": {
3
+ "share": "Compartir",
4
+ "subscribe": "Suscribirse",
5
+ "moreAboutProduct": "Más sobre el producto",
6
+ "copied": "¡Copiado!",
7
+ "copyLink": "Copiar enlace",
8
+ "copyLinkToArticle": "Copiar enlace al artículo",
9
+ "morePosts": "Más artículos"
10
+ },
11
+ "form": {
12
+ "emailPlaceholder": "correo",
13
+ "emailLabel": "Correo electrónico",
14
+ "subscribeAriaLabel": "Formulario de suscripción"
15
+ },
16
+
17
+ "nav": {
18
+ "blog": "Blog",
19
+ "products": "Productos",
20
+ "projects": "Casos",
21
+ "authors": "Autores",
22
+ "tags": "Categorías",
23
+ "openMenu": "Abrir menú",
24
+ "closeMenu": "Cerrar menú"
25
+ },
26
+ "pages": {
27
+ "authors": {
28
+ "title": "Autores",
29
+ "description": "Conoce a nuestro equipo de expertos que escriben para {brand}",
30
+ "goToAuthor": "Ir al autor",
31
+ "avatarAlt": "Avatar",
32
+ "onPlatform": "en"
33
+ },
34
+ "tags": {
35
+ "title": "Categorías",
36
+ "description": "Todos los artículos por categoría",
37
+ "blogRubrics": "Categorías del blog"
38
+ },
39
+ "index": {
40
+ "title": "<Blog>",
41
+ "description": "Blog sobre automatización desde la perspectiva de la IA",
42
+ "articles": "Artículos",
43
+ "minutes": "min"
44
+ },
45
+ "products": {
46
+ "title": "Productos",
47
+ "description": "Todos los productos de Maugli"
48
+ },
49
+ "projects": {
50
+ "tagTitle": "Servicios por etiqueta",
51
+ "title": "Servicios"
52
+ },
53
+ "blog": {
54
+ "moreByTag": "Más sobre el tema"
55
+ },
56
+ "productsId": {
57
+ "articlesByTag": "Artículos sobre el tema",
58
+ "casesByTag": "Casos sobre el tema"
59
+ }
60
+ },
61
+ "socials": {
62
+ "email": "correo",
63
+ "linkedin": "LinkedIn",
64
+ "twitter": "Twitter",
65
+ "telegram": "Telegram",
66
+ "reddit": "Reddit",
67
+ "medium": "Medium",
68
+ "mastodon": "Mastodon",
69
+ "bluesky": "Bluesky"
70
+ },
71
+ "footer": {
72
+ "allRightsReserved": "Todos los derechos reservados"
73
+ },
74
+ "shareIconAriaLabel": {
75
+ "twitter": "Compartir en Twitter",
76
+ "copy": "Copiar enlace",
77
+ "telegram": "Compartir en Telegram",
78
+ "linkedin": "Compartir en LinkedIn",
79
+ "whatsapp": "Compartir en WhatsApp",
80
+ "facebook": "Compartir en Facebook",
81
+ "copied": "Enlace copiado"
82
+ },
83
+ "date": {
84
+ "today": "hoy",
85
+ "yesterday": "ayer"
86
+ },
87
+ "sidebarAriaLabel": "Barra lateral",
88
+ "summaryFAQCard": {
89
+ "ariaLabel": "Resumen y FAQ",
90
+ "summaryLabel": "Resumen:",
91
+ "faqLabel": "FAQ:"
92
+ },
93
+ "tableOfContents": {
94
+ "title": "Contenido",
95
+ "ariaLabel": "Contenido"
96
+ },
97
+ "tagPill": {
98
+ "ariaLabel": "Etiqueta: {tag}"
99
+ },
100
+ "tagPills": {
101
+ "ariaLabel": "Etiqueta: {name} ({count})"
102
+ },
103
+ "tagsSection": {
104
+ "allCases": "Todos los casos",
105
+ "allArticles": "Todos los artículos",
106
+ "allTags": "Todas las etiquetas",
107
+ "rubricAlt": "Categoría",
108
+ "tagAriaLabel": "Etiqueta: {name} ({count})"
109
+ },
110
+ "themeToggle": {
111
+ "ariaLabel": "Cambiar esquema de color"
112
+ },
113
+ "pagination": {
114
+ "goToPage": "Ir a la página {page} de {lastPage}",
115
+ "pageOf": "Página {currentPage} de {lastPage}"
116
+ },
117
+ "subscribe": {
118
+ "heading": "Suscríbete para recibir actualizaciones",
119
+ "mutedText": "¡Recibe los últimos artículos y noticias primero!"
120
+ },
121
+ "notFound": {
122
+ "title": "Página no encontrada",
123
+ "description": "Lo sentimos, esta página no existe o ha sido eliminada.",
124
+ "button": "A la página principal"
125
+ }
126
+ }
@@ -0,0 +1,126 @@
1
+ {
2
+ "buttons": {
3
+ "share": "Partager",
4
+ "subscribe": "S'abonner",
5
+ "moreAboutProduct": "En savoir plus sur le produit",
6
+ "copied": "Copié !",
7
+ "copyLink": "Copier le lien",
8
+ "copyLinkToArticle": "Copier le lien de l'article",
9
+ "morePosts": "Plus d'articles"
10
+ },
11
+ "form": {
12
+ "emailPlaceholder": "email",
13
+ "emailLabel": "Email",
14
+ "subscribeAriaLabel": "Formulaire d'abonnement"
15
+ },
16
+
17
+ "nav": {
18
+ "blog": "Blog",
19
+ "products": "Produits",
20
+ "projects": "Cas",
21
+ "authors": "Auteurs",
22
+ "tags": "Sujets",
23
+ "openMenu": "Ouvrir le menu",
24
+ "closeMenu": "Fermer le menu"
25
+ },
26
+ "pages": {
27
+ "authors": {
28
+ "title": "Auteurs",
29
+ "description": "Rencontrez notre équipe d'experts écrivant pour {brand}",
30
+ "goToAuthor": "Voir l'auteur",
31
+ "avatarAlt": "Avatar",
32
+ "onPlatform": "sur"
33
+ },
34
+ "tags": {
35
+ "title": "Catégories",
36
+ "description": "Tous les articles par catégorie",
37
+ "blogRubrics": "Catégories du blog"
38
+ },
39
+ "index": {
40
+ "title": "<Blog>",
41
+ "description": "Blog sur l'automatisation vue par l'IA",
42
+ "articles": "Articles",
43
+ "minutes": "min"
44
+ },
45
+ "products": {
46
+ "title": "Produits",
47
+ "description": "Tous les produits Maugli"
48
+ },
49
+ "projects": {
50
+ "tagTitle": "Services par tag",
51
+ "title": "Services"
52
+ },
53
+ "blog": {
54
+ "moreByTag": "Plus sur ce sujet"
55
+ },
56
+ "productsId": {
57
+ "articlesByTag": "Articles sur ce sujet",
58
+ "casesByTag": "Cas sur ce sujet"
59
+ }
60
+ },
61
+ "socials": {
62
+ "email": "Email",
63
+ "linkedin": "LinkedIn",
64
+ "twitter": "Twitter",
65
+ "telegram": "Telegram",
66
+ "reddit": "Reddit",
67
+ "medium": "Medium",
68
+ "mastodon": "Mastodon",
69
+ "bluesky": "Bluesky"
70
+ },
71
+ "footer": {
72
+ "allRightsReserved": "Tous droits réservés"
73
+ },
74
+ "shareIconAriaLabel": {
75
+ "twitter": "Partager sur Twitter",
76
+ "copy": "Copier le lien",
77
+ "telegram": "Partager sur Telegram",
78
+ "linkedin": "Partager sur LinkedIn",
79
+ "whatsapp": "Partager sur WhatsApp",
80
+ "facebook": "Partager sur Facebook",
81
+ "copied": "Lien copié"
82
+ },
83
+ "date": {
84
+ "today": "aujourd'hui",
85
+ "yesterday": "hier"
86
+ },
87
+ "sidebarAriaLabel": "Barre latérale",
88
+ "summaryFAQCard": {
89
+ "ariaLabel": "Résumé et FAQ",
90
+ "summaryLabel": "Résumé :",
91
+ "faqLabel": "FAQ :"
92
+ },
93
+ "tableOfContents": {
94
+ "title": "Contenu",
95
+ "ariaLabel": "Contenu"
96
+ },
97
+ "tagPill": {
98
+ "ariaLabel": "Tag : {tag}"
99
+ },
100
+ "tagPills": {
101
+ "ariaLabel": "Tag : {name} ({count})"
102
+ },
103
+ "tagsSection": {
104
+ "allCases": "Tous les cas",
105
+ "allArticles": "Tous les articles",
106
+ "allTags": "Tous les tags",
107
+ "rubricAlt": "Catégorie",
108
+ "tagAriaLabel": "Tag : {name} ({count})"
109
+ },
110
+ "themeToggle": {
111
+ "ariaLabel": "Changer le thème"
112
+ },
113
+ "pagination": {
114
+ "goToPage": "Aller à la page {page} sur {lastPage}",
115
+ "pageOf": "Page {currentPage} sur {lastPage}"
116
+ },
117
+ "subscribe": {
118
+ "heading": "S'abonner aux mises à jour",
119
+ "mutedText": "Recevez en premier les derniers articles et actualités !"
120
+ },
121
+ "notFound": {
122
+ "title": "Page non trouvée",
123
+ "description": "Désolé, cette page n’existe pas ou a été supprimée.",
124
+ "button": "Page d’accueil"
125
+ }
126
+ }
@@ -0,0 +1,10 @@
1
+ import de from './de.json';
2
+ import en from './en.json';
3
+ import es from './es.json';
4
+ import fr from './fr.json';
5
+ import ja from './ja.json';
6
+ import pt from './pt.json';
7
+ import ru from './ru.json';
8
+ import zh from './zh.json';
9
+
10
+ export default { en, ru, de, es, fr, pt, zh, ja };