disguise 2.0.0 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (228) hide show
  1. data/README.rdoc +26 -24
  2. data/Rakefile +1 -1
  3. data/VERSION +1 -1
  4. data/app/models/domain_theme.rb +1 -1
  5. data/app/models/theme.rb +4 -4
  6. data/app/views/admin/themes/_theme.html.erb +3 -3
  7. data/app/views/admin/themes/edit.html.erb +9 -2
  8. data/config/locales/ar.yml +20 -0
  9. data/config/locales/bg.yml +20 -0
  10. data/config/locales/ca.yml +20 -0
  11. data/config/locales/cs.yml +20 -0
  12. data/{locales → config/locales}/da.yml +8 -8
  13. data/config/locales/de.yml +20 -0
  14. data/config/locales/el.yml +20 -0
  15. data/{locales → config/locales}/en.yml +0 -0
  16. data/config/locales/es.yml +20 -0
  17. data/config/locales/et.yml +20 -0
  18. data/config/locales/fa.yml +20 -0
  19. data/config/locales/fi.yml +20 -0
  20. data/{locales → config/locales}/fr.yml +8 -8
  21. data/config/locales/gl.yml +20 -0
  22. data/config/locales/hi.yml +20 -0
  23. data/config/locales/hr.yml +20 -0
  24. data/config/locales/hu.yml +20 -0
  25. data/config/locales/id.yml +20 -0
  26. data/config/locales/it.yml +20 -0
  27. data/config/locales/iw.yml +20 -0
  28. data/config/locales/ja.yml +20 -0
  29. data/config/locales/ko.yml +20 -0
  30. data/config/locales/lt.yml +20 -0
  31. data/config/locales/lv.yml +20 -0
  32. data/config/locales/mt.yml +20 -0
  33. data/config/locales/nl.yml +20 -0
  34. data/config/locales/no.yml +21 -0
  35. data/config/locales/pl.yml +20 -0
  36. data/config/locales/pt-PT.yml +20 -0
  37. data/{locales → config/locales}/pt.yml +0 -0
  38. data/config/locales/ro.yml +20 -0
  39. data/config/locales/ru.yml +20 -0
  40. data/config/locales/sk.yml +20 -0
  41. data/config/locales/sl.yml +20 -0
  42. data/{locales → config/locales}/sq.yml +7 -7
  43. data/config/locales/sr.yml +20 -0
  44. data/config/locales/sv.yml +20 -0
  45. data/config/locales/th.yml +20 -0
  46. data/config/locales/tl.yml +20 -0
  47. data/config/locales/tr.yml +20 -0
  48. data/config/locales/uk.yml +20 -0
  49. data/config/locales/vi.yml +20 -0
  50. data/config/locales/zh-CN.yml +20 -0
  51. data/config/locales/zh-TW.yml +20 -0
  52. data/config/locales/zh.yml +20 -0
  53. data/config/routes.rb +6 -0
  54. data/disguise.gemspec +157 -181
  55. data/lib/disguise.rb +2 -10
  56. data/lib/disguise/config.rb +22 -9
  57. data/lib/disguise/controllers/disguise_application.rb +58 -0
  58. data/lib/disguise/engine.rb +14 -0
  59. data/lib/tasks/diguise.rake +9 -0
  60. data/test/{rails_root → rails_test}/.gitignore +0 -0
  61. data/test/{rails_root → rails_test}/.rake_tasks +0 -0
  62. data/test/rails_test/Gemfile +18 -0
  63. data/test/rails_test/Gemfile.lock +114 -0
  64. data/test/{rails_root → rails_test}/Rakefile +2 -4
  65. data/test/{rails_root → rails_test}/app/controllers/admin/domain_themes_controller.rb +0 -0
  66. data/test/{rails_root → rails_test}/app/controllers/admin/themes_controller.rb +0 -0
  67. data/test/{rails_root → rails_test}/app/controllers/application_controller.rb +0 -0
  68. data/test/{rails_root → rails_test}/app/controllers/default_controller.rb +0 -0
  69. data/test/{rails_root → rails_test}/app/models/.keep +0 -0
  70. data/test/rails_test/app/models/user.rb +3 -0
  71. data/test/{rails_root → rails_test}/app/views/default/index.html.erb +0 -0
  72. data/test/{rails_root → rails_test}/app/views/layouts/default.html.erb +0 -0
  73. data/test/rails_test/config.ru +4 -0
  74. data/test/rails_test/config/application.rb +42 -0
  75. data/test/rails_test/config/boot.rb +13 -0
  76. data/test/rails_test/config/database.yml +14 -0
  77. data/test/rails_test/config/environment.rb +5 -0
  78. data/test/rails_test/config/environments/development.rb +26 -0
  79. data/test/rails_test/config/environments/production.rb +49 -0
  80. data/test/rails_test/config/environments/test.rb +35 -0
  81. data/test/rails_test/config/initializers/backtrace_silencers.rb +7 -0
  82. data/test/rails_test/config/initializers/disguise.rb +5 -0
  83. data/test/{rails_root → rails_test}/config/initializers/inflections.rb +2 -2
  84. data/test/{rails_root → rails_test}/config/initializers/mime_types.rb +0 -0
  85. data/test/rails_test/config/initializers/secret_token.rb +7 -0
  86. data/test/rails_test/config/initializers/session_store.rb +8 -0
  87. data/test/rails_test/config/routes.rb +3 -0
  88. data/test/{rails_root → rails_test}/db/.keep +0 -0
  89. data/test/{rails_root → rails_test}/db/migrate/20090530170040_create_themes.rb +0 -0
  90. data/test/{rails_root → rails_test}/db/migrate/20090602041838_create_users.rb +0 -0
  91. data/test/{rails_root → rails_test}/db/migrate/20090606153236_create_domain_themes.rb +0 -0
  92. data/test/{rails_root → rails_test}/features/step_definitions/webrat_steps.rb +0 -0
  93. data/test/{rails_root → rails_test}/features/support/env.rb +0 -0
  94. data/test/{rails_root → rails_test}/public/.htaccess +0 -0
  95. data/test/rails_test/public/404.html +26 -0
  96. data/test/rails_test/public/422.html +26 -0
  97. data/test/rails_test/public/500.html +26 -0
  98. data/test/{rails_root → rails_test}/public/dispatch.rb +1 -1
  99. data/test/{rails_root → rails_test}/public/favicon.ico +0 -0
  100. data/test/{rails_root → rails_test}/public/images/blue/preview.gif +0 -0
  101. data/test/rails_test/public/images/rails.png +0 -0
  102. data/test/{rails_root → rails_test}/public/javascripts/application.js +0 -0
  103. data/test/{rails_root → rails_test}/public/javascripts/controls.js +75 -73
  104. data/test/{rails_root → rails_test}/public/javascripts/dragdrop.js +171 -169
  105. data/test/{rails_root → rails_test}/public/javascripts/effects.js +180 -177
  106. data/test/rails_test/public/javascripts/prototype.js +6001 -0
  107. data/test/rails_test/public/javascripts/rails.js +175 -0
  108. data/test/rails_test/public/robots.txt +5 -0
  109. data/test/{rails_root/public/stylesheets/.keep → rails_test/public/stylesheets/.gitkeep} +0 -0
  110. data/test/{rails_root/test/functional/.keep → rails_test/public/stylesheets/application.css} +0 -0
  111. data/test/rails_test/script/rails +6 -0
  112. data/test/{rails_root → rails_test}/test/factories.rb +0 -0
  113. data/test/{rails_root/test/integration → rails_test/test/functional}/.keep +0 -0
  114. data/test/{rails_root → rails_test}/test/functional/admin/domain_themes_controller_test.rb +6 -6
  115. data/test/{rails_root → rails_test}/test/functional/admin/themes_controller_test.rb +6 -6
  116. data/test/{rails_root → rails_test}/test/functional/default_controller_test.rb +2 -2
  117. data/test/{rails_root/test/mocks/development → rails_test/test/integration}/.keep +0 -0
  118. data/test/{rails_root → rails_test}/test/test_helper.rb +6 -9
  119. data/test/{rails_root/test/mocks/test → rails_test/test/unit}/.keep +0 -0
  120. data/test/{rails_root → rails_test}/test/unit/domain_theme_test.rb +2 -1
  121. data/test/{rails_root → rails_test}/test/unit/theme_test.rb +4 -2
  122. data/test/{rails_root → rails_test}/themes/blue/description.txt +0 -0
  123. data/test/{rails_root → rails_test}/themes/blue/locales/blue.yml +0 -0
  124. data/test/{rails_root → rails_test}/themes/blue/locales/en.yml +0 -0
  125. data/test/{rails_root → rails_test}/themes/blue/views/default/index.html.erb +0 -0
  126. data/test/{rails_root → rails_test}/themes/blue/views/layouts/default.html.erb +0 -0
  127. data/test/{rails_root → rails_test}/themes/blue/views/layouts/global/_footer.html.erb +0 -0
  128. data/test/{rails_root → rails_test}/themes/blue/views/layouts/global/_head.html.erb +0 -0
  129. data/test/{rails_root → rails_test}/themes/blue/views/layouts/global/_header.html.erb +0 -0
  130. data/test/{rails_root → rails_test}/themes/red/description.txt +0 -0
  131. data/test/{rails_root → rails_test}/themes/red/locales/en.yml +0 -0
  132. data/test/{rails_root → rails_test}/themes/red/views/layouts/default.html.erb +0 -0
  133. data/test/{rails_root → rails_test}/themes/red/views/layouts/global/_footer.html.erb +0 -0
  134. data/test/{rails_root → rails_test}/themes/red/views/layouts/global/_head.html.erb +0 -0
  135. data/test/{rails_root → rails_test}/themes/red/views/layouts/global/_header.html.erb +0 -0
  136. metadata +159 -183
  137. data/config/disguise_routes.rb +0 -7
  138. data/lib/action_controller/disguise_application.rb +0 -61
  139. data/lib/disguise/initialize_routes.rb +0 -8
  140. data/lib/disguise/tasks.rb +0 -34
  141. data/locales/ar.yml +0 -20
  142. data/locales/bg.yml +0 -20
  143. data/locales/ca.yml +0 -20
  144. data/locales/cs.yml +0 -20
  145. data/locales/de.yml +0 -20
  146. data/locales/el.yml +0 -20
  147. data/locales/es.yml +0 -20
  148. data/locales/et.yml +0 -20
  149. data/locales/fa.yml +0 -20
  150. data/locales/fi.yml +0 -20
  151. data/locales/gl.yml +0 -20
  152. data/locales/hi.yml +0 -20
  153. data/locales/hr.yml +0 -20
  154. data/locales/hu.yml +0 -20
  155. data/locales/id.yml +0 -20
  156. data/locales/it.yml +0 -20
  157. data/locales/iw.yml +0 -20
  158. data/locales/ja.yml +0 -20
  159. data/locales/ko.yml +0 -20
  160. data/locales/lt.yml +0 -20
  161. data/locales/lv.yml +0 -20
  162. data/locales/mt.yml +0 -20
  163. data/locales/nl.yml +0 -20
  164. data/locales/no.yml +0 -21
  165. data/locales/pl.yml +0 -20
  166. data/locales/pt-PT.yml +0 -20
  167. data/locales/ro.yml +0 -20
  168. data/locales/ru.yml +0 -20
  169. data/locales/sk.yml +0 -20
  170. data/locales/sl.yml +0 -20
  171. data/locales/sr.yml +0 -20
  172. data/locales/sv.yml +0 -20
  173. data/locales/th.yml +0 -20
  174. data/locales/tl.yml +0 -20
  175. data/locales/tr.yml +0 -20
  176. data/locales/uk.yml +0 -20
  177. data/locales/vi.yml +0 -20
  178. data/locales/zh-CN.yml +0 -20
  179. data/locales/zh-TW.yml +0 -20
  180. data/locales/zh.yml +0 -20
  181. data/rails/init.rb +0 -2
  182. data/tasks/rails.rake +0 -2
  183. data/test/rails_root/Capfile +0 -3
  184. data/test/rails_root/app/models/user.rb +0 -9
  185. data/test/rails_root/config/amazon_s3.yml +0 -14
  186. data/test/rails_root/config/boot.rb +0 -109
  187. data/test/rails_root/config/database.yml +0 -14
  188. data/test/rails_root/config/environment.rb +0 -21
  189. data/test/rails_root/config/environments/development.rb +0 -19
  190. data/test/rails_root/config/environments/production.rb +0 -1
  191. data/test/rails_root/config/environments/test.rb +0 -33
  192. data/test/rails_root/config/global_config.yml +0 -18
  193. data/test/rails_root/config/initializers/disguise.rb +0 -2
  194. data/test/rails_root/config/initializers/requires.rb +0 -13
  195. data/test/rails_root/config/initializers/s3_credentials.rb +0 -9
  196. data/test/rails_root/config/initializers/session_store.rb +0 -8
  197. data/test/rails_root/config/routes.rb +0 -7
  198. data/test/rails_root/public/404.html +0 -30
  199. data/test/rails_root/public/422.html +0 -30
  200. data/test/rails_root/public/500.html +0 -30
  201. data/test/rails_root/public/images/rails.png +0 -0
  202. data/test/rails_root/public/images/red/preview.gif +0 -0
  203. data/test/rails_root/public/javascripts/builder.js +0 -136
  204. data/test/rails_root/public/javascripts/prototype.js +0 -4225
  205. data/test/rails_root/public/javascripts/scriptaculous.js +0 -58
  206. data/test/rails_root/public/javascripts/slider.js +0 -277
  207. data/test/rails_root/public/javascripts/sound.js +0 -60
  208. data/test/rails_root/public/robots.txt +0 -1
  209. data/test/rails_root/public/stylesheets/themes/blue/styles.css +0 -1
  210. data/test/rails_root/public/stylesheets/themes/red/styles.css +0 -1
  211. data/test/rails_root/script/about +0 -3
  212. data/test/rails_root/script/breakpointer +0 -3
  213. data/test/rails_root/script/console +0 -3
  214. data/test/rails_root/script/create_project.rb +0 -52
  215. data/test/rails_root/script/cucumber +0 -7
  216. data/test/rails_root/script/dbconsole +0 -3
  217. data/test/rails_root/script/destroy +0 -3
  218. data/test/rails_root/script/generate +0 -3
  219. data/test/rails_root/script/performance/benchmarker +0 -3
  220. data/test/rails_root/script/performance/profiler +0 -3
  221. data/test/rails_root/script/performance/request +0 -3
  222. data/test/rails_root/script/plugin +0 -3
  223. data/test/rails_root/script/process/inspector +0 -3
  224. data/test/rails_root/script/process/reaper +0 -3
  225. data/test/rails_root/script/process/spawner +0 -3
  226. data/test/rails_root/script/runner +0 -3
  227. data/test/rails_root/script/server +0 -3
  228. data/test/rails_root/test/unit/.keep +0 -0
