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
@@ -1,20 +0,0 @@
1
- ---
2
- iw:
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: "הנושא הנוכחי ייקבע על ידי כתובת שצוין עם כל נושא מתחת."
@@ -1,20 +0,0 @@
1
- ---
2
- ja:
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: 更新URLを
18
- uri_deleted: 指定されたURLが削除されている
19
- uris_title: このテーマは、以下のすべてのURLに表示されます。
20
- use_domain_themes: 現在のテーマは、url、それぞれのテーマの下で指定さによって決定されます。
@@ -1,20 +0,0 @@
1
- ---
2
- ko:
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: "업데이트 이전 URL"
18
- uri_deleted: "지정된 URL이 삭제되었습니다"
19
- uris_title: "이 주제는 다음과 같은 URL에 표시됩니다"
20
- use_domain_themes: "현재 테마에 URL을 각 주제에 아래의 지정에 의해 결정됩니다."
@@ -1,20 +0,0 @@
1
- ---
2
- lt:
3
- disguise:
4
- activate_theme_message: "Paspauskite temą aktyvuoti"
5
- add_uri: Pridėti
6
- current_theme: "Dabartinė tema"
7
- delete_uri: Ištrinti
8
- error_creating_domain_theme: "Iškilo problema pridedant URL: {{error}}"
9
- name_theme: ~
10
- no_current_theme: "Šiuo metu nėra tema buvo pasirinktas dėl šio prašymo ir taip pagal nutylėjimą taikymo vaizdas bus naudojamas."
11
- no_themes_message: "Jūs dar neturite jokios jūsų taikymo temomis. Jei norite sukurti nauja tema tiesiog paleiskite Theme Generator ir sekite instrukcijas:"
12
- remove_all_themes: "Pašalinti visas temas ir naudoti numatytąjį aplikacijų šablonus"
13
- set_theme: "Nustatykite temą"
14
- theme_removed: "Visos temos buvo pašalintos"
15
- theme_updated: "Tema buvo sėkmingai atnaujintas."
16
- theme_uri_label: "URL tema"
17
- update_uri: "Atnaujinti URL"
18
- uri_deleted: "Nurodytas URL buvo ištrintas"
19
- uris_title: "Ši tema bus rodomi visi šie adresai"
20
- use_domain_themes: "Dabartinė tema bus nustatomas url kiekvienos temos apačioje."
@@ -1,20 +0,0 @@
1
- ---
2
- lv:
3
- disguise:
4
- activate_theme_message: "Noklikšķiniet uz tēmu to aktivizēt"
5
- add_uri: Pievienot
6
- current_theme: "Current Theme"
7
- delete_uri: Dzēst
8
- error_creating_domain_theme: "Radās problēma pievienojot url: {{error}}"
9
- name_theme: ~
10
- no_current_theme: "Pašreiz nav tēma ir izvēlēta par šo pieteikumu un tā noklusējuma pieteikumu uzskata, tiks izmantota."
11
- no_themes_message: "Jūs vēl neesat izveidojis nevienu jūsu pieteikumu tēmām. Ja jūs vēlaties izveidot jaunu tēmu vienkārši palaist tēmu ģenerators un izpildiet instrukcijas:"
12
- remove_all_themes: "Noņemt visas tēmas un izmantot noklusēto pieteikumu veidnes"
13
- set_theme: "Set Theme"
14
- theme_removed: "Visas tēmas ir novērstas"
15
- theme_updated: "Tēma ir veiksmīgi atjaunināts."
16
- theme_uri_label: "URL Theme"
17
- update_uri: "Update URL"
18
- uri_deleted: "Norādīto URL ir izdzēsta"
19
- uris_title: "Šī tēma tiks parādīti visi šādi URL"
20
- use_domain_themes: "Pašreizējā tēma tiks noteikti url norādīta ar katras tēmas zemāk."
@@ -1,20 +0,0 @@
1
- ---
2
- mt:
3
- disguise:
4
- activate_theme_message: "Ikklikkja fuq tema sabiex jattivaw dan"
5
- add_uri: Żid
6
- current_theme: "Current Tema"
7
- delete_uri: Ħassar
8
- error_creating_domain_theme: "Kien hemm problema żżid l-url: {{error}}"
9
- name_theme: ~
10
- no_current_theme: "Bħalissa l-ebda tema ntgħażlet għal din l-applikazzjoni u għalhekk il-ħsieb applikazzjoni default se jintużaw."
11
- no_themes_message: "Inti għadhom ma ħolqux it-temi għall-applikazzjoni tiegħek. Jekk inti tixtieq toħloq tema ġodda sempliċement run-ġeneratur tema u segwi l-istruzzjonijiet:"
12
- remove_all_themes: "Neħħi l-temi u l-applikazzjoni default użu templates"
13
- set_theme: "Set Tema"
14
- theme_removed: "It-temi kollha jkunu tneħħew"
15
- theme_updated: "Tema kienet b'suċċess aġġornata."
16
- theme_uri_label: "Url għall-Tema"
17
- update_uri: "Update Url"
18
- uri_deleted: "Il-url speċifikat ġiet imħassra"
19
- uris_title: "Din it-tema ser tkun murija għal kulħadd il-URLs li ġejjin"
20
- use_domain_themes: "It-tema attwali se tiġi determinata mill-url speċifikat ma 'kull tema hawn taħt."
@@ -1,20 +0,0 @@
1
- ---
2
- nl:
3
- disguise:
4
- activate_theme_message: "Klik op een thema om het te activeren"
5
- add_uri: Toevoegen
6
- current_theme: "Huidig Thema"
7
- delete_uri: Wissen
8
- error_creating_domain_theme: "Er was een probleem het toevoegen van de url: {{error}}"
9
- name_theme: ~
10
- no_current_theme: "Momenteel geen thema is gekozen voor deze toepassing en dus de standaard toepassing mening zal worden gebruikt."
11
- no_themes_message: "U heeft nog geen thema's gemaakt voor uw toepassing. Als u wilt maken een nieuw thema gewoon lopen het thema generator en volg de instructies:"
12
- remove_all_themes: "Verwijder alle thema's en het gebruik dat standaard sjablonen"
13
- set_theme: "Set Thema"
14
- theme_removed: "Alle thema's zijn verwijderd"
15
- theme_updated: "Thema is bijgewerkt."
16
- theme_uri_label: "URL voor Thema"
17
- update_uri: "Update Url"
18
- uri_deleted: "De opgegeven URL is verwijderd"
19
- uris_title: "Dit thema zal worden weergegeven voor de volgende URL"
20
- use_domain_themes: "De huidige thema zal worden bepaald door de url gespecificeerd met elk thema hieronder."
@@ -1,21 +0,0 @@
1
- ---
2
- ? "no"
3
- :
4
- disguise:
5
- activate_theme_message: "Klikk på et tema for å aktivere den"
6
- add_uri: "Legge til"
7
- current_theme: "Current Theme"
8
- delete_uri: Slette
9
- error_creating_domain_theme: "Det var et problem å legge til url: {{error}}"
10
- name_theme: ~
11
- no_current_theme: "Foreløpig ingen tema er valgt for dette programmet, og slik standard søknad se bli brukt."
12
- no_themes_message: "Du har ennå ikke opprettet noen temaer for programmet. Hvis du vil opprette et nytt tema rett og slett kjøre tema generator og følg instruksjonene:"
13
- remove_all_themes: "Fjern alle temaer og bruke standard programmaler"
14
- set_theme: "Set Theme"
15
- theme_removed: "Alle temaer har blitt fjernet"
16
- theme_updated: "Temaet ble oppdatert."
17
- theme_uri_label: "Url for Theme"
18
- update_uri: "Oppdater Url"
19
- uri_deleted: "Den angitte nettadressen er slettet"
20
- uris_title: "Dette temaet vil bli vist for alle de følgende webadresser"
21
- use_domain_themes: "Den aktuelle tema vil bli fastsatt av Nettadressen med hvert tema nedenfor."
@@ -1,20 +0,0 @@
1
- ---
2
- pl:
3
- disguise:
4
- activate_theme_message: "Kliknij na temat aby go uaktywnić"
5
- add_uri: Dodać
6
- current_theme: "Obecny Theme"
7
- delete_uri: Usunąć
8
- error_creating_domain_theme: "Wystąpił problem z dodaniem url: {{error}}"
9
- name_theme: ~
10
- no_current_theme: "Aktualnie nie ma żadnych temat został wybrany do tego wniosku i dlatego widok aplikacji domyślnie będzie używany."
11
- no_themes_message: "Jeszcze nie stworzył jeszcze żadnych tematów dla danej aplikacji. Jeśli chcesz, aby utworzyć nowego tematu wystarczy uruchomić generator tematu i postępuj zgodnie z instrukcjami:"
12
- remove_all_themes: "Usuń wszystkie tematy i standardowych aplikacji za pomocą szablonów"
13
- set_theme: "Ustaw kompozycję"
14
- theme_removed: "Wszystkie tematy zostały usunięte"
15
- theme_updated: "Temat został zaktualizowany."
16
- theme_uri_label: "Url do tematu"
17
- update_uri: "Aktualizacja Url"
18
- uri_deleted: "Podany adres URL został usunięty"
19
- uris_title: "Temat ten będzie wyświetlany dla wszystkich następujących adresów URL"
20
- use_domain_themes: "Bieżący temat zostanie ustalona przez określony adres URL z każdego tematu poniżej."
@@ -1,20 +0,0 @@
1
- ---
2
- pt-PT:
3
- disguise:
4
- activate_theme_message: "Clique em um tema para ativá-lo"
5
- add_uri: Adicionar
6
- current_theme: "Tema Atual"
7
- delete_uri: Excluir
8
- error_creating_domain_theme: "Houve um problema ao adicionar a url: {{error}}"
9
- name_theme: ~
10
- no_current_theme: "Atualmente, nenhum tema foi selecionado para esta aplicação e assim a visualização do aplicativo padrão será usado."
11
- no_themes_message: "Você ainda não criou nenhum temas para sua aplicação. Se você gostaria de criar um novo tema basta executar o tema gerador e siga as instruções:"
12
- remove_all_themes: "Remova todos os temas e aplicativos padrão utilizar modelos"
13
- set_theme: "Definir Tema"
14
- theme_removed: "Todos os temas foram removidos"
15
- theme_updated: "Tema foi atualizada com sucesso."
16
- theme_uri_label: "Url para o Tema"
17
- update_uri: "Atualização Url"
18
- uri_deleted: "A URL especificada foi excluída"
19
- uris_title: "Este tema será apresentado para todos os URLs a seguir"
20
- use_domain_themes: "O tema do curso será determinado pela URL especificado com cada tema a seguir."
@@ -1,20 +0,0 @@
1
- ---
2
- ro:
3
- disguise:
4
- activate_theme_message: "Faceţi clic pe o temă la spre activate it"
5
- add_uri: Adăuga
6
- current_theme: "Current Theme"
7
- delete_uri: Şterge
8
- error_creating_domain_theme: "Nu a fost o problemă adăugând url: {{error}}"
9
- name_theme: ~
10
- no_current_theme: "În prezent, nu tema a fost selectat pentru această cerere şi atât de vizualizare implicit cererea va fi folosit."
11
- no_themes_message: "Nu aţi creat încă nici o teme pentru cererea dumneavoastră. Dacă doriţi să creaţi o temă nouă pur şi simplu rulaţi generatorului de temă şi urmaţi instrucţiunile:"
12
- remove_all_themes: "Eliminaţi toate temele şi de a folosi aplicatia standard template-uri"
13
- set_theme: "Set Tematica"
14
- theme_removed: "Toate temele au fost eliminate"
15
- theme_updated: "Tematica a fost actualizat cu succes."
16
- theme_uri_label: "URL-ul pentru Tematica"
17
- update_uri: "Update Url-ul"
18
- uri_deleted: "URL-ul specificat a fost şters"
19
- uris_title: "Această temă va fi afişat pentru toate URL-urile următoare"
20
- use_domain_themes: "Tema curent va fi determinată de URL-ul specificat cu fiecare temă de mai jos."
@@ -1,20 +0,0 @@
1
- ---
2
- ru:
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: "Обновите URL-адрес"
18
- uri_deleted: "Указанного URL был удален"
19
- uris_title: "Эта тема будет отображаться для всех следующих URL-адресов"
20
- use_domain_themes: "Нынешняя тема будет определена по указанному URL с каждой теме ниже."
@@ -1,20 +0,0 @@
1
- ---
2
- sk:
3
- disguise:
4
- activate_theme_message: "Kliknite na tému pre jeho aktiváciu"
5
- add_uri: Pridať
6
- current_theme: "Aktuálna téma"
7
- delete_uri: Odstrániť
8
- error_creating_domain_theme: "Tam bol problém pridať url: {{error}}"
9
- name_theme: ~
10
- no_current_theme: "V súčasnej dobe žiadny motív bol vybraný pre túto aplikáciu, a tak predvolené zobrazenie programu budú použité."
11
- no_themes_message: "Ste ešte nevytvorili žiadne témy pre vašu aplikáciu. Ak by ste chceli vytvoriť novú tému stačí spustiť tému generátor a postupujte podľa pokynov:"
12
- remove_all_themes: "Odstráňte všetky témy a použitie predvolené šablóny aplikácií"
13
- set_theme: "Set Téma"
14
- theme_removed: "Všetky motívy boli odstránené"
15
- theme_updated: "Téma bol úspešne aktualizovaný."
16
- theme_uri_label: "Url na tému"
17
- update_uri: "Aktualizácia Url"
18
- uri_deleted: "Špecifikované url bol vymazaný"
19
- uris_title: "Táto téma sa zobrazia všetky nasledujúce adresy URL"
20
- use_domain_themes: "Aktuálna téma bude určený url upresnený každú tému nižšie."
@@ -1,20 +0,0 @@
1
- ---
2
- sl:
3
- disguise:
4
- activate_theme_message: "Kliknite na temo, da jo aktivirate"
5
- add_uri: Dodati
6
- current_theme: "Current Theme"
7
- delete_uri: Izbrisati
8
- error_creating_domain_theme: "Prišlo je do težave dodal url: {{error}}"
9
- name_theme: ~
10
- no_current_theme: "Trenutno ni bila tema izbrana za to vlogo in tako zaradi uporabe privzeti bodo uporabljeni."
11
- no_themes_message: "Vi še niso ustvarili nobene teme za vašo prijavo. Če želite ustvariti novo temo preprosto teči temo generator in sledite navodilom:"
12
- remove_all_themes: "Odstranite vse teme in uporabi default uporaba predloge"
13
- set_theme: "Set Theme"
14
- theme_removed: "Vse teme so bile odstranjene"
15
- theme_updated: "Tema je bila uspešno posodobljena."
16
- theme_uri_label: "Url za Theme"
17
- update_uri: "Update Url"
18
- uri_deleted: "Navedeni URL je bil izbrisan"
19
- uris_title: "Ta tema bo prikazan za vse naslednje urls"
20
- use_domain_themes: "Trenutni tema bo določena z url določeno z vsako temo spodaj."
@@ -1,20 +0,0 @@
1
- ---
2
- sr:
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: "Струја тема ће бити одређен УРЛ наведен за сваку тему испод."
@@ -1,20 +0,0 @@
1
- ---
2
- sv:
3
- disguise:
4
- activate_theme_message: "Klicka på ett tema för att aktivera den"
5
- add_uri: "Lägg till"
6
- current_theme: "Aktuellt tema"
7
- delete_uri: "Ta bort"
8
- error_creating_domain_theme: "Fanns ett problem att lägga till URL: {{error}}"
9
- name_theme: ~
10
- no_current_theme: "Närvarande inga tema har valts ut för denna ansökan och så standardprogrammet syfte att användas."
11
- no_themes_message: "Du har ännu inte skapat några teman för din ansökan. Om du vill skapa ett nytt tema bara köra temat generator och följ instruktionerna:"
12
- remove_all_themes: "Ta bort alla teman och använda standardprogrammet mallar"
13
- set_theme: "Ställ Theme"
14
- theme_removed: "Alla teman har tagits bort"
15
- theme_updated: "Temat har uppdaterats."
16
- theme_uri_label: "URL för Tema"
17
- update_uri: "Uppdatera Url"
18
- uri_deleted: "Den angivna webbadressen har tagits bort"
19
- uris_title: "Detta tema kommer att visas för alla följande webbadresser"
20
- use_domain_themes: "Det aktuella temat kommer att bestämmas av den URL som anges med varje tema nedan."
@@ -1,20 +0,0 @@
1
- ---
2
- th:
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: "คุณยังไม่ได้สร้างธีมสำหรับใบสมัครของคุณ. ถ้าคุณต้องการสร้างชุดรูปแบบใหม่เพียงใช้ทำ theme และปฏิบัติตามคำแนะนำ:"
12
- remove_all_themes: ลบรูปแบบและการประยุกต์ใช้ค่าเริ่มต้นแม่แบบ
13
- set_theme: "Theme Set"
14
- theme_removed: ธีมทั้งหมดถูกลบ
15
- theme_updated: "Theme แล้วสำเร็จ."
16
- theme_uri_label: "URL สำหรับ Theme"
17
- update_uri: "Url Update"
18
- uri_deleted: "URL ที่ระบุถูกลบ"
19
- uris_title: ชุดรูปแบบนี้จะปรากฏทุกต่างๆต่อไปนี้
20
- use_domain_themes: "ชุดรูปแบบปัจจุบันจะพิจารณาจาก URL ที่ระบุกับเรื่องนี้แต่ละ."
@@ -1,20 +0,0 @@
1
- ---
2
- tl:
3
- disguise:
4
- activate_theme_message: "Mag-click sa isang tema upang buhayin ito"
5
- add_uri: Magdagdag
6
- current_theme: "Kasalukuyang Theme"
7
- delete_uri: Tanggalin
8
- error_creating_domain_theme: "Nagkaroon ng problema ang pagdaragdag ng url: {{error}}"
9
- name_theme: ~
10
- no_current_theme: "Kasalukuyang walang tema ay napili para sa aplikasyon na ito at sa gayon ang default view ng application na ito ay gagamitin."
11
- no_themes_message: "Hindi ka pa ng anumang mga tema para sa iyong application. Kung nais mong lumikha ng isang bagong tema lamang patakbuhin ang tema generator at sundin ang mga tagubilin:"
12
- remove_all_themes: "Alisin ang lahat ng mga tema at gamitin ang default na template ng aplikasyon"
13
- set_theme: "Itakda ang Theme"
14
- theme_removed: "Lahat ng mga tema ay tinanggal"
15
- theme_updated: "Theme ay matagumpay na na-update."
16
- theme_uri_label: "Url para sa Theme"
17
- update_uri: "I-update ang Url"
18
- uri_deleted: "Ang tinukoy na url na ito ay tinanggal na"
19
- uris_title: "Ang temang ito ay ipapakita sa lahat ng mga sumusunod na url"
20
- use_domain_themes: "Ang kasalukuyang tema ay natutukoy sa pamamagitan ng tinukoy na url na may tema ang bawat isa sa ibaba."
@@ -1,20 +0,0 @@
1
- ---
2
- tr:
3
- disguise:
4
- activate_theme_message: "Tıklatın etkin hale getirmek için bir tema üzerinde"
5
- add_uri: Eklemek
6
- current_theme: "Geçerli Tema"
7
- delete_uri: Silmek
8
- error_creating_domain_theme: "Bir sorun url eklerken: {{error}} oldu"
9
- name_theme: ~
10
- no_current_theme: "Şu anda hiçbir tema Bu uygulama için ve bu nedenle varsayılan uygulama görünümü kullanılacaktır seçildi."
11
- no_themes_message: "Henüz başvuru için herhangi bir temalar oluşturmadınız. Eğer yeni bir tema sadece tema jeneratörü çalıştırın ve talimatları oluşturmak istiyoruz:"
12
- remove_all_themes: "Tüm temalar ve kullanım varsayılan uygulama Kaldır şablonları"
13
- set_theme: Tema
14
- theme_removed: "Tüm temalar kaldırıldı"
15
- theme_updated: "Tema başarıyla güncellendi."
16
- theme_uri_label: "Url Tema için"
17
- update_uri: "Güncelleme kes"
18
- uri_deleted: "Belirtilen URL silindi"
19
- uris_title: "Bu temayı tüm aşağıdaki URL'ler için görüntülenir"
20
- use_domain_themes: "Geçerli tema url her tema ile aşağıda belirtilen belirlenecektir."
@@ -1,20 +0,0 @@
1
- ---
2
- uk:
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: "Оновіть URL-адреса"
18
- uri_deleted: "Зазначеного URL був видалений"
19
- uris_title: "Ця тема буде відображатися для всіх наступних URL-адрес"
20
- use_domain_themes: "Нинішня тема буде визначена за вказаною URL з кожної теми нижче."
@@ -1,20 +0,0 @@
1
- ---
2
- vi:
3
- disguise:
4
- activate_theme_message: "Nhấp vào một chủ đề để kích hoạt nó"
5
- add_uri: Thêm
6
- current_theme: "Chủ đề hiện hành"
7
- delete_uri: Xoá
8
- error_creating_domain_theme: "Có vấn đề thêm url: {{error}}"
9
- name_theme: ~
10
- no_current_theme: "Hiện nay không có chủ đề được chọn cho các ứng dụng này và vì vậy xem ứng dụng mặc định sẽ được sử dụng."
11
- no_themes_message: "Bạn chưa tạo ra bất kỳ chủ đề cho ứng dụng của bạn. Nếu bạn muốn tạo một chủ đề mới chỉ cần chạy máy phát điện chủ đề và làm theo hướng dẫn:"
12
- remove_all_themes: "Hủy bỏ tất cả các chủ đề và các ứng dụng mặc định sử dụng các mẫu"
13
- set_theme: "Set Theme"
14
- theme_removed: "Tất cả các chủ đề đã được gỡ bỏ"
15
- theme_updated: "Chủ đề được cập nhật thành công."
16
- theme_uri_label: "Url cho Theme"
17
- update_uri: "Cập nhật Url"
18
- uri_deleted: "Url xác định đã bị xóa"
19
- uris_title: "Chủ đề này sẽ được hiển thị cho tất cả các url sau"
20
- use_domain_themes: "Chủ đề hiện tại sẽ được xác định bởi các url được chỉ định với từng chủ đề dưới đây."