avatars_for_rails 0.1.3 → 0.1.4
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.
- data/avatars_for_rails.gemspec +1 -1
- data/config/locales/es.yml +28 -0
- metadata +5 -4
data/avatars_for_rails.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
# project in your rails apps through git.
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = "avatars_for_rails"
|
|
5
|
-
s.version = "0.1.
|
|
5
|
+
s.version = "0.1.4"
|
|
6
6
|
s.authors = ["Jaime Castro Montero"]
|
|
7
7
|
s.summary = "Avatar manager for rails apps."
|
|
8
8
|
s.description = "A Rails engine that allows any model to act as avatarable, permitting it to have a complete avatar manager with a few options. Adapted to rails 3.1.0"
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
en:
|
|
2
|
+
actor:
|
|
3
|
+
name: "Nombre"
|
|
4
|
+
avatar:
|
|
5
|
+
crop_image: "Recorta la imagen"
|
|
6
|
+
crop_submit: "Recortar"
|
|
7
|
+
destroy: "Borrar avatar"
|
|
8
|
+
destroy_sure: "¿Borrar el avatar seleccionado?"
|
|
9
|
+
error:
|
|
10
|
+
no_file: "Tienes que seleccionar un fichero"
|
|
11
|
+
no_image_file: "El fichero no es válido, tiene que ser una imagen"
|
|
12
|
+
list: "Tienes estos avatars"
|
|
13
|
+
new: "Crear un nuevo avatar"
|
|
14
|
+
new_short: "Nuevo avatar"
|
|
15
|
+
no_avatars: "No tienes ningún avatar, ¡crea uno!"
|
|
16
|
+
one: "Avatar"
|
|
17
|
+
other: "Avatares"
|
|
18
|
+
original: "Imagen original"
|
|
19
|
+
preview: "Vista previa"
|
|
20
|
+
profile_change: "Cambia tu avatar"
|
|
21
|
+
set_default: "Seleccionar"
|
|
22
|
+
set_default_sure: "¿Seleccionar este avatar?"
|
|
23
|
+
text:
|
|
24
|
+
new: "... o sube uno nuevo"
|
|
25
|
+
use: "Usa uno de tus avatares..."
|
|
26
|
+
upload: "Subir"
|
|
27
|
+
|
|
28
|
+
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: avatars_for_rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 19
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 1
|
|
9
|
-
-
|
|
10
|
-
version: 0.1.
|
|
9
|
+
- 4
|
|
10
|
+
version: 0.1.4
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Jaime Castro Montero
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-
|
|
18
|
+
date: 2011-10-10 00:00:00 +02:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -217,6 +217,7 @@ files:
|
|
|
217
217
|
- app/views/avatars/update.js.erb
|
|
218
218
|
- avatars_for_rails.gemspec
|
|
219
219
|
- config/locales/en.yml
|
|
220
|
+
- config/locales/es.yml
|
|
220
221
|
- config/routes.rb
|
|
221
222
|
- lib/avatars_for_rails.rb
|
|
222
223
|
- lib/avatars_for_rails/avatars_controller_config.rb
|