@@ -3,7 +3,12 @@
3
3
  A simple theme system for your Rails application.
4
4
 
5
5
  == Installation
6
- sudo gem install disguise
6
+
7
+ sudo gem install disguise
8
+
9
+ Add disguise to your Gemfile:
10
+
11
+ gem 'disguise'
7
12
 
8
13
  == Setup
9
14
  Disguise comes with a couple of admin controllers to make changing your theme simple. By default they are not protected.
@@ -22,43 +27,40 @@ In order to prevent unauthorized users from changing your theme you can override
22
27
 
23
28
  Also be sure to add a route to the new controller in routes.rb:
24
29
 
25
- # admin
26
- map.namespace :admin do |a|
27
- a.resource :theme
28
- a.resources :domain_themes
30
+ Rails.application.routes.draw do
31
+ namespace "admin" do
32
+ resources :theme
33
+ resources :domain_themes
34
+ end
29
35
  end
30
36
 
31
- === Rake tasks
37
+ === Create an initializer to configure disguise
32
38
 
33
- Add disguise rake tasks to your rails project. Include the following line at the end of your Rakefile:
39
+ Disguise can run in two modes. The first is the default which let's an administrator set the current theme
40
+ via the built in admin interface. The second looks at the url of the incoming request and matches it to a theme.
41
+ The default settings are fine for most uses but if you'd like to customize disguise then create an initializer in
42
+ /config/initializers/disguise.rb and enter the following contents:
34
43
 
