fat_free_crm 0.12.3 → 0.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fat_free_crm might be problematic. Click here for more details.

Files changed (521) hide show
  1. checksums.yaml +5 -13
  2. data/.travis.yml +1 -11
  3. data/Gemfile +7 -19
  4. data/Gemfile.lock +166 -166
  5. data/Procfile +1 -1
  6. data/README.md +20 -20
  7. data/app/assets/javascripts/admin/fields.js.coffee +3 -3
  8. data/app/assets/javascripts/application.js.erb +3 -0
  9. data/app/assets/javascripts/crm.js +1 -0
  10. data/app/assets/javascripts/crm_comments.js.coffee +66 -0
  11. data/app/assets/javascripts/lists.js.coffee +45 -2
  12. data/app/assets/javascripts/search.js.coffee +2 -0
  13. data/app/assets/javascripts/timeago.js +17 -0
  14. data/app/assets/stylesheets/advanced_search.css.scss +49 -25
  15. data/app/assets/stylesheets/application.css.erb +3 -0
  16. data/app/assets/stylesheets/common.scss +13 -0
  17. data/app/assets/stylesheets/format_buttons.css.scss +15 -10
  18. data/app/assets/stylesheets/header.scss +3 -0
  19. data/app/assets/stylesheets/lists.css.scss +4 -0
  20. data/app/controllers/admin/fields_controller.rb +5 -5
  21. data/app/controllers/admin/users_controller.rb +1 -3
  22. data/app/controllers/application_controller.rb +23 -23
  23. data/app/controllers/comments_controller.rb +3 -31
  24. data/app/controllers/entities/accounts_controller.rb +3 -3
  25. data/app/controllers/entities/campaigns_controller.rb +4 -4
  26. data/app/controllers/entities/contacts_controller.rb +2 -2
  27. data/app/controllers/entities/leads_controller.rb +3 -3
  28. data/app/controllers/entities/opportunities_controller.rb +4 -3
  29. data/app/controllers/entities_controller.rb +6 -6
  30. data/app/controllers/home_controller.rb +1 -1
  31. data/app/controllers/lists_controller.rb +8 -1
  32. data/app/controllers/tasks_controller.rb +1 -1
  33. data/app/controllers/users_controller.rb +46 -23
  34. data/app/helpers/admin/application_helper.rb +1 -3
  35. data/app/helpers/admin/field_groups_helper.rb +2 -1
  36. data/app/helpers/application_helper.rb +37 -16
  37. data/app/helpers/home_helper.rb +1 -2
  38. data/app/helpers/leads_helper.rb +5 -6
  39. data/app/helpers/tasks_helper.rb +36 -50
  40. data/app/models/entities/account.rb +10 -7
  41. data/app/models/entities/campaign.rb +4 -4
  42. data/app/models/entities/contact.rb +8 -5
  43. data/app/models/entities/lead.rb +8 -8
  44. data/app/models/entities/opportunity.rb +13 -18
  45. data/app/models/fields/custom_field.rb +10 -0
  46. data/app/models/fields/field.rb +3 -3
  47. data/app/models/fields/field_group.rb +1 -1
  48. data/app/models/list.rb +1 -0
  49. data/app/models/polymorphic/address.rb +3 -3
  50. data/app/models/polymorphic/comment.rb +2 -4
  51. data/app/models/polymorphic/task.rb +32 -27
  52. data/app/models/setting.rb +3 -9
  53. data/app/models/users/ability.rb +2 -13
  54. data/app/models/users/user.rb +12 -15
  55. data/app/views/accounts/_edit.html.haml +1 -1
  56. data/app/views/accounts/_index_brief.html.haml +3 -3
  57. data/app/views/accounts/_index_long.html.haml +3 -3
  58. data/app/views/accounts/_new.html.haml +1 -1
  59. data/app/views/accounts/create.js.haml +17 -0
  60. data/app/views/accounts/destroy.js.haml +6 -0
  61. data/app/views/accounts/edit.js.haml +32 -0
  62. data/app/views/accounts/index.js.haml +11 -0
  63. data/app/views/accounts/index.xls.builder +9 -7
  64. data/app/views/accounts/new.js.haml +11 -0
  65. data/app/views/accounts/show.js.haml +5 -0
  66. data/app/views/accounts/update.js.haml +17 -0
  67. data/app/views/admin/field_groups/_edit.html.haml +1 -1
  68. data/app/views/admin/field_groups/_new.html.haml +1 -1
  69. data/app/views/admin/field_groups/confirm.js.haml +7 -0
  70. data/app/views/admin/field_groups/create.js.haml +20 -0
  71. data/app/views/admin/field_groups/destroy.js.haml +9 -0
  72. data/app/views/admin/field_groups/edit.js.haml +12 -0
  73. data/app/views/admin/field_groups/new.js.haml +8 -0
  74. data/app/views/admin/field_groups/update.js.haml +8 -0
  75. data/app/views/admin/fields/_field.html.haml +2 -2
  76. data/app/views/admin/fields/_form.html.haml +2 -2
  77. data/app/views/admin/fields/create.js.haml +17 -0
  78. data/app/views/admin/fields/destroy.js.haml +8 -0
  79. data/app/views/admin/fields/edit.js.haml +3 -0
  80. data/app/views/admin/fields/update.js.haml +13 -0
  81. data/app/views/admin/groups/_edit.html.haml +1 -1
  82. data/app/views/admin/groups/_new.html.haml +1 -1
  83. data/app/views/admin/groups/create.js.haml +10 -0
  84. data/app/views/admin/groups/destroy.js.haml +9 -0
  85. data/app/views/admin/groups/edit.js.haml +14 -0
  86. data/app/views/admin/groups/index.html.haml +1 -1
  87. data/app/views/admin/groups/index.js.haml +2 -0
  88. data/app/views/admin/groups/new.js.haml +9 -0
  89. data/app/views/admin/groups/update.js.haml +9 -0
  90. data/app/views/admin/tags/_edit.html.haml +1 -1
  91. data/app/views/admin/tags/_new.html.haml +1 -1
  92. data/app/views/admin/tags/confirm.js.haml +7 -0
  93. data/app/views/admin/tags/create.js.haml +11 -0
  94. data/app/views/admin/tags/destroy.js.haml +10 -0
  95. data/app/views/admin/tags/edit.js.haml +20 -0
  96. data/app/views/admin/tags/new.js.haml +7 -0
  97. data/app/views/admin/tags/update.js.haml +9 -0
  98. data/app/views/admin/users/_edit.html.haml +1 -1
  99. data/app/views/admin/users/_new.html.haml +1 -1
  100. data/app/views/admin/users/_user.html.haml +1 -1
  101. data/app/views/admin/users/confirm.js.haml +7 -0
  102. data/app/views/admin/users/create.js.haml +10 -0
  103. data/app/views/admin/users/destroy.js.haml +10 -0
  104. data/app/views/admin/users/edit.js.haml +20 -0
  105. data/app/views/admin/users/index.js.haml +2 -0
  106. data/app/views/admin/users/new.js.haml +9 -0
  107. data/app/views/admin/users/reactivate.js.haml +3 -0
  108. data/app/views/admin/users/suspend.js.haml +3 -0
  109. data/app/views/admin/users/update.js.haml +9 -0
  110. data/app/views/authentications/new.html.haml +1 -1
  111. data/app/views/campaigns/_edit.html.haml +1 -1
  112. data/app/views/campaigns/_new.html.haml +1 -1
  113. data/app/views/campaigns/create.js.haml +20 -0
  114. data/app/views/campaigns/destroy.js.haml +6 -0
  115. data/app/views/campaigns/edit.js.haml +33 -0
  116. data/app/views/campaigns/index.js.haml +11 -0
  117. data/app/views/campaigns/index.xls.builder +9 -7
  118. data/app/views/campaigns/new.js.haml +11 -0
  119. data/app/views/campaigns/show.js.haml +5 -0
  120. data/app/views/campaigns/update.js.haml +20 -0
  121. data/app/views/comments/_comment.html.haml +1 -1
  122. data/app/views/comments/_edit.html.haml +1 -1
  123. data/app/views/comments/_new.html.haml +3 -2
  124. data/app/views/comments/create.js.haml +14 -0
  125. data/app/views/comments/destroy.js.haml +5 -0
  126. data/app/views/comments/edit.js.haml +11 -0
  127. data/app/views/comments/update.js.haml +9 -0
  128. data/app/views/contacts/_edit.html.haml +1 -1
  129. data/app/views/contacts/_index_full.html.haml +1 -1
  130. data/app/views/contacts/_index_long.html.haml +2 -1
  131. data/app/views/contacts/_new.html.haml +1 -1
  132. data/app/views/contacts/_section_general.html.haml +3 -3
  133. data/app/views/contacts/create.js.haml +23 -0
  134. data/app/views/contacts/destroy.js.haml +9 -0
  135. data/app/views/contacts/edit.js.haml +35 -0
  136. data/app/views/contacts/index.js.haml +11 -0
  137. data/app/views/contacts/index.xls.builder +9 -7
  138. data/app/views/contacts/new.js.haml +13 -0
  139. data/app/views/contacts/show.js.haml +5 -0
  140. data/app/views/contacts/update.js.haml +22 -0
  141. data/app/views/emails/destroy.js.haml +5 -0
  142. data/app/views/entities/_permissions.html.haml +1 -1
  143. data/app/views/entities/attach.js.haml +21 -0
  144. data/app/views/entities/contacts.js.haml +3 -0
  145. data/app/views/entities/discard.js.haml +6 -0
  146. data/app/views/entities/leads.js.haml +3 -0
  147. data/app/views/entities/opportunities.js.haml +3 -0
  148. data/app/views/entities/subscription_update.js.haml +4 -0
  149. data/app/views/entities/versions.js.haml +3 -0
  150. data/app/views/fields/group.js.erb +3 -0
  151. data/app/views/home/_account.html.haml +3 -3
  152. data/app/views/home/_opportunity.html.haml +3 -3
  153. data/app/views/home/index.atom.builder +3 -3
  154. data/app/views/home/index.js.haml +7 -0
  155. data/app/views/home/index.rss.builder +2 -2
  156. data/app/views/home/options.js.haml +7 -0
  157. data/app/views/layouts/_footer.html.haml +0 -4
  158. data/app/views/layouts/_sidebar.html.haml +1 -0
  159. data/app/views/layouts/_tabbed.html.haml +1 -4
  160. data/app/views/layouts/admin/application.html.haml +0 -1
  161. data/app/views/layouts/application.html.haml +5 -7
  162. data/app/views/leads/_convert.html.haml +1 -1
  163. data/app/views/leads/_edit.html.haml +1 -1
  164. data/app/views/leads/_index_long.html.haml +2 -2
  165. data/app/views/leads/_new.html.haml +1 -1
  166. data/app/views/leads/convert.js.haml +35 -0
  167. data/app/views/leads/create.js.haml +21 -0
  168. data/app/views/leads/destroy.js.haml +9 -0
  169. data/app/views/leads/edit.js.haml +35 -0
  170. data/app/views/leads/index.js.haml +11 -0
  171. data/app/views/leads/index.xls.builder +9 -7
  172. data/app/views/leads/new.js.haml +11 -0
  173. data/app/views/leads/promote.js.haml +26 -0
  174. data/app/views/leads/reject.js.haml +12 -0
  175. data/app/views/leads/show.js.haml +5 -0
  176. data/app/views/leads/update.js.haml +26 -0
  177. data/app/views/lists/_personal_sidebar.html.haml +28 -0
  178. data/app/views/lists/_sidebar.html.haml +10 -7
  179. data/app/views/lists/create.js.haml +10 -0
  180. data/app/views/lists/destroy.js.haml +1 -0
  181. data/app/views/opportunities/_edit.html.haml +1 -1
  182. data/app/views/opportunities/_index_brief.html.haml +3 -3
  183. data/app/views/opportunities/_index_long.html.haml +3 -3
  184. data/app/views/opportunities/_new.html.haml +1 -2
  185. data/app/views/opportunities/_top_section.html.haml +4 -0
  186. data/app/views/opportunities/contacts.js.haml +3 -0
  187. data/app/views/opportunities/create.js.haml +29 -0
  188. data/app/views/opportunities/destroy.js.haml +13 -0
  189. data/app/views/opportunities/edit.js.haml +35 -0
  190. data/app/views/opportunities/index.js.haml +11 -0
  191. data/app/views/opportunities/index.xls.builder +9 -7
  192. data/app/views/opportunities/new.js.haml +13 -0
  193. data/app/views/opportunities/show.js.haml +5 -0
  194. data/app/views/opportunities/update.js.haml +25 -0
  195. data/app/views/passwords/edit.html.haml +1 -1
  196. data/app/views/passwords/new.html.haml +1 -1
  197. data/app/views/shared/_comment.html.haml +1 -1
  198. data/app/views/shared/_inline_styles.html.haml +1 -1
  199. data/app/views/tasks/_edit.html.haml +1 -1
  200. data/app/views/tasks/_new.html.haml +1 -1
  201. data/app/views/tasks/complete.js.haml +14 -0
  202. data/app/views/tasks/create.js.haml +39 -0
  203. data/app/views/tasks/destroy.js.haml +7 -0
  204. data/app/views/tasks/discard.js.haml +1 -0
  205. data/app/views/tasks/edit.js.haml +26 -0
  206. data/app/views/tasks/filter.js.haml +4 -0
  207. data/app/views/tasks/index.xls.builder +7 -5
  208. data/app/views/tasks/new.js.haml +8 -0
  209. data/app/views/tasks/update.js.haml +19 -0
  210. data/app/views/users/_password.html.haml +1 -1
  211. data/app/views/users/_profile.html.haml +1 -1
  212. data/app/views/users/avatar.js.haml +9 -0
  213. data/app/views/users/change_password.js.haml +13 -0
  214. data/app/views/users/edit.js.haml +9 -0
  215. data/app/views/users/new.html.haml +1 -1
  216. data/app/views/users/password.js.haml +10 -0
  217. data/app/views/users/update.js.haml +9 -0
  218. data/app/views/users/upload_avatar.js.haml +7 -0
  219. data/app/views/versions/_version.html.haml +1 -1
  220. data/config/application.rb +1 -4
  221. data/config/environments/production.rb +3 -2
  222. data/config/initializers/custom_field_ransack_translations.rb +15 -0
  223. data/config/initializers/locale.rb +9 -1
  224. data/config/initializers/secret_token.rb +1 -25
  225. data/config/initializers/views.rb +20 -20
  226. data/config/locales/cz.yml +245 -211
  227. data/config/locales/cz_fat_free_crm.yml +105 -181
  228. data/config/locales/de.yml +162 -118
  229. data/config/locales/de_fat_free_crm.yml +760 -731
  230. data/config/locales/de_ransack.yml +91 -0
  231. data/config/locales/en-GB.yml +158 -119
  232. data/config/locales/en-GB_fat_free_crm.yml +161 -279
  233. data/config/locales/en-US.yml +158 -121
  234. data/config/locales/en-US_fat_free_crm.yml +185 -179
  235. data/config/locales/en-US_ransack.yml +81 -82
  236. data/config/locales/es.yml +164 -123
  237. data/config/locales/es_fat_free_crm.yml +151 -209
  238. data/config/locales/fr-CA.yml +167 -130
  239. data/config/locales/fr-CA_fat_free_crm.yml +142 -202
  240. data/config/locales/fr.yml +170 -125
  241. data/config/locales/fr_fat_free_crm.yml +199 -302
  242. data/config/locales/it.yml +158 -122
  243. data/config/locales/it_fat_free_crm.yml +105 -168
  244. data/config/locales/ja.yml +162 -131
  245. data/config/locales/ja_fat_free_crm.yml +118 -188
  246. data/config/locales/pl.yml +168 -132
  247. data/config/locales/pl_fat_free_crm.yml +115 -186
  248. data/config/locales/pt-BR.yml +160 -127
  249. data/config/locales/pt-BR_fat_free_crm.yml +125 -182
  250. data/config/locales/ru.yml +256 -233
  251. data/config/locales/ru_fat_free_crm.yml +136 -193
  252. data/config/locales/sv-SE.yml +164 -181
  253. data/config/locales/sv-SE_fat_free_crm.yml +129 -193
  254. data/config/locales/th_fat_free_crm.yml +114 -194
  255. data/config/locales/zh-CN.yml +176 -149
  256. data/config/locales/zh-CN_fat_free_crm.yml +78 -167
  257. data/config/routes.rb +1 -1
  258. data/config/settings.default.yml +74 -23
  259. data/custom_plan.rb +11 -0
  260. data/db/migrate/20131207033244_add_user_id_to_lists.rb +6 -0
  261. data/db/schema.rb +4 -1
  262. data/fat_free_crm.gemspec +3 -3
  263. data/lib/fat_free_crm.rb +1 -11
  264. data/lib/fat_free_crm/export_csv.rb +3 -3
  265. data/lib/fat_free_crm/fields.rb +10 -0
  266. data/lib/fat_free_crm/gem_dependencies.rb +1 -2
  267. data/lib/fat_free_crm/i18n.rb +9 -5
  268. data/lib/fat_free_crm/version.rb +2 -2
  269. data/lib/fat_free_crm/view_factory.rb +8 -5
  270. data/lib/tasks/ffcrm/config.rake +9 -12
  271. data/lib/tasks/ffcrm/missing_translations.rake +2 -1
  272. data/spec/controllers/admin/users_controller_spec.rb +6 -4
  273. data/spec/controllers/applications_controller_spec.rb +4 -4
  274. data/spec/controllers/authentications_controller_spec.rb +15 -15
  275. data/spec/controllers/comments_controller_spec.rb +9 -87
  276. data/spec/controllers/emails_controller_spec.rb +1 -1
  277. data/spec/controllers/entities/accounts_controller_spec.rb +7 -7
  278. data/spec/controllers/entities/campaigns_controller_spec.rb +5 -5
  279. data/spec/controllers/entities/contacts_controller_spec.rb +7 -7
  280. data/spec/controllers/entities/leads_controller_spec.rb +14 -14
  281. data/spec/controllers/entities/opportunities_controller_spec.rb +8 -8
  282. data/spec/controllers/home_controller_spec.rb +6 -6
  283. data/spec/controllers/tasks_controller_spec.rb +7 -7
  284. data/spec/controllers/users_controller_spec.rb +22 -50
  285. data/spec/features/support/selector_helpers.rb +1 -6
  286. data/spec/features/tasks_spec.rb +2 -2
  287. data/spec/helpers/application_helper_spec.rb +15 -15
  288. data/spec/lib/fields_spec.rb +29 -29
  289. data/spec/lib/mail_processor/base_spec.rb +7 -7
  290. data/spec/lib/mail_processor/dropbox_spec.rb +3 -3
  291. data/spec/lib/view_factory_spec.rb +14 -14
  292. data/spec/models/entities/opportunity_spec.rb +1 -1
  293. data/spec/models/fields/custom_field_date_pair_spec.rb +14 -14
  294. data/spec/models/fields/custom_field_pair_spec.rb +13 -13
  295. data/spec/models/fields/custom_field_spec.rb +5 -5
  296. data/spec/models/fields/field_spec.rb +2 -2
  297. data/spec/models/observers/entity_observer_spec.rb +2 -2
  298. data/spec/models/users/user_spec.rb +7 -7
  299. data/spec/routing/comments_routing_spec.rb +0 -9
  300. data/spec/shared/controllers.rb +75 -77
  301. data/spec/shared/models.rb +1 -1
  302. data/spec/spec_helper.rb +1 -2
  303. data/spec/support/auth_macros.rb +3 -3
  304. data/spec/support/mail_processor_mocks.rb +13 -13
  305. data/spec/views/accounts/_edit.haml_spec.rb +1 -1
  306. data/spec/views/accounts/{create.rjs_spec.rb → create.js.haml_spec.rb} +9 -14
  307. data/spec/views/accounts/{destroy.rjs_spec.rb → destroy.js.haml_spec.rb} +6 -8
  308. data/spec/views/accounts/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +10 -18
  309. data/spec/views/accounts/{index.rjs_spec.rb → index.js.haml_spec.rb} +7 -11
  310. data/spec/views/accounts/{new.rjs_spec.rb → new.js.haml_spec.rb} +6 -8
  311. data/spec/views/accounts/show.haml_spec.rb +1 -1
  312. data/spec/views/accounts/{update.rjs_spec.rb → update.js.haml_spec.rb} +16 -25
  313. data/spec/views/admin/field_groups/create.js.haml_spec.rb +31 -0
  314. data/spec/views/admin/field_groups/destroy.js.haml_spec.rb +31 -0
  315. data/spec/views/admin/field_groups/edit.js.haml_spec.rb +24 -0
  316. data/spec/views/admin/field_groups/new.js.haml_spec.rb +25 -0
  317. data/spec/views/admin/field_groups/update.js.haml_spec.rb +30 -0
  318. data/spec/views/admin/users/_create.haml_spec.rb +1 -1
  319. data/spec/views/admin/users/{create.rjs_spec.rb → create.js.haml_spec.rb} +6 -9
  320. data/spec/views/admin/users/{destroy.rjs_spec.rb → destroy.js.haml_spec.rb} +6 -7
  321. data/spec/views/admin/users/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +6 -12
  322. data/spec/views/admin/users/index.haml_spec.rb +0 -0
  323. data/spec/views/admin/users/{index.rjs_spec.rb → index.js.haml_spec.rb} +3 -5
  324. data/spec/views/admin/users/{new.rjs_spec.rb → new.js.haml_spec.rb} +4 -6
  325. data/spec/views/admin/users/{reactivate.rjs_spec.rb → reactivate.js.haml_spec.rb} +2 -4
  326. data/spec/views/admin/users/show.haml_spec.rb +0 -0
  327. data/spec/views/admin/users/{suspend.rjs_spec.rb → suspend.js.haml_spec.rb} +2 -4
  328. data/spec/views/admin/users/{update.rjs_spec.rb → update.js.haml_spec.rb} +6 -10
  329. data/spec/views/campaigns/{create.rjs_spec.rb → create.js.haml_spec.rb} +9 -14
  330. data/spec/views/campaigns/{destroy.rjs_spec.rb → destroy.js.haml_spec.rb} +6 -7
  331. data/spec/views/campaigns/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +11 -19
  332. data/spec/views/campaigns/{index.rjs_spec.rb → index.js.haml_spec.rb} +5 -9
  333. data/spec/views/campaigns/{new.rjs_spec.rb → new.js.haml_spec.rb} +6 -8
  334. data/spec/views/campaigns/{update.rjs_spec.rb → update.js.haml_spec.rb} +14 -21
  335. data/spec/views/comments/{new.rjs_spec.rb → edit.js.haml_spec.rb} +12 -9
  336. data/spec/views/contacts/{create.rjs_spec.rb → create.js.haml_spec.rb} +9 -16
  337. data/spec/views/contacts/{destroy.rjs_spec.rb → destroy.js.haml_spec.rb} +6 -8
  338. data/spec/views/contacts/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +12 -19
  339. data/spec/views/contacts/index.haml_spec.rb +1 -1
  340. data/spec/views/contacts/{index.rjs_spec.rb → index.js.html_spec.rb} +7 -11
  341. data/spec/views/contacts/{new.rjs_spec.rb → new.js.haml_spec.rb} +6 -7
  342. data/spec/views/contacts/{update.rjs_spec.rb → update.js.haml_spec.rb} +20 -35
  343. data/spec/views/home/{index.rjs_spec.rb → index.js.haml_spec.rb} +2 -4
  344. data/spec/views/home/{options.rjs_spec.rb → options.js.haml_spec.rb} +7 -12
  345. data/spec/views/leads/{convert.rjs_spec.rb → convert.js.haml_spec.rb} +12 -20
  346. data/spec/views/leads/{create.rjs_spec.rb → create.js.haml_spec.rb} +13 -19
  347. data/spec/views/leads/{destroy.rjs_spec.rb → destroy.js.haml_spec.rb} +9 -12
  348. data/spec/views/leads/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +12 -20
  349. data/spec/views/leads/{index.rjs_spec.rb → index.js.haml_spec.rb} +5 -9
  350. data/spec/views/leads/{new.rjs_spec.rb → new.js.haml_spec.rb} +6 -8
  351. data/spec/views/leads/{promote.rjs_spec.rb → promote.js.haml_spec.rb} +28 -43
  352. data/spec/views/leads/{reject.rjs_spec.rb → reject.js.haml_spec.rb} +10 -17
  353. data/spec/views/leads/{update.rjs_spec.rb → update.js.haml_spec.rb} +25 -38
  354. data/spec/views/opportunities/{create.rjs_spec.rb → create.js.haml_spec.rb} +16 -26
  355. data/spec/views/opportunities/{destroy.rjs_spec.rb → destroy.js.haml_spec.rb} +13 -16
  356. data/spec/views/opportunities/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +10 -18
  357. data/spec/views/opportunities/{index.rjs_spec.rb → index.js.haml_spec.rb} +7 -12
  358. data/spec/views/opportunities/{new.rjs_spec.rb → new.js.haml_spec.rb} +6 -8
  359. data/spec/views/opportunities/{update.rjs_spec.rb → update.js.haml_spec.rb} +29 -46
  360. data/spec/views/tasks/_edit.haml_spec.rb +1 -1
  361. data/spec/views/tasks/{complete.rjs_spec.rb → complete.js.haml_spec.rb} +9 -14
  362. data/spec/views/tasks/{create.rjs_spec.rb → create.js.haml_spec.rb} +25 -33
  363. data/spec/views/tasks/{destroy.rjs_spec.rb → destroy.js.haml_spec.rb} +9 -11
  364. data/spec/views/tasks/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +9 -14
  365. data/spec/views/tasks/index.haml_spec.rb +1 -2
  366. data/spec/views/tasks/{new.rjs_spec.rb → new.js.haml_spec.rb} +6 -8
  367. data/spec/views/tasks/{update.rjs_spec.rb → update.js.haml_spec.rb} +28 -41
  368. data/spec/views/users/{avatar.rjs_spec.rb → avatar.js.haml_spec.rb} +7 -9
  369. data/spec/views/users/{change_password.rjs_spec.rb → change_password.js.haml_spec.rb} +10 -12
  370. data/spec/views/users/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +8 -10
  371. data/spec/views/users/{password.rjs_spec.rb → password.js.haml_spec.rb} +9 -11
  372. data/spec/views/users/{update.rjs_spec.rb → update.js.haml_spec.rb} +7 -15
  373. data/spec/views/users/{upload_avatar.rjs_spec.rb → upload_avatar.js.haml_spec.rb} +8 -10
  374. data/vendor/assets/javascripts/ajax-chosen-jquery.js +2 -0
  375. data/vendor/assets/javascripts/ajax-chosen-prototype.js +2 -0
  376. data/vendor/assets/javascripts/ajax-chosen.jquery.coffee +81 -0
  377. data/vendor/assets/javascripts/ajax-chosen.proto.coffee +98 -0
  378. data/vendor/assets/javascripts/jquery_timeago/index.js +17 -0
  379. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.cz.js +18 -0
  380. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.de.js +18 -0
  381. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.en-GB.js +20 -0
  382. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.en-US.js +20 -0
  383. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.es.js +18 -0
  384. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.fr-CA.js +17 -0
  385. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.fr.js +17 -0
  386. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.it.js +16 -0
  387. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.ja.js +19 -0
  388. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.js +194 -0
  389. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.pl.js +31 -0
  390. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.pt-BR.js +18 -0
  391. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.ru.js +34 -0
  392. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.sv-SE.js +18 -0
  393. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.th.js +20 -0
  394. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.zh-CN.js +20 -0
  395. data/zeus.json +2 -1
  396. metadata +240 -245
  397. data/app/assets/images/delete.png +0 -0
  398. data/app/assets/images/iconset_attribution.png +0 -0
  399. data/app/views/accounts/create.js.rjs +0 -14
  400. data/app/views/accounts/destroy.js.rjs +0 -3
  401. data/app/views/accounts/edit.js.rjs +0 -33
  402. data/app/views/accounts/index.js.rjs +0 -8
  403. data/app/views/accounts/new.js.rjs +0 -9
  404. data/app/views/accounts/show.js.erb +0 -2
  405. data/app/views/accounts/update.js.rjs +0 -17
  406. data/app/views/admin/field_groups/confirm.js.rjs +0 -6
  407. data/app/views/admin/field_groups/create.js.rjs +0 -20
  408. data/app/views/admin/field_groups/destroy.js.rjs +0 -11
  409. data/app/views/admin/field_groups/edit.js.rjs +0 -14
  410. data/app/views/admin/field_groups/new.js.rjs +0 -9
  411. data/app/views/admin/field_groups/update.js.rjs +0 -9
  412. data/app/views/admin/fields/create.js.erb +0 -19
  413. data/app/views/admin/fields/destroy.js.erb +0 -9
  414. data/app/views/admin/fields/edit.js.erb +0 -1
  415. data/app/views/admin/fields/update.js.erb +0 -13
  416. data/app/views/admin/groups/create.js.rjs +0 -11
  417. data/app/views/admin/groups/destroy.js.rjs +0 -11
  418. data/app/views/admin/groups/edit.js.rjs +0 -21
  419. data/app/views/admin/groups/index.js.rjs +0 -2
  420. data/app/views/admin/groups/new.js.rjs +0 -9
  421. data/app/views/admin/groups/update.js.rjs +0 -10
  422. data/app/views/admin/tags/confirm.js.rjs +0 -6
  423. data/app/views/admin/tags/create.js.rjs +0 -12
  424. data/app/views/admin/tags/destroy.js.rjs +0 -11
  425. data/app/views/admin/tags/edit.js.rjs +0 -21
  426. data/app/views/admin/tags/new.js.rjs +0 -8
  427. data/app/views/admin/tags/update.js.rjs +0 -10
  428. data/app/views/admin/users/confirm.js.rjs +0 -6
  429. data/app/views/admin/users/create.js.rjs +0 -11
  430. data/app/views/admin/users/destroy.js.rjs +0 -11
  431. data/app/views/admin/users/edit.js.rjs +0 -21
  432. data/app/views/admin/users/index.js.rjs +0 -3
  433. data/app/views/admin/users/new.js.rjs +0 -8
  434. data/app/views/admin/users/reactivate.js.rjs +0 -3
  435. data/app/views/admin/users/suspend.js.rjs +0 -3
  436. data/app/views/admin/users/update.js.rjs +0 -10
  437. data/app/views/campaigns/create.js.rjs +0 -18
  438. data/app/views/campaigns/destroy.js.rjs +0 -3
  439. data/app/views/campaigns/edit.js.rjs +0 -34
  440. data/app/views/campaigns/index.js.rjs +0 -8
  441. data/app/views/campaigns/new.js.rjs +0 -9
  442. data/app/views/campaigns/show.js.erb +0 -2
  443. data/app/views/campaigns/update.js.rjs +0 -21
  444. data/app/views/comments/create.js.rjs +0 -11
  445. data/app/views/comments/destroy.js.rjs +0 -6
  446. data/app/views/comments/edit.js.rjs +0 -11
  447. data/app/views/comments/new.js.rjs +0 -14
  448. data/app/views/comments/update.js.rjs +0 -11
  449. data/app/views/contacts/create.js.rjs +0 -19
  450. data/app/views/contacts/destroy.js.rjs +0 -7
  451. data/app/views/contacts/edit.js.rjs +0 -36
  452. data/app/views/contacts/index.js.rjs +0 -8
  453. data/app/views/contacts/new.js.rjs +0 -11
  454. data/app/views/contacts/show.js.erb +0 -2
  455. data/app/views/contacts/update.js.rjs +0 -22
  456. data/app/views/emails/destroy.js.rjs +0 -6
  457. data/app/views/entities/attach.js.rjs +0 -24
  458. data/app/views/entities/contacts.js.rjs +0 -3
  459. data/app/views/entities/discard.js.rjs +0 -7
  460. data/app/views/entities/leads.js.rjs +0 -3
  461. data/app/views/entities/opportunities.js.rjs +0 -3
  462. data/app/views/entities/subscription_update.js.rjs +0 -4
  463. data/app/views/entities/versions.js.erb +0 -3
  464. data/app/views/fields/group.js.rjs +0 -7
  465. data/app/views/home/index.js.rjs +0 -7
  466. data/app/views/home/options.js.rjs +0 -8
  467. data/app/views/leads/convert.js.rjs +0 -37
  468. data/app/views/leads/create.js.rjs +0 -19
  469. data/app/views/leads/destroy.js.rjs +0 -7
  470. data/app/views/leads/edit.js.rjs +0 -36
  471. data/app/views/leads/index.js.rjs +0 -8
  472. data/app/views/leads/new.js.rjs +0 -9
  473. data/app/views/leads/promote.js.rjs +0 -27
  474. data/app/views/leads/reject.js.rjs +0 -10
  475. data/app/views/leads/show.js.erb +0 -2
  476. data/app/views/leads/update.js.rjs +0 -27
  477. data/app/views/lists/create.js.rjs +0 -9
  478. data/app/views/lists/destroy.js.rjs +0 -1
  479. data/app/views/opportunities/contacts.js.rjs +0 -3
  480. data/app/views/opportunities/create.js.rjs +0 -29
  481. data/app/views/opportunities/destroy.js.rjs +0 -11
  482. data/app/views/opportunities/edit.js.rjs +0 -36
  483. data/app/views/opportunities/index.js.rjs +0 -8
  484. data/app/views/opportunities/new.js.rjs +0 -12
  485. data/app/views/opportunities/show.js.erb +0 -2
  486. data/app/views/opportunities/update.js.rjs +0 -26
  487. data/app/views/tasks/complete.js.rjs +0 -17
  488. data/app/views/tasks/create.js.rjs +0 -41
  489. data/app/views/tasks/destroy.js.rjs +0 -7
  490. data/app/views/tasks/discard.rjs +0 -1
  491. data/app/views/tasks/edit.js.rjs +0 -23
  492. data/app/views/tasks/filter.js.rjs +0 -1
  493. data/app/views/tasks/new.js.rjs +0 -9
  494. data/app/views/tasks/update.js.rjs +0 -21
  495. data/app/views/users/avatar.js.rjs +0 -10
  496. data/app/views/users/change_password.js.rjs +0 -15
  497. data/app/views/users/edit.js.rjs +0 -10
  498. data/app/views/users/password.js.rjs +0 -11
  499. data/app/views/users/update.js.rjs +0 -10
  500. data/app/views/users/upload_avatar.js.rjs +0 -8
  501. data/lib/fat_free_crm/secret_token_generator.rb +0 -65
  502. data/spec/lib/secret_token_generator_spec.rb +0 -79
  503. data/spec/models/users/abilities/user_ability_spec.rb +0 -58
  504. data/spec/support/rjs_support.rb +0 -14
  505. data/vendor/assets/images/brief.png +0 -0
  506. data/vendor/assets/images/full.png +0 -0
  507. data/vendor/assets/images/long.png +0 -0
  508. data/vendor/assets/images/tab_icons/accounts.png +0 -0
  509. data/vendor/assets/images/tab_icons/accounts_active.png +0 -0
  510. data/vendor/assets/images/tab_icons/campaigns.png +0 -0
  511. data/vendor/assets/images/tab_icons/campaigns_active.png +0 -0
  512. data/vendor/assets/images/tab_icons/contacts.png +0 -0
  513. data/vendor/assets/images/tab_icons/contacts_active.png +0 -0
  514. data/vendor/assets/images/tab_icons/dashboard.png +0 -0
  515. data/vendor/assets/images/tab_icons/dashboard_active.png +0 -0
  516. data/vendor/assets/images/tab_icons/leads.png +0 -0
  517. data/vendor/assets/images/tab_icons/leads_active.png +0 -0
  518. data/vendor/assets/images/tab_icons/opportunities.png +0 -0
  519. data/vendor/assets/images/tab_icons/opportunities_active.png +0 -0
  520. data/vendor/assets/images/tab_icons/tasks.png +0 -0
  521. data/vendor/assets/images/tab_icons/tasks_active.png +0 -0
