@rmdes/indiekit-endpoint-posts 1.0.0-beta.25
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 +43 -0
- package/assets/icon.svg +4 -0
- package/includes/@indiekit-endpoint-posts-syndicate.njk +21 -0
- package/includes/@indiekit-endpoint-posts-widget.njk +14 -0
- package/includes/post-types/category-field.njk +11 -0
- package/includes/post-types/category.njk +4 -0
- package/includes/post-types/content-field.njk +17 -0
- package/includes/post-types/content.njk +3 -0
- package/includes/post-types/featured-field.njk +30 -0
- package/includes/post-types/featured.njk +8 -0
- package/includes/post-types/geo-field.njk +8 -0
- package/includes/post-types/location-field.njk +42 -0
- package/includes/post-types/location.njk +12 -0
- package/includes/post-types/mp-channel.njk +4 -0
- package/includes/post-types/name-field.njk +7 -0
- package/includes/post-types/published.njk +4 -0
- package/includes/post-types/summary-field.njk +17 -0
- package/includes/post-types/summary.njk +4 -0
- package/index.js +108 -0
- package/lib/controllers/delete.js +52 -0
- package/lib/controllers/form.js +121 -0
- package/lib/controllers/new.js +87 -0
- package/lib/controllers/post.js +51 -0
- package/lib/controllers/posts.js +96 -0
- package/lib/endpoint.js +53 -0
- package/lib/middleware/post-data.js +98 -0
- package/lib/middleware/validation.js +23 -0
- package/lib/status-types.js +32 -0
- package/lib/utils.js +201 -0
- package/locales/de.json +127 -0
- package/locales/en.json +127 -0
- package/locales/es-419.json +127 -0
- package/locales/es.json +127 -0
- package/locales/fr.json +127 -0
- package/locales/hi.json +127 -0
- package/locales/id.json +127 -0
- package/locales/it.json +127 -0
- package/locales/nl.json +127 -0
- package/locales/pl.json +127 -0
- package/locales/pt-BR.json +127 -0
- package/locales/pt.json +127 -0
- package/locales/sr.json +127 -0
- package/locales/sv.json +127 -0
- package/locales/zh-Hans-CN.json +127 -0
- package/package.json +55 -0
- package/views/new.njk +21 -0
- package/views/post-delete.njk +17 -0
- package/views/post-form.njk +114 -0
- package/views/post.njk +39 -0
- package/views/posts.njk +13 -0
package/locales/en.json
ADDED
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
{
|
|
2
|
+
"posts": {
|
|
3
|
+
"error": {
|
|
4
|
+
"content": {
|
|
5
|
+
"empty": "Enter some content"
|
|
6
|
+
},
|
|
7
|
+
"featured-alt": {
|
|
8
|
+
"empty": "Enter a description of this image"
|
|
9
|
+
},
|
|
10
|
+
"geo": {
|
|
11
|
+
"invalid": "Enter valid coordinates"
|
|
12
|
+
},
|
|
13
|
+
"name": {
|
|
14
|
+
"empty": "Enter a title"
|
|
15
|
+
},
|
|
16
|
+
"type": {
|
|
17
|
+
"empty": "Select a post type"
|
|
18
|
+
},
|
|
19
|
+
"url": {
|
|
20
|
+
"empty": "Enter a web address like %s"
|
|
21
|
+
},
|
|
22
|
+
"media": {
|
|
23
|
+
"empty": "Enter a file path or web address like %s"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"status": {
|
|
27
|
+
"deleted": "Deleted",
|
|
28
|
+
"draft": "Draft",
|
|
29
|
+
"private": "Private",
|
|
30
|
+
"public": "Public",
|
|
31
|
+
"published": "Published",
|
|
32
|
+
"syndicated": "Syndicated",
|
|
33
|
+
"unlisted": "Unlisted"
|
|
34
|
+
},
|
|
35
|
+
"new": {
|
|
36
|
+
"title": "What type of post do you want to create?"
|
|
37
|
+
},
|
|
38
|
+
"create": {
|
|
39
|
+
"action": "New post",
|
|
40
|
+
"title": "Create a new %s post"
|
|
41
|
+
},
|
|
42
|
+
"update": {
|
|
43
|
+
"action": "Edit post",
|
|
44
|
+
"title": "Update %s post"
|
|
45
|
+
},
|
|
46
|
+
"delete": {
|
|
47
|
+
"action": "Delete post",
|
|
48
|
+
"title": "Are you sure you want to delete this post?",
|
|
49
|
+
"submit": "I’m sure – delete this post",
|
|
50
|
+
"cancel": "No – return to post"
|
|
51
|
+
},
|
|
52
|
+
"undelete": {
|
|
53
|
+
"action": "Restore post",
|
|
54
|
+
"title": "Are you sure you want to restore this post?",
|
|
55
|
+
"submit": "I’m sure – restore this post"
|
|
56
|
+
},
|
|
57
|
+
"form": {
|
|
58
|
+
"advancedOptions": "Advanced options",
|
|
59
|
+
"back": "Change post type",
|
|
60
|
+
"continue": "Continue",
|
|
61
|
+
"publish": "Publish post",
|
|
62
|
+
"update": "Update post",
|
|
63
|
+
"publishDraft": "Save draft",
|
|
64
|
+
"updateDraft": "Update draft",
|
|
65
|
+
"cancel": "Cancel",
|
|
66
|
+
"category": {
|
|
67
|
+
"hint": "Separate each category with a comma",
|
|
68
|
+
"label": "Categories",
|
|
69
|
+
"tag": "category"
|
|
70
|
+
},
|
|
71
|
+
"content": {
|
|
72
|
+
"label": "Content"
|
|
73
|
+
},
|
|
74
|
+
"featured": {
|
|
75
|
+
"label": "Featured image",
|
|
76
|
+
"alt": "Accessible description"
|
|
77
|
+
},
|
|
78
|
+
"geo": {
|
|
79
|
+
"label": "Location coordinates",
|
|
80
|
+
"hint": "Latitude and longitude, for example %s"
|
|
81
|
+
},
|
|
82
|
+
"location": {
|
|
83
|
+
"label": "Location",
|
|
84
|
+
"name": "Venue",
|
|
85
|
+
"street-address": "Street address",
|
|
86
|
+
"locality": "City or town",
|
|
87
|
+
"country-name": "Country",
|
|
88
|
+
"postal-code": "Postal code"
|
|
89
|
+
},
|
|
90
|
+
"name": {
|
|
91
|
+
"label": "Title"
|
|
92
|
+
},
|
|
93
|
+
"media": {
|
|
94
|
+
"label": "File path or URL"
|
|
95
|
+
},
|
|
96
|
+
"mp-channel": {
|
|
97
|
+
"label": "Channel"
|
|
98
|
+
},
|
|
99
|
+
"mp-slug": {
|
|
100
|
+
"label": "URL slug"
|
|
101
|
+
},
|
|
102
|
+
"mp-syndicate-to": {
|
|
103
|
+
"label": "Syndicate to"
|
|
104
|
+
},
|
|
105
|
+
"published": {
|
|
106
|
+
"label": "Publication date",
|
|
107
|
+
"now": "Now",
|
|
108
|
+
"scheduled": "Specific date and time"
|
|
109
|
+
},
|
|
110
|
+
"summary": {
|
|
111
|
+
"label": "Summary"
|
|
112
|
+
},
|
|
113
|
+
"visibility": {
|
|
114
|
+
"label": "Visibility"
|
|
115
|
+
}
|
|
116
|
+
},
|
|
117
|
+
"post": {
|
|
118
|
+
"properties": "Properties",
|
|
119
|
+
"syndicate": "Syndicate post"
|
|
120
|
+
},
|
|
121
|
+
"posts": {
|
|
122
|
+
"title": "Published posts",
|
|
123
|
+
"none": "No posts"
|
|
124
|
+
},
|
|
125
|
+
"title": "Posts"
|
|
126
|
+
}
|
|
127
|
+
}
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
{
|
|
2
|
+
"posts": {
|
|
3
|
+
"create": {
|
|
4
|
+
"action": "Nueva publicación",
|
|
5
|
+
"title": "Crear una nueva publicación %s"
|
|
6
|
+
},
|
|
7
|
+
"delete": {
|
|
8
|
+
"action": "Eliminar publicación",
|
|
9
|
+
"cancel": "No – volver a la publicación",
|
|
10
|
+
"submit": "Estoy seguro – borrar esta publicación",
|
|
11
|
+
"title": "¿Está seguro que quiere eliminar esta publicación?"
|
|
12
|
+
},
|
|
13
|
+
"error": {
|
|
14
|
+
"content": {
|
|
15
|
+
"empty": "Introducir algún contenido"
|
|
16
|
+
},
|
|
17
|
+
"featured-alt": {
|
|
18
|
+
"empty": "Introduzca una descripción de esta imagen"
|
|
19
|
+
},
|
|
20
|
+
"geo": {
|
|
21
|
+
"invalid": "Introduce coordenadas válidas"
|
|
22
|
+
},
|
|
23
|
+
"media": {
|
|
24
|
+
"empty": "Introduce una ruta de archivo o una dirección web como %s"
|
|
25
|
+
},
|
|
26
|
+
"name": {
|
|
27
|
+
"empty": "Ingresar un título"
|
|
28
|
+
},
|
|
29
|
+
"type": {
|
|
30
|
+
"empty": "Selecciona un tipo de publicación"
|
|
31
|
+
},
|
|
32
|
+
"url": {
|
|
33
|
+
"empty": "Introducir una dirección web como %s"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"form": {
|
|
37
|
+
"advancedOptions": "Opciones avanzadas",
|
|
38
|
+
"back": "Cambiar tipo de publicación",
|
|
39
|
+
"cancel": "Cancelar",
|
|
40
|
+
"category": {
|
|
41
|
+
"hint": "Separe cada categoría con una coma",
|
|
42
|
+
"label": "Categorías",
|
|
43
|
+
"tag": "categoría"
|
|
44
|
+
},
|
|
45
|
+
"content": {
|
|
46
|
+
"label": "Contenido"
|
|
47
|
+
},
|
|
48
|
+
"continue": "Continuar",
|
|
49
|
+
"featured": {
|
|
50
|
+
"alt": "Descripción accesible",
|
|
51
|
+
"label": "Imagen destacada"
|
|
52
|
+
},
|
|
53
|
+
"geo": {
|
|
54
|
+
"hint": "Latitud y longitud, por ejemplo %s",
|
|
55
|
+
"label": "Coordenadas de ubicación"
|
|
56
|
+
},
|
|
57
|
+
"location": {
|
|
58
|
+
"country-name": "País",
|
|
59
|
+
"label": "Ubicación",
|
|
60
|
+
"locality": "Ciudad o pueblo",
|
|
61
|
+
"name": "Lugar de eventos",
|
|
62
|
+
"postal-code": "Código postal",
|
|
63
|
+
"street-address": "Dirección de la calle"
|
|
64
|
+
},
|
|
65
|
+
"media": {
|
|
66
|
+
"label": "Ruta o URL del archivo"
|
|
67
|
+
},
|
|
68
|
+
"mp-channel": {
|
|
69
|
+
"label": "Canal"
|
|
70
|
+
},
|
|
71
|
+
"mp-slug": {
|
|
72
|
+
"label": "Babosa de URL"
|
|
73
|
+
},
|
|
74
|
+
"mp-syndicate-to": {
|
|
75
|
+
"label": "Sindicarse con"
|
|
76
|
+
},
|
|
77
|
+
"name": {
|
|
78
|
+
"label": "Título"
|
|
79
|
+
},
|
|
80
|
+
"publish": "Publicar publicación",
|
|
81
|
+
"publishDraft": "Guardar borrador",
|
|
82
|
+
"published": {
|
|
83
|
+
"label": "Fecha de publicación",
|
|
84
|
+
"now": "Ahora",
|
|
85
|
+
"scheduled": "Fecha y hora específicas"
|
|
86
|
+
},
|
|
87
|
+
"summary": {
|
|
88
|
+
"label": "Resumen"
|
|
89
|
+
},
|
|
90
|
+
"update": "Actualizar publicación",
|
|
91
|
+
"updateDraft": "Actualizar borrador",
|
|
92
|
+
"visibility": {
|
|
93
|
+
"label": "Visibilidad"
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"new": {
|
|
97
|
+
"title": "¿Qué tipo de publicación quiere crear?"
|
|
98
|
+
},
|
|
99
|
+
"post": {
|
|
100
|
+
"properties": "Propiedades",
|
|
101
|
+
"syndicate": "Publicación del sindicato"
|
|
102
|
+
},
|
|
103
|
+
"posts": {
|
|
104
|
+
"none": "No hay publicaciones",
|
|
105
|
+
"title": "Publicaciones publicadas"
|
|
106
|
+
},
|
|
107
|
+
"status": {
|
|
108
|
+
"deleted": "Eliminado",
|
|
109
|
+
"draft": "Borrador",
|
|
110
|
+
"private": "Privado",
|
|
111
|
+
"public": "Público",
|
|
112
|
+
"published": "Publicado",
|
|
113
|
+
"syndicated": "Sindicado",
|
|
114
|
+
"unlisted": "No está en la lista"
|
|
115
|
+
},
|
|
116
|
+
"title": "Publicaciones",
|
|
117
|
+
"undelete": {
|
|
118
|
+
"action": "Restaurar publicación",
|
|
119
|
+
"submit": "Estoy seguro – restaura esta publicación",
|
|
120
|
+
"title": "¿Está seguro que quiere restaurar esta publicación?"
|
|
121
|
+
},
|
|
122
|
+
"update": {
|
|
123
|
+
"action": "Editar publicación",
|
|
124
|
+
"title": "Actualizar publicación %s"
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
package/locales/es.json
ADDED
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
{
|
|
2
|
+
"posts": {
|
|
3
|
+
"create": {
|
|
4
|
+
"action": "Nueva publicación",
|
|
5
|
+
"title": "Crear una nueva publicación de %s"
|
|
6
|
+
},
|
|
7
|
+
"delete": {
|
|
8
|
+
"action": "Eliminar publicación",
|
|
9
|
+
"cancel": "No — volver a la publicación",
|
|
10
|
+
"submit": "Estoy seguro – borra esta publicación",
|
|
11
|
+
"title": "¿Seguro que quieres eliminar esta publicación?"
|
|
12
|
+
},
|
|
13
|
+
"error": {
|
|
14
|
+
"content": {
|
|
15
|
+
"empty": "Introducir algún contenido"
|
|
16
|
+
},
|
|
17
|
+
"featured-alt": {
|
|
18
|
+
"empty": "Introduzca una descripción de esta imagen"
|
|
19
|
+
},
|
|
20
|
+
"geo": {
|
|
21
|
+
"invalid": "Introduce coordenadas válidas"
|
|
22
|
+
},
|
|
23
|
+
"media": {
|
|
24
|
+
"empty": "Introduce una ruta de archivo o una dirección web como %s"
|
|
25
|
+
},
|
|
26
|
+
"name": {
|
|
27
|
+
"empty": "Pon un título"
|
|
28
|
+
},
|
|
29
|
+
"type": {
|
|
30
|
+
"empty": "Seleccionar tipo de publicación"
|
|
31
|
+
},
|
|
32
|
+
"url": {
|
|
33
|
+
"empty": "Introduce una dirección web como %s"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"form": {
|
|
37
|
+
"advancedOptions": "Opciones avanzadas",
|
|
38
|
+
"back": "Cambiar tipo de publicación",
|
|
39
|
+
"cancel": "Cancelar",
|
|
40
|
+
"category": {
|
|
41
|
+
"hint": "Separe cada categoría con una coma",
|
|
42
|
+
"label": "Categorías",
|
|
43
|
+
"tag": "categoría"
|
|
44
|
+
},
|
|
45
|
+
"content": {
|
|
46
|
+
"label": "Contenido"
|
|
47
|
+
},
|
|
48
|
+
"continue": "Continuar",
|
|
49
|
+
"featured": {
|
|
50
|
+
"alt": "Descripción accesible",
|
|
51
|
+
"label": "Imagen destacada"
|
|
52
|
+
},
|
|
53
|
+
"geo": {
|
|
54
|
+
"hint": "Latitud y longitud, por ejemplo %s",
|
|
55
|
+
"label": "Coordenadas de ubicación"
|
|
56
|
+
},
|
|
57
|
+
"location": {
|
|
58
|
+
"country-name": "País",
|
|
59
|
+
"label": "Ubicación",
|
|
60
|
+
"locality": "Ciudad o pueblo",
|
|
61
|
+
"name": "Campo",
|
|
62
|
+
"postal-code": "Código postal",
|
|
63
|
+
"street-address": "Dirección"
|
|
64
|
+
},
|
|
65
|
+
"media": {
|
|
66
|
+
"label": "Ruta o URL del archivo"
|
|
67
|
+
},
|
|
68
|
+
"mp-channel": {
|
|
69
|
+
"label": "Canal"
|
|
70
|
+
},
|
|
71
|
+
"mp-slug": {
|
|
72
|
+
"label": "URL slug"
|
|
73
|
+
},
|
|
74
|
+
"mp-syndicate-to": {
|
|
75
|
+
"label": "Sindicar a"
|
|
76
|
+
},
|
|
77
|
+
"name": {
|
|
78
|
+
"label": "Título"
|
|
79
|
+
},
|
|
80
|
+
"publish": "Publicar publicación",
|
|
81
|
+
"publishDraft": "Guardar borrador",
|
|
82
|
+
"published": {
|
|
83
|
+
"label": "Fecha de publicación",
|
|
84
|
+
"now": "Ahora",
|
|
85
|
+
"scheduled": "Fecha y hora específicas"
|
|
86
|
+
},
|
|
87
|
+
"summary": {
|
|
88
|
+
"label": "Resumen"
|
|
89
|
+
},
|
|
90
|
+
"update": "Actualizar publicación",
|
|
91
|
+
"updateDraft": "Actualizar borrador",
|
|
92
|
+
"visibility": {
|
|
93
|
+
"label": "Visibilidad"
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"new": {
|
|
97
|
+
"title": "¿Qué tipo de publicación quieres crear?"
|
|
98
|
+
},
|
|
99
|
+
"post": {
|
|
100
|
+
"properties": "Propiedades",
|
|
101
|
+
"syndicate": "Sindicar"
|
|
102
|
+
},
|
|
103
|
+
"posts": {
|
|
104
|
+
"none": "No hay publicaciones",
|
|
105
|
+
"title": "Publicaciones publicadas"
|
|
106
|
+
},
|
|
107
|
+
"status": {
|
|
108
|
+
"deleted": "Eliminado",
|
|
109
|
+
"draft": "Borrador",
|
|
110
|
+
"private": "Privado",
|
|
111
|
+
"public": "Público",
|
|
112
|
+
"published": "Publicado",
|
|
113
|
+
"syndicated": "Sindicado",
|
|
114
|
+
"unlisted": "No enlistado"
|
|
115
|
+
},
|
|
116
|
+
"title": "Publicaciones",
|
|
117
|
+
"undelete": {
|
|
118
|
+
"action": "Restaurar publicación",
|
|
119
|
+
"submit": "Estoy seguro – restaura esta publicación",
|
|
120
|
+
"title": "¿Estás seguro de que quieres restaurar esta publicación?"
|
|
121
|
+
},
|
|
122
|
+
"update": {
|
|
123
|
+
"action": "Editar publicación",
|
|
124
|
+
"title": "Actualizar publicación de %s"
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
package/locales/fr.json
ADDED
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
{
|
|
2
|
+
"posts": {
|
|
3
|
+
"create": {
|
|
4
|
+
"action": "Nouvelle publication",
|
|
5
|
+
"title": "Créer une nouvelle publication %s"
|
|
6
|
+
},
|
|
7
|
+
"delete": {
|
|
8
|
+
"action": "Supprimer la publication",
|
|
9
|
+
"cancel": "Non – retourner à la publication",
|
|
10
|
+
"submit": "Je suis sûr – supprimer cette publication",
|
|
11
|
+
"title": "Êtes-vous sûr de vouloir supprimer cette publication ?"
|
|
12
|
+
},
|
|
13
|
+
"error": {
|
|
14
|
+
"content": {
|
|
15
|
+
"empty": "Saisir du contenu"
|
|
16
|
+
},
|
|
17
|
+
"featured-alt": {
|
|
18
|
+
"empty": "Entrez une description de cette image"
|
|
19
|
+
},
|
|
20
|
+
"geo": {
|
|
21
|
+
"invalid": "Saisir des coordonnées valides"
|
|
22
|
+
},
|
|
23
|
+
"media": {
|
|
24
|
+
"empty": "Entrez un chemin de fichier ou une adresse Web telle que %s"
|
|
25
|
+
},
|
|
26
|
+
"name": {
|
|
27
|
+
"empty": "Saisir un titre"
|
|
28
|
+
},
|
|
29
|
+
"type": {
|
|
30
|
+
"empty": "Sélectionnez un type de publication"
|
|
31
|
+
},
|
|
32
|
+
"url": {
|
|
33
|
+
"empty": "Saisir une adresse Web telle que %s"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"form": {
|
|
37
|
+
"advancedOptions": "Options avancées",
|
|
38
|
+
"back": "Modifier le type de publication",
|
|
39
|
+
"cancel": "Annuler",
|
|
40
|
+
"category": {
|
|
41
|
+
"hint": "Séparez chaque catégorie par une virgule",
|
|
42
|
+
"label": "Catégories",
|
|
43
|
+
"tag": "catégorie"
|
|
44
|
+
},
|
|
45
|
+
"content": {
|
|
46
|
+
"label": "Contenu"
|
|
47
|
+
},
|
|
48
|
+
"continue": "Continuer",
|
|
49
|
+
"featured": {
|
|
50
|
+
"alt": "Description accessible",
|
|
51
|
+
"label": "Image en vedette"
|
|
52
|
+
},
|
|
53
|
+
"geo": {
|
|
54
|
+
"hint": "Latitude et longitude, par exemple %s",
|
|
55
|
+
"label": "Coordonnées de localisation"
|
|
56
|
+
},
|
|
57
|
+
"location": {
|
|
58
|
+
"country-name": "Pays",
|
|
59
|
+
"label": "Localisation",
|
|
60
|
+
"locality": "Ville",
|
|
61
|
+
"name": "Lieu",
|
|
62
|
+
"postal-code": "Code postal",
|
|
63
|
+
"street-address": "Adresse"
|
|
64
|
+
},
|
|
65
|
+
"media": {
|
|
66
|
+
"label": "Chemin du fichier ou URL"
|
|
67
|
+
},
|
|
68
|
+
"mp-channel": {
|
|
69
|
+
"label": "Canal"
|
|
70
|
+
},
|
|
71
|
+
"mp-slug": {
|
|
72
|
+
"label": "Identifiant unique d’URL (slug)"
|
|
73
|
+
},
|
|
74
|
+
"mp-syndicate-to": {
|
|
75
|
+
"label": "Publier également sur"
|
|
76
|
+
},
|
|
77
|
+
"name": {
|
|
78
|
+
"label": "Titre"
|
|
79
|
+
},
|
|
80
|
+
"publish": "Publier la publication",
|
|
81
|
+
"publishDraft": "Enregistrer le brouillon",
|
|
82
|
+
"published": {
|
|
83
|
+
"label": "Date de publication",
|
|
84
|
+
"now": "Maintenant",
|
|
85
|
+
"scheduled": "Date et heure spécifiques"
|
|
86
|
+
},
|
|
87
|
+
"summary": {
|
|
88
|
+
"label": "Résumé"
|
|
89
|
+
},
|
|
90
|
+
"update": "Mettre à jour la publication",
|
|
91
|
+
"updateDraft": "Mettre à jour le brouillon",
|
|
92
|
+
"visibility": {
|
|
93
|
+
"label": "Visibilité"
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"new": {
|
|
97
|
+
"title": "Quel type de publication souhaitez-vous créer ?"
|
|
98
|
+
},
|
|
99
|
+
"post": {
|
|
100
|
+
"properties": "Propriétés",
|
|
101
|
+
"syndicate": "Distribuer le post"
|
|
102
|
+
},
|
|
103
|
+
"posts": {
|
|
104
|
+
"none": "Aucune publication",
|
|
105
|
+
"title": "Articles publiés"
|
|
106
|
+
},
|
|
107
|
+
"status": {
|
|
108
|
+
"deleted": "Supprimé",
|
|
109
|
+
"draft": "Brouillon",
|
|
110
|
+
"private": "Privé",
|
|
111
|
+
"public": "Publique",
|
|
112
|
+
"published": "Publié",
|
|
113
|
+
"syndicated": "Distribué",
|
|
114
|
+
"unlisted": "Non listé"
|
|
115
|
+
},
|
|
116
|
+
"title": "Publications",
|
|
117
|
+
"undelete": {
|
|
118
|
+
"action": "Restaurer la publication",
|
|
119
|
+
"submit": "Je suis sûr – restaurer cette publication",
|
|
120
|
+
"title": "Êtes-vous sûr de vouloir restaurer cette publication ?"
|
|
121
|
+
},
|
|
122
|
+
"update": {
|
|
123
|
+
"action": "Modifier la publication",
|
|
124
|
+
"title": "Mettre à jour la publication de %s"
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
package/locales/hi.json
ADDED
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
{
|
|
2
|
+
"posts": {
|
|
3
|
+
"create": {
|
|
4
|
+
"action": "नई पोस्ट",
|
|
5
|
+
"title": "एक नई %s पोस्ट बनाएं"
|
|
6
|
+
},
|
|
7
|
+
"delete": {
|
|
8
|
+
"action": "पोस्ट मिटाएँ",
|
|
9
|
+
"cancel": "नहीं — पोस्ट पर वापस लौटें",
|
|
10
|
+
"submit": "मुझे यकीन है — इस पोस्ट को हटा दें",
|
|
11
|
+
"title": "क्या आप वाकई इस पोस्ट को डिलीट करना चाहते हैं?"
|
|
12
|
+
},
|
|
13
|
+
"error": {
|
|
14
|
+
"content": {
|
|
15
|
+
"empty": "कुछ सामग्री दर्ज करें"
|
|
16
|
+
},
|
|
17
|
+
"featured-alt": {
|
|
18
|
+
"empty": "इस छवि का विवरण दर्ज करें"
|
|
19
|
+
},
|
|
20
|
+
"geo": {
|
|
21
|
+
"invalid": "मान्य निर्देशांक दर्ज करें"
|
|
22
|
+
},
|
|
23
|
+
"media": {
|
|
24
|
+
"empty": "जैसे फ़ाइल पथ या वेब पता दर्ज करें %s"
|
|
25
|
+
},
|
|
26
|
+
"name": {
|
|
27
|
+
"empty": "शीर्षक प्रविष्ट करें"
|
|
28
|
+
},
|
|
29
|
+
"type": {
|
|
30
|
+
"empty": "पोस्ट के प्रकार का चयन करें"
|
|
31
|
+
},
|
|
32
|
+
"url": {
|
|
33
|
+
"empty": "जैसे वेब पता दर्ज करें %s"
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
"form": {
|
|
37
|
+
"advancedOptions": "एडवांस विकल्प",
|
|
38
|
+
"back": "पोस्ट का प्रकार बदलें",
|
|
39
|
+
"cancel": "रद्द करें",
|
|
40
|
+
"category": {
|
|
41
|
+
"hint": "प्रत्येक श्रेणी को अल्पविराम से अलग करें",
|
|
42
|
+
"label": "श्रेणियां",
|
|
43
|
+
"tag": "श्रेणी"
|
|
44
|
+
},
|
|
45
|
+
"content": {
|
|
46
|
+
"label": "कॉन्टेंट"
|
|
47
|
+
},
|
|
48
|
+
"continue": "जारी रखें",
|
|
49
|
+
"featured": {
|
|
50
|
+
"alt": "सुलभ वर्णन",
|
|
51
|
+
"label": "विशेष रुप से प्रदर्शित छवि"
|
|
52
|
+
},
|
|
53
|
+
"geo": {
|
|
54
|
+
"hint": "उदाहरण के लिए, अक्षांश और देशांतर %s",
|
|
55
|
+
"label": "स्थान निर्देशांक"
|
|
56
|
+
},
|
|
57
|
+
"location": {
|
|
58
|
+
"country-name": "देश",
|
|
59
|
+
"label": "स्थान",
|
|
60
|
+
"locality": "शहर या कस्बा",
|
|
61
|
+
"name": "वेन्यू",
|
|
62
|
+
"postal-code": "पोस्टल कोड",
|
|
63
|
+
"street-address": "सड़क का पता"
|
|
64
|
+
},
|
|
65
|
+
"media": {
|
|
66
|
+
"label": "फ़ाइल पथ या URL"
|
|
67
|
+
},
|
|
68
|
+
"mp-channel": {
|
|
69
|
+
"label": "चैनल"
|
|
70
|
+
},
|
|
71
|
+
"mp-slug": {
|
|
72
|
+
"label": "URL स्लग"
|
|
73
|
+
},
|
|
74
|
+
"mp-syndicate-to": {
|
|
75
|
+
"label": "सिंडिकेट टू"
|
|
76
|
+
},
|
|
77
|
+
"name": {
|
|
78
|
+
"label": "टाइटल"
|
|
79
|
+
},
|
|
80
|
+
"publish": "पोस्ट प्रकाशित करें",
|
|
81
|
+
"publishDraft": "ड्राफ़्ट सहेजें",
|
|
82
|
+
"published": {
|
|
83
|
+
"label": "प्रकाशन की तारीख",
|
|
84
|
+
"now": "अभी",
|
|
85
|
+
"scheduled": "विशिष्ट तिथि और समय"
|
|
86
|
+
},
|
|
87
|
+
"summary": {
|
|
88
|
+
"label": "सारांश"
|
|
89
|
+
},
|
|
90
|
+
"update": "पोस्ट अपडेट करें",
|
|
91
|
+
"updateDraft": "ड्राफ़्ट अपडेट करें",
|
|
92
|
+
"visibility": {
|
|
93
|
+
"label": "दृश्यता"
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"new": {
|
|
97
|
+
"title": "आप किस प्रकार की पोस्ट बनाना चाहते हैं?"
|
|
98
|
+
},
|
|
99
|
+
"post": {
|
|
100
|
+
"properties": "प्रॉपर्टीज़",
|
|
101
|
+
"syndicate": "सिंडिकेट पोस्ट"
|
|
102
|
+
},
|
|
103
|
+
"posts": {
|
|
104
|
+
"none": "कोई पोस्ट नहीं",
|
|
105
|
+
"title": "प्रकाशित पोस्ट"
|
|
106
|
+
},
|
|
107
|
+
"status": {
|
|
108
|
+
"deleted": "हटाए गए",
|
|
109
|
+
"draft": "ड्राफ़्ट",
|
|
110
|
+
"private": "निजी",
|
|
111
|
+
"public": "पब्लिक",
|
|
112
|
+
"published": "प्रकाशित",
|
|
113
|
+
"syndicated": "सिंडिकेटेड",
|
|
114
|
+
"unlisted": "असूचीबद्ध"
|
|
115
|
+
},
|
|
116
|
+
"title": "पोस्ट",
|
|
117
|
+
"undelete": {
|
|
118
|
+
"action": "पोस्ट को पुनर्स्थापित करें",
|
|
119
|
+
"submit": "मुझे यकीन है — इस पोस्ट को पुनर्स्थापित करें",
|
|
120
|
+
"title": "क्या आप वाकई इस पोस्ट को पुनर्स्थापित करना चाहते हैं?"
|
|
121
|
+
},
|
|
122
|
+
"update": {
|
|
123
|
+
"action": "पोस्ट संपादित करें",
|
|
124
|
+
"title": "%s पोस्ट अपडेट करें"
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|