35
- require 'disguise/tasks'
44
+ Disguise.configure do |config|
45
+ config.use_domain_for_themes = false # Changing theme per domain can be expense so it's off by default
46
+ config.themes_enabled = true # Turns disguise off/on.
47
+ config.theme_full_base_path = File.join(::Rails.root.to_s, 'themes') # Full path to the themes folder. The examples puts themes in a directory called 'themes' in the Rails app root.
48
+ end
36
49
 
37
- Then run the following to add the required files and database migration:
38
- rake disguise:setup
50
+ === Rake tasks
51
+ Disguise provides a rake task for syncing the required files into your application. After include disguise do this:
52
+ rake disguise:sync
39
53
  rake db:migrate
40
54
 
41
-
42
55
  == Usage
43
56
  Generate a new theme for your Rails application using the built in theme generator:
44
57
 
45
58
  ./script/generate theme theme_name
46
59
 
47
- Disguise can run in two modes. The first is the default which let's an administrator set the current theme
48
- via the built in admin interface. The second looks at the url of the incoming request and matches it to a theme.
49
- To enable this second mode create an initializer in /config/initializers/disguise.rb and enter the following contents:
50
-
51
- Disguise::Config.use_domain_for_themes = false
52
-
53
- # These options are also available to configure disguise. In most cases the defaults should work fine.
54
- Disguise::Config.themes_enabled = true
55
- Disguise::Config.theme_path = 'themes'
56
- Disguise::Config.theme_full_base_path = File.join(RAILS_ROOT, Disguise::Config.theme_path)
57
-
58
60
  == Notes