@@ -1,182 +1,219 @@
1
- # US English translations for Ruby on Rails
2
- #
3
- # Use this as the base for the locale file of your language.
4
-
5
- "en-US":
1
+ ---
2
+ en-US:
6
3
  date:
7
4
  formats:
8
- default: "%Y-%m-%d"
9
- short: "%b %d"
10
- long: "%B %d, %Y"
11
-
12
- day_names: [Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday]
13
- abbr_day_names: [Sun, Mon, Tue, Wed, Thu, Fri, Sat]
14
-
15
- month_names: [~, January, February, March, April, May, June, July, August, September, October, November, December]
16
- abbr_month_names: [~, Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec]
5
+ default: ! '%Y-%m-%d'
6
+ short: ! '%b %d'
7
+ long: ! '%B %d, %Y'
8
+ day_names:
9
+ - Sunday
10
+ - Monday
11
+ - Tuesday
12
+ - Wednesday
13
+ - Thursday
14
+ - Friday
15
+ - Saturday
16
+ abbr_day_names:
17
+ - Sun
18
+ - Mon
19
+ - Tue
20
+ - Wed
21
+ - Thu
22
+ - Fri
23
+ - Sat
24
+ month_names:
25
+ -
26
+ - January
27
+ - February
28
+ - March
29
+ - April
30
+ - May
31
+ - June
32
+ - July
33
+ - August
34
+ - September
35
+ - October
36
+ - November
37
+ - December
38
+ abbr_month_names:
39
+ -
40
+ - Jan
41
+ - Feb
42
+ - Mar
43
+ - Apr
44
+ - May
45
+ - Jun
46
+ - Jul
47
+ - Aug
48
+ - Sep
49
+ - Oct
50
+ - Nov
51
+ - Dec
17
52
  order:
18
- - :year
19
- - :month
20
- - :day
21
-
53
+ - :year
54
+ - :month
55
+ - :day
22
56
  time:
23
57
  formats:
24
- default: "%a, %d %b %Y %H:%M:%S %z"
25
- short: "%d %b %H:%M"
26
- long: "%B %d, %Y %H:%M"
27
- am: "am"
28
- pm: "pm"
29
-
58
+ default: ! '%a, %d %b %Y %H:%M:%S %z'
59
+ short: ! '%d %b %H:%M'
60
+ long: ! '%B %d, %Y %H:%M'
61
+ am: am
62
+ pm: pm
30
63
  support:
31
64
  array:
32
- words_connector: ", "
33
- two_words_connector: " and "
34
- last_word_connector: ", and "
35
-
65
+ words_connector: ! ', '
66
+ two_words_connector: ! ' and '
67
+ last_word_connector: ! ', and '
36
68
  select:
37
- prompt: "Please select"
38
-
69
+ prompt: Please select
39
70
  number:
40
71
  format:
41
- separator: "."
42
- delimiter: ","
72
+ separator: .
73
+ delimiter: ! ','
43
74
  precision: 3
44
75
  significant: false
45
76
  strip_insignificant_zeros: false
46
-
47
77
  currency:
48
78
  format:
49
- format: "%u%n"
50
- unit: "$"
51
- separator: "."
52
- delimiter: ","
79
+ format: ! '%u%n'
80
+ unit: $
81
+ separator: .
82
+ delimiter: ! ','
53
83
  precision: 2
54
84
  significant: false
55
85
  strip_insignificant_zeros: false
56
-
57
86
  percentage:
58
87
  format:
59
- delimiter: ""
60
-
88
+ delimiter: ''
61
89
  precision:
62
90
  format:
63
- delimiter: ""
64
-
91
+ delimiter: ''
65
92
  human:
66
93
  format:
67
- delimiter: ""
94
+ delimiter: ''
68
95
  precision: 3
69
96
  significant: true
70
97
  strip_insignificant_zeros: true
71
98
  storage_units:
72
- format: "%n %u"
99
+ format: ! '%n %u'
73
100
  units:
74
101
  byte:
75
- one: "Byte"
76
- other: "Bytes"
77
- kb: "KB"
78
- mb: "MB"
79
- gb: "GB"
80
- tb: "TB"
102
+ one: Byte
103
+ other: Bytes
104
+ kb: KB
105
+ mb: MB
106
+ gb: GB
107
+ tb: TB
81
108
  decimal_units:
82
- format: "%n %u"
109
+ format: ! '%n %u'
83
110
  units:
84
- unit: ""
111
+ unit: ''
85
112
  thousand: Thousand
86
113
  million: Million
87
114
  billion: Billion
88
115
  trillion: Trillion
89
116
  quadrillion: Quadrillion
90
-
91
117
  datetime:
92
118
  distance_in_words:
93
- half_a_minute: "half a minute"
119
+ half_a_minute: half a minute
94
120
  less_than_x_seconds:
95
- one: "less than 1 second"
96
- other: "less than %{count} seconds"
121
+ one: less than 1 second
122
+ other: less than %{count} seconds
97
123
  x_seconds:
98
- one: "1 second"
99
- other: "%{count} seconds"
124
+ one: 1 second
125
+ other: ! '%{count} seconds'
100
126
  less_than_x_minutes:
101
- one: "less than a minute"
102
- other: "less than %{count} minutes"
127
+ one: less than a minute
128
+ other: less than %{count} minutes
103
129
  x_minutes:
104
- one: "1 minute"
105
- other: "%{count} minutes"
130
+ one: 1 minute
131
+ other: ! '%{count} minutes'
106
132
  about_x_hours:
107
- one: "about 1 hour"
108
- other: "about %{count} hours"
133
+ one: about 1 hour
134
+ other: about %{count} hours
109
135
  x_days:
110
- one: "1 day"
111
- other: "%{count} days"
136
+ one: 1 day
137
+ other: ! '%{count} days'
112
138
  about_x_months:
113
- one: "about 1 month"
114
- other: "about %{count} months"
139
+ one: about 1 month
140
+ other: about %{count} months
115
141
  x_months:
116
- one: "1 month"
117
- other: "%{count} months"
142
+ one: 1 month
143
+ other: ! '%{count} months'
118
144
  about_x_years:
119
- one: "about 1 year"
120
- other: "about %{count} years"
145
+ one: about 1 year
146
+ other: about %{count} years
121
147
  over_x_years:
122
- one: "over 1 year"
123
- other: "over %{count} years"
148
+ one: over 1 year
149
+ other: over %{count} years
124
150
  almost_x_years:
125
- one: "almost 1 year"
126
- other: "almost %{count} years"
151
+ one: almost 1 year
152
+ other: almost %{count} years
127
153
  prompts:
128
- year: "Year"
129
- month: "Month"
130
- day: "Day"
131
- hour: "Hour"
132
- minute: "Minute"
133
- second: "Seconds"
134
-
154
+ year: Year
155
+ month: Month
156
+ day: Day
157
+ hour: Hour
158
+ minute: Minute
159
+ second: Seconds
135
160
  helpers:
136
161
  select:
137
- prompt: "Please select"
138
-
162
+ prompt: Please select
139
163
  submit:
140
- create: 'Create %{model}'
141
- update: 'Update %{model}'
142
- submit: 'Save %{model}'
143
-
164
+ create: Create %{model}
165
+ update: Update %{model}
166
+ submit: Save %{model}
144
167
  errors:
145
- format: "%{attribute} %{message}"
146
-
147
- messages: &errors_messages
148
- inclusion: "is not included in the list"
149
- exclusion: "is reserved"
150
- invalid: "is invalid"
151
- confirmation: "doesn't match confirmation"
152
- accepted: "must be accepted"
153
- empty: "can't be empty"
154
- blank: "can't be blank"
155
- too_long: "is too long (maximum is %{count} characters)"
156
- too_short: "is too short (minimum is %{count} characters)"
157
- wrong_length: "is the wrong length (should be %{count} characters)"
158
- not_a_number: "is not a number"
159
- not_an_integer: "must be an integer"
160
- greater_than: "must be greater than %{count}"
161
- greater_than_or_equal_to: "must be greater than or equal to %{count}"
162
- equal_to: "must be equal to %{count}"
163
- less_than: "must be less than %{count}"
164
- less_than_or_equal_to: "must be less than or equal to %{count}"
165
- odd: "must be odd"
166
- even: "must be even"
167
-
168
+ format: ! '%{attribute} %{message}'
169
+ messages:
170
+ inclusion: is not included in the list
171
+ exclusion: is reserved
172
+ invalid: is invalid
173
+ confirmation: doesn't match confirmation
174
+ accepted: must be accepted
175
+ empty: can't be empty
176
+ blank: can't be blank
177
+ too_long: is too long (maximum is %{count} characters)
178
+ too_short: is too short (minimum is %{count} characters)
179
+ wrong_length: is the wrong length (should be %{count} characters)
180
+ not_a_number: is not a number
181
+ not_an_integer: must be an integer
182
+ greater_than: must be greater than %{count}
183
+ greater_than_or_equal_to: must be greater than or equal to %{count}
184
+ equal_to: must be equal to %{count}
185
+ less_than: must be less than %{count}
186
+ less_than_or_equal_to: must be less than or equal to %{count}
187
+ odd: must be odd
188
+ even: must be even
168
189
  activerecord:
169
190
  errors:
170
191
  template:
171
192
  header:
172
- one: "1 error prohibited this %{model} from being saved"
173
- other: "%{count} errors prohibited this %{model} from being saved"
174
- body: "There were problems with the following fields:"
175
-
193
+ one: 1 error prohibited this %{model} from being saved
194
+ other: ! '%{count} errors prohibited this %{model} from being saved'
195
+ body: ! 'There were problems with the following fields:'
176
196
  messages:
177
- taken: "has already been taken"
178
- record_invalid: "Validation failed: %{errors}"
179
- <<: *errors_messages
180
-
197
+ inclusion: is not included in the list
198
+ exclusion: is reserved
199
+ invalid: is invalid
200
+ confirmation: doesn't match confirmation
201
+ accepted: must be accepted
202
+ empty: can't be empty
203
+ blank: can't be blank
204
+ too_long: is too long (maximum is %{count} characters)
205
+ too_short: is too short (minimum is %{count} characters)
206
+ wrong_length: is the wrong length (should be %{count} characters)
207
+ not_a_number: is not a number
208
+ not_an_integer: must be an integer
209
+ greater_than: must be greater than %{count}
210
+ greater_than_or_equal_to: must be greater than or equal to %{count}
211
+ equal_to: must be equal to %{count}
212
+ less_than: must be less than %{count}
213
+ less_than_or_equal_to: must be less than or equal to %{count}
214
+ odd: must be odd
215
+ even: must be even
216
+ taken: has already been taken
217
+ record_invalid: ! 'Validation failed: %{errors}'
181
218
  full_messages:
182
- format: "%{attribute} %{message}"
219
+ format: ! '%{attribute} %{message}'
@@ -1,16 +1,18 @@
1
+ ---
1
2
  en-US:
2
3
  language: English
3
4
 
4
5
  # Generic terms.
5
6
  #----------------------------------------------------------------------------
7
+ id: Id
6
8
  all: All
7
9
  at: at
8
10
  here: here
9
11
  no_button: 'No'
10
12
  not_implemented: Not implemented yet.
11
13
  or: or
12
- select_none: '-- None --'
13
- select_blank: '-- Select --'
14
+ select_none: -- None --
15
+ select_blank: -- Select --
14
16
  yes_button: 'Yes'
15
17
 
16
18
 
@@ -20,37 +22,31 @@ en-US:
20
22
  tab_tasks: Tasks
21
23
  tab_campaigns: Campaigns
22
24
  tab_leads: Leads
23
-
24
25
  tab_accounts: Accounts
25
26
  tab_contacts: Contacts
26
27
  tab_opportunities: Opportunities
27
28
  tab_team: Team
28
-
29
29
  admin_tab_groups: Groups
30
30
  admin_tab_users: Users
31
31
  admin_tab_fields: Custom Fields
32
32
  admin_tab_tags: Tags
33
33
  admin_tab_settings: Settings
34
34
  admin_tab_plugins: Plugins
35
-
36
35
  affiliate: Affiliate
37
36
  competitor: Competitor
38
37
  customer: Customer
39
38
  partner: Partner
40
39
  reseller: Reseller
41
40
  vendor: Vendor
42
-
43
41
  planned: Planned
44
42
  started: Started
45
43
  on_hold: On Hold
46
44
  completed: Completed
47
45
  called_off: Called Off
48
-
49
46
  new: New
50
47
  contacted: Contacted
51
48
  converted: Converted
52
49
  rejected: Rejected
53
-
54
50
  cold_call: Cold Call
55
51
  conference: Conference
56
52
  online: Online Marketing
@@ -59,7 +55,6 @@ en-US:
59
55
  web: Website
60
56
  word_of_mouth: Word of Mouth
61
57
  other: Other
62
-
63
58
  prospecting: Prospecting
64
59
  analysis: Analysis
65
60
  presentation: Presentation
@@ -68,16 +63,13 @@ en-US:
68
63
  final_review: Final Review
69
64
  won: Closed/Won
70
65
  lost: Closed/Lost
71
-
72
66
  call: Call
73
67
  email: Email
74
68
  follow_up: Follow-up
75
69
  lunch: Lunch
76
70
  meeting: Meeting
77
71
  money: Money
78
- presentation: Presentation
79
72
  trip: Trip
80
-
81
73
  overdue: Overdue
82
74
  due_asap: As Soon As Possible
83
75
  due_today: Today
@@ -86,7 +78,6 @@ en-US:
86
78
  due_next_week: Next Week
87
79
  due_later: Sometime Later
88
80
  due_specific_date: On Specific Date...
89
-
90
81
  completed_today: Today
91
82
  completed_yesterday: Yesterday
92
83
  completed_last_week: Last week
@@ -116,58 +107,58 @@ en-US:
116
107
  account:
117
108
  attributes:
118
109
  name:
119
- missing_account_name: "^Please specify account name."
110
+ missing_account_name: ^Please specify account name.
120
111
  access:
121
- share_account: "^Please specify users to share the account with."
112
+ share_account: ^Please specify users to share the account with.
122
113
  campaign:
123
114
  attributes:
124
115
  name:
125
- missing_campaign_name: "^Please specify campaign name."
116
+ missing_campaign_name: ^Please specify campaign name.
126
117
  ends_on:
127
- dates_not_in_sequence: "^Please make sure the campaign end date is after the start date."
118
+ dates_not_in_sequence: ^Please make sure the campaign end date is after
119
+ the start date.
128
120
  access:
129
- share_campaign: "^Please specify users to share the campaign with."
121
+ share_campaign: ^Please specify users to share the campaign with.
130
122
  contact:
131
123
  attributes:
132
124
  first_name:
133
- missing_first_name: "^Please specify first name."
125
+ missing_first_name: ^Please specify first name.
134
126
  last_name:
135
- missing_last_name: "^Please specify last name."
127
+ missing_last_name: ^Please specify last name.
136
128
  access:
137
- share_contact: "^Please specify users to share the contact with."
129
+ share_contact: ^Please specify users to share the contact with.
138
130
  lead:
139
131
  attributes:
140
132
  first_name:
141
- missing_first_name: "^Please specify first name."
133
+ missing_first_name: ^Please specify first name.
142
134
  last_name:
143
- missing_last_name: "^Please specify last name."
135
+ missing_last_name: ^Please specify last name.
144
136
  access:
145
- share_lead: "^Please specify users to share the lead with."
137
+ share_lead: ^Please specify users to share the lead with.
146
138
  opportunity:
147
139
  attributes:
148
140
  name:
149
- missing_opportunity_name: "^Please specify opportunity name."
141
+ missing_opportunity_name: ^Please specify opportunity name.
150
142
  access:
151
- share_opportunity: "^Please specify users to share the opportunity with."
143
+ share_opportunity: ^Please specify users to share the opportunity with.
152
144
  task:
153
145
  attributes:
154
146
  name:
155
- missing_task_name: "^Please specify task name."
147
+ missing_task_name: ^Please specify task name.
156
148
  calendar:
157
- invalid_date: "^Please specify valid date."
149
+ invalid_date: ^Please specify valid date.
158
150
  user:
159
151
  attributes:
160
152
  username:
161
- missing_username: "^Please specify username."
162
- username_taken: "^This username is already taken."
153
+ missing_username: ^Please specify username.
154
+ username_taken: ^This username is already taken.
163
155
  email:
164
- missing_email: "^Please specify email address."
165
- email_in_use: "^There is another user with the same email."
156
+ missing_email: ^Please specify email address.
157
+ email_in_use: ^There is another user with the same email.
166
158
  custom_field:
167
- required: "^%{field} is required."
168
- maxlength: "^%{field} is too long."
169
- endbeforestart: "^%{field} cannot end before it begins."
170
-
159
+ required: ^%{field} is required.
160
+ maxlength: ^%{field} is too long.
161
+ endbeforestart: ^%{field} cannot end before it begins.
171
162
  attribute_options:
172
163
  opportunity:
173
164
  stage:
@@ -179,27 +170,38 @@ en-US:
179
170
  final_review: Final Review
180
171
  won: Closed/Won
181
172
  lost: Closed/Lost
173
+ account:
174
+ rating:
175
+ "0": "-"
176
+ "1": "★"
177
+ "2": "★★"
178
+ "3": "★★★"
179
+ "4": "★★★★"
180
+ "5": "★★★★★"
182
181
 
183
182
  msg_account_suspended: User account has been suspended.
184
183
  password_reset_instruction: password reset instructions
185
184
 
186
185
  # Controllers.
187
186
  #----------------------------------------------------------------------------
188
- msg_account_created: Your account has been created and is awaiting approval by the system administrator.
187
+ msg_account_created: Your account has been created and is awaiting approval by the
188
+ system administrator.
189
189
  msg_account_not_approved: Your account has not been approved yet.
190
- msg_asset_deleted: "%{value} has been deleted."
190
+ msg_asset_deleted: ! '%{value} has been deleted.'
191
191
  msg_asset_not_available: This %{value} is no longer available.
192
- msg_not_authorized: You are not authorized to take this action.
192
+ msg_asset_not_authorized: You are not authorized to view this %{value}.
193
193
  msg_assets_not_available: The %{value} are not available.
194
- msg_asset_rejected: "%{value} has been rejected."
195
- msg_bad_image_file: "^Could't upload or resize the image file you specified."
196
- msg_cant_create_related: "Can't create the %{asset} since the %{related} is no longer available."
197
- msg_cant_delete_user: "^Couldn't delete the user since %{value} has related assets present."
198
- msg_cant_do: "Can't %{action} the %{asset} since it's no longer available."
194
+ msg_asset_rejected: ! '%{value} has been rejected.'
195
+ msg_bad_image_file: ^Could't upload or resize the image file you specified.
196
+ msg_cant_create_related: Can't create the %{asset} since the %{related} is no longer
197
+ available.
198
+ msg_cant_delete_user: ^Couldn't delete the user since %{value} has related assets
199
+ present.
200
+ msg_cant_do: Can't %{action} the %{asset} since it's no longer available.
199
201
  msg_email_not_found: No user was found with that email address.
200
202
  msg_enter_new_password: Please enter your new password.
201
203
  msg_goodbye: You have been logged out. Thank you for using Fat Free CRM!
202
- msg_invalid_password: "^Please specify valid current password"
204
+ msg_invalid_password: ^Please specify valid current password
203
205
  msg_invalig_login: Invalid username or password.
204
206
  msg_last_login: Your last login was on %{value}.
205
207
  msg_login_needed: You must be logged in to access this page.
@@ -207,15 +209,17 @@ en-US:
207
209
  msg_password_changed: Your password has been changed.
208
210
  msg_password_not_changed: Your password has not been changed.
209
211
  msg_password_updated: Password was successfully updated.
210
- msg_pwd_instructions_sent: Instructions to reset your password have been sent to you. Please check your email.
212
+ msg_pwd_instructions_sent: Instructions to reset your password have been sent to
213
+ you. Please check your email.
211
214
  msg_require_admin: You must be Administrator to access this page.
212
215
  msg_successful_signup: Successful signup, welcome to Fat Free CRM!
213
216
  msg_welcome: Welcome to Fat Free CRM!
214
217
 
215
218
  # Options.
216
219
  #----------------------------------------------------------------------------
217
- "option_amount*probability": weighted amount
218
- activity_options: Show %{models} %{action_type} performed by %{user} in the past %{period}.
220
+ option_amount*probability: weighted amount
221
+ activity_options: Show %{models} %{action_type} performed by %{user} in the past
222
+ %{period}.
219
223
  all_users: all users
220
224
  option_after: after
221
225
  option_all: all
@@ -241,10 +245,9 @@ en-US:
241
245
  option_updated_at: date updated
242
246
  show_per_page: Show %{number} %{models} per page using %{fmt} format.
243
247
  sort_by: Sort by %{field}
244
- sort_by_displaying: Sort %{models} by %{field} displaying first name %{position} last name.
245
- entities_per_page: "%{entity} per page:"
246
-
247
- # Views -> Switcher
248
+ sort_by_displaying: Sort %{models} by %{field} displaying first name %{position}
249
+ last name.
250
+ entities_per_page: ! '%{entity} per page:'
248
251
  contacts_index_long: Long format
249
252
  contacts_index_brief: Brief format
250
253
  contacts_index_full: Full format
@@ -264,12 +267,12 @@ en-US:
264
267
  contact_info: Contact Information
265
268
  current_password: Current password
266
269
  edit_profile: Edit Profile
267
- # email: Email # <-- Already defined as the task type if Settings.
268
270
  first_name: First name
269
271
  google: Google IM
270
272
  gravatar_help: Not familiar with Gravatars? Learn about Gravatars
271
273
  image_file: Image file
272
- image_help: The image file you upload will be automatically resized to 75 x 75 pixels. Supported formats are GIF, JPG, and PNG.
274
+ image_help: The image file you upload will be automatically resized to 75 x 75 pixels.
275
+ Supported formats are GIF, JPG, and PNG.
273
276
  job_title: Title
274
277
  last_name: Last name
275
278
  login_now_link: Login Now!
@@ -334,8 +337,8 @@ en-US:
334
337
  shipping_address: Shipping address
335
338
  total_accounts: Total Accounts
336
339
  website: Website
337
- account_with_title_department: %{title}, %{department} at %{account}
338
- account_with_title: %{title} at %{account}
340
+ account_with_title_department: ! '%{title}, %{department} at %{account}'
341
+ account_with_title: ! '%{title} at %{account}'
339
342
 
340
343
  # Views -> Campaigns.
341
344
  #----------------------------------------------------------------------------
@@ -354,7 +357,7 @@ en-US:
354
357
  campaigns_small: campaigns
355
358
  conversion: Conversion
356
359
  conversion_label: Conversion (%)
357
- conversion_number: "%{value} conversion"
360
+ conversion_number: ! '%{value} conversion'
358
361
  target_conversion: Targe conversion
359
362
  create_campaign: Create Campaign
360
363
  end_date: End date
@@ -363,11 +366,13 @@ en-US:
363
366
  no_start_date: no start date specified
364
367
  number_of_leads: Number of leads
365
368
  objectives: Objectives
366
- objectives_help: Please specify target number of leads, expected leads-to-opportunities conversion ratio, target revenue, and campaign budget. These numbers will let you track actual campaign performance.
369
+ objectives_help: Please specify target number of leads, expected leads-to-opportunities
370
+ conversion ratio, target revenue, and campaign budget. These numbers will let
371
+ you track actual campaign performance.
367
372
  objectives_small: campaign objectives
368
373
  revenue: Revenue
369
374
  revenue_label: Revenue ($)
370
- revenue_number: "%{value} in revenue"
375
+ revenue_number: ! '%{value} in revenue'
371
376
  save_campaign: Save Campaign
372
377
  start_date: Start date
373
378
  started_ago: started %{value} ago
@@ -391,29 +396,31 @@ en-US:
391
396
  contact_summary: Contact Summary
