devise-i18n 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/.DS_Store ADDED
Binary file
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/.rvmrc ADDED
@@ -0,0 +1 @@
1
+ rvm 1.9.2@devise-i18n
data/.travis.yml ADDED
@@ -0,0 +1 @@
1
+ rvm: 1.9.2
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source "http://rubygems.org"
2
+
3
+ group :development do
4
+ gem "rspec", "~> 2.3.0"
5
+ gem "bundler", "~> 1.0.10" # so that we know we have Psych
6
+ gem "jeweler", "~> 1.6.4"
7
+ gem "rcov", ">= 0"
8
+ gem 'i18n-spec'
9
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,30 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ diff-lcs (1.1.3)
5
+ git (1.2.5)
6
+ i18n-spec (0.0.8)
7
+ jeweler (1.6.4)
8
+ bundler (~> 1.0)
9
+ git (>= 1.2.5)
10
+ rake
11
+ rake (0.9.2.2)
12
+ rcov (0.9.11)
13
+ rspec (2.3.0)
14
+ rspec-core (~> 2.3.0)
15
+ rspec-expectations (~> 2.3.0)
16
+ rspec-mocks (~> 2.3.0)
17
+ rspec-core (2.3.1)
18
+ rspec-expectations (2.3.0)
19
+ diff-lcs (~> 1.1.2)
20
+ rspec-mocks (2.3.0)
21
+
22
+ PLATFORMS
23
+ ruby
24
+
25
+ DEPENDENCIES
26
+ bundler (~> 1.0.10)
27
+ i18n-spec
28
+ jeweler (~> 1.6.4)
29
+ rcov
30
+ rspec (~> 2.3.0)
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 Christopher Dell
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,30 @@
1
+ # devise-i18n
2
+
3
+ [![Build Status](https://secure.travis-ci.org/tigrish/devise-i18n.png)](http://travis-ci.org/tigrish/devise-i18n)
4
+
5
+ Missing locales :
6
+ * pt-BR
7
+ * zh-CN
8
+ * zh-TW
9
+ * fr
10
+ * de
11
+ * pl
12
+ * pt-PT
13
+ * ru
14
+ * es
15
+
16
+ ## Contributing to devise-i18n
17
+
18
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
19
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
20
+ * Fork the project
21
+ * Start a feature/bugfix branch
22
+ * Commit and push until you are happy with your contribution
23
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
24
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
25
+
26
+ ## Copyright
27
+
28
+ Copyright (c) 2011 Christopher Dell. See LICENSE.txt for
29
+ further details.
30
+
data/Rakefile ADDED
@@ -0,0 +1,49 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "devise-i18n"
18
+ gem.homepage = "http://github.com/tigrish/devise-i18n"
19
+ gem.license = "MIT"
20
+ gem.summary = %Q{Translations for the devise gem}
21
+ gem.description = %Q{Translations for the devise gem}
22
+ gem.email = "chris@tigrish.com"
23
+ gem.authors = ["Christopher Dell"]
24
+ # dependencies defined in Gemfile
25
+ end
26
+ Jeweler::RubygemsDotOrgTasks.new
27
+
28
+ require 'rspec/core'
29
+ require 'rspec/core/rake_task'
30
+ RSpec::Core::RakeTask.new(:spec) do |spec|
31
+ spec.pattern = FileList['spec/**/*_spec.rb']
32
+ end
33
+
34
+ RSpec::Core::RakeTask.new(:rcov) do |spec|
35
+ spec.pattern = 'spec/**/*_spec.rb'
36
+ spec.rcov = true
37
+ end
38
+
39
+ task :default => :spec
40
+
41
+ require 'rake/rdoctask'
42
+ Rake::RDocTask.new do |rdoc|
43
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
44
+
45
+ rdoc.rdoc_dir = 'rdoc'
46
+ rdoc.title = "devise-i18n #{version}"
47
+ rdoc.rdoc_files.include('README*')
48
+ rdoc.rdoc_files.include('lib/**/*.rb')
49
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.1
@@ -0,0 +1,87 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{devise-i18n}
8
+ s.version = "0.0.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = [%q{Christopher Dell}]
12
+ s.date = %q{2011-12-16}
13
+ s.description = %q{Translations for the devise gem}
14
+ s.email = %q{chris@tigrish.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE.txt",
17
+ "README.md"
18
+ ]
19
+ s.files = [
20
+ ".DS_Store",
21
+ ".document",
22
+ ".rspec",
23
+ ".rvmrc",
24
+ ".travis.yml",
25
+ "Gemfile",
26
+ "Gemfile.lock",
27
+ "LICENSE.txt",
28
+ "README.md",
29
+ "Rakefile",
30
+ "VERSION",
31
+ "devise-i18n.gemspec",
32
+ "lib/devise-i18n.rb",
33
+ "locale/.DS_Store",
34
+ "locale/ca.yml",
35
+ "locale/cs.yml",
36
+ "locale/da.yml",
37
+ "locale/en-US.yml",
38
+ "locale/fa.yml",
39
+ "locale/fi.yml",
40
+ "locale/he.yml",
41
+ "locale/hr.yml",
42
+ "locale/hu.yml",
43
+ "locale/id.yml",
44
+ "locale/is.yml",
45
+ "locale/it.yml",
46
+ "locale/ja.yml",
47
+ "locale/lt.yml",
48
+ "locale/lv.yml",
49
+ "locale/my.yml",
50
+ "locale/nb.yml",
51
+ "locale/nl.yml",
52
+ "locale/sk.yml",
53
+ "locale/sv.yml",
54
+ "spec/devise-i18n_spec.rb",
55
+ "spec/spec_helper.rb"
56
+ ]
57
+ s.homepage = %q{http://github.com/tigrish/devise-i18n}
58
+ s.licenses = [%q{MIT}]
59
+ s.require_paths = [%q{lib}]
60
+ s.rubygems_version = %q{1.8.6}
61
+ s.summary = %q{Translations for the devise gem}
62
+
63
+ if s.respond_to? :specification_version then
64
+ s.specification_version = 3
65
+
66
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
67
+ s.add_development_dependency(%q<rspec>, ["~> 2.3.0"])
68
+ s.add_development_dependency(%q<bundler>, ["~> 1.0.10"])
69
+ s.add_development_dependency(%q<jeweler>, ["~> 1.6.4"])
70
+ s.add_development_dependency(%q<rcov>, [">= 0"])
71
+ s.add_development_dependency(%q<i18n-spec>, [">= 0"])
72
+ else
73
+ s.add_dependency(%q<rspec>, ["~> 2.3.0"])
74
+ s.add_dependency(%q<bundler>, ["~> 1.0.10"])
75
+ s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
76
+ s.add_dependency(%q<rcov>, [">= 0"])
77
+ s.add_dependency(%q<i18n-spec>, [">= 0"])
78
+ end
79
+ else
80
+ s.add_dependency(%q<rspec>, ["~> 2.3.0"])
81
+ s.add_dependency(%q<bundler>, ["~> 1.0.10"])
82
+ s.add_dependency(%q<jeweler>, ["~> 1.6.4"])
83
+ s.add_dependency(%q<rcov>, [">= 0"])
84
+ s.add_dependency(%q<i18n-spec>, [">= 0"])
85
+ end
86
+ end
87
+
@@ -0,0 +1,10 @@
1
+ require 'rails'
2
+
3
+ module DeviseI18n
4
+ class Railtie < ::Rails::Railtie #:nodoc:
5
+ initializer 'rails-i18n' do |app|
6
+ I18n.load_path << Dir[File.join(File.expand_path(File.dirname(__FILE__) + '/../locale'), '*.yml')]
7
+ I18n.load_path.flatten!
8
+ end
9
+ end
10
+ end
data/locale/.DS_Store ADDED
Binary file
data/locale/ca.yml ADDED
@@ -0,0 +1,67 @@
1
+ ca:
2
+ devise:
3
+ confirmations:
4
+ confirmed: El teu compte ha estat confirmat correctament. S'ha iniciat la sessió.
5
+ send_instructions: En breu rebràs un correu electrònic amb instruccions sobre
6
+ com confirmar el teu compte.
7
+ send_paranoid_instructions: Si la teva adreça electrònica existeix a la base
8
+ de dades, rebràs un correu electrònic amb instruccions sobre com confirmar
9
+ el teu compte.
10
+ failure:
11
+ already_authenticated: Ja estàs identificat.
12
+ inactive: El teu compte encara no ha estat activat.
13
+ invalid: Correu electrònic o contrasenya invàlids.
14
+ invalid_token: Codi d'autenticació invàlid.
15
+ locked: El teu compte està bloquejat.
16
+ timeout: La teva sessió ha caducat. Si us plau, torna a iniciar sessió per a
17
+ continuar.
18
+ unauthenticated: Has d'iniciar sessió o bé registrar-te abans de continuar.
19
+ unconfirmed: Has de confirmar el teu compte abans de continuar.
20
+ mailer:
21
+ confirmation_instructions:
22
+ subject: Instruccions de confirmació
23
+ reset_password_instructions:
24
+ subject: Instruccions de regeneració de contrasenya
25
+ unlock_instructions:
26
+ subject: Instruccions de desbloqueig
27
+ omniauth_callbacks:
28
+ failure: No hem pogut autoritzar el compte des de %{kind} perquè "%{reason}".
29
+ success: Autoritzat satisfactoriament el compte des de %{kind}.
30
+ passwords:
31
+ send_instructions: En breu rebràs un correu electrònic amb instruccions sobre
32
+ com restablir la teva contrasenya.
33
+ send_paranoid_instructions: Si la teva adreça electrònica existeix a la base
34
+ de dades, rebràs un correu electrònic amb un enllaç per reestablir la contrasenya.
35
+ updated: La teva contrasenya ha estat canviada correctament. S'ha iniciat la
36
+ sessió.
37
+ updated_not_active: La teva contrasenya ha estat canviada correctament.
38
+ registrations:
39
+ destroyed: Adéu! El teu compte ha estat cancel·lat correctament. Esperem tornar-te
40
+ a veure!
41
+ inactive_signed_up: Has estat registrat correctament. Tanmateix, no hem pogut
42
+ processar el teu compte perquẻ %{reason}.
43
+ reasons:
44
+ inactive: inactiu
45
+ locked: bloquejat
46
+ unconfirmed: no confirmat
47
+ signed_up: Has estat registrat correctament.
48
+ updated: Has actualitzat el teu compte correctament.
49
+ sessions:
50
+ signed_in: Sessió iniciada correctament.
51
+ signed_out: Sessió tancada correctament.
52
+ unlocks:
53
+ send_instructions: En breu rebràs un correu electrònic amb instruccions sobre
54
+ com desbloquejar el teu compte.
55
+ send_paranoid_instructions: Si el teu compte existeix, rebràs un correu electrònic
56
+ amb instruccions sobre com desbloquejar-lo.
57
+ unlocked: El teu compte ha estat desbloquejat correctament. S'ha iniciat la
58
+ sessió.
59
+ errors:
60
+ messages:
61
+ already_confirmed: ja està confirmat
62
+ expired: ha caducat, demana'n un de nou
63
+ not_found: no s'ha trobat
64
+ not_locked: no està bloquejat
65
+ not_saved:
66
+ one: ! '1 error ha evitat que %{resource} es pugui desar:'
67
+ other: ! '%{count} errors han evitat que %{resource} es pugui desar:'
data/locale/cs.yml ADDED
@@ -0,0 +1,50 @@
1
+ cs:
2
+ devise:
3
+ confirmations:
4
+ confirmed: Váš účet byl úspěšně potvrzen. Nyní jste přihlášen(a).
5
+ send_instructions: Za několik minut obdržíte email s instrukcemi k potvrzení
6
+ vašeho účtu.
7
+ failure:
8
+ already_authenticated: Přihlášení již proběhlo.
9
+ inactive: Váš účet ještě nebyl aktivován.
10
+ invalid: Neplatná identita nebo heslo.
11
+ invalid_token: Neplatný ověřovací symbol.
12
+ locked: Váš účet je uzamčen.
13
+ timeout: Vaše relace vypršela, přihlašte se prosím znovu, pak můžete pokračovat.
14
+ unauthenticated: Musíte se zaregistrovat nebo přihlásit, pak můžete pokračovat.
15
+ unconfirmed: Musíte potvrdit svůj účet, pak můžete pokračovat.
16
+ mailer:
17
+ confirmation_instructions:
18
+ subject: Potvrzovací instrukce
19
+ reset_password_instructions:
20
+ subject: Instrukce k nastavení nového hesla
21
+ unlock_instructions:
22
+ subject: Instrukce k odemknutí účtu
23
+ omniauth_callbacks:
24
+ failure: ! 'Není možné autorizovat z %{kind}, protože: "%{reason}".'
25
+ success: Úspěšná autorizace z účtu %{kind}.
26
+ passwords:
27
+ send_instructions: Za několik minut obdržíte email s instrukcemi k nastavení
28
+ nového hesla.
29
+ updated: Vaše heslo bylo úspěšně změněno. Nyní jste přihlášen(a).
30
+ registrations:
31
+ destroyed: Nashle! Váš účet byl úspěšně zrušen. Doufáme, že se brzy opět uvidíme.
32
+ inactive_signed_up: ! 'Registrace byla úspěšná. Nicméně, nemůžete se přihlásit,
33
+ protože: "%{reason}".'
34
+ signed_up: Vítejte! Registrace byla úspěšná.
35
+ updated: Váš účet byl úspěšně aktualizován.
36
+ sessions:
37
+ signed_in: Přihlášení úspěšné.
38
+ signed_out: Odhlášení úspěšné.
39
+ unlocks:
40
+ send_instructions: Za několik minut obdržíte email s instrukcemi, jak odemknout
41
+ svůj účet.
42
+ unlocked: Váš účet byl úspěšně odemknut. Nyní jste přihlášen(a).
43
+ errors:
44
+ messages:
45
+ already_confirmed: byl již potvrzen, prosím, zkuste se přihlásit
46
+ not_found: nenalezen
47
+ not_locked: nebyl uzamčen
48
+ not_saved:
49
+ one: ! '%{resource} nebyl uložen kvůli chybě:'
50
+ other: ! '%{resource} nebyl uložen kvůli %{count} chybám:'
data/locale/da.yml ADDED
@@ -0,0 +1,64 @@
1
+ da:
2
+ devise:
3
+ confirmations:
4
+ confirmed: Din konto er aktiveret og du er nu logget ind.
5
+ send_instructions: Om få minutter vil du modtage en email med instruktioner
6
+ om aktivering af din konto.
7
+ send_paranoid_instructions: Hvis din e-mail adresse findes i vores database
8
+ vil du modtage en e-mail med instruktioner om hvordan du kan aktivere din
9
+ konto.
10
+ failure:
11
+ already_authenticated: Du er allerede logget ind.
12
+ inactive: Din konto er ikke bekræftet.
13
+ invalid: Email eller kodeord er ikke gyldig.
14
+ invalid_token: Ugyldig token til autorisering.
15
+ locked: Din konto er låst i de næste to timer.
16
+ timeout: Din session er udløbet. Log ind igen for at kunne fortsætte.
17
+ unauthenticated: Du skal logge ind for at kunne fortsætte.
18
+ unconfirmed: Du skal bekræfte din konto for at kunne fortsætte.
19
+ mailer:
20
+ confirmation_instructions:
21
+ subject: Bekræftelsesinstruktioner
22
+ reset_password_instructions:
23
+ subject: Nulstilling af kodeord
24
+ unlock_instructions:
25
+ subject: Genåbning af konto
26
+ omniauth_callbacks:
27
+ failure: Du kunne ikke logges ind med din %{kind} konto.
28
+ success: Du er nu logget ind med din %{kind} konto.
29
+ passwords:
30
+ send_instructions: Du vil om et øjeblik modtage en email vedrørende nulstilling
31
+ af kodeord.
32
+ send_paranoid_instructions: Hvis din e-mail adresse findes i vores database
33
+ vil du modtage et link til hvor du kan nulstille dit kodeord.
34
+ updated: Dit kodeord er ændret og du er nu logget ind.
35
+ updated_not_active: Dit kodeord er ændret.
36
+ registrations:
37
+ destroyed: Farvel. Din konto er nu lukket.
38
+ inactive_signed_up: Din registrering er godkendt men vi kunne ikke logge dig
39
+ ind da din konto er %{reason}.
40
+ reasons:
41
+ inactive: deaktiveret
42
+ locked: låst
43
+ unconfirmed: ikke-registreret
44
+ signed_up: Din registrering er godkendt.
45
+ updated: Din profil er opdateret.
46
+ sessions:
47
+ signed_in: Du er nu logget ind.
48
+ signed_out: Du er nu logget ud.
49
+ unlocks:
50
+ send_instructions: Om få minutter vil du modtage en email med instruktioner
51
+ om genåbning af din konto.
52
+ send_paranoid_instructions: Hvis din e-mail adresse findes i vores database
53
+ vil du modtage in e-mail med instutioner om hvordan du kan låse din konto
54
+ op.
55
+ unlocked: Din konto er genåbnet og du er nu logget ind.
56
+ errors:
57
+ messages:
58
+ already_confirmed: er allerede bekræftet
59
+ expired: er udløbet. Vær venlig at bede om en ny
60
+ not_found: ikke fundet
61
+ not_locked: var ikke låst
62
+ not_saved:
63
+ one: ! '1 fejl medførte at denne %{resource} ikke kunne gemmes:'
64
+ other: ! '%{count} fejl medførte at denne %{resource} ikke kunne gemmes:'