59
61
  After installing Disguise be sure to generate a theme and set that theme as the default theme. Not setting a theme
60
- will result in the application continually resetting the current theme which can cause performance problems.
62
+ will result in the application continually resetting the current theme which can cause serious performance problems.
61
63
 
62
64
  == Copyright
63
65
 
64
- Copyright (c) 2009 Tatemae.com. See LICENSE for details.
66
+ Copyright (c) 2009-2010 Tatemae.com. See LICENSE for details.
data/Rakefile CHANGED
@@ -4,7 +4,7 @@ require 'rake/rdoctask'
4
4
 
5
5
  desc 'Translate this gem'
6
6
  task :translate do
7
- file = File.join(File.dirname(__FILE__), 'locales', 'en.yml')
7
+ file = File.join(File.dirname(__FILE__), 'config', 'locales', 'en.yml')
8
8
  system("babelphish -o -y #{file}")
9
9
  end
10
10
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.0.0
1
+ 3.0.0
@@ -4,7 +4,7 @@ class DomainTheme < ActiveRecord::Base
4
4
 
5
5
  class << self
6
6
  def use_domain_themes?
7
- Disguise::Config.use_domain_for_themes
7
+ Disguise.configuration.use_domain_for_themes
8
8
  end
9
9
 
10
10
  def get_theme(request)
@@ -1,7 +1,7 @@
1
1
  class Theme < ActiveRecord::Base
2
2
 
3
3
  def locales
4
- Dir[ File.join(RAILS_ROOT, 'themes', self.name, 'locales', '*.{rb,yml}') ]
4
+ Dir[ File.join(::Rails.root.to_s, 'themes', self.name, 'locales', '*.{rb,yml}') ]
5
5
  end
6
6
 
7
7
  # This method will iterate through all available themes in the theme directory
@@ -12,15 +12,15 @@ class Theme < ActiveRecord::Base
12
12
  # along with a preview image.
13
13
  def self.available_themes(selected_theme)
14
14
  themes = []
15
- theme_path = File.join(RAILS_ROOT, Disguise::Config.theme_path)
15
+ theme_path = Disguise.configuration.theme_full_base_path
16
16
  current_theme = nil
17
17
 
18
18
  Dir.glob("#{theme_path}/*").each do |theme_directory|
19
19
  if File.directory?(theme_directory)
20
20
  theme_name = File.basename(theme_directory)
21
21
 
22
- image = Dir.glob(File.join(RAILS_ROOT, 'public', 'images', theme_name, 'preview.*')).first || File.join('/', 'images', 'no_preview.gif')
23
- image = image.gsub(File.join(RAILS_ROOT, 'public'), '')
22
+ image = Dir.glob(File.join(::Rails.root.to_s, 'public', 'images', theme_name, 'preview.*')).first || File.join('/', 'images', 'no_preview.gif')
23
+ image = image.gsub(File.join(::Rails.root.to_s, 'public'), '')
24
24
 
25
25
  description = ''
26
26
  description_file = File.join(theme_directory, 'description.txt')
@@ -1,13 +1,13 @@
1
1
  <div class="theme-block box">
2
2
  <h3><%= theme[:name] %></h3>
3
- <% form_for @theme, :url => admin_theme_path, :html => { :method => :put } do |f| -%>
3
+ <%= form_for @theme, :url => admin_theme_path, :html => { :method => :put } do |f| -%>
4
4
  <%= f.hidden_field :name, :value => theme[:name] %>
5
5
  <%= image_submit_tag theme[:preview_image], :id => "#{theme[:name].parameterize}", :name => "#{theme[:name].parameterize}" %>
6
6
  <%= theme[:description] %>
7
7
  <% end -%>
