plupload-rails 1.0.5 → 1.0.6
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/README.md +10 -10
- data/lib/plupload/rails/version.rb +1 -1
- data/plupload-rails.gemspec +2 -2
- data/vendor/assets/javascripts/plupload/i18n/pl.js +24 -0
- metadata +7 -6
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
Rails 3.
|
1
|
+
Rails 3.x Integration for Plupload
|
2
2
|
==
|
3
3
|
|
4
|
-
This gem integrates [Plupload](http://www.plupload.com/) with the Rails 3.
|
4
|
+
This gem integrates [Plupload](http://www.plupload.com/) with the Rails 3.x asset pipeline. It's been tested with Rails 3.1 and 3.2.
|
5
5
|
|
6
6
|
|
7
7
|
Install
|
@@ -18,14 +18,14 @@ Quick Start
|
|
18
18
|
Add to your application.js:
|
19
19
|
|
20
20
|
//= require plupload
|
21
|
-
//= require plupload.settings
|
22
|
-
//= require jquery.plupload.queue
|
23
|
-
//= require plupload.flash
|
24
|
-
//= require plupload.silverlight
|
25
|
-
//= require plupload.html4
|
26
|
-
//= require plupload.html5
|
27
|
-
//= require plupload.gears
|
28
|
-
//= require plupload.browserplus
|
21
|
+
//= require plupload.settings // optional, but recommended. it sets generic settings like flash url, etc.
|
22
|
+
//= require jquery.plupload.queue // optional, only if you want to use the jquery integration
|
23
|
+
//= require plupload.flash // optional, only needed if you want to use this runtime
|
24
|
+
//= require plupload.silverlight // optional, only needed if you want to use this runtime
|
25
|
+
//= require plupload.html4 // optional, only needed if you want to use this runtime
|
26
|
+
//= require plupload.html5 // optional, only needed if you want to use this runtime
|
27
|
+
//= require plupload.gears // optional, only needed if you want to use this runtime
|
28
|
+
//= require plupload.browserplus // optional, only needed if you want to use this runtime
|
29
29
|
|
30
30
|
|
31
31
|
Add to your application.scss:
|
data/plupload-rails.gemspec
CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.authors = ["Corin Langosch"]
|
9
9
|
s.email = ["info@corinlangosch.com"]
|
10
10
|
s.homepage = "https://github.com/gucki/plupload-rails"
|
11
|
-
s.summary = %Q{Integration of Plupload #{Plupload::VERSION} with the Rails 3.
|
12
|
-
s.description = %Q{This gem integrates Plupload #{Plupload::VERSION} with the Rails 3.
|
11
|
+
s.summary = %Q{Integration of Plupload #{Plupload::VERSION} with the Rails 3.x asset pipeline}
|
12
|
+
s.description = %Q{This gem integrates Plupload #{Plupload::VERSION} with the Rails 3.x asset pipeline.}
|
13
13
|
|
14
14
|
s.rubyforge_project = "plupload-rails"
|
15
15
|
|
@@ -0,0 +1,24 @@
|
|
1
|
+
plupload.addI18n({
|
2
|
+
'Select files' : 'Wybierz zdjęcia:',
|
3
|
+
'Add files to the upload queue and click the start button.' : 'Dodaj zdjęcia i kliknij \'Wyślij zdjęcia\' aby przesłać wybrane zdjęcia.',
|
4
|
+
'Filename' : 'Nazwa pliku',
|
5
|
+
'Status' : 'Status',
|
6
|
+
'Size' : 'Rozmiar',
|
7
|
+
'Add files' : 'Dodaj zdjęcia',
|
8
|
+
'Stop current upload' : 'Anuluj',
|
9
|
+
'Start uploading queue' : 'Rozpocznij wysyłanie',
|
10
|
+
'Uploaded %d/%d files': 'Wysłano %d/%d plików',
|
11
|
+
'N/A' : 'Nie dostępne',
|
12
|
+
'Drag files here.' : 'Przeciągnij tu zdjęcia',
|
13
|
+
'File extension error.': 'Nieobsługiwany format zdjęcia.',
|
14
|
+
'File size error.': 'Zdjęcie jest zbyt duże.',
|
15
|
+
'Init error.': 'Błąd inicjalizacji.',
|
16
|
+
'HTTP Error.': 'Błąd HTTP.',
|
17
|
+
'Security error.': 'Błąd bezpieczeństwa.',
|
18
|
+
'Generic error.': 'Błąd ogólny.',
|
19
|
+
'IO error.': 'Błąd IO.',
|
20
|
+
'Stop Upload': 'Anuluj wysyłanie.',
|
21
|
+
'Add Files': 'Dodaj zdjęcia',
|
22
|
+
'Start upload': 'Wyślij zdjęcia.',
|
23
|
+
'%d files queued': '%d zdjęc w kolejce.'
|
24
|
+
});
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: plupload-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-01-
|
12
|
+
date: 2012-01-31 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
16
|
-
requirement: &
|
16
|
+
requirement: &13876340 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
@@ -21,8 +21,8 @@ dependencies:
|
|
21
21
|
version: '3.1'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
25
|
-
description: This gem integrates Plupload 1.5.2 with the Rails 3.
|
24
|
+
version_requirements: *13876340
|
25
|
+
description: This gem integrates Plupload 1.5.2 with the Rails 3.x asset pipeline.
|
26
26
|
email:
|
27
27
|
- info@corinlangosch.com
|
28
28
|
executables: []
|
@@ -71,6 +71,7 @@ files:
|
|
71
71
|
- vendor/assets/javascripts/plupload/i18n/ja.js
|
72
72
|
- vendor/assets/javascripts/plupload/i18n/lv.js
|
73
73
|
- vendor/assets/javascripts/plupload/i18n/nl.js
|
74
|
+
- vendor/assets/javascripts/plupload/i18n/pl.js
|
74
75
|
- vendor/assets/javascripts/plupload/i18n/pt-br.js
|
75
76
|
- vendor/assets/javascripts/plupload/i18n/ro.js
|
76
77
|
- vendor/assets/javascripts/plupload/i18n/ru.js
|
@@ -103,5 +104,5 @@ rubyforge_project: plupload-rails
|
|
103
104
|
rubygems_version: 1.8.10
|
104
105
|
signing_key:
|
105
106
|
specification_version: 3
|
106
|
-
summary: Integration of Plupload 1.5.2 with the Rails 3.
|
107
|
+
summary: Integration of Plupload 1.5.2 with the Rails 3.x asset pipeline
|
107
108
|
test_files: []
|