blogo 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.markdown +14 -3
- data/config/locales/blogo.fr.yml +47 -0
- data/lib/blogo/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 50bc324d516b9fb88c064a13d66c13e72fb2159c
|
4
|
+
data.tar.gz: d78871c4c7c924ae93bc828d5009be4720222106
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c083046fb89fa80cdd6e385b059acbf0873be93687284d324791e524517a4eea16aeaa80e43ec911e44ef5a3861c99d9da196ae0e8125059e8fa32674eba343
|
7
|
+
data.tar.gz: a90f14ca5840d154cbf6f3b64e21f6e4eb49da3e4a83a5e30822dec264a1e2d30cc2f398ab36171c281910e8b89f6b8cc5207af47e6b8af3bb60cfe5323c77c0
|
data/README.markdown
CHANGED
@@ -52,13 +52,21 @@ rake blogo:create_user[user_name,user@email.com,password]
|
|
52
52
|
Mount the blog routes to you rails application in `config/routes.rb`
|
53
53
|
|
54
54
|
```
|
55
|
-
|
55
|
+
Blogo::Routes.mount_to(self, at: '/blog')
|
56
56
|
```
|
57
57
|
|
58
58
|
Run the rails application and go to `http://localhost:3000/blog/admin` to create you first post!
|
59
59
|
|
60
60
|
Go to `http://localhost::3000/blog` to take a look at your posts.
|
61
61
|
|
62
|
+
## Troubleshooting
|
63
|
+
|
64
|
+
If you use `zsh` and experience a problem to create a user through the rake task, try to escape `[` and `]` characters:
|
65
|
+
|
66
|
+
```
|
67
|
+
rake blogo:create_user\[user_name,user@email.com,password\]
|
68
|
+
```
|
69
|
+
|
62
70
|
## More information?
|
63
71
|
|
64
72
|
Please see [wiki](https://github.com/greyblake/blogo/wiki).
|
@@ -79,7 +87,7 @@ Please see [wiki](https://github.com/greyblake/blogo/wiki).
|
|
79
87
|
* SEO optimized: generates meta description, keywords, meta tags for facebook([OpenGraph](http://ogp.me/)) and twitter
|
80
88
|
* Can be customized for your own needs.
|
81
89
|
* Very few external dependencies
|
82
|
-
* Localization support (en, es, pt-BR, zh-CN)
|
90
|
+
* Localization support (en, es, pt-BR, zh-CN, fr)
|
83
91
|
|
84
92
|
|
85
93
|
## Markup Formats
|
@@ -97,7 +105,10 @@ add necessary dependencies to your Gemfile manually.
|
|
97
105
|
## Credits
|
98
106
|
|
99
107
|
* [Sergey Potapov](https://github.com/greyblake) - creator and maintainer
|
100
|
-
* [Diego Souza](https://github.com/diegosouza) - I18n support
|
108
|
+
* [Diego Souza](https://github.com/diegosouza) - I18n support and pt-BR locale
|
109
|
+
* [taniadaniela](https://github.com/taniadaniela) - es locale
|
110
|
+
* [Wang Guan](https://github.com/jokester) - zh-CN locale
|
111
|
+
* [myzen2](https://github.com/myzen2) - fr locale
|
101
112
|
|
102
113
|
## License
|
103
114
|
|
@@ -0,0 +1,47 @@
|
|
1
|
+
fr:
|
2
|
+
blogo:
|
3
|
+
user:
|
4
|
+
comments: 'Commentaires'
|
5
|
+
please_enable_javascript: 'Veuillez autoriser JavaScript pour voir les commentaires.'
|
6
|
+
post_by: 'De'
|
7
|
+
read_post: 'Lu ➞'
|
8
|
+
recent_posts: "Articles récents"
|
9
|
+
tags: 'Tags'
|
10
|
+
|
11
|
+
admin:
|
12
|
+
add_new_post: 'Ajouter un nouvel article'
|
13
|
+
author: 'Auteur'
|
14
|
+
comments: 'Commentaires'
|
15
|
+
delete_post_button: 'supprimer'
|
16
|
+
edit_post: "Editer l'article"
|
17
|
+
edit_post_button: "Editer"
|
18
|
+
email: 'Email'
|
19
|
+
image_already_exists: "L'image avec le nom '%{image_name}' existe déjà"
|
20
|
+
logged_in: "Vous êtes connecté"
|
21
|
+
logged_out: "Vous êtes déconnecté"
|
22
|
+
login: 'Connexion'
|
23
|
+
login_button: 'Se connecter'
|
24
|
+
login_fail: 'Email ou mot de passe incorrect'
|
25
|
+
modal_confirm_delete_post: "Etes-vous sûr de vouloir supprimer '%{post_title}' ?"
|
26
|
+
modal_title_close_preview: "Fermer l'aperçu"
|
27
|
+
new_post: 'Nouvel Article'
|
28
|
+
password: 'Mot de passe'
|
29
|
+
post_created: "L'article a été créé"
|
30
|
+
post_removed: "L'article a été déplacé"
|
31
|
+
post_status_draft: 'Brouillon'
|
32
|
+
post_status_published: "Publié"
|
33
|
+
post_title: "Titre de l'article"
|
34
|
+
post_updated: "L'article a été mis à jour"
|
35
|
+
posts: 'Articles'
|
36
|
+
preview_post_button: "Aperçu"
|
37
|
+
preview_press_esc: "Aperçu. Appuyez sur Echap pour revenir."
|
38
|
+
publish: "Publier"
|
39
|
+
published_on: "Publié"
|
40
|
+
save_post_button: 'Enregistrer'
|
41
|
+
sign_out: "Se déconnecter"
|
42
|
+
status: 'Statut'
|
43
|
+
tags_separated_with_commas: "Tags séparés par des virgules"
|
44
|
+
title: 'Titre'
|
45
|
+
today: "Aujourd'hui"
|
46
|
+
unique_permalink: 'permalink unique'
|
47
|
+
recent_comments: "Commentaires récents"
|
data/lib/blogo/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: blogo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sergey Potapov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-03-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -150,6 +150,7 @@ files:
|
|
150
150
|
- app/views/layouts/blogo/admin.html.erb
|
151
151
|
- app/views/layouts/blogo/blog.html.erb
|
152
152
|
- config/environment.rb
|
153
|
+
- config/locales/blogo.fr.yml
|
153
154
|
- config/locales/en.yml
|
154
155
|
- config/locales/es.yml
|
155
156
|
- config/locales/pt-BR.yml
|
@@ -449,7 +450,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
449
450
|
version: '0'
|
450
451
|
requirements: []
|
451
452
|
rubyforge_project:
|
452
|
-
rubygems_version: 2.
|
453
|
+
rubygems_version: 2.5.1
|
453
454
|
signing_key:
|
454
455
|
specification_version: 4
|
455
456
|
summary: Mountable blog engine for Ruby on Rails
|