8
8
  <% if DomainTheme.use_domain_themes? -%>
9
9
  <% domain_theme = DomainTheme.new(:name => theme[:name]) %>
10
- <% form_for [:admin, domain_theme] do |f| -%>
10
+ <%= form_for [:admin, domain_theme] do |f| -%>
11
11
  <%= f.hidden_field :name %>
12
12
  <%= f.label t('disguise.theme_uri_label') %>
13
13
  <%= f.text_field :uri %>
@@ -19,7 +19,7 @@
19
19
  <ul class="theme-list">
20
20
  <% @domain_themes[theme[:name]].each do |domain_theme| -%>
21
21
  <li>
22
- <% form_for [:admin, domain_theme], :html => { :method => :delete } do |f| -%>
22
+ <%= form_for [:admin, domain_theme], :html => { :method => :delete } do |f| -%>
23
23
  <%= domain_theme.uri %>
24
24
  <%= submit_tag t('disguise.delete_uri') %>
25
25
  <% end -%>
@@ -6,7 +6,7 @@
6
6
  <h2><%= t('disguise.name_theme') %></h2>
7
7
  <% if @current_theme -%>
8
8
  <%= render :partial => 'admin/themes/theme', :object => @current_theme %>
9
- <% form_for @theme, :url => admin_theme_path, :html => { :method => :put } do |f| -%>
9
+ <%= form_for @theme, :url => admin_theme_path, :html => { :method => :put } do |f| -%>
10
10
  <%= f.hidden_field :name, :value => '' %>
11
11
  <%= submit_tag t('disguise.remove_all_themes'), :id => 'remove_all_themes', :name => 'remove_all_themes' %>
12
12
  <% end -%>
@@ -16,5 +16,12 @@
16
16
  <h2><%= t('disguise.activate_theme_message') %></h2>
17
17
  <% end -%>
18
18
  </div>
19
- <%= error_messages_for :theme %>
19
+ <% if !@theme.blank? && @theme.errors.any? -%>
20
+ <ul>
21
+ <% @theme.errors.full_messages.each do |msg| -%>
22
+ <li><%= msg %></li>
23
+ <% end -%>
24
+ </ul>
25
+ <% end -%>
26
+
20
27
  <%= render :partial => 'admin/themes/theme', :collection => @themes %>
@@ -0,0 +1,20 @@
1
+ ---
2
+ ar:
3
+ disguise:
4
+ activate_theme_message: "انقر على موضوع لتنشيطه"
5
+ add_uri: أضف
6
+ current_theme: "الموضوع الحالي"
7
+ delete_uri: حذف
8
+ error_creating_domain_theme: "كانت هناك مشكلة إضافة رابط : {{error}}"
9
+ name_theme: ~
10
+ no_current_theme: "حاليا تم اختيار أي موضوع لهذا التطبيق ، وهكذا سوف تستخدم في عرض التطبيق الافتراضي."
11
+ no_themes_message: "لم تقم بإنشاء أي بعد المواضيع للتطبيق الخاص بك. إذا كنت ترغب في إنشاء موضوع جديد ببساطة تشغيل المولدات موضوع واتبع التعليمات التالية :"
12
+ remove_all_themes: "إزالة كافة المواضيع واستخدام تطبيق القوالب الافتراضية"
13
+ set_theme: "تعيين الموضوع"
14
+ theme_removed: "وقد تم إزالة كل المواضيع"
15
+ theme_updated: "تم تحديث الموضوع بنجاح."
16
+ theme_uri_label: "عنوان الموضوع"
17
+ update_uri: "تحديث رابط"
18
+ uri_deleted: "لقد تم حذف عنوان الموقع المحدد"
19
+ uris_title: "وسيتم عرض هذا الموضوع للجميع عناوين المواقع التالية"
20
+ use_domain_themes: "وسيتم تحديد السمة الحالية من رابط محدد مع كل موضوع أدناه."
@@ -0,0 +1,20 @@
1
+ ---
2
+ bg:
3
+ disguise:
4
+ activate_theme_message: "Кликнете върху една тема, за да я активирате"
5
+ add_uri: Прибавям
6
+ current_theme: "Текущи Тема"
7
+ delete_uri: Изтривам
8
+ error_creating_domain_theme: "Имаше проблем при добавянето на URL: {{error}}"
9
+ name_theme: ~
10
+ no_current_theme: "В момента няма тема е избрана за тази молба и така на екрана прилагане ще се използват."
11
+ no_themes_message: "Все още не сте създали теми за прилагане. Ако искате да създадете нова тема просто стартирате генератора тема и следвайте инструкциите:"
12
+ remove_all_themes: "Премахване на всички теми и прилагането използване шаблони"
13
+ set_theme: "Задайте Тема"
14
+ theme_removed: "Всички теми са били отстранени"
15
+ theme_updated: "Темата е обновен успешно."
16
+ theme_uri_label: "Url на тема"
17
+ update_uri: "Update Url"
18
+ uri_deleted: "Посоченият сайт е изтрит"
19
+ uris_title: "Тази тема ще бъде показан за всяко едно от следните URL адреси"
20
+ use_domain_themes: "Настоящата тема ще се определя от адреса, определени с всяка тема по-долу."
@@ -0,0 +1,20 @@
1
+ ---
2
+ ca:
3
+ disguise:
4
+ activate_theme_message: "Feu clic a un tema per activar"
5
+ add_uri: Afegir
6
+ current_theme: "Tema actual"
7
+ delete_uri: Esborrar
8
+ error_creating_domain_theme: "Hi ha hagut un problema en afegir el url: {{error}}"
9
+ name_theme: ~
10
+ no_current_theme: "Actualment no hi ha tema ha estat seleccionat per a aquesta aplicació i pel que la vista d&#39;aplicació per defecte serà usada."
11
+ no_themes_message: "Vostè encara no ha creat cap tema per a la seva aplicació. Si voleu crear un nou tema només ha d&#39;executar el generador de tema i segueix les instruccions:"
12
+ remove_all_themes: "Tregui tots els temes i l&#39;aplicació per defecte utilitzar plantilles"
13
+ set_theme: "Establir Tema"
14
+ theme_removed: "Tots els temes han estat retirats"
15
+ theme_updated: "Tema s&#39;ha actualitzat correctament."
16
+ theme_uri_label: "Url per al Tema"
17
+ update_uri: "URL d&#39;actualització"
18
+ uri_deleted: "L&#39;URL especificada no s&#39;ha eliminat"
19
+ uris_title: "Aquest tema es mostrarà a tots les següents adreces"
20
+ use_domain_themes: "El tema actual serà determinat per la direcció URL especificada amb cada tema a continuació."
@@ -0,0 +1,20 @@
1
+ ---
2
+ cs:
3
+ disguise:
4
+ activate_theme_message: "Kliknutím na téma se aktivovat"
5
+ add_uri: Přidat
6
+ current_theme: "Aktuální téma"
7
+ delete_uri: Vymazat
8
+ error_creating_domain_theme: "Tam byl problém přidat url: {{error}}"
9
+ name_theme: ~
10
+ no_current_theme: "V současné době žádný motiv byl vybrán pro tuto aplikaci, a tak výchozí aplikaci názoru budou použity."
11
+ no_themes_message: "Jste si ještě nevytvořili žádné témata pro vaši aplikaci. Pokud chcete vytvořit nové téma Stačí spustit téma generátor a postupujte podle pokynů:"
12
+ remove_all_themes: "Odstranit všechny témata a využití výchozí šablony aplikací"
13
+ set_theme: "Set téma"
14
+ theme_removed: "Všechny motivy byly odstraněny"
15
+ theme_updated: "Téma bylo úspěšně aktualizováno."
16
+ theme_uri_label: "URL pro téma"
17
+ update_uri: "Update Url"
18
+ uri_deleted: "Zadaná adresa URL byla smazána"
19
+ uris_title: "Toto téma se zobrazí všechny následující adresy URL"
20
+ use_domain_themes: "Aktuální téma bude stanovena URL specifikované s každým tématem níže."
@@ -1,20 +1,20 @@
1
1
  ---
