spree_static_content 0.40.0 → 0.40.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -27,7 +27,7 @@ extension to change the layout of the static pages.
27
27
 
28
28
  == Installation
29
29
 
30
- 1. Add `gem "spree_static_content"` and `gem "spree_editor", :path => "../../spree_editor"` to your Gemfile
30
+ 1. Add `gem "spree_static_content"` and `gem "spree_editor", :git => "git://github.com/romul/spree_editor.git"` to your Gemfile
31
31
  1. Run `bundle install`
32
32
  1. Run `rails g spree_static_content:install`
33
33
  1. Run `rake db:migrate`
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.40.0
1
+ 0.40.1
data/Versionfile ADDED
@@ -0,0 +1 @@
1
+ "0.50.x" => { :branch => "master" }
@@ -50,4 +50,3 @@
50
50
  <td><%= f.check_box :visible %></td>
51
51
  </tr>
52
52
  </table>
53
- <%= rich_editor(:id => 'page_body', :object => @page) %>
@@ -0,0 +1,22 @@
1
+ ---
2
+ de-CH:
3
+ pages: Seiten
4
+ ext_static_content_static_pages: Statische Seiten
5
+ ext_static_content_static_pages_desc: Manage static page with WYSIWYG editor.
6
+ ext_static_content_title: Titel
7
+ ext_static_content_slug: Slug
8
+ ext_static_content_body: Body
9
+ ext_static_content_new_page: Neue Seite
10
+ ext_static_content_editing_page: Seite bearbeiten
11
+ ext_static_content_foreign_link: Externer Link (URL)
12
+ ext_static_content_show_in_sidebar: In der Sidebar anzeigen
13
+ ext_static_content_show_in_header: Im Header anzeigen
14
+ ext_static_content_show_in_footer: Im Footer anzeigen
15
+ ext_static_content_position: Position
16
+ ext_static_content_visible: Sichtbar
17
+ ext_static_content_confirm_delete: Bist du sicher?
18
+ ext_static_content_link: Link
19
+ ext_static_content_meta_title: Meta-Titel
20
+ ext_static_content_meta_keywords: Meta-Schl&uuml;sselw&ouml;rter
21
+ ext_static_content_meta_description: Meta-Beschreibung
22
+ ext_static_content_layout: Layout
@@ -0,0 +1,22 @@
1
+ ---
2
+ en-AU:
3
+ pages: Pages
4
+ ext_static_content_static_pages: Static pages
5
+ ext_static_content_static_pages_desc: Manage static page with WYSIWYG editor.
6
+ ext_static_content_title: Title
7
+ ext_static_content_slug: Slug
8
+ ext_static_content_body: Body
9
+ ext_static_content_new_page: New page
10
+ ext_static_content_editing_page: Editing page
11
+ ext_static_content_foreign_link: Foreign link (URL)
12
+ ext_static_content_show_in_sidebar: Show in sidebar
13
+ ext_static_content_show_in_header: Show in header
14
+ ext_static_content_show_in_footer: Show in footer
15
+ ext_static_content_position: Position
16
+ ext_static_content_visible: Visible
17
+ ext_static_content_confirm_delete: Are you sure?
18
+ ext_static_content_link: Link
19
+ ext_static_content_meta_title: Meta Title
20
+ ext_static_content_meta_keywords: Meta Keywords
21
+ ext_static_content_meta_description: Meta Description
22
+ ext_static_content_layout: Layout
@@ -0,0 +1,22 @@
1
+ ---
2
+ fr-FR:
3
+ pages: Pages
4
+ ext_static_content_static_pages: Pages statiques
5
+ ext_static_content_static_pages_desc: "Gérer les pages statiques avec l'éditeur WYSIWYG."
6
+ ext_static_content_title: Titre
7
+ ext_static_content_slug: Slug
8
+ ext_static_content_body: Corps
9
+ ext_static_content_new_page: Nouvelle page
10
+ ext_static_content_editing_page: Edition de la page
11
+ ext_static_content_foreign_link: Lien extérieur (URL)
12
+ ext_static_content_show_in_sidebar: Visible dans la sidebar
13
+ ext_static_content_show_in_header: Visible en entête
14
+ ext_static_content_show_in_footer: Visible en pied de page
15
+ ext_static_content_position: Position
16
+ ext_static_content_visible: Visible
17
+ ext_static_content_confirm_delete: êtes-vous sûr ?
18
+ ext_static_content_link: Lien
19
+ ext_static_content_meta_title: Meta Titre
20
+ ext_static_content_meta_keywords: Meta Mots-clés
21
+ ext_static_content_meta_description: Meta Description
22
+ ext_static_content_layout: Layout
@@ -9,10 +9,6 @@ module SpreeStaticContent
9
9
  directory "db"
10
10
  end
11
11
 
12
- def copy_public
13
- directory "public"
14
- end
15
-
16
12
  end
17
13
  end
18
14
  end
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{spree_static_content}
8
- s.version = "0.40.0"
8
+ s.version = "0.40.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Peter Berkenbosch", "Roman Smirnov"]
12
- s.date = %q{2011-01-20}
12
+ s.date = %q{2011-03-21}
13
13
  s.description = %q{Extention to manage the static pages for your Spree shop.}
14
14
  s.extra_rdoc_files = [
15
15
  "README.rdoc"
@@ -20,6 +20,7 @@ Gem::Specification.new do |s|
20
20
  "README.rdoc",
21
21
  "Rakefile",
22
22
  "VERSION",
23
+ "Versionfile",
23
24
  "app/controllers/admin/pages_controller.rb",
24
25
  "app/controllers/spree/base_controller_decorator.rb",
25
26
  "app/controllers/static_content_controller.rb",
@@ -29,9 +30,12 @@ Gem::Specification.new do |s|
29
30
  "app/views/admin/pages/index.html.erb",
30
31
  "app/views/admin/pages/new.html.erb",
31
32
  "app/views/static_content/show.html.erb",
33
+ "config/locales/de-CH.yml",
34
+ "config/locales/en-AU.yml",
32
35
  "config/locales/en-GB.yml",
33
36
  "config/locales/en.yml",
34
37
  "config/locales/es-ES.yml",
38
+ "config/locales/fr-FR.yml",
35
39
  "config/locales/nl-BE.yml",
36
40
  "config/locales/nl-NL.yml",
37
41
  "config/locales/pl.yml",
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 40
8
- - 0
9
- version: 0.40.0
8
+ - 1
9
+ version: 0.40.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Peter Berkenbosch
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-01-20 00:00:00 +03:00
18
+ date: 2011-03-21 00:00:00 +03:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -58,6 +58,7 @@ files:
58
58
  - README.rdoc
59
59
  - Rakefile
60
60
  - VERSION
61
+ - Versionfile
61
62
  - app/controllers/admin/pages_controller.rb
62
63
  - app/controllers/spree/base_controller_decorator.rb
63
64
  - app/controllers/static_content_controller.rb
@@ -67,9 +68,12 @@ files:
67
68
  - app/views/admin/pages/index.html.erb
68
69
  - app/views/admin/pages/new.html.erb
69
70
  - app/views/static_content/show.html.erb
71
+ - config/locales/de-CH.yml
72
+ - config/locales/en-AU.yml
70
73
  - config/locales/en-GB.yml
71
74
  - config/locales/en.yml
72
75
  - config/locales/es-ES.yml
76
+ - config/locales/fr-FR.yml
73
77
  - config/locales/nl-BE.yml
74
78
  - config/locales/nl-NL.yml
75
79
  - config/locales/pl.yml