monologue 0.2.0 → 0.3.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.
- checksums.yaml +7 -0
- data/MIT-LICENSE +1 -1
- data/README.md +28 -6
- data/app/assets/images/monologue/admin/select2.png +0 -0
- data/app/assets/javascripts/monologue/admin/application.js +6 -2
- data/app/assets/javascripts/monologue/admin/ckeditor-config.js +21 -0
- data/app/assets/javascripts/monologue/admin/posts.js +62 -0
- data/app/assets/stylesheets/monologue/admin/application.css +2 -1
- data/app/assets/stylesheets/monologue/admin/posts.sass +21 -0
- data/app/assets/stylesheets/monologue/blog/application.css +1 -1
- data/app/assets/stylesheets/monologue/blog/monologue.css +12 -1
- data/app/controllers/monologue/admin/base_controller.rb +2 -2
- data/app/controllers/monologue/admin/posts_controller.rb +31 -44
- data/app/controllers/monologue/admin/sessions_controller.rb +2 -2
- data/app/controllers/monologue/admin/users_controller.rb +39 -3
- data/app/controllers/monologue/application_controller.rb +7 -7
- data/app/controllers/monologue/posts_controller.rb +5 -7
- data/app/controllers/monologue/tags_controller.rb +8 -3
- data/app/form_builders/monologue_admin_form_builder.rb +12 -8
- data/app/helpers/monologue/application_helper.rb +9 -39
- data/app/helpers/monologue/html_helper.rb +35 -0
- data/app/helpers/monologue/tags_helper.rb +25 -0
- data/app/models/monologue/post.rb +38 -23
- data/app/models/monologue/tag.rb +3 -4
- data/app/models/monologue/tagging.rb +2 -0
- data/app/models/monologue/user.rb +13 -2
- data/app/sweepers/monologue/posts_sweeper.rb +2 -5
- data/app/views/layouts/monologue/admin.html.erb +2 -2
- data/app/views/layouts/monologue/admin/_nav_bar.html.erb +8 -16
- data/app/views/layouts/monologue/application.html.erb +1 -1
- data/app/views/layouts/monologue/application/_fb_open_graph.html.erb +2 -2
- data/app/views/layouts/monologue/application/_sidebar.html.erb +3 -1
- data/app/views/layouts/monologue/application/_twitter_cards.html.erb +2 -2
- data/app/views/monologue/admin/cache/_config.html.erb +1 -1
- data/app/views/monologue/admin/cache/show.html.erb +1 -1
- data/app/views/monologue/admin/posts/_form.html.erb +23 -9
- data/app/views/monologue/admin/posts/edit.html.erb +3 -3
- data/app/views/monologue/admin/posts/index.html.erb +5 -3
- data/app/views/monologue/admin/posts/new.html.erb +1 -1
- data/app/views/monologue/admin/sessions/new.html.erb +1 -1
- data/app/views/monologue/admin/users/_form.html.erb +5 -0
- data/app/views/monologue/admin/users/edit.html.erb +3 -7
- data/app/views/monologue/admin/users/index.html.erb +28 -0
- data/app/views/monologue/admin/users/new.html.erb +5 -0
- data/app/views/monologue/posts/_pagination.html.erb +2 -2
- data/app/views/monologue/posts/_post.html.erb +6 -8
- data/app/views/monologue/posts/_post_header.html.erb +16 -0
- data/app/views/monologue/posts/_social_sharing.html.erb +6 -6
- data/app/views/monologue/posts/feed.rss.builder +7 -8
- data/app/views/monologue/posts/index.html.erb +1 -1
- data/app/views/monologue/posts/show.html.erb +8 -8
- data/app/views/monologue/sidebar/_latest_posts.html.erb +1 -1
- data/app/views/monologue/sidebar/_latest_tweets.html.erb +1 -1
- data/app/views/monologue/sidebar/_tag_cloud.html.erb +1 -1
- data/config/locales/en.yml +81 -112
- data/config/locales/es.yml +148 -0
- data/config/locales/fr.yml +76 -110
- data/config/locales/it.yml +147 -0
- data/config/locales/pt.yml +147 -0
- data/config/locales/ro.yml +78 -110
- data/config/routes.rb +12 -10
- data/db/migrate/20120120193858_create_monologue_posts_revisions.rb +1 -1
- data/db/migrate/20120514194459_join_posts_and_tags.rb +1 -1
- data/db/migrate/20120526131841_migrate_old_urls.rb +3 -0
- data/db/migrate/20120612015727_delete_join_posts_tags.rb +1 -1
- data/db/migrate/20130108123111_move_user_id_to_post.rb +31 -0
- data/db/migrate/20130509015400_merge_revisions_into_posts.rb +40 -0
- data/db/seeds.rb +1 -1
- data/lib/monologue/engine.rb +6 -6
- data/lib/monologue/version.rb +1 -1
- data/lib/tasks/monologue_cache.rake +1 -1
- data/vendor/assets/javascripts/monologue/bootstrap/bootstrap-datepicker-es.js +7 -0
- data/vendor/assets/javascripts/monologue/bootstrap/bootstrap-datepicker-it.js +9 -0
- data/vendor/assets/javascripts/monologue/bootstrap/bootstrap-datepicker-pt.js +9 -0
- metadata +88 -78
- data/app/assets/javascripts/monologue/admin/tinymce-config.js +0 -21
- data/app/models/monologue/posts_revision.rb +0 -61
- data/app/views/monologue/posts/_revision_header.html.erb +0 -9
@@ -0,0 +1,148 @@
|
|
1
|
+
es:
|
2
|
+
monologue:
|
3
|
+
posts:
|
4
|
+
pagination:
|
5
|
+
older_posts: "Artículos más antiguos"
|
6
|
+
newer_posts: "Artículos más nuevos"
|
7
|
+
social_sharing:
|
8
|
+
tagline: "Te ha gustado el artículo? Compártelo"
|
9
|
+
post:
|
10
|
+
readmore: "Leer más"
|
11
|
+
"404":
|
12
|
+
title: "La página que estas buscando no existe."
|
13
|
+
message: "Compureba que has escrito bien el nombre, sino es posible que la página se haya movido"
|
14
|
+
sidebar:
|
15
|
+
categories:
|
16
|
+
title: "Categorias"
|
17
|
+
latest_posts:
|
18
|
+
title: "Últimos artículos"
|
19
|
+
latest_tweets:
|
20
|
+
title: "Últimos tweets"
|
21
|
+
tag_cloud:
|
22
|
+
title: "Tags"
|
23
|
+
tags:
|
24
|
+
show:
|
25
|
+
showing_post_with_tag: "Mostrando artículos con la etiqueta"
|
26
|
+
show_all_posts: "Mostrar todos los artículos"
|
27
|
+
admin:
|
28
|
+
login:
|
29
|
+
need_auth: "Tienes que iniciar sesión para acceder a la sección de administración"
|
30
|
+
users:
|
31
|
+
form:
|
32
|
+
email: "Email"
|
33
|
+
name: "Nombre"
|
34
|
+
password: "Contraseña"
|
35
|
+
password_confirmation: "Confirmar contraseña"
|
36
|
+
edit:
|
37
|
+
header: "Editar cuenta"
|
38
|
+
save: "Guardar"
|
39
|
+
new:
|
40
|
+
create: "Crear"
|
41
|
+
header: "Añadir un usuario"
|
42
|
+
create:
|
43
|
+
success: "Usuario creado"
|
44
|
+
delete:
|
45
|
+
removed: "Usuario '%{user}' eliminado correctamente"
|
46
|
+
failed: "No se ha podido eliminar al usuario'%{user}'"
|
47
|
+
index:
|
48
|
+
email: "Email"
|
49
|
+
name: "Nombre"
|
50
|
+
edit: "Editar"
|
51
|
+
delete: "Borrar"
|
52
|
+
create: "Crear"
|
53
|
+
posts:
|
54
|
+
index:
|
55
|
+
title: "Título"
|
56
|
+
edit: "Editar"
|
57
|
+
delete: "Borrar"
|
58
|
+
published: "Sí"
|
59
|
+
not_published: "No publicado"
|
60
|
+
status: "Publicado?"
|
61
|
+
new:
|
62
|
+
header: "Nuevo artículo"
|
63
|
+
create:
|
64
|
+
saved: "Artículo creado"
|
65
|
+
saved_with_future_date_and_cache: "Artículo creado: posts with a future publication date will not be shown unless cache is cleared on that same day. Cache will most probably be generated before that and won't be refreshed automatically."
|
66
|
+
edit:
|
67
|
+
header: "Editar"
|
68
|
+
update:
|
69
|
+
saved_with_future_date_and_cache: "Artículo guardado: posts with a future publication date will not be shown unless cache is cleared on that same day. Cache will most probably be generated before that and won't be refreshed automatically."
|
70
|
+
saved: "Artículo guardado"
|
71
|
+
delete:
|
72
|
+
removed: "Artículo eliminado"
|
73
|
+
fail: "Fallo al eliminar el artículo!"
|
74
|
+
form:
|
75
|
+
title: "Título"
|
76
|
+
content: "Contenido"
|
77
|
+
url:
|
78
|
+
caption: "URL<br/><i> Esto será rellenado por defecto con '%{default_url}'. Puedes escoger tu propia URL. No añadas '%{root}' al principio de la URL.</i>"
|
79
|
+
generated_title: "titulo-del-articulo"
|
80
|
+
published_at: "Publicado en"
|
81
|
+
published: "Publicado?"
|
82
|
+
save: "Guardar"
|
83
|
+
preview: "Vista previa"
|
84
|
+
close: "Cerrar"
|
85
|
+
tags: "Tags"
|
86
|
+
comments:
|
87
|
+
show:
|
88
|
+
recent_comments: "Comentarios recientes"
|
89
|
+
cache:
|
90
|
+
show:
|
91
|
+
title: "Gestioanr cache"
|
92
|
+
description: "Puedes borrar la cache aquí"
|
93
|
+
files_in_cache: "Estos son los ficheros en cache:"
|
94
|
+
no_files_are_cached: "No hay ningun fichero en cache"
|
95
|
+
delete: "Borrar la cache por completo?"
|
96
|
+
confirm: 'Estas seguro de que quieres borrar la cache por completo?'
|
97
|
+
cache_wiped: "La cache se ha borrado!"
|
98
|
+
how_to_enable:
|
99
|
+
warning: "No puedes gestionar la cache!"
|
100
|
+
explanations: "Hay ciertos ajustes que no estan correctamente definidos para usar la cache de Monologue. Por favor revisa la documentación de configuración"
|
101
|
+
sessions:
|
102
|
+
new:
|
103
|
+
title: "Iniciar sesión"
|
104
|
+
email: "Email"
|
105
|
+
password: "Contraseña"
|
106
|
+
button: "Iniciar sesión"
|
107
|
+
messages:
|
108
|
+
invalid: "Email o contraseña incorrecto"
|
109
|
+
logged_in: "Has iniciado sesión!"
|
110
|
+
logged_out: "Has cerrado sesión!"
|
111
|
+
layouts:
|
112
|
+
monologue:
|
113
|
+
admin:
|
114
|
+
nav_bar:
|
115
|
+
add_a_monologue: "Añadir un artículo"
|
116
|
+
list_monologues: "Lista de artículos"
|
117
|
+
comments: "Commentarios"
|
118
|
+
cache: "Gestionar cache"
|
119
|
+
edit_user_info: "Mi cuenta"
|
120
|
+
settings: "Ajustes"
|
121
|
+
log_out: "Cerrar sesión"
|
122
|
+
users: "Usuarios"
|
123
|
+
activerecord:
|
124
|
+
attributes:
|
125
|
+
monologue/user:
|
126
|
+
password_digest: "Confirmación de contraseña"
|
127
|
+
errors:
|
128
|
+
format: "%{message}"
|
129
|
+
errors:
|
130
|
+
full_messages: "%{message}"
|
131
|
+
errors:
|
132
|
+
models:
|
133
|
+
full_messages: "%{message}"
|
134
|
+
monologue/post:
|
135
|
+
blank: "%{attribute} es obligatorio"
|
136
|
+
taken: "%{attribute} está en uso por otro artículo"
|
137
|
+
attributes:
|
138
|
+
published_at:
|
139
|
+
blank: "'Publicado en' es obligatorio"
|
140
|
+
url:
|
141
|
+
start_with_slash: "URL no puede empezar con '/'"
|
142
|
+
|
143
|
+
monologue/user:
|
144
|
+
blank: "%{attribute} es obligatorio"
|
145
|
+
taken: "%{attribute} ya está en uso"
|
146
|
+
attributes:
|
147
|
+
password:
|
148
|
+
confirmation: "La contraseña no coincide con la confirmación."
|
data/config/locales/fr.yml
CHANGED
@@ -2,107 +2,85 @@ fr:
|
|
2
2
|
monologue:
|
3
3
|
posts:
|
4
4
|
pagination:
|
5
|
-
older_posts:
|
6
|
-
|
7
|
-
newer_posts:
|
8
|
-
"Articles plus récents"
|
5
|
+
older_posts: "Articles précédents"
|
6
|
+
newer_posts: "Articles plus récents"
|
9
7
|
social_sharing:
|
10
|
-
tagline:
|
11
|
-
"Vous avez aimé ce que vous avez lu? Partagez le!"
|
8
|
+
tagline: "Vous avez aimé ce que vous avez lu? Partagez le!"
|
12
9
|
post:
|
13
|
-
readmore:
|
14
|
-
"Lire"
|
10
|
+
readmore: "Lire"
|
15
11
|
"404":
|
16
|
-
title:
|
17
|
-
|
18
|
-
message:
|
19
|
-
"You pourriez avoir mal tappé l'adresse ou la page pourrait avoir été déplacée."
|
12
|
+
title: "La page que vous cherchiez n'existe pas."
|
13
|
+
message: "You pourriez avoir mal tappé l'adresse ou la page pourrait avoir été déplacée."
|
20
14
|
sidebar:
|
21
15
|
categories:
|
22
|
-
title:
|
23
|
-
"Catégories"
|
16
|
+
title: "Catégories"
|
24
17
|
latest_posts:
|
25
|
-
title:
|
26
|
-
"Derniers articles"
|
18
|
+
title: "Derniers articles"
|
27
19
|
latest_tweets:
|
28
|
-
title:
|
29
|
-
"Derniers tweets"
|
20
|
+
title: "Derniers tweets"
|
30
21
|
tag_cloud:
|
31
|
-
title:
|
32
|
-
"Labels"
|
22
|
+
title: "Labels"
|
33
23
|
tags:
|
34
24
|
show:
|
35
|
-
showing_post_with_tag:
|
36
|
-
|
37
|
-
show_all_posts:
|
38
|
-
"Voir tous les articles"
|
25
|
+
showing_post_with_tag: "Articles ayant le label"
|
26
|
+
show_all_posts: "Voir tous les articles"
|
39
27
|
admin:
|
40
28
|
login:
|
41
|
-
need_auth:
|
42
|
-
"Vous devez d'abord vous connectez à la section d'administration."
|
29
|
+
need_auth: "Vous devez d'abord vous connectez à la section d'administration."
|
43
30
|
users:
|
44
|
-
|
45
|
-
header: "Modifier mon compte"
|
31
|
+
form:
|
46
32
|
email: "Courriel"
|
47
33
|
name: "Nom"
|
48
34
|
password: "Mot de passe"
|
49
|
-
|
35
|
+
password_confirmation: "Confirmation du mot de passe"
|
36
|
+
edit:
|
37
|
+
header: "Modifier mon compte"
|
50
38
|
save: "Sauvegarder"
|
39
|
+
new:
|
40
|
+
create: "Ajouter"
|
41
|
+
header: "Ajouter un utilisateur"
|
42
|
+
delete:
|
43
|
+
removed: "L'utilisateur '%{user}' a été supprimé"
|
44
|
+
failed: "L'utilisateur '%{user}' n'a pas pu être supprimé"
|
45
|
+
index:
|
46
|
+
email: "Courriel"
|
47
|
+
name: "Nom"
|
48
|
+
edit: "Modifier"
|
49
|
+
delete: "Supprimer"
|
50
|
+
create: "Ajouter"
|
51
51
|
posts:
|
52
52
|
index:
|
53
|
-
title:
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
published:
|
60
|
-
"Oui"
|
61
|
-
not_published:
|
62
|
-
"Non publié"
|
63
|
-
status:
|
64
|
-
"Publié ?"
|
53
|
+
title: "Titre"
|
54
|
+
edit: "Modifier"
|
55
|
+
delete: "Effacer"
|
56
|
+
published: "Oui"
|
57
|
+
not_published: "Non publié"
|
58
|
+
status: "Publié ?"
|
65
59
|
new:
|
66
|
-
header:
|
67
|
-
"Nouveau monologue"
|
60
|
+
header: "Nouveau monologue"
|
68
61
|
create:
|
69
|
-
|
70
|
-
|
71
|
-
created_with_future_date_and_cache:
|
72
|
-
"Monologue créé avec succès."
|
62
|
+
saved: "Monologue créé: les articles avec une date de publication future ne seront pas affichés à moins que la cache soit vidée la même journée. La cache sera probablement générée avant ce moment et ne sera pas rafraichie automatiquement."
|
63
|
+
saved_with_future_date_and_cache: "Monologue créé avec succès."
|
73
64
|
edit:
|
74
|
-
header:
|
75
|
-
"Modifier"
|
65
|
+
header: "Modifier"
|
76
66
|
update:
|
77
|
-
saved_with_future_date_and_cache:
|
78
|
-
|
79
|
-
saved:
|
80
|
-
"Monologue sauvegardé"
|
67
|
+
saved_with_future_date_and_cache: "Monologue sauvegardé: les articles avec une date de publication future ne seront pas affichés à moins que la cache soit vidée la même journée. La cache sera probablement générée avant ce moment et ne sera pas rafraichie automatiquement."
|
68
|
+
saved: "Monologue sauvegardé"
|
81
69
|
delete:
|
82
|
-
removed:
|
83
|
-
|
84
|
-
fail:
|
85
|
-
"Le monologue n'as pas pu être effacé!"
|
70
|
+
removed: "Monologue effacé"
|
71
|
+
fail: "Le monologue n'as pas pu être effacé!"
|
86
72
|
form:
|
87
|
-
title:
|
88
|
-
|
89
|
-
content:
|
90
|
-
"Contenu"
|
73
|
+
title: "Titre"
|
74
|
+
content: "Contenu"
|
91
75
|
url:
|
92
|
-
caption:
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
save:
|
101
|
-
"Sauvegarder"
|
102
|
-
preview:
|
103
|
-
"Aperçu"
|
104
|
-
tags:
|
105
|
-
"Catégories<br/><i>Séparer les catégories par des virgules</i>"
|
76
|
+
caption: "Adresse URL<br/><i> Ce sera rempli par défaut avec '%{default_url}'. Vous pouvez aussi choisir votre propre adresse URL. N'ajoutez pas '%{root}' au début de l'adresse URL.</i>"
|
77
|
+
generated_title: "nom-de-votre-article"
|
78
|
+
published_at: "Publié le"
|
79
|
+
published: "Publié"
|
80
|
+
save: "Sauvegarder"
|
81
|
+
preview: "Aperçu"
|
82
|
+
close: "Fermer"
|
83
|
+
tags: "Catégories"
|
106
84
|
cache:
|
107
85
|
show:
|
108
86
|
title: "Gérer la cache"
|
@@ -117,41 +95,33 @@ fr:
|
|
117
95
|
explanations: "Il y a certaines configurations à effectuer pour utiliser la gestion de cache de base de Monologue. SVP voir la documentation ci-dessous (anglais seulement)."
|
118
96
|
comments:
|
119
97
|
show:
|
120
|
-
recent_comments:
|
121
|
-
"Commentaires récents"
|
98
|
+
recent_comments: "Commentaires récents"
|
122
99
|
sessions:
|
123
100
|
new:
|
124
|
-
title:
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
password:
|
129
|
-
"Mot de passe"
|
130
|
-
button:
|
131
|
-
"Connexion"
|
101
|
+
title: "Authentification"
|
102
|
+
email: "Courriel"
|
103
|
+
password: "Mot de passe"
|
104
|
+
button: "Connexion"
|
132
105
|
messages:
|
133
|
-
invalid:
|
134
|
-
|
135
|
-
|
136
|
-
"Connecté!"
|
137
|
-
logged_out:
|
138
|
-
"Déconnecté!"
|
106
|
+
invalid: "Courriel ou mot de passe invalide"
|
107
|
+
logged_in: "Connecté!"
|
108
|
+
logged_out: "Déconnecté!"
|
139
109
|
layouts:
|
140
110
|
monologue:
|
141
111
|
admin:
|
142
112
|
nav_bar:
|
143
|
-
add_a_monologue:
|
144
|
-
|
145
|
-
|
146
|
-
"Liste des monologues"
|
147
|
-
comments:
|
148
|
-
"Commentaires"
|
113
|
+
add_a_monologue: "Ajouter un monologue"
|
114
|
+
list_monologues: "Liste des monologues"
|
115
|
+
comments: "Commentaires"
|
149
116
|
cache: "Gérer la cache"
|
150
117
|
edit_user_info: "Mon compte"
|
151
118
|
settings: "Paramètres"
|
152
|
-
log_out:
|
153
|
-
|
119
|
+
log_out: "Déconnexion"
|
120
|
+
users: "Utilisateur"
|
154
121
|
activerecord:
|
122
|
+
attributes:
|
123
|
+
monologue/user:
|
124
|
+
password_digest: "Confirmation du mot de passe"
|
155
125
|
errors:
|
156
126
|
format: "%{message}"
|
157
127
|
errors:
|
@@ -159,21 +129,17 @@ fr:
|
|
159
129
|
errors:
|
160
130
|
models:
|
161
131
|
full_messages: "%{message}"
|
162
|
-
monologue/
|
163
|
-
blank:
|
164
|
-
|
132
|
+
monologue/post:
|
133
|
+
blank: "%{attribute} est requis"
|
134
|
+
taken: "%{attribute} est déjà utilisé par un autre article"
|
165
135
|
attributes:
|
166
136
|
published_at:
|
167
|
-
blank:
|
168
|
-
"'Publié le' est requis"
|
137
|
+
blank: "'Publié le' est requis"
|
169
138
|
url:
|
170
|
-
start_with_slash:
|
171
|
-
"L'adresse URL ne peut débuter par un slash ('/')"
|
172
|
-
unique:
|
173
|
-
"L'adresse URL est déjà utilisée par un autre article"
|
139
|
+
start_with_slash: "L'adresse URL ne peut débuter par un slash ('/')"
|
174
140
|
monologue/user:
|
175
|
-
blank:
|
176
|
-
|
141
|
+
blank: "%{attribute} est requis"
|
142
|
+
taken: "%{attribute} est déjà utilisé"
|
177
143
|
attributes:
|
178
144
|
password:
|
179
145
|
confirmation: "Le mot de passe et sa confirmation doivent concorder."
|
@@ -0,0 +1,147 @@
|
|
1
|
+
it:
|
2
|
+
monologue:
|
3
|
+
posts:
|
4
|
+
pagination:
|
5
|
+
older_posts: "Post precedenti"
|
6
|
+
newer_posts: "Post successivi"
|
7
|
+
social_sharing:
|
8
|
+
tagline: "Ti è piaciuto quello che hai letto? Condividilo!"
|
9
|
+
post:
|
10
|
+
readmore: "Continua a leggere"
|
11
|
+
"404":
|
12
|
+
title: "La pagina che stavi cercando non esiste."
|
13
|
+
message: "Hai inserito un indirizzo errato o la pagina che stai cercando è stata spostata."
|
14
|
+
sidebar:
|
15
|
+
categories:
|
16
|
+
title: "Categorie"
|
17
|
+
latest_posts:
|
18
|
+
title: "Ultimi post"
|
19
|
+
latest_tweets:
|
20
|
+
title: "Ultimi tweet"
|
21
|
+
tag_cloud:
|
22
|
+
title: "Tag"
|
23
|
+
tags:
|
24
|
+
show:
|
25
|
+
showing_post_with_tag: "Lista dei post con etichetta"
|
26
|
+
show_all_posts: "Mostra tutti i post"
|
27
|
+
admin:
|
28
|
+
login:
|
29
|
+
need_auth: "Devi prima effettuare il login per accedere alla sezione admin."
|
30
|
+
users:
|
31
|
+
form:
|
32
|
+
email: "Email"
|
33
|
+
name: "Nome"
|
34
|
+
password: "Password"
|
35
|
+
password_confirmation: "Conferma password"
|
36
|
+
edit:
|
37
|
+
header: "Modifica il tuo account"
|
38
|
+
save: "Salva"
|
39
|
+
new:
|
40
|
+
create: "Create"
|
41
|
+
header: "Crea un utente"
|
42
|
+
create:
|
43
|
+
success: "Utente creato"
|
44
|
+
delete:
|
45
|
+
removed: "L'utente %{user}' è stato rimosso con successo"
|
46
|
+
failed: "È stato impossibile rimuovere '%{user}'"
|
47
|
+
index:
|
48
|
+
email: "Email"
|
49
|
+
name: "Nome"
|
50
|
+
edit: "Modifica"
|
51
|
+
delete: "Elimina"
|
52
|
+
create: "Crea"
|
53
|
+
posts:
|
54
|
+
index:
|
55
|
+
title: "Titolo"
|
56
|
+
edit: "Modifica"
|
57
|
+
delete: "Elimina"
|
58
|
+
published: "Sì"
|
59
|
+
not_published: "Non pubblicato"
|
60
|
+
status: "Pubblicato ?"
|
61
|
+
new:
|
62
|
+
header: "Nuovo monologue"
|
63
|
+
create:
|
64
|
+
saved: "Monologue creato"
|
65
|
+
saved_with_future_date_and_cache: "Monologue creato: i post con una data di pubblicazione futura non verranno mostrati a meno che la cache non venga svuotata quello stesso giorno. La cache verrà probabilmente generata prima di quella data e non verrà aggiornata automaticamente."
|
66
|
+
edit:
|
67
|
+
header: "Modifica"
|
68
|
+
update:
|
69
|
+
saved_with_future_date_and_cache: "Monologue salvato: i post con una data di pubblicazione futura non verranno mostrati a meno che la cache non venga svuotata quello stesso giorno. La cache verrà probabilmente generata prima di quella data e non verrà aggiornata automaticamente."
|
70
|
+
saved: "Monologue salvato"
|
71
|
+
delete:
|
72
|
+
removed: "Monologue rimosso"
|
73
|
+
fail: "È stato impossibile rimuovere il monologue!"
|
74
|
+
form:
|
75
|
+
title: "Titolo"
|
76
|
+
content: "Contenuto"
|
77
|
+
url:
|
78
|
+
caption: "URL<br/><i> Di default verrà usato il valore '%{default_url}'. Puoi scegliere una URL personalizzata. Non aggiungere '%{root}' all'inizio della tua URL.</i>"
|
79
|
+
generated_title: "titolo-del-post"
|
80
|
+
published_at: "Pubblicato il"
|
81
|
+
published: "Pubblicato"
|
82
|
+
save: "Salva"
|
83
|
+
preview: "Anteprima"
|
84
|
+
close: "Chiudi"
|
85
|
+
tags: "Tag <br/><i>Usa la virgola per separare i tag</i>"
|
86
|
+
comments:
|
87
|
+
show:
|
88
|
+
recent_comments: "Commenti recenti"
|
89
|
+
cache:
|
90
|
+
show:
|
91
|
+
title: "Gestisci cache"
|
92
|
+
description: "Qui puoi eliminare completamente la cache."
|
93
|
+
files_in_cache: "Questi sono i file effettivamente nella cache:"
|
94
|
+
no_files_are_cached: "Non ci sono file nella cache."
|
95
|
+
delete: "Svuotare la cache completamente?"
|
96
|
+
confirm: "Sei sicuro di voler eliminare la cache completamente?"
|
97
|
+
cache_wiped: "La cache è stata svuotata!"
|
98
|
+
how_to_enable:
|
99
|
+
warning: "Non puoi gestire la cache!"
|
100
|
+
explanations: "Ci sono alcune configurazioni errate che non permettono l'utilizzo della cache di Monologue. Per favore riguarda la documentazione delle configurazioni."
|
101
|
+
sessions:
|
102
|
+
new:
|
103
|
+
title: "Accedi"
|
104
|
+
email: "Email"
|
105
|
+
password: "Password"
|
106
|
+
button: "Log in"
|
107
|
+
messages:
|
108
|
+
invalid: "Email o password non validi"
|
109
|
+
logged_in: "Accesso effettuato!"
|
110
|
+
logged_out: "Sei uscito dal sistema!"
|
111
|
+
layouts:
|
112
|
+
monologue:
|
113
|
+
admin:
|
114
|
+
nav_bar:
|
115
|
+
add_a_monologue: "Aggiungi un monologue"
|
116
|
+
list_monologues: "Lista di monologues"
|
117
|
+
comments: "Commenti"
|
118
|
+
cache: "Gestisci cache"
|
119
|
+
edit_user_info: "Il mio account"
|
120
|
+
settings: "Impostazioni"
|
121
|
+
log_out: "Esci"
|
122
|
+
users: "Utenti"
|
123
|
+
activerecord:
|
124
|
+
attributes:
|
125
|
+
monologue/user:
|
126
|
+
password_digest: "Conferma password"
|
127
|
+
errors:
|
128
|
+
format: "%{message}"
|
129
|
+
errors:
|
130
|
+
full_messages: "%{message}"
|
131
|
+
errors:
|
132
|
+
models:
|
133
|
+
full_messages: "%{message}"
|
134
|
+
monologue/posts_revision:
|
135
|
+
blank: "%{attribute} è richiesto"
|
136
|
+
attributes:
|
137
|
+
published_at:
|
138
|
+
blank: "'Pubblicato il' è richiesto"
|
139
|
+
url:
|
140
|
+
start_with_slash: "URL non può iniziare con slash ('/')"
|
141
|
+
unique: "URL è già in uso per un altro post"
|
142
|
+
monologue/user:
|
143
|
+
blank: "%{attribute} è richiesto"
|
144
|
+
taken: "%{attribute} è già stato preso"
|
145
|
+
attributes:
|
146
|
+
password:
|
147
|
+
confirmation: "La conferma non coincide con la password."
|