2
2
  da:
3
3
  disguise:
4
- activate_theme_message: "Klik på et tema for at aktivere den"
4
+ activate_theme_message: "Klik på et tema for at aktivere det"
5
5
  add_uri: Tilføj
6
6
  current_theme: "Nuværende tema"
7
7
  delete_uri: Slet
8
8
  error_creating_domain_theme: "Der var et problem at tilføje url: {{error}}"
9
9
  name_theme: ~
10
- no_current_theme: "Har i øjeblikket ingen tema er blevet udvalgt til denne ansøgning, og så standardprogrammet opfattelse vil blive brugt."
11
- no_themes_message: "Du har endnu ikke oprettet nogen temaer til din ansøgning. Hvis du vil oprette et nyt tema, skal du blot køre temaet generator og følg vejledningen:"
12
- remove_all_themes: "Fjern alle temaer og bruge standardprogrammet skabeloner"
13
- set_theme: "Set Theme"
10
+ no_current_theme: "I øjeblikket ingen tema er valgt for denne ansøgning og så standardprogrammet opfattelse vil blive brugt."
11
+ no_themes_message: "Du har endnu ikke oprettet nogen temaer til din ansøgning. Hvis du vil oprette et nyt tema skal du blot køre temaet generator og følg instruktionerne:"
12
+ remove_all_themes: "Fjern alle temaer og bruge standard program skabeloner"
13
+ set_theme: "Set Tema"
14
14
  theme_removed: "Alle temaer er blevet fjernet"
15
15
  theme_updated: "Temaet var blevet opdateret."
16
16
  theme_uri_label: "Url for tema"
17
17
  update_uri: "Update Url"