392
397
  create_contact: Create Contact
393
398
  department: Department
394
- department_small: '%{value} department'
399
+ department_small: ! '%{value} department'
395
400
  do_not_call: Do not call
396
401
  extra_info: Extra Information
397
402
  extra_info_small: extra contact
398
403
  facebook: Facebook
399
404
  linked_in: LinkedIn
400
405
  myself: Myself
401
- permissions_intro_private: By default only you will have access to the %{value}. You can change permissions later.
402
- permissions_intro_public: By default all users will have access to the %{value}. You can change permissions later.
403
- permissions_intro_shared: By default only the selected users will have access to the %{value}. You can change permissions later.
406
+ permissions_intro_private: By default only you will have access to the %{value}.
407
+ You can change permissions later.
408
+ permissions_intro_public: By default all users will have access to the %{value}.
409
+ You can change permissions later.
410
+ permissions_intro_shared: By default only the selected users will have access to
411
+ the %{value}. You can change permissions later.
404
412
  referred_by: Referred by
405
413
  referred_by_small: referred by
406
414
  save_contact: Save Contact
407
- skype: Skype
408
415
  twitter: Twitter
409
416
  unassigned: Unassigned
410
417
  web_presence: Web Presence
411
418
  web_presence_small: web presence
412
- works_at: "%{job_title} at %{company}"
419
+ works_at: ! '%{job_title} at %{company}'
413
420
  general_info: General Information
414
421
  show_general_info_small: Show general information for this contact.
415
422
  show_extra_info_small: Show extra information for this contact.
416
- tag_details: %{tag} Details
423
+ tag_details: ! '%{tag} Details'
417
424
  show_tag_info_small: Show %{tag} information for this contact.
418
425
  shared_with_everyone: Shared with everyone
419
426
  title: Title
@@ -423,15 +430,23 @@ en-US:
423
430
  #----------------------------------------------------------------------------
424
431
  convert: Convert
425
432
  convert_lead: Convert Lead
426
- convert_lead_permissions_intro: Contact permissions will be copied from the lead being converted. You can change contact permissions later.
427
- convert_lead_text: By converting the lead %{value} will become a contact associated with the existing or newly created account. Lead status will be automatically set to converted.
433
+ convert_lead_permissions_intro: Contact permissions will be copied from the lead
434
+ being converted. You can change contact permissions later.
435
+ convert_lead_text: By converting the lead %{value} will become a contact associated
436
+ with the existing or newly created account. Lead status will be automatically
437
+ set to converted.
428
438
  create_lead: Create Lead
429
- create_opp_for_contact: You can optionally create an opportunity for the %{value} contact by specifying the name, current stage, estimated closing date, sale probability, amount of the deal, and the discount offered.
439
+ create_opp_for_contact: You can optionally create an opportunity for the %{value}
440
+ contact by specifying the name, current stage, estimated closing date, sale probability,
441
+ amount of the deal, and the discount offered.
430
442
  lead: Lead
431
443
  lead_info_small: lead contact
432
- lead_permissions_intro_private: By default permissions will be copied from the campaign or set to private. You can change lead permissions later.
433
- lead_permissions_intro_public: By default permissions will be copied from the campaign or set to public. You can change lead permissions later.
434
- lead_permissions_intro_shared: By default permissions will be copied from the campaign or shared with the specified users. You can change lead permissions later.
444
+ lead_permissions_intro_private: By default permissions will be copied from the campaign
445
+ or set to private. You can change lead permissions later.
446
+ lead_permissions_intro_public: By default permissions will be copied from the campaign
447
+ or set to public. You can change lead permissions later.
448
+ lead_permissions_intro_shared: By default permissions will be copied from the campaign
449
+ or shared with the specified users. You can change lead permissions later.
435
450
  lead_small: lead
436
451
  lead_status_small: lead status
437
452
  lead_summary: Lead Summary
@@ -475,7 +490,8 @@ en-US:
475
490
  opportunity_small: opportunity
476
491
  opportunity_stages: Opportunity Stages
477
492
  opportunity_summary: Opportunity At a Glance
478
- opportunity_summary_text: "%{amount} with %{discount} discount and %{probability} probability"
493
+ opportunity_summary_text: ! '%{amount} with %{discount} discount and %{probability}
494
+ probability'
479
495
  past_due: past due, was expected to close %{value} ago
480
496
  probability: Probability
481
497
  probability_number: and %{value} probability
@@ -501,13 +517,13 @@ en-US:
501
517
  due: Due
502
518
  feel_free: Feel free to
503
519
  move_to: move to
504
- no_tasks: "You don't have any %{value} tasks"
520
+ no_tasks: You don't have any %{value} tasks
505
521
  no_tasks_pending: pending
506
522
  no_tasks_assigned: assigned
507
523
  no_tasks_completed: completed
508
524
  pending_tab: Pending
509
525
  pending_tasks: Pending Tasks
510
- related: 're:'
526
+ related: ! 're:'
511
527
  save_task: Save Task
512
528
  task_assigned: The task has been assigned to %{value}
513
529
  task_assigned_to: and assigned to %{value}
@@ -562,8 +578,7 @@ en-US:
562
578
  update_past_participle: Updates
563
579
  destroy_past_participle: Deletions
564
580
  all_events_past_participle: Activities
565
- action_create_comment: "- &quot;%{comment}&quot;"
566
-
581
+ action_create_comment: ! '- &quot;%{comment}&quot;'
567
582
  my_tasks: My Tasks
568
583
  no_task_records: You have no tasks.
569
584
  my_opportunities: My Opportunities
@@ -578,23 +593,23 @@ en-US:
578
593
  save_note: Save Note
579
594
  add_note_help: Add a new note...
580
595
  edit_note: Edit Note
581
- added_ago: added %{value} ago
582
- added_by: added %{time_ago} ago by %{user}
596
+ added_ago: added %{value}
597
+ added_by: added %{time_ago} by %{user}
583
598
  back: Back
584
599
  cancel: Cancel
585
600
  close_form: Close form
586
601
  comment_intro: You can add comments later.
587
602
  confirm_delete: Are you sure you want to delete this %{value}?
588
603
  copy_permissions: Copy %{value} permissions
589
- could_not_find: "Couldn't find any %{value}. Feel free to"
590
- could_not_find_matching: "Couldn't find any %{value} matching"
604
+ could_not_find: Couldn't find any %{value}. Feel free to
605
+ could_not_find_matching: Couldn't find any %{value} matching
591
606
  create_new: create new
592
607
  create_a_new: create a new
593
608
  select_existing: select existing
594
609
  delete: Delete
595
610
  discard: Discard
596
611
  edit: Edit
597
- items_total: '%{count} total.'
612
+ items_total: ! '%{count} total.'
598
613
  less: Less...
599
614
  me: me
600
615
  more: More...
@@ -611,11 +626,11 @@ en-US:
611
626
  select_task: Select Task
612
627
  select_opportunity: Select Opportunity
613
628
  search_assets: Search %{value}
614
- time_ago: "%{value} ago"
629
+ time_ago: ! '%{value} ago'
615
630
  background_info: Background
616
631
  address: Address
617
- street1: Street 1 # NEW
618
- street2: Street 2 # NEW
632
+ street1: Street 1
633
+ street2: Street 2
619
634
  city: City
620
635
  zipcode: Zip Code
621
636
  state: State
@@ -636,7 +651,8 @@ en-US:
636
651
  about_ffc_version: Fat Free CRM version
637
652
  about_home_page: Home page
638
653
  about_project_page: Project page
639
- about_thank_you: Thank you for using Fat Free CRM! We appreciate your business and hope you enjoy using the software.
654
+ about_thank_you: Thank you for using Fat Free CRM! We appreciate your business and
655
+ hope you enjoy using the software.
640
656
  about_twitter: Twitter commit updates
641
657
  about_user_group: Discussion group for users
642
658
  admin: Admin
@@ -662,15 +678,16 @@ en-US:
662
678
  notifications_tooltip: Subscribers will receive new comments via email
663
679
  subscribe_via_email: Subscribe via email
664
680
  disable_email_subscriptions: Disable email subscription
681
+ added_note: added note %{value}
665
682
 
666
683
  # Views -> Emails.
667
684
  #----------------------------------------------------------------------------
668
- email: Email
669
685
 
670
686
  # Views -> Passwords.
671
687
  #----------------------------------------------------------------------------
672
688
  confirm_password_intro: Please type your new password and then confirm it.
673
- password_intro: Please specify your email address, and the instructions to reset your password will be sent to you.
689
+ password_intro: Please specify your email address, and the instructions to reset
690
+ your password will be sent to you.
674
691
  reset_password: Reset Password
675
692
  update_password_and_login: Update Password and Login
676
693
 
@@ -687,13 +704,15 @@ en-US:
687
704
  groups: Groups
688
705
  groups_small: groups
689
706
  group_small: group
690
- confirm_group_delete: Are you sure you wish to delete this group? There are %{count} items that still reference it.
691
707
 
692
708
  # Views -> Admin -> Users
693
709
  #----------------------------------------------------------------------------
710
+ confirm_group_delete: Are you sure you wish to delete this group? There are %{count}
711
+ items that still reference it.
694
712
  approve: Approve
695
713
  create_user: Create User
696
714
  last_seen: last seen %{value} ago
715
+ last_seen2: last seen %{value}
697
716
  personal_information: Personal Information
698
717
  group_memberships: Group Memberships
699
718
  reactivate: Reactivate
@@ -704,7 +723,7 @@ en-US:
704
723
  user_awaits_approval: awaits your approval
705
724
  user_confirm_delete: A user can only be deleted if no related assets are left behind.
706
725
  user_is_admin: The user is Administrator
707
- user_never_logged_in: "hasn't logged in yet"
726
+ user_never_logged_in: hasn't logged in yet
708
727
  user_signed_up: Signed Up
709
728
  user_signed_up_on: signed up on %{value}
710
729
  user_since: user since %{value}
@@ -717,12 +736,12 @@ en-US:
717
736
  #----------------------------------------------------------------------------
718
737
  versions: History
719
738
  version:
720
- create: %{item} created by %{by}
721
- update: %{item} modified by %{by}
722
- destroy: %{item} destroyed by %{by}
723
- set_html: %{attr} set to %{to}
724
- unset_html: %{attr} unset
725
- change_html: %{attr} changed from %{from} to %{to}
739
+ create: ! '%{item} created by %{by}'
740
+ update: ! '%{item} modified by %{by}'
741
+ destroy: ! '%{item} destroyed by %{by}'
742
+ set_html: ! '%{attr} set to %{to}'
743
+ unset_html: ! '%{attr} unset'
744
+ change_html: ! '%{attr} changed from %{from} to %{to}'
726
745
  anonymous: anonymous
727
746
  account_contact_id: Account id
728
747
  account_contact_name: Account name
@@ -749,67 +768,66 @@ en-US:
749
768
  # Comment Inbox
750
769
  #----------------------------------------------------------------------------
751
770
  comment_notification:
752
- intro: "%{user_full_name} commented on %{entity_type}: %{entity_name}"
753
- reply_instructions: "Reply to this email directly to add a new comment, or view the %{entity} online"
771
+ intro: ! '%{user_full_name} commented on %{entity_type}: %{entity_name}'
772
+ reply_instructions: Reply to this email directly to add a new comment, or view
773
+ the %{entity} online
754
774
 
755
775
  # Lists
756
776
  #----------------------------------------------------------------------------
757
- lists: Lists
777
+ global_lists: Global lists
778
+ personal_lists: My lists
758
779
  list: List
759
780
  no_saved_lists: No saved lists
760
781
  make_current_view_list: Make current view a list
761
- list_name_info: If you use the name of an existing list, you will overwrite that list with your current settings
782
+ list_name_info: If you use the name of an existing list, you will overwrite that
783
+ list with your current settings
762
784
 
763
785
  # Pluralizations.
764
786
  #----------------------------------------------------------------------------
765
787
  pluralize:
766
788
  comment:
767
- one: '1 comment'
768
- other: '%{count} comments'
789
+ one: 1 comment
790
+ other: ! '%{count} comments'
769
791
  contact:
770
- one: '1 contact'
771
- other: '%{count} contacts'
792
+ one: 1 contact
793
+ other: ! '%{count} contacts'
772
794
  opportunity:
773
- one: '1 opportunity'
774
- other: '%{count} opportunities'
795
+ one: 1 opportunity
796
+ other: ! '%{count} opportunities'
775
797
  lead:
776
- one: '1 lead'
777
- other: '%{count} leads'
798
+ one: 1 lead
799
+ other: ! '%{count} leads'
778
800
  day:
779
- one: '1 day'
780
- other: '%{count} days'
801
+ one: 1 day
802
+ other: ! '%{count} days'
781
803
  login:
782
- one: '1 login'
783
- other: '%{count} logins'
804
+ one: 1 login
805
+ other: ! '%{count} logins'
784
806
 
785
807
  # Custom date/time formats.
786
808
  #----------------------------------------------------------------------------
787
809
  date:
788
810
  formats:
789
- mmddyyyy: "%m/%d/%Y"
790
- mmdd: "%b %e"
791
- mmddyy: "%b %e, %Y"
792
-
811
+ mmddyyyy: ! '%m/%d/%Y'
812
+ mmdd: ! '%b %e'
813
+ mmddyy: ! '%b %e, %Y'
793
814
  time:
794
815
  formats:
795
- mmddhhss: "%b %e at %l:%M%p"
796
- mmddyyyy_hhmm: "%e %b %Y at %l:%M%p"
816
+ mmddhhss: ! '%b %e at %l:%M%p'
817
+ mmddyyyy_hhmm: ! '%e %b %Y at %l:%M%p'
797
818
 
798
819
  # will_paginate translations copied for 'en-US'
799
820
  #----------------------------------------------------------------------------
800
821
  will_paginate:
801
- previous_label: "&#8592; Previous"
802
- next_label: "Next &#8594;"
803
- page_gap: "&hellip;"
804
-
822
+ previous_label: ! '&#8592; Previous'
823
+ next_label: Next &#8594;
824
+ page_gap: ! '&hellip;'
805
825
  page_entries_info:
806
826
  single_page:
807
- zero: "No %{plural} found"
808
- one: "Displaying 1 %{name}"
809
- other: "Displaying all %{count} %{plural}"
810
-
811
- multi_page: "Displaying %{plural} %{from} - %{to} of %{total} in total"
812
-
827
+ zero: No %{plural} found
828
+ one: Displaying 1 %{name}
829
+ other: Displaying all %{count} %{plural}
830
+ multi_page: Displaying %{plural} %{from} - %{to} of %{total} in total
813
831
 
814
832
  # Views -> Admin -> Custom Fields
815
833
  #----------------------------------------------------------------------------
@@ -821,40 +839,41 @@ en-US:
821
839
  create_field_group: Create field group
822
840
  edit_field_group: Edit field group
823
841
  save_field_group: Save field group
824
-
825
842
  field_group_empty: There are no fields in this group.
826
-
827
843
  select_or_create_tags: Select some tags, or create a new tag by pressing 'enter'.
828
-
829
- restrict_by_tag: 'Restrict by Tag:'
844
+ restrict_by_tag: ! 'Restrict by Tag:'
830
845
  restrict_by_tag_info: (Only show fields for %{assets} that are tagged with the following)
831
846
  field_group_tag_restriction: This field group applies to %{assets} tagged with "%{tag}"
832
847
  field_group_unrestricted: This field group applies to all %{assets}
833
- field_group_confirm_delete: If a field group is deleted, any fields will be moved to the default field group.
848
+ field_group_confirm_delete: If a field group is deleted, any fields will be moved
849
+ to the default field group.
834
850
  msg_cant_delete_field_group: Field Group could not be deleted.
851
+ admin_fields_info: ! 'Custom fields are displayed in groups.
835
852
 
836
- admin_fields_info: |
837
- Custom fields are displayed in groups.
838
853
  Create a new field group, or add fields to one of the groups below.<br />
839
- You can drag and drop fields to change their display order or move them between field groups.
840
854
 
841
- admin_fields_info2: |
842
- It is strongly recommended you restart your server after adding or removing any custom field.
855
+ You can drag and drop fields to change their display order or move them between
856
+ field groups.
843
857
 
858
+ '
844
859
  # Views -> Admin -> Tags
845
860
  #----------------------------------------------------------------------------
861
+ admin_fields_info2: ! 'It is strongly recommended you restart your server after
862
+ adding or removing any custom field.
863
+
864
+ '
846
865
  tags: Tags
847
866
  tag_small: tag
848
867
  tagged: Tagged
849
868
  create_tag: Create Tag
850
869
  save_tag: Save Tag
851
870
  field_group_tags: Field Groups shown for this Tag
852
- tag_with_taggings_confirm_delete: "If this tag is deleted, it will be removed from %{value} records."
853
- msg_cant_delete_tag: "Couldn't delete '%{value}' since it has associated Field Groups."
854
-
855
871
 
856
872
  # Views -> Admin -> Plugins
857
873
  #----------------------------------------------------------------------------
874
+ tag_with_taggings_confirm_delete: If this tag is deleted, it will be removed from
875
+ %{value} records.
876
+ msg_cant_delete_tag: Couldn't delete '%{value}' since it has associated Field Groups.
858
877
  views:
859
878
  admin:
860
879
  plugins:
@@ -868,67 +887,54 @@ en-US:
868
887
  yes: 'Yes'
869
888
  no: 'No'
870
889
  required:
871
- text: 'required'
872
- mark: '*'
890
+ text: required
891
+ mark: ! '*'
873
892
  # You can uncomment the line below if you need to overwrite the whole required html.
874
893
  # When using html, text and mark won't be used.
875
894
  # html: '<abbr title="required">*</abbr>'
876
895
  error_notification:
877
- default_message: "Some errors were found, please take a look:"
878
- # Labels and hints examples
879
- # labels:
880
- # password: 'Password'
881
- # user:
882
- # new:
883
- # email: 'E-mail para efetuar o sign in.'
884
- # edit:
885
- # email: 'E-mail.'
886
- # hints:
887
- # username: 'User name to sign in.'
888
- # password: 'No special characters, please.'
889
-
896
+ default_message: ! 'Some errors were found, please take a look:'
890
897
 
891
898
  # Form field types
892
899
  #----------------------------------------------------------------------------
893
900
  field_types:
894
901
  string:
895
- title: Short Answer
902
+ title: Short Answer
896
903
  text:
897
- title: Long Answer
904
+ title: Long Answer
898
905
  select:
899
- title: Select List
906
+ title: Select List
900
907
  multiselect:
901
- title: Multi Select
908
+ title: Multi Select
902
909
  radio:
903
- title: Radio Buttons
910
+ title: Radio Buttons
904
911
  boolean:
905
- title: Checkbox
912
+ title: Checkbox
906
913
  check_boxes:
907
- title: Checkbox List
914
+ title: Checkbox List
908
915
  date:
909
- title: Date
916
+ title: Date
910
917
  date_pair:
911
- title: Date Pair
918
+ title: Date Pair
912
919
  datetime:
913
- title: Date & Time
920
+ title: Date & Time
914
921
  datetime_pair:
915
- title: Date & Time Pair
922
+ title: Date & Time Pair
916
923
  email:
917
- title: Email Address
924
+ title: Email Address
918
925
  url:
919
- title: URL
926
+ title: URL
920
927
  tel:
921
- title: Phone Number
928
+ title: Phone Number
922
929
  decimal:
923
- title: Number (Decimal)
930
+ title: Number (Decimal)
924
931
  integer:
925
- title: Number (Integer)
932
+ title: Number (Integer)
926
933
  float:
927
- title: Number (Floating Point)
928
-
934
+ title: Number (Floating Point)
929
935
  pair:
930
- start: Start
931
- end: End
932
- from_to: From %{from} to %{to}
933
- from_only: From %{from}
934
- to_only: Until %{to}
936
+ start: Start
937
+ end: End
938
+ from_to: From %{from} to %{to}
939
+ from_only: From %{from}
940
+ to_only: Until %{to}