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.
- checksums.yaml +5 -13
- data/.travis.yml +1 -11
- data/Gemfile +7 -19
- data/Gemfile.lock +166 -166
- data/Procfile +1 -1
- data/README.md +20 -20
- data/app/assets/javascripts/admin/fields.js.coffee +3 -3
- data/app/assets/javascripts/application.js.erb +3 -0
- data/app/assets/javascripts/crm.js +1 -0
- data/app/assets/javascripts/crm_comments.js.coffee +66 -0
- data/app/assets/javascripts/lists.js.coffee +45 -2
- data/app/assets/javascripts/search.js.coffee +2 -0
- data/app/assets/javascripts/timeago.js +17 -0
- data/app/assets/stylesheets/advanced_search.css.scss +49 -25
- data/app/assets/stylesheets/application.css.erb +3 -0
- data/app/assets/stylesheets/common.scss +13 -0
- data/app/assets/stylesheets/format_buttons.css.scss +15 -10
- data/app/assets/stylesheets/header.scss +3 -0
- data/app/assets/stylesheets/lists.css.scss +4 -0
- data/app/controllers/admin/fields_controller.rb +5 -5
- data/app/controllers/admin/users_controller.rb +1 -3
- data/app/controllers/application_controller.rb +23 -23
- data/app/controllers/comments_controller.rb +3 -31
- data/app/controllers/entities/accounts_controller.rb +3 -3
- data/app/controllers/entities/campaigns_controller.rb +4 -4
- data/app/controllers/entities/contacts_controller.rb +2 -2
- data/app/controllers/entities/leads_controller.rb +3 -3
- data/app/controllers/entities/opportunities_controller.rb +4 -3
- data/app/controllers/entities_controller.rb +6 -6
- data/app/controllers/home_controller.rb +1 -1
- data/app/controllers/lists_controller.rb +8 -1
- data/app/controllers/tasks_controller.rb +1 -1
- data/app/controllers/users_controller.rb +46 -23
- data/app/helpers/admin/application_helper.rb +1 -3
- data/app/helpers/admin/field_groups_helper.rb +2 -1
- data/app/helpers/application_helper.rb +37 -16
- data/app/helpers/home_helper.rb +1 -2
- data/app/helpers/leads_helper.rb +5 -6
- data/app/helpers/tasks_helper.rb +36 -50
- data/app/models/entities/account.rb +10 -7
- data/app/models/entities/campaign.rb +4 -4
- data/app/models/entities/contact.rb +8 -5
- data/app/models/entities/lead.rb +8 -8
- data/app/models/entities/opportunity.rb +13 -18
- data/app/models/fields/custom_field.rb +10 -0
- data/app/models/fields/field.rb +3 -3
- data/app/models/fields/field_group.rb +1 -1
- data/app/models/list.rb +1 -0
- data/app/models/polymorphic/address.rb +3 -3
- data/app/models/polymorphic/comment.rb +2 -4
- data/app/models/polymorphic/task.rb +32 -27
- data/app/models/setting.rb +3 -9
- data/app/models/users/ability.rb +2 -13
- data/app/models/users/user.rb +12 -15
- data/app/views/accounts/_edit.html.haml +1 -1
- data/app/views/accounts/_index_brief.html.haml +3 -3
- data/app/views/accounts/_index_long.html.haml +3 -3
- data/app/views/accounts/_new.html.haml +1 -1
- data/app/views/accounts/create.js.haml +17 -0
- data/app/views/accounts/destroy.js.haml +6 -0
- data/app/views/accounts/edit.js.haml +32 -0
- data/app/views/accounts/index.js.haml +11 -0
- data/app/views/accounts/index.xls.builder +9 -7
- data/app/views/accounts/new.js.haml +11 -0
- data/app/views/accounts/show.js.haml +5 -0
- data/app/views/accounts/update.js.haml +17 -0
- data/app/views/admin/field_groups/_edit.html.haml +1 -1
- data/app/views/admin/field_groups/_new.html.haml +1 -1
- data/app/views/admin/field_groups/confirm.js.haml +7 -0
- data/app/views/admin/field_groups/create.js.haml +20 -0
- data/app/views/admin/field_groups/destroy.js.haml +9 -0
- data/app/views/admin/field_groups/edit.js.haml +12 -0
- data/app/views/admin/field_groups/new.js.haml +8 -0
- data/app/views/admin/field_groups/update.js.haml +8 -0
- data/app/views/admin/fields/_field.html.haml +2 -2
- data/app/views/admin/fields/_form.html.haml +2 -2
- data/app/views/admin/fields/create.js.haml +17 -0
- data/app/views/admin/fields/destroy.js.haml +8 -0
- data/app/views/admin/fields/edit.js.haml +3 -0
- data/app/views/admin/fields/update.js.haml +13 -0
- data/app/views/admin/groups/_edit.html.haml +1 -1
- data/app/views/admin/groups/_new.html.haml +1 -1
- data/app/views/admin/groups/create.js.haml +10 -0
- data/app/views/admin/groups/destroy.js.haml +9 -0
- data/app/views/admin/groups/edit.js.haml +14 -0
- data/app/views/admin/groups/index.html.haml +1 -1
- data/app/views/admin/groups/index.js.haml +2 -0
- data/app/views/admin/groups/new.js.haml +9 -0
- data/app/views/admin/groups/update.js.haml +9 -0
- data/app/views/admin/tags/_edit.html.haml +1 -1
- data/app/views/admin/tags/_new.html.haml +1 -1
- data/app/views/admin/tags/confirm.js.haml +7 -0
- data/app/views/admin/tags/create.js.haml +11 -0
- data/app/views/admin/tags/destroy.js.haml +10 -0
- data/app/views/admin/tags/edit.js.haml +20 -0
- data/app/views/admin/tags/new.js.haml +7 -0
- data/app/views/admin/tags/update.js.haml +9 -0
- data/app/views/admin/users/_edit.html.haml +1 -1
- data/app/views/admin/users/_new.html.haml +1 -1
- data/app/views/admin/users/_user.html.haml +1 -1
- data/app/views/admin/users/confirm.js.haml +7 -0
- data/app/views/admin/users/create.js.haml +10 -0
- data/app/views/admin/users/destroy.js.haml +10 -0
- data/app/views/admin/users/edit.js.haml +20 -0
- data/app/views/admin/users/index.js.haml +2 -0
- data/app/views/admin/users/new.js.haml +9 -0
- data/app/views/admin/users/reactivate.js.haml +3 -0
- data/app/views/admin/users/suspend.js.haml +3 -0
- data/app/views/admin/users/update.js.haml +9 -0
- data/app/views/authentications/new.html.haml +1 -1
- data/app/views/campaigns/_edit.html.haml +1 -1
- data/app/views/campaigns/_new.html.haml +1 -1
- data/app/views/campaigns/create.js.haml +20 -0
- data/app/views/campaigns/destroy.js.haml +6 -0
- data/app/views/campaigns/edit.js.haml +33 -0
- data/app/views/campaigns/index.js.haml +11 -0
- data/app/views/campaigns/index.xls.builder +9 -7
- data/app/views/campaigns/new.js.haml +11 -0
- data/app/views/campaigns/show.js.haml +5 -0
- data/app/views/campaigns/update.js.haml +20 -0
- data/app/views/comments/_comment.html.haml +1 -1
- data/app/views/comments/_edit.html.haml +1 -1
- data/app/views/comments/_new.html.haml +3 -2
- data/app/views/comments/create.js.haml +14 -0
- data/app/views/comments/destroy.js.haml +5 -0
- data/app/views/comments/edit.js.haml +11 -0
- data/app/views/comments/update.js.haml +9 -0
- data/app/views/contacts/_edit.html.haml +1 -1
- data/app/views/contacts/_index_full.html.haml +1 -1
- data/app/views/contacts/_index_long.html.haml +2 -1
- data/app/views/contacts/_new.html.haml +1 -1
- data/app/views/contacts/_section_general.html.haml +3 -3
- data/app/views/contacts/create.js.haml +23 -0
- data/app/views/contacts/destroy.js.haml +9 -0
- data/app/views/contacts/edit.js.haml +35 -0
- data/app/views/contacts/index.js.haml +11 -0
- data/app/views/contacts/index.xls.builder +9 -7
- data/app/views/contacts/new.js.haml +13 -0
- data/app/views/contacts/show.js.haml +5 -0
- data/app/views/contacts/update.js.haml +22 -0
- data/app/views/emails/destroy.js.haml +5 -0
- data/app/views/entities/_permissions.html.haml +1 -1
- data/app/views/entities/attach.js.haml +21 -0
- data/app/views/entities/contacts.js.haml +3 -0
- data/app/views/entities/discard.js.haml +6 -0
- data/app/views/entities/leads.js.haml +3 -0
- data/app/views/entities/opportunities.js.haml +3 -0
- data/app/views/entities/subscription_update.js.haml +4 -0
- data/app/views/entities/versions.js.haml +3 -0
- data/app/views/fields/group.js.erb +3 -0
- data/app/views/home/_account.html.haml +3 -3
- data/app/views/home/_opportunity.html.haml +3 -3
- data/app/views/home/index.atom.builder +3 -3
- data/app/views/home/index.js.haml +7 -0
- data/app/views/home/index.rss.builder +2 -2
- data/app/views/home/options.js.haml +7 -0
- data/app/views/layouts/_footer.html.haml +0 -4
- data/app/views/layouts/_sidebar.html.haml +1 -0
- data/app/views/layouts/_tabbed.html.haml +1 -4
- data/app/views/layouts/admin/application.html.haml +0 -1
- data/app/views/layouts/application.html.haml +5 -7
- data/app/views/leads/_convert.html.haml +1 -1
- data/app/views/leads/_edit.html.haml +1 -1
- data/app/views/leads/_index_long.html.haml +2 -2
- data/app/views/leads/_new.html.haml +1 -1
- data/app/views/leads/convert.js.haml +35 -0
- data/app/views/leads/create.js.haml +21 -0
- data/app/views/leads/destroy.js.haml +9 -0
- data/app/views/leads/edit.js.haml +35 -0
- data/app/views/leads/index.js.haml +11 -0
- data/app/views/leads/index.xls.builder +9 -7
- data/app/views/leads/new.js.haml +11 -0
- data/app/views/leads/promote.js.haml +26 -0
- data/app/views/leads/reject.js.haml +12 -0
- data/app/views/leads/show.js.haml +5 -0
- data/app/views/leads/update.js.haml +26 -0
- data/app/views/lists/_personal_sidebar.html.haml +28 -0
- data/app/views/lists/_sidebar.html.haml +10 -7
- data/app/views/lists/create.js.haml +10 -0
- data/app/views/lists/destroy.js.haml +1 -0
- data/app/views/opportunities/_edit.html.haml +1 -1
- data/app/views/opportunities/_index_brief.html.haml +3 -3
- data/app/views/opportunities/_index_long.html.haml +3 -3
- data/app/views/opportunities/_new.html.haml +1 -2
- data/app/views/opportunities/_top_section.html.haml +4 -0
- data/app/views/opportunities/contacts.js.haml +3 -0
- data/app/views/opportunities/create.js.haml +29 -0
- data/app/views/opportunities/destroy.js.haml +13 -0
- data/app/views/opportunities/edit.js.haml +35 -0
- data/app/views/opportunities/index.js.haml +11 -0
- data/app/views/opportunities/index.xls.builder +9 -7
- data/app/views/opportunities/new.js.haml +13 -0
- data/app/views/opportunities/show.js.haml +5 -0
- data/app/views/opportunities/update.js.haml +25 -0
- data/app/views/passwords/edit.html.haml +1 -1
- data/app/views/passwords/new.html.haml +1 -1
- data/app/views/shared/_comment.html.haml +1 -1
- data/app/views/shared/_inline_styles.html.haml +1 -1
- data/app/views/tasks/_edit.html.haml +1 -1
- data/app/views/tasks/_new.html.haml +1 -1
- data/app/views/tasks/complete.js.haml +14 -0
- data/app/views/tasks/create.js.haml +39 -0
- data/app/views/tasks/destroy.js.haml +7 -0
- data/app/views/tasks/discard.js.haml +1 -0
- data/app/views/tasks/edit.js.haml +26 -0
- data/app/views/tasks/filter.js.haml +4 -0
- data/app/views/tasks/index.xls.builder +7 -5
- data/app/views/tasks/new.js.haml +8 -0
- data/app/views/tasks/update.js.haml +19 -0
- data/app/views/users/_password.html.haml +1 -1
- data/app/views/users/_profile.html.haml +1 -1
- data/app/views/users/avatar.js.haml +9 -0
- data/app/views/users/change_password.js.haml +13 -0
- data/app/views/users/edit.js.haml +9 -0
- data/app/views/users/new.html.haml +1 -1
- data/app/views/users/password.js.haml +10 -0
- data/app/views/users/update.js.haml +9 -0
- data/app/views/users/upload_avatar.js.haml +7 -0
- data/app/views/versions/_version.html.haml +1 -1
- data/config/application.rb +1 -4
- data/config/environments/production.rb +3 -2
- data/config/initializers/custom_field_ransack_translations.rb +15 -0
- data/config/initializers/locale.rb +9 -1
- data/config/initializers/secret_token.rb +1 -25
- data/config/initializers/views.rb +20 -20
- data/config/locales/cz.yml +245 -211
- data/config/locales/cz_fat_free_crm.yml +105 -181
- data/config/locales/de.yml +162 -118
- data/config/locales/de_fat_free_crm.yml +760 -731
- data/config/locales/de_ransack.yml +91 -0
- data/config/locales/en-GB.yml +158 -119
- data/config/locales/en-GB_fat_free_crm.yml +161 -279
- data/config/locales/en-US.yml +158 -121
- data/config/locales/en-US_fat_free_crm.yml +185 -179
- data/config/locales/en-US_ransack.yml +81 -82
- data/config/locales/es.yml +164 -123
- data/config/locales/es_fat_free_crm.yml +151 -209
- data/config/locales/fr-CA.yml +167 -130
- data/config/locales/fr-CA_fat_free_crm.yml +142 -202
- data/config/locales/fr.yml +170 -125
- data/config/locales/fr_fat_free_crm.yml +199 -302
- data/config/locales/it.yml +158 -122
- data/config/locales/it_fat_free_crm.yml +105 -168
- data/config/locales/ja.yml +162 -131
- data/config/locales/ja_fat_free_crm.yml +118 -188
- data/config/locales/pl.yml +168 -132
- data/config/locales/pl_fat_free_crm.yml +115 -186
- data/config/locales/pt-BR.yml +160 -127
- data/config/locales/pt-BR_fat_free_crm.yml +125 -182
- data/config/locales/ru.yml +256 -233
- data/config/locales/ru_fat_free_crm.yml +136 -193
- data/config/locales/sv-SE.yml +164 -181
- data/config/locales/sv-SE_fat_free_crm.yml +129 -193
- data/config/locales/th_fat_free_crm.yml +114 -194
- data/config/locales/zh-CN.yml +176 -149
- data/config/locales/zh-CN_fat_free_crm.yml +78 -167
- data/config/routes.rb +1 -1
- data/config/settings.default.yml +74 -23
- data/custom_plan.rb +11 -0
- data/db/migrate/20131207033244_add_user_id_to_lists.rb +6 -0
- data/db/schema.rb +4 -1
- data/fat_free_crm.gemspec +3 -3
- data/lib/fat_free_crm.rb +1 -11
- data/lib/fat_free_crm/export_csv.rb +3 -3
- data/lib/fat_free_crm/fields.rb +10 -0
- data/lib/fat_free_crm/gem_dependencies.rb +1 -2
- data/lib/fat_free_crm/i18n.rb +9 -5
- data/lib/fat_free_crm/version.rb +2 -2
- data/lib/fat_free_crm/view_factory.rb +8 -5
- data/lib/tasks/ffcrm/config.rake +9 -12
- data/lib/tasks/ffcrm/missing_translations.rake +2 -1
- data/spec/controllers/admin/users_controller_spec.rb +6 -4
- data/spec/controllers/applications_controller_spec.rb +4 -4
- data/spec/controllers/authentications_controller_spec.rb +15 -15
- data/spec/controllers/comments_controller_spec.rb +9 -87
- data/spec/controllers/emails_controller_spec.rb +1 -1
- data/spec/controllers/entities/accounts_controller_spec.rb +7 -7
- data/spec/controllers/entities/campaigns_controller_spec.rb +5 -5
- data/spec/controllers/entities/contacts_controller_spec.rb +7 -7
- data/spec/controllers/entities/leads_controller_spec.rb +14 -14
- data/spec/controllers/entities/opportunities_controller_spec.rb +8 -8
- data/spec/controllers/home_controller_spec.rb +6 -6
- data/spec/controllers/tasks_controller_spec.rb +7 -7
- data/spec/controllers/users_controller_spec.rb +22 -50
- data/spec/features/support/selector_helpers.rb +1 -6
- data/spec/features/tasks_spec.rb +2 -2
- data/spec/helpers/application_helper_spec.rb +15 -15
- data/spec/lib/fields_spec.rb +29 -29
- data/spec/lib/mail_processor/base_spec.rb +7 -7
- data/spec/lib/mail_processor/dropbox_spec.rb +3 -3
- data/spec/lib/view_factory_spec.rb +14 -14
- data/spec/models/entities/opportunity_spec.rb +1 -1
- data/spec/models/fields/custom_field_date_pair_spec.rb +14 -14
- data/spec/models/fields/custom_field_pair_spec.rb +13 -13
- data/spec/models/fields/custom_field_spec.rb +5 -5
- data/spec/models/fields/field_spec.rb +2 -2
- data/spec/models/observers/entity_observer_spec.rb +2 -2
- data/spec/models/users/user_spec.rb +7 -7
- data/spec/routing/comments_routing_spec.rb +0 -9
- data/spec/shared/controllers.rb +75 -77
- data/spec/shared/models.rb +1 -1
- data/spec/spec_helper.rb +1 -2
- data/spec/support/auth_macros.rb +3 -3
- data/spec/support/mail_processor_mocks.rb +13 -13
- data/spec/views/accounts/_edit.haml_spec.rb +1 -1
- data/spec/views/accounts/{create.rjs_spec.rb → create.js.haml_spec.rb} +9 -14
- data/spec/views/accounts/{destroy.rjs_spec.rb → destroy.js.haml_spec.rb} +6 -8
- data/spec/views/accounts/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +10 -18
- data/spec/views/accounts/{index.rjs_spec.rb → index.js.haml_spec.rb} +7 -11
- data/spec/views/accounts/{new.rjs_spec.rb → new.js.haml_spec.rb} +6 -8
- data/spec/views/accounts/show.haml_spec.rb +1 -1
- data/spec/views/accounts/{update.rjs_spec.rb → update.js.haml_spec.rb} +16 -25
- data/spec/views/admin/field_groups/create.js.haml_spec.rb +31 -0
- data/spec/views/admin/field_groups/destroy.js.haml_spec.rb +31 -0
- data/spec/views/admin/field_groups/edit.js.haml_spec.rb +24 -0
- data/spec/views/admin/field_groups/new.js.haml_spec.rb +25 -0
- data/spec/views/admin/field_groups/update.js.haml_spec.rb +30 -0
- data/spec/views/admin/users/_create.haml_spec.rb +1 -1
- data/spec/views/admin/users/{create.rjs_spec.rb → create.js.haml_spec.rb} +6 -9
- data/spec/views/admin/users/{destroy.rjs_spec.rb → destroy.js.haml_spec.rb} +6 -7
- data/spec/views/admin/users/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +6 -12
- data/spec/views/admin/users/index.haml_spec.rb +0 -0
- data/spec/views/admin/users/{index.rjs_spec.rb → index.js.haml_spec.rb} +3 -5
- data/spec/views/admin/users/{new.rjs_spec.rb → new.js.haml_spec.rb} +4 -6
- data/spec/views/admin/users/{reactivate.rjs_spec.rb → reactivate.js.haml_spec.rb} +2 -4
- data/spec/views/admin/users/show.haml_spec.rb +0 -0
- data/spec/views/admin/users/{suspend.rjs_spec.rb → suspend.js.haml_spec.rb} +2 -4
- data/spec/views/admin/users/{update.rjs_spec.rb → update.js.haml_spec.rb} +6 -10
- data/spec/views/campaigns/{create.rjs_spec.rb → create.js.haml_spec.rb} +9 -14
- data/spec/views/campaigns/{destroy.rjs_spec.rb → destroy.js.haml_spec.rb} +6 -7
- data/spec/views/campaigns/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +11 -19
- data/spec/views/campaigns/{index.rjs_spec.rb → index.js.haml_spec.rb} +5 -9
- data/spec/views/campaigns/{new.rjs_spec.rb → new.js.haml_spec.rb} +6 -8
- data/spec/views/campaigns/{update.rjs_spec.rb → update.js.haml_spec.rb} +14 -21
- data/spec/views/comments/{new.rjs_spec.rb → edit.js.haml_spec.rb} +12 -9
- data/spec/views/contacts/{create.rjs_spec.rb → create.js.haml_spec.rb} +9 -16
- data/spec/views/contacts/{destroy.rjs_spec.rb → destroy.js.haml_spec.rb} +6 -8
- data/spec/views/contacts/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +12 -19
- data/spec/views/contacts/index.haml_spec.rb +1 -1
- data/spec/views/contacts/{index.rjs_spec.rb → index.js.html_spec.rb} +7 -11
- data/spec/views/contacts/{new.rjs_spec.rb → new.js.haml_spec.rb} +6 -7
- data/spec/views/contacts/{update.rjs_spec.rb → update.js.haml_spec.rb} +20 -35
- data/spec/views/home/{index.rjs_spec.rb → index.js.haml_spec.rb} +2 -4
- data/spec/views/home/{options.rjs_spec.rb → options.js.haml_spec.rb} +7 -12
- data/spec/views/leads/{convert.rjs_spec.rb → convert.js.haml_spec.rb} +12 -20
- data/spec/views/leads/{create.rjs_spec.rb → create.js.haml_spec.rb} +13 -19
- data/spec/views/leads/{destroy.rjs_spec.rb → destroy.js.haml_spec.rb} +9 -12
- data/spec/views/leads/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +12 -20
- data/spec/views/leads/{index.rjs_spec.rb → index.js.haml_spec.rb} +5 -9
- data/spec/views/leads/{new.rjs_spec.rb → new.js.haml_spec.rb} +6 -8
- data/spec/views/leads/{promote.rjs_spec.rb → promote.js.haml_spec.rb} +28 -43
- data/spec/views/leads/{reject.rjs_spec.rb → reject.js.haml_spec.rb} +10 -17
- data/spec/views/leads/{update.rjs_spec.rb → update.js.haml_spec.rb} +25 -38
- data/spec/views/opportunities/{create.rjs_spec.rb → create.js.haml_spec.rb} +16 -26
- data/spec/views/opportunities/{destroy.rjs_spec.rb → destroy.js.haml_spec.rb} +13 -16
- data/spec/views/opportunities/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +10 -18
- data/spec/views/opportunities/{index.rjs_spec.rb → index.js.haml_spec.rb} +7 -12
- data/spec/views/opportunities/{new.rjs_spec.rb → new.js.haml_spec.rb} +6 -8
- data/spec/views/opportunities/{update.rjs_spec.rb → update.js.haml_spec.rb} +29 -46
- data/spec/views/tasks/_edit.haml_spec.rb +1 -1
- data/spec/views/tasks/{complete.rjs_spec.rb → complete.js.haml_spec.rb} +9 -14
- data/spec/views/tasks/{create.rjs_spec.rb → create.js.haml_spec.rb} +25 -33
- data/spec/views/tasks/{destroy.rjs_spec.rb → destroy.js.haml_spec.rb} +9 -11
- data/spec/views/tasks/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +9 -14
- data/spec/views/tasks/index.haml_spec.rb +1 -2
- data/spec/views/tasks/{new.rjs_spec.rb → new.js.haml_spec.rb} +6 -8
- data/spec/views/tasks/{update.rjs_spec.rb → update.js.haml_spec.rb} +28 -41
- data/spec/views/users/{avatar.rjs_spec.rb → avatar.js.haml_spec.rb} +7 -9
- data/spec/views/users/{change_password.rjs_spec.rb → change_password.js.haml_spec.rb} +10 -12
- data/spec/views/users/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +8 -10
- data/spec/views/users/{password.rjs_spec.rb → password.js.haml_spec.rb} +9 -11
- data/spec/views/users/{update.rjs_spec.rb → update.js.haml_spec.rb} +7 -15
- data/spec/views/users/{upload_avatar.rjs_spec.rb → upload_avatar.js.haml_spec.rb} +8 -10
- data/vendor/assets/javascripts/ajax-chosen-jquery.js +2 -0
- data/vendor/assets/javascripts/ajax-chosen-prototype.js +2 -0
- data/vendor/assets/javascripts/ajax-chosen.jquery.coffee +81 -0
- data/vendor/assets/javascripts/ajax-chosen.proto.coffee +98 -0
- data/vendor/assets/javascripts/jquery_timeago/index.js +17 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.cz.js +18 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.de.js +18 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.en-GB.js +20 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.en-US.js +20 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.es.js +18 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.fr-CA.js +17 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.fr.js +17 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.it.js +16 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.ja.js +19 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.js +194 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.pl.js +31 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.pt-BR.js +18 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.ru.js +34 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.sv-SE.js +18 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.th.js +20 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.zh-CN.js +20 -0
- data/zeus.json +2 -1
- metadata +240 -245
- data/app/assets/images/delete.png +0 -0
- data/app/assets/images/iconset_attribution.png +0 -0
- data/app/views/accounts/create.js.rjs +0 -14
- data/app/views/accounts/destroy.js.rjs +0 -3
- data/app/views/accounts/edit.js.rjs +0 -33
- data/app/views/accounts/index.js.rjs +0 -8
- data/app/views/accounts/new.js.rjs +0 -9
- data/app/views/accounts/show.js.erb +0 -2
- data/app/views/accounts/update.js.rjs +0 -17
- data/app/views/admin/field_groups/confirm.js.rjs +0 -6
- data/app/views/admin/field_groups/create.js.rjs +0 -20
- data/app/views/admin/field_groups/destroy.js.rjs +0 -11
- data/app/views/admin/field_groups/edit.js.rjs +0 -14
- data/app/views/admin/field_groups/new.js.rjs +0 -9
- data/app/views/admin/field_groups/update.js.rjs +0 -9
- data/app/views/admin/fields/create.js.erb +0 -19
- data/app/views/admin/fields/destroy.js.erb +0 -9
- data/app/views/admin/fields/edit.js.erb +0 -1
- data/app/views/admin/fields/update.js.erb +0 -13
- data/app/views/admin/groups/create.js.rjs +0 -11
- data/app/views/admin/groups/destroy.js.rjs +0 -11
- data/app/views/admin/groups/edit.js.rjs +0 -21
- data/app/views/admin/groups/index.js.rjs +0 -2
- data/app/views/admin/groups/new.js.rjs +0 -9
- data/app/views/admin/groups/update.js.rjs +0 -10
- data/app/views/admin/tags/confirm.js.rjs +0 -6
- data/app/views/admin/tags/create.js.rjs +0 -12
- data/app/views/admin/tags/destroy.js.rjs +0 -11
- data/app/views/admin/tags/edit.js.rjs +0 -21
- data/app/views/admin/tags/new.js.rjs +0 -8
- data/app/views/admin/tags/update.js.rjs +0 -10
- data/app/views/admin/users/confirm.js.rjs +0 -6
- data/app/views/admin/users/create.js.rjs +0 -11
- data/app/views/admin/users/destroy.js.rjs +0 -11
- data/app/views/admin/users/edit.js.rjs +0 -21
- data/app/views/admin/users/index.js.rjs +0 -3
- data/app/views/admin/users/new.js.rjs +0 -8
- data/app/views/admin/users/reactivate.js.rjs +0 -3
- data/app/views/admin/users/suspend.js.rjs +0 -3
- data/app/views/admin/users/update.js.rjs +0 -10
- data/app/views/campaigns/create.js.rjs +0 -18
- data/app/views/campaigns/destroy.js.rjs +0 -3
- data/app/views/campaigns/edit.js.rjs +0 -34
- data/app/views/campaigns/index.js.rjs +0 -8
- data/app/views/campaigns/new.js.rjs +0 -9
- data/app/views/campaigns/show.js.erb +0 -2
- data/app/views/campaigns/update.js.rjs +0 -21
- data/app/views/comments/create.js.rjs +0 -11
- data/app/views/comments/destroy.js.rjs +0 -6
- data/app/views/comments/edit.js.rjs +0 -11
- data/app/views/comments/new.js.rjs +0 -14
- data/app/views/comments/update.js.rjs +0 -11
- data/app/views/contacts/create.js.rjs +0 -19
- data/app/views/contacts/destroy.js.rjs +0 -7
- data/app/views/contacts/edit.js.rjs +0 -36
- data/app/views/contacts/index.js.rjs +0 -8
- data/app/views/contacts/new.js.rjs +0 -11
- data/app/views/contacts/show.js.erb +0 -2
- data/app/views/contacts/update.js.rjs +0 -22
- data/app/views/emails/destroy.js.rjs +0 -6
- data/app/views/entities/attach.js.rjs +0 -24
- data/app/views/entities/contacts.js.rjs +0 -3
- data/app/views/entities/discard.js.rjs +0 -7
- data/app/views/entities/leads.js.rjs +0 -3
- data/app/views/entities/opportunities.js.rjs +0 -3
- data/app/views/entities/subscription_update.js.rjs +0 -4
- data/app/views/entities/versions.js.erb +0 -3
- data/app/views/fields/group.js.rjs +0 -7
- data/app/views/home/index.js.rjs +0 -7
- data/app/views/home/options.js.rjs +0 -8
- data/app/views/leads/convert.js.rjs +0 -37
- data/app/views/leads/create.js.rjs +0 -19
- data/app/views/leads/destroy.js.rjs +0 -7
- data/app/views/leads/edit.js.rjs +0 -36
- data/app/views/leads/index.js.rjs +0 -8
- data/app/views/leads/new.js.rjs +0 -9
- data/app/views/leads/promote.js.rjs +0 -27
- data/app/views/leads/reject.js.rjs +0 -10
- data/app/views/leads/show.js.erb +0 -2
- data/app/views/leads/update.js.rjs +0 -27
- data/app/views/lists/create.js.rjs +0 -9
- data/app/views/lists/destroy.js.rjs +0 -1
- data/app/views/opportunities/contacts.js.rjs +0 -3
- data/app/views/opportunities/create.js.rjs +0 -29
- data/app/views/opportunities/destroy.js.rjs +0 -11
- data/app/views/opportunities/edit.js.rjs +0 -36
- data/app/views/opportunities/index.js.rjs +0 -8
- data/app/views/opportunities/new.js.rjs +0 -12
- data/app/views/opportunities/show.js.erb +0 -2
- data/app/views/opportunities/update.js.rjs +0 -26
- data/app/views/tasks/complete.js.rjs +0 -17
- data/app/views/tasks/create.js.rjs +0 -41
- data/app/views/tasks/destroy.js.rjs +0 -7
- data/app/views/tasks/discard.rjs +0 -1
- data/app/views/tasks/edit.js.rjs +0 -23
- data/app/views/tasks/filter.js.rjs +0 -1
- data/app/views/tasks/new.js.rjs +0 -9
- data/app/views/tasks/update.js.rjs +0 -21
- data/app/views/users/avatar.js.rjs +0 -10
- data/app/views/users/change_password.js.rjs +0 -15
- data/app/views/users/edit.js.rjs +0 -10
- data/app/views/users/password.js.rjs +0 -11
- data/app/views/users/update.js.rjs +0 -10
- data/app/views/users/upload_avatar.js.rjs +0 -8
- data/lib/fat_free_crm/secret_token_generator.rb +0 -65
- data/spec/lib/secret_token_generator_spec.rb +0 -79
- data/spec/models/users/abilities/user_ability_spec.rb +0 -58
- data/spec/support/rjs_support.rb +0 -14
- data/vendor/assets/images/brief.png +0 -0
- data/vendor/assets/images/full.png +0 -0
- data/vendor/assets/images/long.png +0 -0
- data/vendor/assets/images/tab_icons/accounts.png +0 -0
- data/vendor/assets/images/tab_icons/accounts_active.png +0 -0
- data/vendor/assets/images/tab_icons/campaigns.png +0 -0
- data/vendor/assets/images/tab_icons/campaigns_active.png +0 -0
- data/vendor/assets/images/tab_icons/contacts.png +0 -0
- data/vendor/assets/images/tab_icons/contacts_active.png +0 -0
- data/vendor/assets/images/tab_icons/dashboard.png +0 -0
- data/vendor/assets/images/tab_icons/dashboard_active.png +0 -0
- data/vendor/assets/images/tab_icons/leads.png +0 -0
- data/vendor/assets/images/tab_icons/leads_active.png +0 -0
- data/vendor/assets/images/tab_icons/opportunities.png +0 -0
- data/vendor/assets/images/tab_icons/opportunities_active.png +0 -0
- data/vendor/assets/images/tab_icons/tasks.png +0 -0
- data/vendor/assets/images/tab_icons/tasks_active.png +0 -0
data/config/locales/en-US.yml
CHANGED
@@ -1,182 +1,219 @@
|
|
1
|
-
|
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:
|
9
|
-
short:
|
10
|
-
long:
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
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
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
53
|
+
- :year
|
54
|
+
- :month
|
55
|
+
- :day
|
22
56
|
time:
|
23
57
|
formats:
|
24
|
-
default:
|
25
|
-
short:
|
26
|
-
long:
|
27
|
-
am:
|
28
|
-
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:
|
34
|
-
last_word_connector:
|
35
|
-
|
65
|
+
words_connector: ! ', '
|
66
|
+
two_words_connector: ! ' and '
|
67
|
+
last_word_connector: ! ', and '
|
36
68
|
select:
|
37
|
-
prompt:
|
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:
|
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:
|
99
|
+
format: ! '%n %u'
|
73
100
|
units:
|
74
101
|
byte:
|
75
|
-
one:
|
76
|
-
other:
|
77
|
-
kb:
|
78
|
-
mb:
|
79
|
-
gb:
|
80
|
-
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:
|
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:
|
119
|
+
half_a_minute: half a minute
|
94
120
|
less_than_x_seconds:
|
95
|
-
one:
|
96
|
-
other:
|
121
|
+
one: less than 1 second
|
122
|
+
other: less than %{count} seconds
|
97
123
|
x_seconds:
|
98
|
-
one:
|
99
|
-
other:
|
124
|
+
one: 1 second
|
125
|
+
other: ! '%{count} seconds'
|
100
126
|
less_than_x_minutes:
|
101
|
-
one:
|
102
|
-
other:
|
127
|
+
one: less than a minute
|
128
|
+
other: less than %{count} minutes
|
103
129
|
x_minutes:
|
104
|
-
one:
|
105
|
-
other:
|
130
|
+
one: 1 minute
|
131
|
+
other: ! '%{count} minutes'
|
106
132
|
about_x_hours:
|
107
|
-
one:
|
108
|
-
other:
|
133
|
+
one: about 1 hour
|
134
|
+
other: about %{count} hours
|
109
135
|
x_days:
|
110
|
-
one:
|
111
|
-
other:
|
136
|
+
one: 1 day
|
137
|
+
other: ! '%{count} days'
|
112
138
|
about_x_months:
|
113
|
-
one:
|
114
|
-
other:
|
139
|
+
one: about 1 month
|
140
|
+
other: about %{count} months
|
115
141
|
x_months:
|
116
|
-
one:
|
117
|
-
other:
|
142
|
+
one: 1 month
|
143
|
+
other: ! '%{count} months'
|
118
144
|
about_x_years:
|
119
|
-
one:
|
120
|
-
other:
|
145
|
+
one: about 1 year
|
146
|
+
other: about %{count} years
|
121
147
|
over_x_years:
|
122
|
-
one:
|
123
|
-
other:
|
148
|
+
one: over 1 year
|
149
|
+
other: over %{count} years
|
124
150
|
almost_x_years:
|
125
|
-
one:
|
126
|
-
other:
|
151
|
+
one: almost 1 year
|
152
|
+
other: almost %{count} years
|
127
153
|
prompts:
|
128
|
-
year:
|
129
|
-
month:
|
130
|
-
day:
|
131
|
-
hour:
|
132
|
-
minute:
|
133
|
-
second:
|
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:
|
138
|
-
|
162
|
+
prompt: Please select
|
139
163
|
submit:
|
140
|
-
create:
|
141
|
-
update:
|
142
|
-
submit:
|
143
|
-
|
164
|
+
create: Create %{model}
|
165
|
+
update: Update %{model}
|
166
|
+
submit: Save %{model}
|
144
167
|
errors:
|
145
|
-
format:
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
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:
|
173
|
-
other:
|
174
|
-
body:
|
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
|
-
|
178
|
-
|
179
|
-
|
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:
|
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:
|
13
|
-
select_blank:
|
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:
|
110
|
+
missing_account_name: ^Please specify account name.
|
120
111
|
access:
|
121
|
-
share_account:
|
112
|
+
share_account: ^Please specify users to share the account with.
|
122
113
|
campaign:
|
123
114
|
attributes:
|
124
115
|
name:
|
125
|
-
missing_campaign_name:
|
116
|
+
missing_campaign_name: ^Please specify campaign name.
|
126
117
|
ends_on:
|
127
|
-
dates_not_in_sequence:
|
118
|
+
dates_not_in_sequence: ^Please make sure the campaign end date is after
|
119
|
+
the start date.
|
128
120
|
access:
|
129
|
-
share_campaign:
|
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:
|
125
|
+
missing_first_name: ^Please specify first name.
|
134
126
|
last_name:
|
135
|
-
missing_last_name:
|
127
|
+
missing_last_name: ^Please specify last name.
|
136
128
|
access:
|
137
|
-
share_contact:
|
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:
|
133
|
+
missing_first_name: ^Please specify first name.
|
142
134
|
last_name:
|
143
|
-
missing_last_name:
|
135
|
+
missing_last_name: ^Please specify last name.
|
144
136
|
access:
|
145
|
-
share_lead:
|
137
|
+
share_lead: ^Please specify users to share the lead with.
|
146
138
|
opportunity:
|
147
139
|
attributes:
|
148
140
|
name:
|
149
|
-
missing_opportunity_name:
|
141
|
+
missing_opportunity_name: ^Please specify opportunity name.
|
150
142
|
access:
|
151
|
-
share_opportunity:
|
143
|
+
share_opportunity: ^Please specify users to share the opportunity with.
|
152
144
|
task:
|
153
145
|
attributes:
|
154
146
|
name:
|
155
|
-
missing_task_name:
|
147
|
+
missing_task_name: ^Please specify task name.
|
156
148
|
calendar:
|
157
|
-
invalid_date:
|
149
|
+
invalid_date: ^Please specify valid date.
|
158
150
|
user:
|
159
151
|
attributes:
|
160
152
|
username:
|
161
|
-
missing_username:
|
162
|
-
username_taken:
|
153
|
+
missing_username: ^Please specify username.
|
154
|
+
username_taken: ^This username is already taken.
|
163
155
|
email:
|
164
|
-
missing_email:
|
165
|
-
email_in_use:
|
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:
|
168
|
-
maxlength:
|
169
|
-
endbeforestart:
|
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
|
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:
|
190
|
+
msg_asset_deleted: ! '%{value} has been deleted.'
|
191
191
|
msg_asset_not_available: This %{value} is no longer available.
|
192
|
-
|
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:
|
195
|
-
msg_bad_image_file:
|
196
|
-
msg_cant_create_related:
|
197
|
-
|
198
|
-
|
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:
|
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
|
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
|
-
|
218
|
-
activity_options: Show %{models} %{action_type} performed by %{user} in the past
|
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}
|
245
|
-
|
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.
|
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:
|
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
|
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:
|
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}.
|
402
|
-
|
403
|
-
|
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:
|
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
|
427
|
-
|
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}
|
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
|
433
|
-
|
434
|
-
|
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:
|
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:
|
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:
|
566
|
-
|
581
|
+
action_create_comment: ! '- "%{comment}"'
|
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}
|
582
|
-
added_by: added %{time_ago}
|
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:
|
590
|
-
could_not_find_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:
|
629
|
+
time_ago: ! '%{value} ago'
|
615
630
|
background_info: Background
|
616
631
|
address: Address
|
617
|
-
street1: Street 1
|
618
|
-
street2: Street 2
|
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
|
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
|
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:
|
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:
|
753
|
-
reply_instructions:
|
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
|
-
|
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
|
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:
|
768
|
-
other: '%{count} comments'
|
789
|
+
one: 1 comment
|
790
|
+
other: ! '%{count} comments'
|
769
791
|
contact:
|
770
|
-
one:
|
771
|
-
other: '%{count} contacts'
|
792
|
+
one: 1 contact
|
793
|
+
other: ! '%{count} contacts'
|
772
794
|
opportunity:
|
773
|
-
one:
|
774
|
-
other: '%{count} opportunities'
|
795
|
+
one: 1 opportunity
|
796
|
+
other: ! '%{count} opportunities'
|
775
797
|
lead:
|
776
|
-
one:
|
777
|
-
other: '%{count} leads'
|
798
|
+
one: 1 lead
|
799
|
+
other: ! '%{count} leads'
|
778
800
|
day:
|
779
|
-
one:
|
780
|
-
other: '%{count} days'
|
801
|
+
one: 1 day
|
802
|
+
other: ! '%{count} days'
|
781
803
|
login:
|
782
|
-
one:
|
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:
|
790
|
-
mmdd:
|
791
|
-
mmddyy:
|
792
|
-
|
811
|
+
mmddyyyy: ! '%m/%d/%Y'
|
812
|
+
mmdd: ! '%b %e'
|
813
|
+
mmddyy: ! '%b %e, %Y'
|
793
814
|
time:
|
794
815
|
formats:
|
795
|
-
mmddhhss:
|
796
|
-
mmddyyyy_hhmm:
|
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:
|
802
|
-
next_label:
|
803
|
-
page_gap:
|
804
|
-
|
822
|
+
previous_label: ! '← Previous'
|
823
|
+
next_label: Next →
|
824
|
+
page_gap: ! '…'
|
805
825
|
page_entries_info:
|
806
826
|
single_page:
|
807
|
-
zero:
|
808
|
-
one:
|
809
|
-
other:
|
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
|
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
|
-
|
842
|
-
|
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:
|
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:
|
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:
|
902
|
+
title: Short Answer
|
896
903
|
text:
|
897
|
-
title:
|
904
|
+
title: Long Answer
|
898
905
|
select:
|
899
|
-
title:
|
906
|
+
title: Select List
|
900
907
|
multiselect:
|
901
|
-
title:
|
908
|
+
title: Multi Select
|
902
909
|
radio:
|
903
|
-
title:
|
910
|
+
title: Radio Buttons
|
904
911
|
boolean:
|
905
|
-
title:
|
912
|
+
title: Checkbox
|
906
913
|
check_boxes:
|
907
|
-
title:
|
914
|
+
title: Checkbox List
|
908
915
|
date:
|
909
|
-
title:
|
916
|
+
title: Date
|
910
917
|
date_pair:
|
911
|
-
title:
|
918
|
+
title: Date Pair
|
912
919
|
datetime:
|
913
|
-
title:
|
920
|
+
title: Date & Time
|
914
921
|
datetime_pair:
|
915
|
-
title:
|
922
|
+
title: Date & Time Pair
|
916
923
|
email:
|
917
|
-
title:
|
924
|
+
title: Email Address
|
918
925
|
url:
|
919
|
-
title:
|
926
|
+
title: URL
|
920
927
|
tel:
|
921
|
-
title:
|
928
|
+
title: Phone Number
|
922
929
|
decimal:
|
923
|
-
title:
|
930
|
+
title: Number (Decimal)
|
924
931
|
integer:
|
925
|
-
title:
|
932
|
+
title: Number (Integer)
|
926
933
|
float:
|
927
|
-
title:
|
928
|
-
|
934
|
+
title: Number (Floating Point)
|
929
935
|
pair:
|
930
|
-
start:
|
931
|
-
end:
|
932
|
-
from_to:
|
933
|
-
from_only:
|
934
|
-
to_only:
|
936
|
+
start: Start
|
937
|
+
end: End
|
938
|
+
from_to: From %{from} to %{to}
|
939
|
+
from_only: From %{from}
|
940
|
+
to_only: Until %{to}
|