18
- uri_deleted: "Den angivne webadresse er blevet slettet"
19
- uris_title: "Dette tema vil blive vist for alle de følgende webadresser"
20
- use_domain_themes: "Det aktuelle tema vil blive bestemt af url&#39;en angivet med hvert emne nedenfor."
18
+ uri_deleted: "Den angivne url er blevet slettet"
19
+ uris_title: "Dette tema vil blive vist for alle de følgende urls"
20
+ use_domain_themes: "Det aktuelle tema vil blive bestemt af url er angivet med hver tema nedenfor."
@@ -0,0 +1,20 @@
1
+ ---
2
+ de:
3
+ disguise:
4
+ activate_theme_message: "Klicken Sie auf ein Thema, um es zu aktivieren"
5
+ add_uri: Hinzufügen
6
+ current_theme: "Aktuelle Themen"
7
+ delete_uri: Löschen
8
+ error_creating_domain_theme: "Es gab ein Problem indem Sie die URL: {{error}}"
9
+ name_theme: ~
10
+ no_current_theme: "Derzeit kein Thema ist für diese Anwendung ausgewählt worden, so dass die Standard-Anwendung Ansicht verwendet werden."
11
+ no_themes_message: "Sie haben noch keine Themen für Ihre Anwendung erstellt. Wenn Sie möchten ein neues Thema zu erstellen führen Sie einfach den Theme Generator und den Anweisungen folgen:"
12
+ remove_all_themes: "Entfernen Sie alle Themen und verwenden Standard-Applikations-Templates"
13
+ set_theme: "Set Theme"
14
+ theme_removed: "Alle Themen wurden entfernt"
15
+ theme_updated: "Theme wurde erfolgreich aktualisiert."
16
+ theme_uri_label: "Url zum Thema"
17
+ update_uri: Update-URL
18
+ uri_deleted: "Die angegebene URL wurde gelöscht"
19
+ uris_title: "Dieses Thema wird für alle folgenden URLs angezeigt werden"
20
+ use_domain_themes: "Das aktuelle Thema wird von der angegebenen URL mit bestimmt werden jedem Thema unten."
@@ -0,0 +1,20 @@
1
+ ---
2
+ el:
3
+ disguise:
4
+ activate_theme_message: "Κάντε κλικ σε ένα θέμα για να το ενεργοποιήσετε"
5
+ add_uri: Προσθήκη
6
+ current_theme: "Τρέχουσα Theme"
7
+ delete_uri: Διαγραφή
8
+ error_creating_domain_theme: "Υπήρξε ένα πρόβλημα προσθέτοντας το url: {{error}}"
9
+ name_theme: ~
10
+ no_current_theme: "Προς το παρόν δεν το θέμα έχει επιλεγεί για αυτή την εφαρμογή και έτσι η άποψη προεπιλεγμένη εφαρμογή θα χρησιμοποιηθεί."
11
+ no_themes_message: "Δεν έχετε δημιουργήσει ακόμη θέματα για την αίτησή σας. Αν θέλετε να δημιουργήσετε ένα νέο θέμα απλά εκτελέστε την γεννήτρια θέματος και ακολουθήστε τις οδηγίες:"
12
+ remove_all_themes: "Κατάργηση όλων των θεμάτων και να χρησιμοποιούν την εφαρμογή προεπιλεγμένα πρότυπα"
13
+ set_theme: "Ορισμός Theme"
14
+ theme_removed: "Όλα τα θέματα έχουν αφαιρεθεί"
15
+ theme_updated: "Θέμα ενημερώθηκε επιτυχώς."
16
+ theme_uri_label: "Url για το Theme"
17
+ update_uri: "Ενημέρωση Url"
18
+ uri_deleted: "Το καθορισμένο url έχει διαγραφεί"
19
+ uris_title: "Αυτό το θέμα θα εμφανίζεται για όλα τα ακόλουθα urls"
20
+ use_domain_themes: "Το σημερινό θέμα θα καθοριστεί από το url που καθορίζεται με κάθε θέμα που ακολουθεί."
File without changes
@@ -0,0 +1,20 @@
1
+ ---
2
+ es:
3
+ disguise:
4
+ activate_theme_message: "Haga clic en un tema para activarlo"
5
+ add_uri: Añadir
6
+ current_theme: "Tema actual"
7
+ delete_uri: Borrar
8
+ error_creating_domain_theme: "Ha habido un problema al añadir el url: {{error}}"
9
+ name_theme: ~
10
+ no_current_theme: "Actualmente no hay tema ha sido seleccionado para esta aplicación y por lo que la vista de aplicación por defecto será usada."
11
+ no_themes_message: "Usted aún no ha creado ningún tema para su aplicación. Si desea crear un nuevo tema sólo tiene que ejecutar el generador de tema y sigue las instrucciones:"
12
+ remove_all_themes: "Quite todos los temas y la aplicación por defecto usar plantillas"
13
+ set_theme: "Establecer Tema"
14
+ theme_removed: "Todos los temas han sido retirados"
15
+ theme_updated: "Tema se ha actualizado correctamente."
16
+ theme_uri_label: "Url para el Tema"
17
+ update_uri: "URL de actualización"
18
+ uri_deleted: "La URL especificada no se ha eliminado"
19
+ uris_title: "Este tema se mostrará a todos las siguientes direcciones"
20
+ use_domain_themes: "El tema actual será determinado por la dirección URL especificada con cada tema a continuación."
@@ -0,0 +1,20 @@
1
+ ---
2
+ et:
3
+ disguise:
4
+ activate_theme_message: "Kliki teema aktiveerida"
5
+ add_uri: Lisama
6
+ current_theme: "Jooksev teema"
7
+ delete_uri: Kustutama
8
+ error_creating_domain_theme: "Probleem lisades url: {{error}}"
9
+ name_theme: ~
10
+ no_current_theme: "Praegu ei ole teemaks on valitud käesoleva taotluse ja nii vaikerakenduses et hakatakse kasutama."
11
+ no_themes_message: "Sa pole veel loonud ühtegi teemat teie taotlusele. Kui soovite luua uue teema lihtsalt kulgema teema generaator ja järgige juhiseid:"
12
+ remove_all_themes: "Kustuta kõik teemad ja kasutada vaikerakenduses malle"
13
+ set_theme: "Sea Theme"
14
+ theme_removed: "Kõik teemad on eemaldatud"
15
+ theme_updated: "Theme oli edukalt uuendatud."
16
+ theme_uri_label: "URL teema"
17
+ update_uri: "Update Url"
18
+ uri_deleted: "Täpsustatud url on kustutatud"
19
+ uris_title: "See teema kuvatakse kõik allpool toodud veebilehtedelt"
20
+ use_domain_themes: "Praeguse teema määrab url täpsustada iga teema alla."
@@ -0,0 +1,20 @@
1
+ ---
2
+ fa:
3
+ disguise:
4
+ activate_theme_message: "با کلیک بر روی موضوع آن را فعال کنید"
5
+ add_uri: "اضافه کردن"
6
+ current_theme: "تم کنونی"
7
+ delete_uri: حذف
8
+ error_creating_domain_theme: "بود مشکل با اضافه کردن آدرس وجود دارد : {{error}}"
9
+ name_theme: ~
10
+ no_current_theme: "در حال حاضر هیچ موضوع شده است برای این برنامه انتخاب شده و بنابراین به طور پیش فرض نمایش برنامه استفاده خواهد شد."
11
+ no_themes_message: "شما تاکنون ایجاد نشده است هر گونه تم برای درخواست شما. در صورت تمایل تم جدید برای ایجاد تم ژنراتور به سادگی اجرا و پیگیری دستورالعمل :"
12
+ remove_all_themes: "حذف تمام تم ها و استفاده از برنامه به طور پیش فرض قالب ها"
13
+ set_theme: "مجموعه تم"
14
+ theme_removed: "تمام تم ها حذف شده اند"
15
+ theme_updated: "تم با موفقیت به روز شد."
16
+ theme_uri_label: "آدرس کلیپ برای تم"
17
+ update_uri: "به روز رسانی آدرس کلیپ"
18
+ uri_deleted: "آدرس کلیپ مورد نظر حذف شده است"
19
+ uris_title: "این موضوع خواهد بود برای همه آدرس ها زیر نمایش داده می"
20
+ use_domain_themes: "تم فعلی خواهد شد آدرس مشخص شده با تعیین هر یک از تم زیر وارد نمایید."
@@ -0,0 +1,20 @@
1
+ ---
2
+ fi:
3
+ disguise:
4
+ activate_theme_message: "Klikkaa teema aktivoida se"
5
+ add_uri: Lisätä
6
+ current_theme: "Nykyinen teema"
7
+ delete_uri: Poistaa
8
+ error_creating_domain_theme: "Ongelma lisäämällä url: {{error}}"
9
+ name_theme: ~
10
+ no_current_theme: "Tällä hetkellä ei teema on valittu tämän sovelluksen ja niin oletussovellus mielestä käytetään."
11
+ no_themes_message: "Et ole vielä luonut teemoja hakemuksen. Jos haluat luoda uuden teeman yksinkertaisesti ajaa teema generaattori ja seuraa ohjeita:"
12
+ remove_all_themes: "Poista kaikki teemat ja käyttää oletuksena sovelluksen malleja"
13
+ set_theme: "Aseta aihe"
14
+ theme_removed: "Kaikki teemat on poistettu"
15
+ theme_updated: "Teema päivitys onnistui."
16
+ theme_uri_label: "Url Theme"
17
+ update_uri: "Päivitä Url"
18
+ uri_deleted: "Määritellyt url on poistettu"
19
+ uris_title: "Tämä teema näkyy kaikki seuraavat URL-osoitteet"
20
+ use_domain_themes: "Nykyinen teema päätetään url määritelty kunkin teeman alle."
@@ -4,17 +4,17 @@ fr:
4
4
  activate_theme_message: "Cliquez sur un thème pour l&#39;activer"
