plupload-assets 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (59) hide show
  1. data/.gitignore +17 -0
  2. data/.rvmrc +1 -0
  3. data/Gemfile +6 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +31 -0
  6. data/Rakefile +1 -0
  7. data/lib/plupload-assets.rb +6 -0
  8. data/lib/plupload/rails/engine.rb +7 -0
  9. data/lib/plupload/version.rb +4 -0
  10. data/plupload-assets.gemspec +20 -0
  11. data/vendor/assets/javascripts/plupload/i18n/cs.js +14 -0
  12. data/vendor/assets/javascripts/plupload/i18n/da.js +12 -0
  13. data/vendor/assets/javascripts/plupload/i18n/de.js +24 -0
  14. data/vendor/assets/javascripts/plupload/i18n/el.js +14 -0
  15. data/vendor/assets/javascripts/plupload/i18n/es.js +25 -0
  16. data/vendor/assets/javascripts/plupload/i18n/et.js +33 -0
  17. data/vendor/assets/javascripts/plupload/i18n/fa.js +37 -0
  18. data/vendor/assets/javascripts/plupload/i18n/fi.js +33 -0
  19. data/vendor/assets/javascripts/plupload/i18n/fr-ca.js +35 -0
  20. data/vendor/assets/javascripts/plupload/i18n/fr.js +25 -0
  21. data/vendor/assets/javascripts/plupload/i18n/hr.js +25 -0
  22. data/vendor/assets/javascripts/plupload/i18n/hu.js +33 -0
  23. data/vendor/assets/javascripts/plupload/i18n/it.js +24 -0
  24. data/vendor/assets/javascripts/plupload/i18n/ja.js +37 -0
  25. data/vendor/assets/javascripts/plupload/i18n/ko.js +36 -0
  26. data/vendor/assets/javascripts/plupload/i18n/lv.js +33 -0
  27. data/vendor/assets/javascripts/plupload/i18n/nl.js +21 -0
  28. data/vendor/assets/javascripts/plupload/i18n/pl.js +24 -0
  29. data/vendor/assets/javascripts/plupload/i18n/pt-br.js +35 -0
  30. data/vendor/assets/javascripts/plupload/i18n/ro.js +24 -0
  31. data/vendor/assets/javascripts/plupload/i18n/ru.js +21 -0
  32. data/vendor/assets/javascripts/plupload/i18n/sk.js +25 -0
  33. data/vendor/assets/javascripts/plupload/i18n/sr.js +14 -0
  34. data/vendor/assets/javascripts/plupload/i18n/sv.js +12 -0
  35. data/vendor/assets/javascripts/plupload/jquery.plupload.queue/css/jquery.plupload.queue.css +177 -0
  36. data/vendor/assets/javascripts/plupload/jquery.plupload.queue/img/backgrounds.gif +0 -0
  37. data/vendor/assets/javascripts/plupload/jquery.plupload.queue/img/buttons-disabled.png +0 -0
  38. data/vendor/assets/javascripts/plupload/jquery.plupload.queue/img/buttons.png +0 -0
  39. data/vendor/assets/javascripts/plupload/jquery.plupload.queue/img/delete.gif +0 -0
  40. data/vendor/assets/javascripts/plupload/jquery.plupload.queue/img/done.gif +0 -0
  41. data/vendor/assets/javascripts/plupload/jquery.plupload.queue/img/error.gif +0 -0
  42. data/vendor/assets/javascripts/plupload/jquery.plupload.queue/img/throbber.gif +0 -0
  43. data/vendor/assets/javascripts/plupload/jquery.plupload.queue/img/transp50.png +0 -0
  44. data/vendor/assets/javascripts/plupload/jquery.plupload.queue/jquery.plupload.queue.js +1 -0
  45. data/vendor/assets/javascripts/plupload/jquery.ui.plupload/css/jquery.ui.plupload.css +147 -0
  46. data/vendor/assets/javascripts/plupload/jquery.ui.plupload/img/plupload-bw.png +0 -0
  47. data/vendor/assets/javascripts/plupload/jquery.ui.plupload/img/plupload.png +0 -0
  48. data/vendor/assets/javascripts/plupload/jquery.ui.plupload/jquery.ui.plupload.js +1 -0
  49. data/vendor/assets/javascripts/plupload/plupload.browserplus.js +1 -0
  50. data/vendor/assets/javascripts/plupload/plupload.flash.js +1 -0
  51. data/vendor/assets/javascripts/plupload/plupload.flash.swf +0 -0
  52. data/vendor/assets/javascripts/plupload/plupload.full.js +2 -0
  53. data/vendor/assets/javascripts/plupload/plupload.gears.js +1 -0
  54. data/vendor/assets/javascripts/plupload/plupload.html4.js +1 -0
  55. data/vendor/assets/javascripts/plupload/plupload.html5.js +1 -0
  56. data/vendor/assets/javascripts/plupload/plupload.js +2 -0
  57. data/vendor/assets/javascripts/plupload/plupload.silverlight.js +1 -0
  58. data/vendor/assets/javascripts/plupload/plupload.silverlight.xap +0 -0
  59. metadata +126 -0
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/.rvmrc ADDED
@@ -0,0 +1 @@
1
+ rvm use 1.9.3@plupload-assets --create
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+ group :test do
3
+ gem 'rspec'
4
+ end
5
+ # Specify your gem's dependencies in plupload-assets.gemspec
6
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 hxplove01
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,31 @@
1
+ # Plupload::Assets
2
+
3
+ plupload for rails3 assets pipeline, Plupload version: 1.5.7
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'plupload-assets'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install plupload-assets
18
+
19
+ ## Usage
20
+
21
+ Append following lines into your application.js
22
+
23
+ //= require plupload/plupload.full
24
+
25
+ ## Contributing
26
+
27
+ 1. Fork it
28
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
29
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
30
+ 4. Push to the branch (`git push origin my-new-feature`)
31
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,6 @@
1
+ #encoding: utf-8
2
+ $:.unshift(File.dirname(__FILE__))
3
+
4
+ module Plupload
5
+ require 'plupload/rails/engine' if defined?(::Rails)
6
+ end
@@ -0,0 +1,7 @@
1
+ #encoding: utf-8
2
+ module Plupload
3
+ module Rails
4
+ class Engine < ::Rails::Engine
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,4 @@
1
+ module Plupload
2
+ VERSION = "0.0.1"
3
+ PLUPLOAD_VERSION = '1.5.7'
4
+ end
@@ -0,0 +1,20 @@
1
+ # coding: utf-8
2
+ require File.expand_path('../lib/plupload/version', __FILE__)
3
+
4
+ Gem::Specification.new do |spec|
5
+ spec.name = "plupload-assets"
6
+ spec.version = Plupload::VERSION
7
+ spec.authors = ["Brainet"]
8
+ spec.email = ["brainet@brainet.com.cn"]
9
+ spec.description = %q{plupload for rails3 assets pipeline}
10
+ spec.summary = %q{plupload for rails3 assets pipeline}
11
+ spec.homepage = "https://github.com/brainet/plupload-assets"
12
+ spec.license = "GPLv2"
13
+
14
+ spec.files = `git ls-files`.split($/)
15
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
16
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
17
+ spec.require_paths = %w(lib)
18
+
19
+ spec.add_dependency "rails", "> 3.1", "< 4.0"
20
+ end
@@ -0,0 +1,14 @@
1
+ // .po file like language pack
2
+ plupload.addI18n({
3
+ 'Select files' : 'Vyberte soubory',
4
+ 'Add files to the upload queue and click the start button.' : 'Přidejte soubory do fronty a pak spusťte nahrávání.',
5
+ 'Filename' : 'Název souboru',
6
+ 'Status' : 'Status',
7
+ 'Size' : 'Velikost',
8
+ 'Add Files' : 'Přidat soubory',
9
+ 'Stop current upload' : 'Zastavit nahrávání',
10
+ 'Start uploading queue' : 'Spustit frontu nahrávání',
11
+ 'Drag files here.' : 'Sem přetáhněte soubory.',
12
+ 'Start Upload': 'Spustit nahrávání',
13
+ 'Uploaded %d/%d files': 'Nahráno %d/%d souborů'
14
+ });
@@ -0,0 +1,12 @@
1
+ // .po file like language pack
2
+ plupload.addI18n({
3
+ 'Select files' : 'Vælg filer',
4
+ 'Add files to the upload queue and click the start button.' : 'Tilføj filer til køen, og tryk på start.',
5
+ 'Filename' : 'Filnavn',
6
+ 'Status' : 'Status',
7
+ 'Size' : 'Størrelse',
8
+ 'Add files' : 'Tilføj filer',
9
+ 'Stop current upload' : 'Stop upload',
10
+ 'Start uploading queue' : 'Start upload',
11
+ 'Drag files here.' : 'Træk filer her.'
12
+ });
@@ -0,0 +1,24 @@
1
+ // German
2
+ plupload.addI18n({
3
+ 'Select files' : 'Dateien hochladen',
4
+ 'Add files to the upload queue and click the start button.' : 'Dateien hinzuf&uuml;gen und auf \'Hochladen\' klicken.',
5
+ 'Filename' : 'Dateiname',
6
+ 'Status' : 'Status',
7
+ 'Size' : 'Gr&ouml;&szlig;e',
8
+ 'Add files' : 'Dateien', // hinzuf&uuml;gen',
9
+ 'Stop current upload' : 'Aktuelles Hochladen stoppen',
10
+ 'Start uploading queue' : 'Hochladen starten',
11
+ 'Uploaded %d/%d files': '%d/%d Dateien sind hochgeladen',
12
+ 'N/A' : 'Nicht verf&uuml;gbar',
13
+ 'Drag files here.' : 'Ziehen Sie die Dateien hier hin',
14
+ 'File extension error.': 'Fehler bei Dateiendung',
15
+ 'File size error.': 'Fehler bei Dateigr&ouml;ße',
16
+ 'Init error.': 'Initialisierungsfehler',
17
+ 'HTTP Error.': 'HTTP-Fehler',
18
+ 'Security error.': 'Sicherheitsfehler',
19
+ 'Generic error.': 'Typischer Fehler',
20
+ 'IO error.': 'Ein/Ausgabe-Fehler',
21
+ 'Stop Upload': 'Hochladen stoppen',
22
+ 'Start upload': 'Hochladen',
23
+ '%d files queued': '%d Dateien in der Warteschlange'
24
+ });
@@ -0,0 +1,14 @@
1
+ // Greek
2
+ plupload.addI18n({
3
+ 'Select files' : 'Επιλέξτε Αρχεία',
4
+ 'Add files to the upload queue and click the start button.' : 'Προσθήκη αρχείων στην ουρά μεταφόρτωσης',
5
+ 'Filename' : 'Όνομα αρχείου',
6
+ 'Status' : 'Κατάσταση',
7
+ 'Size' : 'Μέγεθος',
8
+ 'Add Files' : 'Προσθέστε αρχεία',
9
+ 'Stop current upload' : 'Διακοπή τρέχουσας μεταφόρτωσης',
10
+ 'Start uploading queue' : 'Εκκίνηση μεταφόρτωσης ουράς αρχείων',
11
+ 'Drag files here.' : 'Σύρετε αρχεία εδώ',
12
+ 'Start Upload': 'Εκκίνηση μεταφόρτωσης',
13
+ 'Uploaded %d/%d files': 'Ανέβηκαν %d/%d αρχεία'
14
+ });
@@ -0,0 +1,25 @@
1
+ // Spanish
2
+ plupload.addI18n({
3
+ 'Select files' : 'Elija archivos:',
4
+ 'Add files to the upload queue and click the start button.' : 'Agregue archivos a la cola de subida y haga click en el boton de iniciar.',
5
+ 'Filename' : 'Nombre de archivo',
6
+ 'Status' : 'Estado',
7
+ 'Size' : 'Tama&ntilde;o',
8
+ 'Add files' : 'Agregue archivos',
9
+ 'Stop current upload' : 'Detener subida actual',
10
+ 'Start uploading queue' : 'Iniciar subida de cola',
11
+ 'Uploaded %d/%d files': 'Subidos %d/%d archivos',
12
+ 'N/A' : 'No disponible',
13
+ 'Drag files here.' : 'Arrastre archivos aqu&iacute;',
14
+ 'File extension error.': 'Error de extensi&oacute;n de archivo.',
15
+ 'File size error.': 'Error de tama&ntilde;o de archivo.',
16
+ 'Init error.': 'Error de inicializaci&oacute;n.',
17
+ 'HTTP Error.': 'Error de HTTP.',
18
+ 'Security error.': 'Error de seguridad.',
19
+ 'Generic error.': 'Error gen&eacute;rico.',
20
+ 'IO error.': 'Error de entrada/salida.',
21
+ 'Stop Upload': 'Detener Subida.',
22
+ 'Add Files': 'Agregar Archivos',
23
+ 'Start Upload': 'Comenzar Subida.',
24
+ '%d files queued': '%d archivos en cola.'
25
+ });
@@ -0,0 +1,33 @@
1
+ // Estonian translation, et.js
2
+ plupload.addI18n({
3
+ 'Select files' : 'Vali faile',
4
+ 'Add files to the upload queue and click the start button.' : 'Lisa failid üleslaadimise järjekorda ja klõpsa alustamise nupule.',
5
+ 'Filename' : 'Failinimi',
6
+ 'Status' : 'Olek',
7
+ 'Size' : 'Suurus',
8
+ 'Add files' : 'Lisa faile',
9
+ 'Stop current upload' : 'Praeguse üleslaadimise peatamine',
10
+ 'Start uploading queue' : 'Järjekorras ootavate failide üleslaadimise alustamine',
11
+ 'Drag files here.' : 'Lohista failid siia.',
12
+ 'Start upload' : 'Alusta üleslaadimist',
13
+ 'Uploaded %d/%d files': 'Üles laaditud %d/%d',
14
+ 'Stop upload': 'Peata üleslaadimine',
15
+ 'Start upload': 'Alusta üleslaadimist',
16
+ '%d files queued': 'Järjekorras on %d faili',
17
+ 'File: %s': 'Fail: %s',
18
+ 'Close': 'Sulge',
19
+ 'Using runtime: ': 'Kasutatakse varianti: ',
20
+ 'File: %f, size: %s, max file size: %m': 'Fail: %f, suurus: %s, suurim failisuurus: %m',
21
+ 'Upload element accepts only %d file(s) at a time. Extra files were stripped.': 'Üleslaadimise element saab vastu võtta ainult %d faili ühe korraga. Ülejäänud failid jäetakse laadimata.',
22
+ 'Upload URL might be wrong or doesn\'t exist': 'Üleslaadimise URL võib olla vale või seda pole',
23
+ 'Error: File too large: ': 'Viga: fail on liiga suur: ',
24
+ 'Error: Invalid file extension: ': 'Viga: sobimatu faililaiend: ',
25
+ 'File extension error.': 'Faililaiendi viga.',
26
+ 'File size error.': 'Failisuuruse viga.',
27
+ 'File count error.': 'Failide arvu viga.',
28
+ 'Init error.': 'Lähtestamise viga.',
29
+ 'HTTP Error.': 'HTTP ühenduse viga.',
30
+ 'Security error.': 'Turvaviga.',
31
+ 'Generic error.': 'Üldine viga.',
32
+ 'IO error.': 'S/V (I/O) viga.'
33
+ });
@@ -0,0 +1,37 @@
1
+ // Persian
2
+ plupload.addI18n({
3
+ 'Select files' : 'انتخاب فایل',
4
+ 'Add files to the upload queue and click the start button.' : 'اضافه کنید فایل ها را به صف آپلود و دکمه شروع را کلیک کنید.',
5
+ 'Filename' : 'نام فایل',
6
+ 'Status' : 'وضعیت',
7
+ 'Size' : 'سایز',
8
+ 'Add Files' : 'افزودن فایل',
9
+ 'Stop Upload' : 'توقف انتقال',
10
+ 'Start Upload' : 'شروع انتقال',
11
+ 'Add files' : 'افزودن فایل',
12
+ 'Add files.' : 'افزودن فایل',
13
+ 'Stop current upload' : 'توقف انتقال جاری',
14
+ 'Start uploading queue' : 'شروع صف انتقال',
15
+ 'Stop upload' : 'توقف انتقال',
16
+ 'Start upload' : 'شروع انتقال',
17
+ 'Uploaded %d/%d files': 'منتقل شد %d/%d از فایلها',
18
+ 'N/A' : 'N/A',
19
+ 'Drag files here.' : 'بکشید فایل ها رو به اینجا',
20
+ 'File extension error.': 'خطا پیشوند فایل',
21
+ 'File size error.': 'خطای سایز فایل',
22
+ 'File count error.': 'خطای تعداد فایل',
23
+ 'Init error.': 'خطا در استارت اسکریپت',
24
+ 'HTTP Error.': 'HTTP خطای',
25
+ 'Security error.': 'خطای امنیتی',
26
+ 'Generic error.': 'خطای عمومی',
27
+ 'IO error.': 'IO خطای',
28
+ 'File: %s': ' فایل ها : %s',
29
+ 'Close': 'بستن',
30
+ '%d files queued': '%d فایل در صف',
31
+ 'Using runtime: ': 'استفاده میکنید از : ',
32
+ 'File: %f, size: %s, max file size: %m': فایل: %f, سایز: %s, بزرگترین سایز فایل: %m',
33
+ 'Upload element accepts only %d file(s) at a time. Extra files were stripped.': 'عنصر بارگذار فقط %d فایل رو در یک زمان می پذیرد. سایر فایل ها مجرد از این موضوع هستند.',
34
+ 'Upload URL might be wrong or doesn\'t exist': 'آدرس آپلود اشتباه می باشد یا وجود ندارد',
35
+ 'Error: File too large: ': 'خطا: فایل حجیم است :: ',
36
+ 'Error: Invalid file extension: ': 'خطا پسوند فایل معتبر نمی باشد : '
37
+ });
@@ -0,0 +1,33 @@
1
+ // .fi file like language pack
2
+ plupload.addI18n({
3
+ 'Select files' : 'Valitse tiedostoja',
4
+ 'Add files to the upload queue and click the start button.' : 'Lisää tiedostoja latausjonoon ja klikkaa aloita-nappia.',
5
+ 'Filename' : 'Tiedostonimi',
6
+ 'Status' : 'Tila',
7
+ 'Size' : 'Koko',
8
+ 'Add files' : 'Lisää tiedostoja',
9
+ 'Stop current upload' : 'Pysäytä nykyinen lataus',
10
+ 'Start uploading queue' : 'Aloita jonon lataus',
11
+ 'Drag files here.' : 'Raahaa tiedostot tänne.',
12
+ 'Start upload' : 'Aloita lataus',
13
+ 'Uploaded %d/%d files': 'Ladattu %d/%d tiedostoa',
14
+ 'Stop upload': 'Pysäytä lataus',
15
+ 'Start upload': 'Aloita lataus',
16
+ '%d files queued': '%d tiedostoa jonossa',
17
+ 'File: %s': 'Tiedosto: %s',
18
+ 'Close': 'Sulje',
19
+ 'Using runtime: ': 'Käytetään ajonaikaista: ',
20
+ 'File: %f, size: %s, max file size: %m': 'Tiedosto: %f, koko: %s, maksimi tiedostokoko: %m',
21
+ 'Upload element accepts only %d file(s) at a time. Extra files were stripped.': 'Latauselementti sallii ladata vain %d tiedosto(a) kerrallaan. Ylimääräiset tiedostot ohitettiin.',
22
+ 'Upload URL might be wrong or doesn\'t exist': 'Lataus URL saattaa olla väärin tai ei ole olemassa',
23
+ 'Error: File too large: ': 'Virhe: Tiedosto liian suuri: ',
24
+ 'Error: Invalid file extension: ': 'Virhe: Kelpaamaton tiedostopääte: ',
25
+ 'File extension error.': 'Tiedostopäätevirhe.',
26
+ 'File size error.': 'Tiedostokokovirhe.',
27
+ 'File count error.': 'Tiedostolaskentavirhe.',
28
+ 'Init error.': 'Init virhe.',
29
+ 'HTTP Error.': 'HTTP virhe.',
30
+ 'Security error.': 'Tietoturvavirhe.',
31
+ 'Generic error.': 'Yleinen virhe.',
32
+ 'IO error.': 'I/O virhe.'
33
+ });
@@ -0,0 +1,35 @@
1
+ // French-Canadian
2
+ plupload.addI18n({
3
+ 'Select files' : 'Sélectionnez les fichiers',
4
+ 'Add files to the upload queue and click the start button.' : 'Ajoutez des fichiers à la file d\'attente et appuyez sur le bouton démarrer.',
5
+ 'Filename' : 'Nom du fichier',
6
+ 'Status' : 'Statut',
7
+ 'Size' : 'Taille',
8
+ 'Add files' : 'Ajouter Fichiers',
9
+ 'Stop current upload' : 'Arrêter le téléversement actuel',
10
+ 'Start uploading queue' : 'Démarrer le téléversement',
11
+ 'Uploaded %d/%d files': '%d/%d fichiers envoyés',
12
+ 'N/A' : 'Non applicable',
13
+ 'Drag files here.' : 'Glisser-déposer les fichiers ici',
14
+ 'File extension error.': 'Erreur d\'extension de fichier',
15
+ 'File size error.': 'Erreur de taille de fichier',
16
+ 'Init error.': 'Erreur d\'initialisation',
17
+ 'HTTP Error.': 'Erreur HTTP',
18
+ 'Security error.': 'Erreur de sécurité',
19
+ 'Generic error.': 'Erreur commune',
20
+ 'IO error.': 'Erreur E/S',
21
+ 'Stop Upload': 'Arrêter le téléversement',
22
+ 'Add Files': 'Ajouter des fichiers',
23
+ 'Start upload': 'Démarrer le téléversement',
24
+ '%d files queued': '%d fichiers en attente',
25
+ 'File: %s':'Fichier: %s',
26
+ 'Close':'Fermer',
27
+ 'Using runtime:':'Moteur logiciel:',
28
+ 'File: %f, size: %s, max file size: %m':'Fichier: %f, poids: %s, poids maximal: %m',
29
+ 'Upload element accepts only %d file(s) at a time. Extra files were stripped.':'La file accepte %d fichier(s) à la fois. Les fichiers en trop sont ignorés',
30
+ 'Upload URL might be wrong or doesn\'t exist':'L\'URL de téléversement est erroné ou inexistant',
31
+ 'Error: File to large: ':'Fichier trop volumineux: ',
32
+ 'Error: Invalid file extension: ':'Extension de fichier invalide: ',
33
+ 'File size error.':'Erreur de taile de fichier',
34
+ 'File count error.':'Erreur de décompte des fichiers'
35
+ });
@@ -0,0 +1,25 @@
1
+ // French
2
+ plupload.addI18n({
3
+ 'Select files' : 'Sélectionnez les fichiers',
4
+ 'Add files to the upload queue and click the start button.' : 'Ajoutez des fichiers à la file et appuyez sur le bouton démarrer.',
5
+ 'Filename' : 'Nom de fichier',
6
+ 'Status' : 'Status',
7
+ 'Size' : 'Taille',
8
+ 'Add files' : 'Ajouter Fichiers',
9
+ 'Stop current upload' : 'Arrêter l\'envoi en cours',
10
+ 'Start uploading queue' : 'Démarrer l\'envoi',
11
+ 'Uploaded %d/%d files': '%d/%d fichiers envoyés',
12
+ 'N/A' : 'Non applicable',
13
+ 'Drag files here.' : 'Déposer les fichiers ici.',
14
+ 'File extension error.': 'Erreur extension fichier',
15
+ 'File size error.': 'Erreur taille fichier.',
16
+ 'Init error.': 'Erreur d\'initialisation.',
17
+ 'HTTP Error.': 'Erreur HTTP.',
18
+ 'Security error.': 'Erreur de sécurité.',
19
+ 'Generic error.': 'Erreur générique.',
20
+ 'IO error.': 'Erreur E/S.',
21
+ 'Stop Upload': 'Arrêter les envois.',
22
+ 'Add Files': 'Ajouter des fichiers',
23
+ 'Start Upload': 'Démarrer les envois.',
24
+ '%d files queued': '%d fichiers en attente.'
25
+ });
@@ -0,0 +1,25 @@
1
+ // Croatian
2
+ plupload.addI18n({
3
+ 'Select files': 'Izaberite datoteke:',
4
+ 'Add files to the upload queue and click the start button.': 'Dodajte datoteke u listu i kliknite Upload.',
5
+ 'Filename': 'Ime datoteke',
6
+ 'Status': 'Status',
7
+ 'Size': 'Veličina',
8
+ 'Add files': 'Dodajte datoteke',
9
+ 'Stop current upload': 'Zaustavi trenutan upload',
10
+ 'Start uploading queue': 'Pokreni Upload',
11
+ 'Uploaded %d/%d files': 'Uploadano %d/%d datoteka',
12
+ 'N/A': 'N/A',
13
+ 'Drag files here.': 'Dovucite datoteke ovdje',
14
+ 'File extension error.': 'Greška ekstenzije datoteke.',
15
+ 'File size error.': 'Greška veličine datoteke.',
16
+ 'Init error.': 'Greška inicijalizacije.',
17
+ 'HTTP Error.': 'HTTP greška.',
18
+ 'Security error.': 'Sigurnosna greška.',
19
+ 'Generic error.': 'Generička greška.',
20
+ 'IO error.': 'I/O greška.',
21
+ 'Stop Upload': 'Zaustavi upload.',
22
+ 'Add Files': 'Dodaj datoteke',
23
+ 'Start Upload': 'Pokreni upload.',
24
+ '%d files queued': '%d datoteka na čekanju.'
25
+ });
@@ -0,0 +1,33 @@
1
+ // Hungarian
2
+ plupload.addI18n({
3
+ 'Select files' : 'Fájlok kiválasztása',
4
+ 'Add files to the upload queue and click the start button.' : 'Válaszd ki a fájlokat, majd kattints az Indítás gombra.',
5
+ 'Filename' : 'Fájlnév',
6
+ 'Status' : 'Állapot',
7
+ 'Size' : 'Méret',
8
+ 'Add files' : 'Hozzáadás',
9
+ 'Stop current upload' : 'Jelenlegi feltöltés megszakítása',
10
+ 'Start uploading queue' : 'Várakozási sor feltöltésének indítása',
11
+ 'Uploaded %d/%d files': 'Feltöltött fájlok: %d/%d',
12
+ 'N/A': 'Nem elérhető',
13
+ 'Drag files here.' : 'Húzd ide a fájlokat.',
14
+ 'Stop upload': 'Feltöltés megszakítása',
15
+ 'Start upload': 'Indítás',
16
+ '%d files queued': '%d fájl sorbaállítva',
17
+ 'File: %s': 'Fájl: %s',
18
+ 'Close': 'Bezárás',
19
+ 'Using runtime: ': 'Használt runtime: ',
20
+ 'File: %f, size: %s, max file size: %m': 'Fájl: %f, méret: %s, maximális fájlméret: %m',
21
+ 'Upload element accepts only %d file(s) at a time. Extra files were stripped.': 'A feltöltés egyszerre csak %d fájlt fogad el, a többi fájl nem lesz feltöltve.',
22
+ 'Upload URL might be wrong or doesn\'t exist': 'A megadott URL hibás vagy nem létezik',
23
+ 'Error: File too large: ': 'Hiba: A fájl túl nagy: ',
24
+ 'Error: Invalid file extension: ': 'Hiba: Érvénytelen fájlkiterjesztés: ',
25
+ 'File extension error.': 'Hibás fájlkiterjesztés.',
26
+ 'File size error.': 'Hibás fájlméret.',
27
+ 'File count error.': 'A fájlok számával kapcsolatos hiba.',
28
+ 'Init error.': 'Init hiba.',
29
+ 'HTTP Error.': 'HTTP hiba.',
30
+ 'Security error.': 'Biztonsági hiba.',
31
+ 'Generic error.': 'Általános hiba.',
32
+ 'IO error.': 'I/O hiba.'
33
+ });