gem_i18n 0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: ccde52a2cc8b8535233be5d25906747340771e7bf0f7e3a2eb79b008711e4c8a
4
+ data.tar.gz: 1d2b411e8b7c4ff6b565bc235f30bf5e5dbfa978bae283bafe5003043b3e4e90
5
+ SHA512:
6
+ metadata.gz: e7d708bb58a29098b00c27e1e1cb63b5c86a791a33f74629166fa0f444542651909f5bae109e2e8343750a2df2cbcc8aed7a2f3b94a68b0994c0b65303cdcf62
7
+ data.tar.gz: 8a4a5a82e15e814600109a9c93c58d7e95646b873ef4b19731a20bf7be4555093c2f0bd5486d57084b1fabe4dd0fcf24839816d9cc197aecd4ffc775d07688dc
@@ -0,0 +1 @@
1
+ <%=t('LABEL_ABOUT')%>
@@ -0,0 +1,2 @@
1
+ de:
2
+ LABEL_ABOUT: "de The values are:"
@@ -0,0 +1,18 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ helpers:
6
+ actions: "Actions"
7
+ links:
8
+ back: "Back"
9
+ cancel: "Cancel"
10
+ confirm: "Are you sure?"
11
+ destroy: "Delete"
12
+ new: "New"
13
+ edit: "Edit"
14
+ titles:
15
+ edit: "Edit"
16
+ save: "Save"
17
+ new: "New"
18
+ delete: "Delete"
@@ -0,0 +1,2 @@
1
+ en:
2
+ LABEL_ABOUT: "en The values are:"
@@ -0,0 +1,2 @@
1
+ es:
2
+ LABEL_ABOUT: "es The values are:"
@@ -0,0 +1,2 @@
1
+ fr-ca:
2
+ LABEL_ABOUT: "fr-ca The values are:"
@@ -0,0 +1,2 @@
1
+ fr:
2
+ LABEL_ABOUT: "fr The values are:"
data/lib/about.rb ADDED
@@ -0,0 +1,10 @@
1
+ module NagaAbout
2
+ class Engine < ::Rails::Engine
3
+ require 'browser'
4
+ require 'i18n'
5
+
6
+ initializer :append_assets_path, group: :all do |app|
7
+ app.config.assets.path.unshift(*paths['app/views'].existent_directories)
8
+ end
9
+ end
10
+ end
metadata ADDED
@@ -0,0 +1,51 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gem_i18n
3
+ version: !ruby/object:Gem::Version
4
+ version: '0.1'
5
+ platform: ruby
6
+ authors:
7
+ - vivak
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-03-26 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Description of gem_i18n.
14
+ email:
15
+ - vivak.k@philips.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - app/views/_about.html.erb
21
+ - config/locales/de.yml
22
+ - config/locales/en.bootstrap.yml
23
+ - config/locales/en.yml
24
+ - config/locales/es.yml
25
+ - config/locales/fr-ca.yml
26
+ - config/locales/fr.yml
27
+ - lib/about.rb
28
+ homepage: http://rubygems.org/gems/gem_i18n
29
+ licenses:
30
+ - MIT
31
+ metadata: {}
32
+ post_install_message:
33
+ rdoc_options: []
34
+ require_paths:
35
+ - lib
36
+ required_ruby_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ required_rubygems_version: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ requirements: []
47
+ rubygems_version: 3.0.2
48
+ signing_key:
49
+ specification_version: 4
50
+ summary: Summary of gem_i18n.
51
+ test_files: []