5
5
  add_uri: Ajouter
6
6
  current_theme: "Thème actuel"
7
- delete_uri: Supprimer
7
+ delete_uri: Effacer
8
8
  error_creating_domain_theme: "Il y avait un problème en ajoutant l&#39;url: {{error}}"
9
9
  name_theme: ~
10
- no_current_theme: "Actuellement, aucun thème n&#39;a été sélectionnée pour cette application de sorte que la vue de l&#39;application par défaut sera utilisé."
11
- no_themes_message: "Vous n&#39;avez pas encore créé de thèmes pour votre application. Si vous souhaitez créer un nouveau thème, lancez simplement le générateur de thème et suivez les instructions:"
10
+ no_current_theme: "Actuellement, aucun thème n&#39;a été sélectionné pour cette application de sorte que la vue de l&#39;application par défaut sera utilisé."
11
+ no_themes_message: "Vous n&#39;avez pas encore créé de thèmes pour votre application. Si vous souhaitez créer un nouveau thème il suffit de lancer le générateur de thème et suivez les instructions:"
12
12
  remove_all_themes: "Supprimer tous les thèmes et l&#39;application par défaut utiliser des modèles"
13
- set_theme: "Définir un thème"
14
- theme_removed: "Tous les thèmes ont été retirés"
13
+ set_theme: "Set Thème"
14
+ theme_removed: "Tous les thèmes ont été enlevés"
15
15
  theme_updated: "Thème a été mis à jour."
16
- theme_uri_label: "URL pour le Thème"
17
- update_uri: "À jour l&#39;URL"
16
+ theme_uri_label: "Url pour le thème"
17
+ update_uri: "Mise à jour Url"
18
18
  uri_deleted: "L&#39;URL spécifiée a été supprimée"
19
- uris_title: "Ce thème sera affiché pour l&#39;ensemble des URL suivantes"
19
+ uris_title: "Ce thème sera affiché pour l&#39;ensemble des adresses suivantes"
20
20
  use_domain_themes: "Le thème actuel sera déterminé par l&#39;URL spécifiée à chaque thème ci-dessous."