@rmdes/indiekit-endpoint-homepage 1.0.13 → 1.0.14

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/README.md ADDED
@@ -0,0 +1,118 @@
1
+ # @rmdes/indiekit-endpoint-homepage
2
+
3
+ Homepage builder endpoint for [Indiekit](https://getindiekit.com). Provides a visual admin UI for configuring your site's homepage layout, content sections, sidebar widgets, and footer columns.
4
+
5
+ ## Features
6
+
7
+ - **Layout options** — Single-column, two-column, or full-width hero layouts
8
+ - **Drag-and-drop sections** — Arrange content sections from any registered plugin
9
+ - **Sidebar widgets** — Author card, search, categories, blogroll, social activity, and more
10
+ - **Footer columns** — Up to 3 configurable footer columns
11
+ - **Layout presets** — Quick-start presets for Blog, CV/Portfolio, or Hybrid layouts
12
+ - **Plugin discovery** — Automatically discovers sections/widgets from other Indiekit plugins
13
+
14
+ ## Installation
15
+
16
+ ```bash
17
+ npm install @rmdes/indiekit-endpoint-homepage
18
+ ```
19
+
20
+ ## Configuration
21
+
22
+ Add to your `indiekit.config.js`:
23
+
24
+ ```javascript
25
+ import HomepageEndpoint from "@rmdes/indiekit-endpoint-homepage";
26
+
27
+ const homepage = new HomepageEndpoint({
28
+ mountPath: "/homepage",
29
+ contentDir: "/app/data/content"
30
+ });
31
+
32
+ export default {
33
+ plugins: [homepage],
34
+ // ... other config
35
+ };
36
+ ```
37
+
38
+ ## Usage
39
+
40
+ Once installed, navigate to `/homepage` in your Indiekit admin panel. The homepage builder lets you:
41
+
42
+ 1. **Choose a layout** — Select single-column, two-column, or full-width hero
43
+ 2. **Apply a preset** — Quick-start with Blog, CV/Portfolio, or Hybrid
44
+ 3. **Add sections** — Drag content sections into the main area
45
+ 4. **Configure sidebar** — Add widgets to the sidebar (two-column layout)
46
+ 5. **Set up footer** — Add up to 3 footer columns
47
+
48
+ Changes are saved to MongoDB and written as a JSON file that triggers an Eleventy rebuild.
49
+
50
+ ## Plugin Discovery
51
+
52
+ The homepage builder automatically discovers content sections and sidebar widgets from other installed Indiekit plugins. Any plugin that exports `homepageSections` or `homepageWidgets` will have its sections available in the builder.
53
+
54
+ ### Registering Sections from Your Plugin
55
+
56
+ ```javascript
57
+ class MyEndpoint {
58
+ get homepageSections() {
59
+ return [
60
+ {
61
+ id: "my-section",
62
+ label: "My Section",
63
+ description: "Displays my content",
64
+ dataEndpoint: "/my-plugin/api/data.json"
65
+ }
66
+ ];
67
+ }
68
+ }
69
+ ```
70
+
71
+ ## Built-in Content
72
+
73
+ ### Sections
74
+ - **Hero** — Author intro with avatar, name, and bio
75
+ - **Recent Posts** — Latest posts from your site
76
+ - **Custom HTML** — Freeform content block
77
+
78
+ ### Widgets
79
+ - **Author Card** — h-card with author info
80
+ - **Recent Posts** — Latest posts sidebar
81
+ - **Categories** — Tag cloud
82
+ - **Search** — Site search box
83
+ - **Social Activity** — Bluesky/Mastodon feeds
84
+ - **GitHub Repos** — Featured repositories
85
+ - **Funkwhale** — Listening activity
86
+ - **Blogroll** — Blog recommendations
87
+
88
+ ## Integration
89
+
90
+ ### With indiekit-eleventy-theme
91
+
92
+ The theme reads `homepage.json` (generated by this plugin) to render the configured homepage layout. No additional theme configuration is needed.
93
+
94
+ ### With indiekit-endpoint-cv
95
+
96
+ The CV plugin registers 5 homepage sections: experience, skills, education, projects, and interests. Install both plugins to build a CV-style homepage.
97
+
98
+ ### With other plugins
99
+
100
+ Any plugin that exports `homepageSections` or `homepageWidgets` is automatically discovered:
101
+ - `@rmdes/indiekit-endpoint-github` — GitHub activity
102
+ - `@rmdes/indiekit-endpoint-funkwhale` — Funkwhale listening
103
+ - `@rmdes/indiekit-endpoint-lastfm` — Last.fm scrobbles
104
+ - `@rmdes/indiekit-endpoint-blogroll` — Blogroll
105
+ - `@rmdes/indiekit-endpoint-podroll` — Podcast roll
106
+ - `@rmdes/indiekit-endpoint-youtube` — YouTube videos
107
+
108
+ ## API Endpoints
109
+
110
+ | Endpoint | Auth | Description |
111
+ |----------|------|-------------|
112
+ | `GET /homepage/api/config.json` | Public | Current homepage configuration |
113
+ | `GET /homepage/api/sections` | Protected | List all available sections |
114
+ | `GET /homepage/api/widgets` | Protected | List all available widgets |
115
+
116
+ ## License
117
+
118
+ MIT
@@ -0,0 +1,65 @@
1
+ {
2
+ "homepageBuilder": {
3
+ "title": "Homepage-Builder",
4
+ "description": "Konfigurieren Sie das Layout Ihrer Homepage, Abschnitte, Sidebar-Widgets und Fußzeile.",
5
+ "presets": {
6
+ "title": "Schnellstart",
7
+ "description": "Wählen Sie eine Vorlage, um Ihre Homepage schnell zu konfigurieren. Sie können sie unten weiter anpassen.",
8
+ "apply": "Anwenden",
9
+ "active": "Aktiv",
10
+ "custom": "Benutzerdefiniert",
11
+ "customDescription": "Ihr eigenes angepasstes Layout"
12
+ },
13
+ "saved": "Konfiguration erfolgreich gespeichert. Aktualisieren Sie Ihre Homepage, um die Änderungen zu sehen.",
14
+ "save": "Konfiguration speichern",
15
+ "layout": {
16
+ "title": "Layout",
17
+ "singleColumn": "Einzelne Spalte",
18
+ "twoColumn": "Zwei Spalten mit Sidebar",
19
+ "fullWidthHero": "Volle Breite Hero + Raster"
20
+ },
21
+ "hero": {
22
+ "title": "Hero-Bereich",
23
+ "enabled": "Hero-Bereich mit Autoreninfo anzeigen",
24
+ "showSocial": "Soziale Links im Hero anzeigen"
25
+ },
26
+ "sections": {
27
+ "title": "Inhaltsbereiche",
28
+ "description": "Fügen Sie Abschnitte hinzu und ordnen Sie sie im Hauptinhaltsbereich an.",
29
+ "add": "Abschnitt hinzufügen",
30
+ "empty": "Keine Abschnitte konfiguriert. Fügen Sie Abschnitte aus der Auswahl unten hinzu."
31
+ },
32
+ "sidebar": {
33
+ "title": "Sidebar-Widgets",
34
+ "description": "Konfigurieren Sie Widgets, die in der Sidebar erscheinen (nur mit zweispaltigem Layout sichtbar).",
35
+ "add": "Widget hinzufügen",
36
+ "empty": "Keine Widgets konfiguriert. Fügen Sie Widgets aus der Auswahl unten hinzu."
37
+ },
38
+ "blogListingSidebar": {
39
+ "title": "Blog-Listen-Sidebar",
40
+ "description": "Konfigurieren Sie Widgets für die Sidebar auf Blog-Listenseiten (/blog/, /notes/, /articles/...). Leer lassen für Standard-Widgets.",
41
+ "add": "Widget hinzufügen",
42
+ "empty": "Keine Widgets konfiguriert — Standard-Sidebar wird verwendet."
43
+ },
44
+ "blogPostSidebar": {
45
+ "title": "Blog-Beitrags-Sidebar",
46
+ "description": "Konfigurieren Sie Widgets für die Sidebar auf einzelnen Beitragsseiten. Leer lassen für Standard-Widgets.",
47
+ "add": "Widget hinzufügen",
48
+ "empty": "Keine Widgets konfiguriert — Standard-Sidebar wird verwendet."
49
+ },
50
+ "footer": {
51
+ "title": "Fußzeile (3-spaltig)",
52
+ "description": "Ein responsiver 3-spaltiger Bereich unterhalb des Hauptinhalts — fügen Sie bis zu 3 Blöcke hinzu (einen pro Spalte). Ideal für Webrings, Links oder benutzerdefinierten Inhalt.",
53
+ "add": "Fußzeilen-Spalte hinzufügen",
54
+ "empty": "Keine Fußzeilen-Spalten konfiguriert.",
55
+ "full": "Alle 3 Fußzeilen-Spalten sind gefüllt."
56
+ },
57
+ "customContent": {
58
+ "editTitle": "Benutzerdefinierten Inhalt bearbeiten",
59
+ "titleLabel": "Titel (optional)",
60
+ "contentLabel": "Inhalt (HTML oder Text)",
61
+ "save": "Anwenden",
62
+ "cancel": "Abbrechen"
63
+ }
64
+ }
65
+ }
@@ -0,0 +1,65 @@
1
+ {
2
+ "homepageBuilder": {
3
+ "title": "Constructor de página de inicio",
4
+ "description": "Configura el diseño de tu página de inicio, secciones, widgets de la barra lateral y pie de página.",
5
+ "presets": {
6
+ "title": "Inicio rápido",
7
+ "description": "Elige una plantilla para configurar rápidamente tu página de inicio. Puedes personalizarla más abajo.",
8
+ "apply": "Aplicar",
9
+ "active": "Activo",
10
+ "custom": "Personalizado",
11
+ "customDescription": "Tu propio diseño personalizado"
12
+ },
13
+ "saved": "Configuración guardada correctamente. Actualiza tu página de inicio para ver los cambios.",
14
+ "save": "Guardar configuración",
15
+ "layout": {
16
+ "title": "Diseño",
17
+ "singleColumn": "Una columna",
18
+ "twoColumn": "Dos columnas con barra lateral",
19
+ "fullWidthHero": "Hero a ancho completo + Cuadrícula"
20
+ },
21
+ "hero": {
22
+ "title": "Sección Hero",
23
+ "enabled": "Mostrar sección hero con información del autor",
24
+ "showSocial": "Mostrar enlaces sociales en hero"
25
+ },
26
+ "sections": {
27
+ "title": "Secciones de contenido",
28
+ "description": "Agrega y organiza secciones que aparecen en el área de contenido principal.",
29
+ "add": "Agregar sección",
30
+ "empty": "No hay secciones configuradas. Agrega secciones desde el selector a continuación."
31
+ },
32
+ "sidebar": {
33
+ "title": "Widgets de la barra lateral",
34
+ "description": "Configura widgets que aparecen en la barra lateral (solo visible con diseño de dos columnas).",
35
+ "add": "Agregar widget",
36
+ "empty": "No hay widgets configurados. Agrega widgets desde el selector a continuación."
37
+ },
38
+ "blogListingSidebar": {
39
+ "title": "Barra lateral del listado de blog",
40
+ "description": "Configura widgets que aparecen en la barra lateral de las páginas de listado del blog (/blog/, /notes/, /articles/...). Deja vacío para usar widgets predeterminados.",
41
+ "add": "Agregar widget",
42
+ "empty": "No hay widgets configurados — usando barra lateral predeterminada."
43
+ },
44
+ "blogPostSidebar": {
45
+ "title": "Barra lateral de entrada de blog",
46
+ "description": "Configura widgets que aparecen en la barra lateral en páginas de entradas individuales. Deja vacío para usar widgets predeterminados.",
47
+ "add": "Agregar widget",
48
+ "empty": "No hay widgets configurados — usando barra lateral predeterminada."
49
+ },
50
+ "footer": {
51
+ "title": "Pie de página (3 columnas)",
52
+ "description": "Un área adaptable de 3 columnas debajo del contenido principal — agrega hasta 3 bloques (uno por columna). Ideal para webrings, enlaces o contenido personalizado.",
53
+ "add": "Agregar columna de pie",
54
+ "empty": "No hay columnas de pie configuradas.",
55
+ "full": "Las 3 columnas de pie están llenas."
56
+ },
57
+ "customContent": {
58
+ "editTitle": "Editar contenido personalizado",
59
+ "titleLabel": "Título (opcional)",
60
+ "contentLabel": "Contenido (HTML o texto)",
61
+ "save": "Aplicar",
62
+ "cancel": "Cancelar"
63
+ }
64
+ }
65
+ }
@@ -0,0 +1,65 @@
1
+ {
2
+ "homepageBuilder": {
3
+ "title": "Constructor de página de inicio",
4
+ "description": "Configure el diseño de su página de inicio, secciones, widgets de la barra lateral y pie de página.",
5
+ "presets": {
6
+ "title": "Inicio rápido",
7
+ "description": "Elija una plantilla para configurar rápidamente su página de inicio. Puede personalizarla más abajo.",
8
+ "apply": "Aplicar",
9
+ "active": "Activo",
10
+ "custom": "Personalizado",
11
+ "customDescription": "Su propio diseño personalizado"
12
+ },
13
+ "saved": "Configuración guardada correctamente. Actualice su página de inicio para ver los cambios.",
14
+ "save": "Guardar configuración",
15
+ "layout": {
16
+ "title": "Diseño",
17
+ "singleColumn": "Una columna",
18
+ "twoColumn": "Dos columnas con barra lateral",
19
+ "fullWidthHero": "Hero a ancho completo + Cuadrícula"
20
+ },
21
+ "hero": {
22
+ "title": "Sección Hero",
23
+ "enabled": "Mostrar sección hero con información del autor",
24
+ "showSocial": "Mostrar enlaces sociales en hero"
25
+ },
26
+ "sections": {
27
+ "title": "Secciones de contenido",
28
+ "description": "Añada y organice secciones que aparecen en el área de contenido principal.",
29
+ "add": "Añadir sección",
30
+ "empty": "No hay secciones configuradas. Añada secciones desde el selector a continuación."
31
+ },
32
+ "sidebar": {
33
+ "title": "Widgets de la barra lateral",
34
+ "description": "Configure widgets que aparecen en la barra lateral (solo visible con diseño de dos columnas).",
35
+ "add": "Añadir widget",
36
+ "empty": "No hay widgets configurados. Añada widgets desde el selector a continuación."
37
+ },
38
+ "blogListingSidebar": {
39
+ "title": "Barra lateral del listado de blog",
40
+ "description": "Configure widgets que aparecen en la barra lateral de las páginas de listado del blog (/blog/, /notes/, /articles/...). Deje vacío para usar widgets predeterminados.",
41
+ "add": "Añadir widget",
42
+ "empty": "No hay widgets configurados — usando barra lateral predeterminada."
43
+ },
44
+ "blogPostSidebar": {
45
+ "title": "Barra lateral de entrada de blog",
46
+ "description": "Configure widgets que aparecen en la barra lateral en páginas de entradas individuales. Deje vacío para usar widgets predeterminados.",
47
+ "add": "Añadir widget",
48
+ "empty": "No hay widgets configurados — usando barra lateral predeterminada."
49
+ },
50
+ "footer": {
51
+ "title": "Pie de página (3 columnas)",
52
+ "description": "Un área adaptable de 3 columnas debajo del contenido principal — añada hasta 3 bloques (uno por columna). Ideal para webrings, enlaces o contenido personalizado.",
53
+ "add": "Añadir columna de pie",
54
+ "empty": "No hay columnas de pie configuradas.",
55
+ "full": "Las 3 columnas de pie están llenas."
56
+ },
57
+ "customContent": {
58
+ "editTitle": "Editar contenido personalizado",
59
+ "titleLabel": "Título (opcional)",
60
+ "contentLabel": "Contenido (HTML o texto)",
61
+ "save": "Aplicar",
62
+ "cancel": "Cancelar"
63
+ }
64
+ }
65
+ }
@@ -0,0 +1,65 @@
1
+ {
2
+ "homepageBuilder": {
3
+ "title": "Constructeur de page d'accueil",
4
+ "description": "Configurez la mise en page de votre page d'accueil, les sections, les widgets de la barre latérale et le pied de page.",
5
+ "presets": {
6
+ "title": "Démarrage rapide",
7
+ "description": "Choisissez un modèle pour configurer rapidement votre page d'accueil. Vous pouvez la personnaliser davantage ci-dessous.",
8
+ "apply": "Appliquer",
9
+ "active": "Actif",
10
+ "custom": "Personnalisé",
11
+ "customDescription": "Votre propre mise en page personnalisée"
12
+ },
13
+ "saved": "Configuration enregistrée avec succès. Actualisez votre page d'accueil pour voir les modifications.",
14
+ "save": "Enregistrer la configuration",
15
+ "layout": {
16
+ "title": "Mise en page",
17
+ "singleColumn": "Colonne unique",
18
+ "twoColumn": "Deux colonnes avec barre latérale",
19
+ "fullWidthHero": "Hero pleine largeur + Grille"
20
+ },
21
+ "hero": {
22
+ "title": "Section Hero",
23
+ "enabled": "Afficher la section hero avec les informations sur l'auteur",
24
+ "showSocial": "Afficher les liens sociaux dans le hero"
25
+ },
26
+ "sections": {
27
+ "title": "Sections de contenu",
28
+ "description": "Ajoutez et organisez les sections qui apparaissent dans la zone de contenu principal.",
29
+ "add": "Ajouter une section",
30
+ "empty": "Aucune section configurée. Ajoutez des sections depuis le sélecteur ci-dessous."
31
+ },
32
+ "sidebar": {
33
+ "title": "Widgets de la barre latérale",
34
+ "description": "Configurez les widgets qui apparaissent dans la barre latérale (visible uniquement avec la mise en page à deux colonnes).",
35
+ "add": "Ajouter un widget",
36
+ "empty": "Aucun widget configuré. Ajoutez des widgets depuis le sélecteur ci-dessous."
37
+ },
38
+ "blogListingSidebar": {
39
+ "title": "Barre latérale des listes de blog",
40
+ "description": "Configurez les widgets qui apparaissent dans la barre latérale des pages de listes de blog (/blog/, /notes/, /articles/...). Laissez vide pour utiliser les widgets par défaut.",
41
+ "add": "Ajouter un widget",
42
+ "empty": "Aucun widget configuré — utilisation de la barre latérale par défaut."
43
+ },
44
+ "blogPostSidebar": {
45
+ "title": "Barre latérale des articles",
46
+ "description": "Configurez les widgets qui apparaissent dans la barre latérale des pages d'articles individuels. Laissez vide pour utiliser les widgets par défaut.",
47
+ "add": "Ajouter un widget",
48
+ "empty": "Aucun widget configuré — utilisation de la barre latérale par défaut."
49
+ },
50
+ "footer": {
51
+ "title": "Pied de page (3 colonnes)",
52
+ "description": "Une zone responsive à 3 colonnes sous le contenu principal — ajoutez jusqu'à 3 blocs (un par colonne). Idéal pour les webrings, liens ou contenu personnalisé.",
53
+ "add": "Ajouter une colonne de pied de page",
54
+ "empty": "Aucune colonne de pied de page configurée.",
55
+ "full": "Les 3 colonnes de pied de page sont remplies."
56
+ },
57
+ "customContent": {
58
+ "editTitle": "Modifier le contenu personnalisé",
59
+ "titleLabel": "Titre (facultatif)",
60
+ "contentLabel": "Contenu (HTML ou texte)",
61
+ "save": "Appliquer",
62
+ "cancel": "Annuler"
63
+ }
64
+ }
65
+ }
@@ -0,0 +1,65 @@
1
+ {
2
+ "homepageBuilder": {
3
+ "title": "होमपेज बिल्डर",
4
+ "description": "अपने होमपेज का लेआउट, सेक्शन, साइडबार विजेट और फुटर कॉन्फ़िगर करें।",
5
+ "presets": {
6
+ "title": "त्वरित शुरुआत",
7
+ "description": "अपने होमपेज को तुरंत कॉन्फ़िगर करने के लिए एक प्रीसेट चुनें। आप इसे नीचे और अनुकूलित कर सकते हैं।",
8
+ "apply": "लागू करें",
9
+ "active": "सक्रिय",
10
+ "custom": "कस्टम",
11
+ "customDescription": "आपका अपना अनुकूलित लेआउट"
12
+ },
13
+ "saved": "कॉन्फ़िगरेशन सफलतापूर्वक सहेजा गया। परिवर्तन देखने के लिए अपना होमपेज रीफ्रेश करें।",
14
+ "save": "कॉन्फ़िगरेशन सहेजें",
15
+ "layout": {
16
+ "title": "लेआउट",
17
+ "singleColumn": "एकल कॉलम",
18
+ "twoColumn": "साइडबार के साथ दो कॉलम",
19
+ "fullWidthHero": "पूर्ण-चौड़ाई Hero + ग्रिड"
20
+ },
21
+ "hero": {
22
+ "title": "Hero सेक्शन",
23
+ "enabled": "लेखक जानकारी के साथ hero सेक्शन दिखाएं",
24
+ "showSocial": "Hero में सोशल लिंक दिखाएं"
25
+ },
26
+ "sections": {
27
+ "title": "सामग्री सेक्शन",
28
+ "description": "मुख्य सामग्री क्षेत्र में दिखाई देने वाले सेक्शन जोड़ें और व्यवस्थित करें।",
29
+ "add": "सेक्शन जोड़ें",
30
+ "empty": "कोई सेक्शन कॉन्फ़िगर नहीं किए गए। नीचे पिकर से सेक्शन जोड़ें।"
31
+ },
32
+ "sidebar": {
33
+ "title": "साइडबार विजेट",
34
+ "description": "साइडबार में दिखाई देने वाले विजेट कॉन्फ़िगर करें (केवल दो-कॉलम लेआउट के साथ दृश्यमान)।",
35
+ "add": "विजेट जोड़ें",
36
+ "empty": "कोई विजेट कॉन्फ़िगर नहीं किए गए। नीचे पिकर से विजेट जोड़ें।"
37
+ },
38
+ "blogListingSidebar": {
39
+ "title": "ब्लॉग लिस्टिंग साइडबार",
40
+ "description": "ब्लॉग लिस्टिंग पेज (/blog/, /notes/, /articles/...) पर साइडबार में दिखाई देने वाले विजेट कॉन्फ़िगर करें। डिफ़ॉल्ट विजेट उपयोग करने के लिए खाली छोड़ें।",
41
+ "add": "विजेट जोड़ें",
42
+ "empty": "कोई विजेट कॉन्फ़िगर नहीं किए गए — डिफ़ॉल्ट साइडबार उपयोग किया जा रहा है।"
43
+ },
44
+ "blogPostSidebar": {
45
+ "title": "ब्लॉग पोस्ट साइडबार",
46
+ "description": "व्यक्तिगत पोस्ट पेज पर साइडबार में दिखाई देने वाले विजेट कॉन्फ़िगर करें। डिफ़ॉल्ट विजेट उपयोग करने के लिए खाली छोड़ें।",
47
+ "add": "विजेट जोड़ें",
48
+ "empty": "कोई विजेट कॉन्फ़िगर नहीं किए गए — डिफ़ॉल्ट साइडबार उपयोग किया जा रहा है।"
49
+ },
50
+ "footer": {
51
+ "title": "फुटर (3-कॉलम)",
52
+ "description": "मुख्य सामग्री के नीचे एक रेस्पॉन्सिव 3-कॉलम क्षेत्र — 3 ब्लॉक तक जोड़ें (प्रति कॉलम एक)। webrings, लिंक या कस्टम सामग्री के लिए आदर्श।",
53
+ "add": "फुटर कॉलम जोड़ें",
54
+ "empty": "कोई फुटर कॉलम कॉन्फ़िगर नहीं किए गए।",
55
+ "full": "सभी 3 फुटर कॉलम भरे हुए हैं।"
56
+ },
57
+ "customContent": {
58
+ "editTitle": "कस्टम सामग्री संपादित करें",
59
+ "titleLabel": "शीर्षक (वैकल्पिक)",
60
+ "contentLabel": "सामग्री (HTML या टेक्स्ट)",
61
+ "save": "लागू करें",
62
+ "cancel": "रद्द करें"
63
+ }
64
+ }
65
+ }
@@ -0,0 +1,65 @@
1
+ {
2
+ "homepageBuilder": {
3
+ "title": "Pembuat Beranda",
4
+ "description": "Konfigurasi tata letak beranda, bagian, widget sidebar, dan footer Anda.",
5
+ "presets": {
6
+ "title": "Mulai Cepat",
7
+ "description": "Pilih preset untuk mengkonfigurasi beranda Anda dengan cepat. Anda dapat menyesuaikannya lebih lanjut di bawah.",
8
+ "apply": "Terapkan",
9
+ "active": "Aktif",
10
+ "custom": "Kustom",
11
+ "customDescription": "Tata letak kustom Anda sendiri"
12
+ },
13
+ "saved": "Konfigurasi berhasil disimpan. Refresh beranda Anda untuk melihat perubahan.",
14
+ "save": "Simpan Konfigurasi",
15
+ "layout": {
16
+ "title": "Tata Letak",
17
+ "singleColumn": "Kolom Tunggal",
18
+ "twoColumn": "Dua Kolom dengan Sidebar",
19
+ "fullWidthHero": "Hero Lebar Penuh + Grid"
20
+ },
21
+ "hero": {
22
+ "title": "Bagian Hero",
23
+ "enabled": "Tampilkan bagian hero dengan info penulis",
24
+ "showSocial": "Tampilkan tautan sosial di hero"
25
+ },
26
+ "sections": {
27
+ "title": "Bagian Konten",
28
+ "description": "Tambahkan dan atur bagian yang muncul di area konten utama.",
29
+ "add": "Tambah Bagian",
30
+ "empty": "Tidak ada bagian yang dikonfigurasi. Tambahkan bagian dari pemilih di bawah."
31
+ },
32
+ "sidebar": {
33
+ "title": "Widget Sidebar",
34
+ "description": "Konfigurasi widget yang muncul di sidebar (hanya terlihat dengan tata letak dua kolom).",
35
+ "add": "Tambah Widget",
36
+ "empty": "Tidak ada widget yang dikonfigurasi. Tambahkan widget dari pemilih di bawah."
37
+ },
38
+ "blogListingSidebar": {
39
+ "title": "Sidebar Daftar Blog",
40
+ "description": "Konfigurasi widget yang muncul di sidebar pada halaman daftar blog (/blog/, /notes/, /articles/...). Biarkan kosong untuk menggunakan widget default.",
41
+ "add": "Tambah Widget",
42
+ "empty": "Tidak ada widget yang dikonfigurasi — menggunakan sidebar default."
43
+ },
44
+ "blogPostSidebar": {
45
+ "title": "Sidebar Posting Blog",
46
+ "description": "Konfigurasi widget yang muncul di sidebar pada halaman posting individual. Biarkan kosong untuk menggunakan widget default.",
47
+ "add": "Tambah Widget",
48
+ "empty": "Tidak ada widget yang dikonfigurasi — menggunakan sidebar default."
49
+ },
50
+ "footer": {
51
+ "title": "Footer (3-kolom)",
52
+ "description": "Area responsif 3-kolom di bawah konten utama — tambahkan hingga 3 blok (satu per kolom). Ideal untuk webring, tautan, atau konten kustom.",
53
+ "add": "Tambah Kolom Footer",
54
+ "empty": "Tidak ada kolom footer yang dikonfigurasi.",
55
+ "full": "Semua 3 kolom footer telah terisi."
56
+ },
57
+ "customContent": {
58
+ "editTitle": "Edit Konten Kustom",
59
+ "titleLabel": "Judul (opsional)",
60
+ "contentLabel": "Konten (HTML atau teks)",
61
+ "save": "Terapkan",
62
+ "cancel": "Batal"
63
+ }
64
+ }
65
+ }
@@ -0,0 +1,65 @@
1
+ {
2
+ "homepageBuilder": {
3
+ "title": "Costruttore Homepage",
4
+ "description": "Configura il layout della tua homepage, sezioni, widget della barra laterale e footer.",
5
+ "presets": {
6
+ "title": "Avvio rapido",
7
+ "description": "Scegli un preset per configurare rapidamente la tua homepage. Puoi personalizzarla ulteriormente di seguito.",
8
+ "apply": "Applica",
9
+ "active": "Attivo",
10
+ "custom": "Personalizzato",
11
+ "customDescription": "Il tuo layout personalizzato"
12
+ },
13
+ "saved": "Configurazione salvata con successo. Aggiorna la tua homepage per vedere le modifiche.",
14
+ "save": "Salva Configurazione",
15
+ "layout": {
16
+ "title": "Layout",
17
+ "singleColumn": "Colonna Singola",
18
+ "twoColumn": "Due Colonne con Barra Laterale",
19
+ "fullWidthHero": "Hero a Larghezza Intera + Griglia"
20
+ },
21
+ "hero": {
22
+ "title": "Sezione Hero",
23
+ "enabled": "Mostra sezione hero con info autore",
24
+ "showSocial": "Mostra link social nell'hero"
25
+ },
26
+ "sections": {
27
+ "title": "Sezioni Contenuto",
28
+ "description": "Aggiungi e organizza le sezioni che appaiono nell'area del contenuto principale.",
29
+ "add": "Aggiungi Sezione",
30
+ "empty": "Nessuna sezione configurata. Aggiungi sezioni dal selettore qui sotto."
31
+ },
32
+ "sidebar": {
33
+ "title": "Widget Barra Laterale",
34
+ "description": "Configura i widget che appaiono nella barra laterale (visibili solo con layout a due colonne).",
35
+ "add": "Aggiungi Widget",
36
+ "empty": "Nessun widget configurato. Aggiungi widget dal selettore qui sotto."
37
+ },
38
+ "blogListingSidebar": {
39
+ "title": "Barra Laterale Elenco Blog",
40
+ "description": "Configura i widget che appaiono nella barra laterale nelle pagine di elenco blog (/blog/, /notes/, /articles/...). Lascia vuoto per usare i widget predefiniti.",
41
+ "add": "Aggiungi Widget",
42
+ "empty": "Nessun widget configurato — usando la barra laterale predefinita."
43
+ },
44
+ "blogPostSidebar": {
45
+ "title": "Barra Laterale Post Blog",
46
+ "description": "Configura i widget che appaiono nella barra laterale nelle pagine dei singoli post. Lascia vuoto per usare i widget predefiniti.",
47
+ "add": "Aggiungi Widget",
48
+ "empty": "Nessun widget configurato — usando la barra laterale predefinita."
49
+ },
50
+ "footer": {
51
+ "title": "Footer (3 colonne)",
52
+ "description": "Un'area responsive a 3 colonne sotto il contenuto principale — aggiungi fino a 3 blocchi (uno per colonna). Ideale per webring, link o contenuto personalizzato.",
53
+ "add": "Aggiungi Colonna Footer",
54
+ "empty": "Nessuna colonna footer configurata.",
55
+ "full": "Tutte e 3 le colonne footer sono piene."
56
+ },
57
+ "customContent": {
58
+ "editTitle": "Modifica Contenuto Personalizzato",
59
+ "titleLabel": "Titolo (opzionale)",
60
+ "contentLabel": "Contenuto (HTML o testo)",
61
+ "save": "Applica",
62
+ "cancel": "Annulla"
63
+ }
64
+ }
65
+ }
@@ -0,0 +1,65 @@
1
+ {
2
+ "homepageBuilder": {
3
+ "title": "Homepage Bouwer",
4
+ "description": "Configureer de lay-out van je homepage, secties, zijbalk widgets en voettekst.",
5
+ "presets": {
6
+ "title": "Snelstart",
7
+ "description": "Kies een voorinstelling om snel je homepage te configureren. Je kunt deze hieronder verder aanpassen.",
8
+ "apply": "Toepassen",
9
+ "active": "Actief",
10
+ "custom": "Aangepast",
11
+ "customDescription": "Je eigen aangepaste lay-out"
12
+ },
13
+ "saved": "Configuratie succesvol opgeslagen. Ververs je homepage om de wijzigingen te zien.",
14
+ "save": "Configuratie Opslaan",
15
+ "layout": {
16
+ "title": "Lay-out",
17
+ "singleColumn": "Enkele Kolom",
18
+ "twoColumn": "Twee Kolommen met Zijbalk",
19
+ "fullWidthHero": "Volledige Breedte Hero + Raster"
20
+ },
21
+ "hero": {
22
+ "title": "Hero Sectie",
23
+ "enabled": "Toon hero sectie met auteur info",
24
+ "showSocial": "Toon sociale links in hero"
25
+ },
26
+ "sections": {
27
+ "title": "Inhoud Secties",
28
+ "description": "Voeg secties toe en rangschik ze in het hoofdinhoudsgebied.",
29
+ "add": "Sectie Toevoegen",
30
+ "empty": "Geen secties geconfigureerd. Voeg secties toe vanuit de kiezer hieronder."
31
+ },
32
+ "sidebar": {
33
+ "title": "Zijbalk Widgets",
34
+ "description": "Configureer widgets die in de zijbalk verschijnen (alleen zichtbaar met twee-kolommen lay-out).",
35
+ "add": "Widget Toevoegen",
36
+ "empty": "Geen widgets geconfigureerd. Voeg widgets toe vanuit de kiezer hieronder."
37
+ },
38
+ "blogListingSidebar": {
39
+ "title": "Blog Overzicht Zijbalk",
40
+ "description": "Configureer widgets die in de zijbalk verschijnen op blog overzichtspagina's (/blog/, /notes/, /articles/...). Laat leeg om standaard widgets te gebruiken.",
41
+ "add": "Widget Toevoegen",
42
+ "empty": "Geen widgets geconfigureerd — standaard zijbalk wordt gebruikt."
43
+ },
44
+ "blogPostSidebar": {
45
+ "title": "Blog Bericht Zijbalk",
46
+ "description": "Configureer widgets die in de zijbalk verschijnen op individuele berichtpagina's. Laat leeg om standaard widgets te gebruiken.",
47
+ "add": "Widget Toevoegen",
48
+ "empty": "Geen widgets geconfigureerd — standaard zijbalk wordt gebruikt."
49
+ },
50
+ "footer": {
51
+ "title": "Voettekst (3-koloms)",
52
+ "description": "Een responsive 3-koloms gebied onder de hoofdinhoud — voeg tot 3 blokken toe (één per kolom). Ideaal voor webrings, links of aangepaste inhoud.",
53
+ "add": "Voettekst Kolom Toevoegen",
54
+ "empty": "Geen voettekst kolommen geconfigureerd.",
55
+ "full": "Alle 3 voettekst kolommen zijn gevuld."
56
+ },
57
+ "customContent": {
58
+ "editTitle": "Aangepaste Inhoud Bewerken",
59
+ "titleLabel": "Titel (optioneel)",
60
+ "contentLabel": "Inhoud (HTML of tekst)",
61
+ "save": "Toepassen",
62
+ "cancel": "Annuleren"
63
+ }
64
+ }
65
+ }
@@ -0,0 +1,65 @@
1
+ {
2
+ "homepageBuilder": {
3
+ "title": "Kreator Strony Głównej",
4
+ "description": "Skonfiguruj układ swojej strony głównej, sekcje, widgety paska bocznego i stopkę.",
5
+ "presets": {
6
+ "title": "Szybki Start",
7
+ "description": "Wybierz preset, aby szybko skonfigurować swoją stronę główną. Możesz ją dalej dostosować poniżej.",
8
+ "apply": "Zastosuj",
9
+ "active": "Aktywny",
10
+ "custom": "Niestandardowy",
11
+ "customDescription": "Twój własny dostosowany układ"
12
+ },
13
+ "saved": "Konfiguracja zapisana pomyślnie. Odśwież swoją stronę główną, aby zobaczyć zmiany.",
14
+ "save": "Zapisz Konfigurację",
15
+ "layout": {
16
+ "title": "Układ",
17
+ "singleColumn": "Jedna Kolumna",
18
+ "twoColumn": "Dwie Kolumny z Paskiem Bocznym",
19
+ "fullWidthHero": "Hero Pełnej Szerokości + Siatka"
20
+ },
21
+ "hero": {
22
+ "title": "Sekcja Hero",
23
+ "enabled": "Pokaż sekcję hero z informacjami o autorze",
24
+ "showSocial": "Pokaż linki społecznościowe w hero"
25
+ },
26
+ "sections": {
27
+ "title": "Sekcje Treści",
28
+ "description": "Dodaj i uporządkuj sekcje, które pojawiają się w głównym obszarze treści.",
29
+ "add": "Dodaj Sekcję",
30
+ "empty": "Brak skonfigurowanych sekcji. Dodaj sekcje z selektora poniżej."
31
+ },
32
+ "sidebar": {
33
+ "title": "Widgety Paska Bocznego",
34
+ "description": "Skonfiguruj widgety, które pojawiają się w pasku bocznym (widoczne tylko z układem dwóch kolumn).",
35
+ "add": "Dodaj Widget",
36
+ "empty": "Brak skonfigurowanych widgetów. Dodaj widgety z selektora poniżej."
37
+ },
38
+ "blogListingSidebar": {
39
+ "title": "Pasek Boczny Listy Bloga",
40
+ "description": "Skonfiguruj widgety pojawiające się w pasku bocznym na stronach list bloga (/blog/, /notes/, /articles/...). Pozostaw puste, aby użyć domyślnych widgetów.",
41
+ "add": "Dodaj Widget",
42
+ "empty": "Brak skonfigurowanych widgetów — używanie domyślnego paska bocznego."
43
+ },
44
+ "blogPostSidebar": {
45
+ "title": "Pasek Boczny Wpisu Bloga",
46
+ "description": "Skonfiguruj widgety pojawiające się w pasku bocznym na stronach pojedynczych wpisów. Pozostaw puste, aby użyć domyślnych widgetów.",
47
+ "add": "Dodaj Widget",
48
+ "empty": "Brak skonfigurowanych widgetów — używanie domyślnego paska bocznego."
49
+ },
50
+ "footer": {
51
+ "title": "Stopka (3-kolumnowa)",
52
+ "description": "Responsywny 3-kolumnowy obszar poniżej głównej treści — dodaj do 3 bloków (jeden na kolumnę). Idealny dla webringów, linków lub niestandardowej treści.",
53
+ "add": "Dodaj Kolumnę Stopki",
54
+ "empty": "Brak skonfigurowanych kolumn stopki.",
55
+ "full": "Wszystkie 3 kolumny stopki są wypełnione."
56
+ },
57
+ "customContent": {
58
+ "editTitle": "Edytuj Niestandardową Treść",
59
+ "titleLabel": "Tytuł (opcjonalny)",
60
+ "contentLabel": "Treść (HTML lub tekst)",
61
+ "save": "Zastosuj",
62
+ "cancel": "Anuluj"
63
+ }
64
+ }
65
+ }
@@ -0,0 +1,65 @@
1
+ {
2
+ "homepageBuilder": {
3
+ "title": "Construtor de Página Inicial",
4
+ "description": "Configure o layout da sua página inicial, seções, widgets da barra lateral e rodapé.",
5
+ "presets": {
6
+ "title": "Início Rápido",
7
+ "description": "Escolha um preset para configurar rapidamente sua página inicial. Você pode personalizá-la mais abaixo.",
8
+ "apply": "Aplicar",
9
+ "active": "Ativo",
10
+ "custom": "Personalizado",
11
+ "customDescription": "Seu próprio layout personalizado"
12
+ },
13
+ "saved": "Configuração salva com sucesso. Atualize sua página inicial para ver as alterações.",
14
+ "save": "Salvar Configuração",
15
+ "layout": {
16
+ "title": "Layout",
17
+ "singleColumn": "Coluna Única",
18
+ "twoColumn": "Duas Colunas com Barra Lateral",
19
+ "fullWidthHero": "Hero Largura Total + Grade"
20
+ },
21
+ "hero": {
22
+ "title": "Seção Hero",
23
+ "enabled": "Mostrar seção hero com informações do autor",
24
+ "showSocial": "Mostrar links sociais no hero"
25
+ },
26
+ "sections": {
27
+ "title": "Seções de Conteúdo",
28
+ "description": "Adicione e organize seções que aparecem na área de conteúdo principal.",
29
+ "add": "Adicionar Seção",
30
+ "empty": "Nenhuma seção configurada. Adicione seções do seletor abaixo."
31
+ },
32
+ "sidebar": {
33
+ "title": "Widgets da Barra Lateral",
34
+ "description": "Configure widgets que aparecem na barra lateral (visível apenas com layout de duas colunas).",
35
+ "add": "Adicionar Widget",
36
+ "empty": "Nenhum widget configurado. Adicione widgets do seletor abaixo."
37
+ },
38
+ "blogListingSidebar": {
39
+ "title": "Barra Lateral de Listagem de Blog",
40
+ "description": "Configure widgets que aparecem na barra lateral nas páginas de listagem de blog (/blog/, /notes/, /articles/...). Deixe vazio para usar widgets padrão.",
41
+ "add": "Adicionar Widget",
42
+ "empty": "Nenhum widget configurado — usando barra lateral padrão."
43
+ },
44
+ "blogPostSidebar": {
45
+ "title": "Barra Lateral de Post de Blog",
46
+ "description": "Configure widgets que aparecem na barra lateral nas páginas de posts individuais. Deixe vazio para usar widgets padrão.",
47
+ "add": "Adicionar Widget",
48
+ "empty": "Nenhum widget configurado — usando barra lateral padrão."
49
+ },
50
+ "footer": {
51
+ "title": "Rodapé (3 colunas)",
52
+ "description": "Uma área responsiva de 3 colunas abaixo do conteúdo principal — adicione até 3 blocos (um por coluna). Ideal para webrings, links ou conteúdo personalizado.",
53
+ "add": "Adicionar Coluna de Rodapé",
54
+ "empty": "Nenhuma coluna de rodapé configurada.",
55
+ "full": "Todas as 3 colunas de rodapé estão preenchidas."
56
+ },
57
+ "customContent": {
58
+ "editTitle": "Editar Conteúdo Personalizado",
59
+ "titleLabel": "Título (opcional)",
60
+ "contentLabel": "Conteúdo (HTML ou texto)",
61
+ "save": "Aplicar",
62
+ "cancel": "Cancelar"
63
+ }
64
+ }
65
+ }
@@ -0,0 +1,65 @@
1
+ {
2
+ "homepageBuilder": {
3
+ "title": "Construtor de Página Inicial",
4
+ "description": "Configure o layout da sua página inicial, secções, widgets da barra lateral e rodapé.",
5
+ "presets": {
6
+ "title": "Início Rápido",
7
+ "description": "Escolha um preset para configurar rapidamente a sua página inicial. Pode personalizá-la mais abaixo.",
8
+ "apply": "Aplicar",
9
+ "active": "Ativo",
10
+ "custom": "Personalizado",
11
+ "customDescription": "O seu próprio layout personalizado"
12
+ },
13
+ "saved": "Configuração guardada com sucesso. Atualize a sua página inicial para ver as alterações.",
14
+ "save": "Guardar Configuração",
15
+ "layout": {
16
+ "title": "Layout",
17
+ "singleColumn": "Coluna Única",
18
+ "twoColumn": "Duas Colunas com Barra Lateral",
19
+ "fullWidthHero": "Hero Largura Total + Grelha"
20
+ },
21
+ "hero": {
22
+ "title": "Secção Hero",
23
+ "enabled": "Mostrar secção hero com informação do autor",
24
+ "showSocial": "Mostrar ligações sociais no hero"
25
+ },
26
+ "sections": {
27
+ "title": "Secções de Conteúdo",
28
+ "description": "Adicione e organize secções que aparecem na área de conteúdo principal.",
29
+ "add": "Adicionar Secção",
30
+ "empty": "Nenhuma secção configurada. Adicione secções a partir do seletor abaixo."
31
+ },
32
+ "sidebar": {
33
+ "title": "Widgets da Barra Lateral",
34
+ "description": "Configure widgets que aparecem na barra lateral (visível apenas com layout de duas colunas).",
35
+ "add": "Adicionar Widget",
36
+ "empty": "Nenhum widget configurado. Adicione widgets a partir do seletor abaixo."
37
+ },
38
+ "blogListingSidebar": {
39
+ "title": "Barra Lateral de Listagem de Blog",
40
+ "description": "Configure widgets que aparecem na barra lateral nas páginas de listagem de blog (/blog/, /notes/, /articles/...). Deixe vazio para usar widgets predefinidos.",
41
+ "add": "Adicionar Widget",
42
+ "empty": "Nenhum widget configurado — a usar barra lateral predefinida."
43
+ },
44
+ "blogPostSidebar": {
45
+ "title": "Barra Lateral de Publicação de Blog",
46
+ "description": "Configure widgets que aparecem na barra lateral nas páginas de publicações individuais. Deixe vazio para usar widgets predefinidos.",
47
+ "add": "Adicionar Widget",
48
+ "empty": "Nenhum widget configurado — a usar barra lateral predefinida."
49
+ },
50
+ "footer": {
51
+ "title": "Rodapé (3 colunas)",
52
+ "description": "Uma área responsiva de 3 colunas abaixo do conteúdo principal — adicione até 3 blocos (um por coluna). Ideal para webrings, ligações ou conteúdo personalizado.",
53
+ "add": "Adicionar Coluna de Rodapé",
54
+ "empty": "Nenhuma coluna de rodapé configurada.",
55
+ "full": "Todas as 3 colunas de rodapé estão preenchidas."
56
+ },
57
+ "customContent": {
58
+ "editTitle": "Editar Conteúdo Personalizado",
59
+ "titleLabel": "Título (opcional)",
60
+ "contentLabel": "Conteúdo (HTML ou texto)",
61
+ "save": "Aplicar",
62
+ "cancel": "Cancelar"
63
+ }
64
+ }
65
+ }
@@ -0,0 +1,65 @@
1
+ {
2
+ "homepageBuilder": {
3
+ "title": "Градитељ Почетне Стране",
4
+ "description": "Конфигуришите изглед ваше почетне стране, секције, виџете бочне траке и подножје.",
5
+ "presets": {
6
+ "title": "Брзи Почетак",
7
+ "description": "Изаберите preset да брзо конфигуришете вашу почетну страну. Можете је даље прилагодити испод.",
8
+ "apply": "Примени",
9
+ "active": "Активан",
10
+ "custom": "Прилагођен",
11
+ "customDescription": "Ваш сопствени прилагођени изглед"
12
+ },
13
+ "saved": "Конфигурација успешно сачувана. Освежите вашу почетну страну да видите промене.",
14
+ "save": "Сачувај Конфигурацију",
15
+ "layout": {
16
+ "title": "Изглед",
17
+ "singleColumn": "Једна Колона",
18
+ "twoColumn": "Две Колоне са Бочном Траком",
19
+ "fullWidthHero": "Hero Пуне Ширине + Мрежа"
20
+ },
21
+ "hero": {
22
+ "title": "Hero Секција",
23
+ "enabled": "Прикажи hero секцију са информацијама о аутору",
24
+ "showSocial": "Прикажи друштвене линкове у hero"
25
+ },
26
+ "sections": {
27
+ "title": "Секције Садржаја",
28
+ "description": "Додајте и организујте секције које се појављују у главном подручју садржаја.",
29
+ "add": "Додај Секцију",
30
+ "empty": "Нема конфигурисаних секција. Додајте секције из бирача испод."
31
+ },
32
+ "sidebar": {
33
+ "title": "Виџети Бочне Траке",
34
+ "description": "Конфигуришите виџете који се појављују у бочној траци (видљиво само са изгледом две колоне).",
35
+ "add": "Додај Виџет",
36
+ "empty": "Нема конфигурисаних виџета. Додајте виџете из бирача испод."
37
+ },
38
+ "blogListingSidebar": {
39
+ "title": "Бочна Трака Листе Блога",
40
+ "description": "Конфигуришите виџете који се појављују у бочној траци на страницама листе блога (/blog/, /notes/, /articles/...). Оставите празно да користите подразумеване виџете.",
41
+ "add": "Додај Виџет",
42
+ "empty": "Нема конфигурисаних виџета — користи се подразумевана бочна трака."
43
+ },
44
+ "blogPostSidebar": {
45
+ "title": "Бочна Трака Објаве Блога",
46
+ "description": "Конфигуришите виџете који се појављују у бочној траци на страницама појединачних објава. Оставите празно да користите подразумеване виџете.",
47
+ "add": "Додај Виџет",
48
+ "empty": "Нема конфигурисаних виџета — користи се подразумевана бочна трака."
49
+ },
50
+ "footer": {
51
+ "title": "Подножје (3-колонско)",
52
+ "description": "Респонзивно 3-колонско подручје испод главног садржаја — додајте до 3 блока (један по колони). Идеално за webrings, линкове или прилагођени садржај.",
53
+ "add": "Додај Колону Подножја",
54
+ "empty": "Нема конфигурисаних колона подножја.",
55
+ "full": "Све 3 колоне подножја су попуњене."
56
+ },
57
+ "customContent": {
58
+ "editTitle": "Уреди Прилагођени Садржај",
59
+ "titleLabel": "Наслов (опционо)",
60
+ "contentLabel": "Садржај (HTML или текст)",
61
+ "save": "Примени",
62
+ "cancel": "Откажи"
63
+ }
64
+ }
65
+ }
@@ -0,0 +1,65 @@
1
+ {
2
+ "homepageBuilder": {
3
+ "title": "Startsidebyggare",
4
+ "description": "Konfigurera din startsidas layout, sektioner, sidopanelswidgets och sidfot.",
5
+ "presets": {
6
+ "title": "Snabbstart",
7
+ "description": "Välj en förinställning för att snabbt konfigurera din startsida. Du kan anpassa den ytterligare nedan.",
8
+ "apply": "Tillämpa",
9
+ "active": "Aktiv",
10
+ "custom": "Anpassad",
11
+ "customDescription": "Din egen anpassade layout"
12
+ },
13
+ "saved": "Konfiguration sparad framgångsrikt. Uppdatera din startsida för att se ändringarna.",
14
+ "save": "Spara Konfiguration",
15
+ "layout": {
16
+ "title": "Layout",
17
+ "singleColumn": "Enkel Kolumn",
18
+ "twoColumn": "Två Kolumner med Sidopanel",
19
+ "fullWidthHero": "Hero i Full Bredd + Rutnät"
20
+ },
21
+ "hero": {
22
+ "title": "Hero-sektion",
23
+ "enabled": "Visa hero-sektion med författarinfo",
24
+ "showSocial": "Visa sociala länkar i hero"
25
+ },
26
+ "sections": {
27
+ "title": "Innehållssektioner",
28
+ "description": "Lägg till och arrangera sektioner som visas i huvudinnehållsområdet.",
29
+ "add": "Lägg till Sektion",
30
+ "empty": "Inga sektioner konfigurerade. Lägg till sektioner från väljaren nedan."
31
+ },
32
+ "sidebar": {
33
+ "title": "Sidopanelswidgets",
34
+ "description": "Konfigurera widgets som visas i sidopanelen (endast synliga med två-kolumners layout).",
35
+ "add": "Lägg till Widget",
36
+ "empty": "Inga widgets konfigurerade. Lägg till widgets från väljaren nedan."
37
+ },
38
+ "blogListingSidebar": {
39
+ "title": "Blogglistnings Sidopanel",
40
+ "description": "Konfigurera widgets som visas i sidopanelen på blogglistningssidor (/blog/, /notes/, /articles/...). Lämna tom för att använda standardwidgets.",
41
+ "add": "Lägg till Widget",
42
+ "empty": "Inga widgets konfigurerade — använder standardsidopanel."
43
+ },
44
+ "blogPostSidebar": {
45
+ "title": "Blogginläggs Sidopanel",
46
+ "description": "Konfigurera widgets som visas i sidopanelen på enskilda inläggssidor. Lämna tom för att använda standardwidgets.",
47
+ "add": "Lägg till Widget",
48
+ "empty": "Inga widgets konfigurerade — använder standardsidopanel."
49
+ },
50
+ "footer": {
51
+ "title": "Sidfot (3-kolumners)",
52
+ "description": "Ett responsivt 3-kolumners område under huvudinnehållet — lägg till upp till 3 block (ett per kolumn). Perfekt för webrings, länkar eller anpassat innehåll.",
53
+ "add": "Lägg till Sidfots Kolumn",
54
+ "empty": "Inga sidfots kolumner konfigurerade.",
55
+ "full": "Alla 3 sidfots kolumner är fyllda."
56
+ },
57
+ "customContent": {
58
+ "editTitle": "Redigera Anpassat Innehåll",
59
+ "titleLabel": "Titel (valfritt)",
60
+ "contentLabel": "Innehåll (HTML eller text)",
61
+ "save": "Tillämpa",
62
+ "cancel": "Avbryt"
63
+ }
64
+ }
65
+ }
@@ -0,0 +1,65 @@
1
+ {
2
+ "homepageBuilder": {
3
+ "title": "主页构建器",
4
+ "description": "配置您的主页布局、分区、侧边栏小部件和页脚。",
5
+ "presets": {
6
+ "title": "快速开始",
7
+ "description": "选择一个预设来快速配置您的主页。您可以在下方进一步自定义。",
8
+ "apply": "应用",
9
+ "active": "激活",
10
+ "custom": "自定义",
11
+ "customDescription": "您自己的自定义布局"
12
+ },
13
+ "saved": "配置保存成功。刷新您的主页以查看更改。",
14
+ "save": "保存配置",
15
+ "layout": {
16
+ "title": "布局",
17
+ "singleColumn": "单列",
18
+ "twoColumn": "带侧边栏的双列",
19
+ "fullWidthHero": "全宽 Hero + 网格"
20
+ },
21
+ "hero": {
22
+ "title": "Hero 分区",
23
+ "enabled": "显示包含作者信息的 hero 分区",
24
+ "showSocial": "在 hero 中显示社交链接"
25
+ },
26
+ "sections": {
27
+ "title": "内容分区",
28
+ "description": "添加并排列出现在主内容区域中的分区。",
29
+ "add": "添加分区",
30
+ "empty": "未配置分区。从下方的选择器添加分区。"
31
+ },
32
+ "sidebar": {
33
+ "title": "侧边栏小部件",
34
+ "description": "配置出现在侧边栏中的小部件(仅在双列布局中可见)。",
35
+ "add": "添加小部件",
36
+ "empty": "未配置小部件。从下方的选择器添加小部件。"
37
+ },
38
+ "blogListingSidebar": {
39
+ "title": "博客列表侧边栏",
40
+ "description": "配置出现在博客列表页面(/blog/、/notes/、/articles/...)侧边栏中的小部件。留空以使用默认小部件。",
41
+ "add": "添加小部件",
42
+ "empty": "未配置小部件 — 使用默认侧边栏。"
43
+ },
44
+ "blogPostSidebar": {
45
+ "title": "博客文章侧边栏",
46
+ "description": "配置出现在单个文章页面侧边栏中的小部件。留空以使用默认小部件。",
47
+ "add": "添加小部件",
48
+ "empty": "未配置小部件 — 使用默认侧边栏。"
49
+ },
50
+ "footer": {
51
+ "title": "页脚(3列)",
52
+ "description": "主内容下方的响应式 3 列区域 — 添加最多 3 个块(每列一个)。适合用于网络环、链接或自定义内容。",
53
+ "add": "添加页脚列",
54
+ "empty": "未配置页脚列。",
55
+ "full": "所有 3 个页脚列均已填满。"
56
+ },
57
+ "customContent": {
58
+ "editTitle": "编辑自定义内容",
59
+ "titleLabel": "标题(可选)",
60
+ "contentLabel": "内容(HTML 或文本)",
61
+ "save": "应用",
62
+ "cancel": "取消"
63
+ }
64
+ }
65
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rmdes/indiekit-endpoint-homepage",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "description": "Homepage builder endpoint for Indiekit. Configure layout, sections, and sidebar widgets from the admin UI.",
5
5
  "keywords": [
6
6
  "indiekit",