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
@@ -0,0 +1,91 @@
|
|
1
|
+
---
|
2
|
+
de:
|
3
|
+
ransack:
|
4
|
+
search: suche
|
5
|
+
predicate: aussage
|
6
|
+
and: und
|
7
|
+
or: oder
|
8
|
+
any: mindestens eins
|
9
|
+
all: alle
|
10
|
+
combinator: kombinator
|
11
|
+
attribute: attribut
|
12
|
+
value: wert
|
13
|
+
condition: bedingung
|
14
|
+
sort: sortieren
|
15
|
+
asc: aufsteigend
|
16
|
+
desc: absteigend
|
17
|
+
submit: Suche
|
18
|
+
add_group: Füge eine Gruppe von Filtern hinzu
|
19
|
+
group_first: Zeige Ergebnisse von %{combinator} für die folgenden Treffer
|
20
|
+
group_rest: ! '...und %{combinator} für die folgenden Treffer'
|
21
|
+
add_condition: Füge einen Filter hinzu
|
22
|
+
remove_condition: Entferne einen Filter
|
23
|
+
predicates:
|
24
|
+
eq: entspricht
|
25
|
+
eq_any: entspricht einem
|
26
|
+
eq_all: entspricht allen
|
27
|
+
not_eq: entspricht nicht
|
28
|
+
not_eq_any: entspricht mindestens einem nicht
|
29
|
+
not_eq_all: entspricht allen nicht
|
30
|
+
matches: trifft zu
|
31
|
+
matches_any: trifft bei mindestens einem zu
|
32
|
+
matches_all: trifft bei allen zu
|
33
|
+
does_not_match: trifft nicht zu
|
34
|
+
does_not_match_any: trifft bei mindestens einem nicht zu
|
35
|
+
does_not_match_all: trifft bei keinem zu
|
36
|
+
lt: weniger als
|
37
|
+
lt_any: mindestens eins kleiner
|
38
|
+
lt_all: alle kleiner
|
39
|
+
lteq: kleiner oder gleich
|
40
|
+
lteq_any: mindestens eines kleiner oder gleich
|
41
|
+
lteq_all: alle kleiner oder gleich
|
42
|
+
gt: größer als
|
43
|
+
gt_any: mindestens eines größer
|
44
|
+
gt_all: alle größer
|
45
|
+
gteq: größer oder gleich
|
46
|
+
gteq_any: mindestens eines größer oder gleich
|
47
|
+
gteq_all: alle größer oder gleich
|
48
|
+
in: ist innerhalb
|
49
|
+
in_any: ist innerhalb von einem
|
50
|
+
in_all: ist innerhalb von allen
|
51
|
+
not_in: ist nicht enthalten
|
52
|
+
not_in_any: ist in einem nicht enthalten
|
53
|
+
not_in_all: ist in allen nicht enthalten
|
54
|
+
cont: enthält
|
55
|
+
cont_any: enthält einen
|
56
|
+
cont_all: enthält alle
|
57
|
+
not_cont: beinhaltet nicht
|
58
|
+
not_cont_any: beinhaltet mindestens eine nicht
|
59
|
+
not_cont_all: beinhaltet alle nicht
|
60
|
+
start: beginnt mit
|
61
|
+
start_any: mindestens eines beginnt mit
|
62
|
+
start_all: alle beginnen mit
|
63
|
+
not_start: beginnt nicht mit
|
64
|
+
not_start_any: mindestens eines beginnt nicht mit
|
65
|
+
not_start_all: alle beginnen nicht mit
|
66
|
+
end: endet mit
|
67
|
+
end_any: mindestens eines endet mit
|
68
|
+
end_all: alle enden mit
|
69
|
+
not_end: endet nicht mit
|
70
|
+
not_end_any: mindestens eines endet nicht mit
|
71
|
+
not_end_all: alle enden nicht mit
|
72
|
+
'true': ist wahr
|
73
|
+
'false': ist falsch
|
74
|
+
present: existiert
|
75
|
+
blank: ist leer
|
76
|
+
'null': ist null
|
77
|
+
not_null: ist nicht null
|
78
|
+
alt:
|
79
|
+
date:
|
80
|
+
lt: ist bevor
|
81
|
+
lt_any: mindestens eines ist bevor
|
82
|
+
lt_all: alle sind bevor
|
83
|
+
lteq: ist bevor oder am
|
84
|
+
lteq_any: mindestens eines ist bevor oder am
|
85
|
+
lteq_all: alle sind bevor oder am
|
86
|
+
gt: ist nach
|
87
|
+
gt_any: mindestens eines ist nach
|
88
|
+
gt_all: alle sind nach
|
89
|
+
gteq: ist danach oder am
|
90
|
+
gteq_any: mindestens eines ist danach oder am
|
91
|
+
gteq_all: alle sind danach oder am
|
data/config/locales/en-GB.yml
CHANGED
@@ -1,180 +1,219 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
"en-GB":
|
1
|
+
---
|
2
|
+
en-GB:
|
4
3
|
date:
|
5
4
|
formats:
|
6
|
-
default:
|
7
|
-
short:
|
8
|
-
long:
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
5
|
+
default: ! '%d-%m-%Y'
|
6
|
+
short: ! '%d %b'
|
7
|
+
long: ! '%d %B, %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
|
15
52
|
order:
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
53
|
+
- :day
|
54
|
+
- :month
|
55
|
+
- :year
|
20
56
|
time:
|
21
57
|
formats:
|
22
|
-
default:
|
23
|
-
short:
|
24
|
-
long:
|
25
|
-
am:
|
26
|
-
pm:
|
27
|
-
|
58
|
+
default: ! '%a, %d %b %Y %H:%M:%S %z'
|
59
|
+
short: ! '%d %b %H:%M'
|
60
|
+
long: ! '%d %B, %Y %H:%M'
|
61
|
+
am: am
|
62
|
+
pm: pm
|
28
63
|
support:
|
29
64
|
array:
|
30
|
-
words_connector:
|
31
|
-
two_words_connector:
|
32
|
-
last_word_connector:
|
33
|
-
|
65
|
+
words_connector: ! ', '
|
66
|
+
two_words_connector: ! ' and '
|
67
|
+
last_word_connector: ! ', and '
|
34
68
|
select:
|
35
|
-
prompt:
|
36
|
-
|
69
|
+
prompt: Please select
|
37
70
|
number:
|
38
71
|
format:
|
39
|
-
separator:
|
40
|
-
delimiter:
|
72
|
+
separator: .
|
73
|
+
delimiter: ! ','
|
41
74
|
precision: 3
|
42
75
|
significant: false
|
43
76
|
strip_insignificant_zeros: false
|
44
|
-
|
45
77
|
currency:
|
46
78
|
format:
|
47
|
-
format:
|
48
|
-
unit:
|
49
|
-
separator:
|
50
|
-
delimiter:
|
79
|
+
format: ! '%u%n'
|
80
|
+
unit: £
|
81
|
+
separator: .
|
82
|
+
delimiter: ! ','
|
51
83
|
precision: 2
|
52
84
|
significant: false
|
53
85
|
strip_insignificant_zeros: false
|
54
|
-
|
55
86
|
percentage:
|
56
87
|
format:
|
57
|
-
delimiter:
|
58
|
-
|
88
|
+
delimiter: ''
|
59
89
|
precision:
|
60
90
|
format:
|
61
|
-
delimiter:
|
62
|
-
|
91
|
+
delimiter: ''
|
63
92
|
human:
|
64
93
|
format:
|
65
|
-
delimiter:
|
94
|
+
delimiter: ''
|
66
95
|
precision: 3
|
67
96
|
significant: true
|
68
97
|
strip_insignificant_zeros: true
|
69
98
|
storage_units:
|
70
|
-
format:
|
99
|
+
format: ! '%n %u'
|
71
100
|
units:
|
72
101
|
byte:
|
73
|
-
one:
|
74
|
-
other:
|
75
|
-
kb:
|
76
|
-
mb:
|
77
|
-
gb:
|
78
|
-
tb:
|
102
|
+
one: Byte
|
103
|
+
other: Bytes
|
104
|
+
kb: KB
|
105
|
+
mb: MB
|
106
|
+
gb: GB
|
107
|
+
tb: TB
|
79
108
|
decimal_units:
|
80
|
-
format:
|
109
|
+
format: ! '%n %u'
|
81
110
|
units:
|
82
|
-
unit:
|
111
|
+
unit: ''
|
83
112
|
thousand: Thousand
|
84
113
|
million: Million
|
85
114
|
billion: Billion
|
86
115
|
trillion: Trillion
|
87
116
|
quadrillion: Quadrillion
|
88
|
-
|
89
117
|
datetime:
|
90
118
|
distance_in_words:
|
91
|
-
half_a_minute:
|
119
|
+
half_a_minute: half a minute
|
92
120
|
less_than_x_seconds:
|
93
|
-
one:
|
94
|
-
other:
|
121
|
+
one: less than 1 second
|
122
|
+
other: less than %{count} seconds
|
95
123
|
x_seconds:
|
96
|
-
one:
|
97
|
-
other:
|
124
|
+
one: 1 second
|
125
|
+
other: ! '%{count} seconds'
|
98
126
|
less_than_x_minutes:
|
99
|
-
one:
|
100
|
-
other:
|
127
|
+
one: less than a minute
|
128
|
+
other: less than %{count} minutes
|
101
129
|
x_minutes:
|
102
|
-
one:
|
103
|
-
other:
|
130
|
+
one: 1 minute
|
131
|
+
other: ! '%{count} minutes'
|
104
132
|
about_x_hours:
|
105
|
-
one:
|
106
|
-
other:
|
133
|
+
one: about 1 hour
|
134
|
+
other: about %{count} hours
|
107
135
|
x_days:
|
108
|
-
one:
|
109
|
-
other:
|
136
|
+
one: 1 day
|
137
|
+
other: ! '%{count} days'
|
110
138
|
about_x_months:
|
111
|
-
one:
|
112
|
-
other:
|
139
|
+
one: about 1 month
|
140
|
+
other: about %{count} months
|
113
141
|
x_months:
|
114
|
-
one:
|
115
|
-
other:
|
142
|
+
one: 1 month
|
143
|
+
other: ! '%{count} months'
|
116
144
|
about_x_years:
|
117
|
-
one:
|
118
|
-
other:
|
145
|
+
one: about 1 year
|
146
|
+
other: about %{count} years
|
119
147
|
over_x_years:
|
120
|
-
one:
|
121
|
-
other:
|
148
|
+
one: over 1 year
|
149
|
+
other: over %{count} years
|
122
150
|
almost_x_years:
|
123
|
-
one:
|
124
|
-
other:
|
151
|
+
one: almost 1 year
|
152
|
+
other: almost %{count} years
|
125
153
|
prompts:
|
126
|
-
year:
|
127
|
-
month:
|
128
|
-
day:
|
129
|
-
hour:
|
130
|
-
minute:
|
131
|
-
second:
|
132
|
-
|
154
|
+
year: Year
|
155
|
+
month: Month
|
156
|
+
day: Day
|
157
|
+
hour: Hour
|
158
|
+
minute: Minute
|
159
|
+
second: Seconds
|
133
160
|
helpers:
|
134
161
|
select:
|
135
|
-
prompt:
|
136
|
-
|
162
|
+
prompt: Please select
|
137
163
|
submit:
|
138
|
-
create:
|
139
|
-
update:
|
140
|
-
submit:
|
141
|
-
|
164
|
+
create: Create %{model}
|
165
|
+
update: Update %{model}
|
166
|
+
submit: Save %{model}
|
142
167
|
errors:
|
143
|
-
format:
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
even: "must be even"
|
165
|
-
|
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
|
166
189
|
activerecord:
|
167
190
|
errors:
|
168
191
|
template:
|
169
192
|
header:
|
170
|
-
one:
|
171
|
-
other:
|
172
|
-
body:
|
173
|
-
|
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:'
|
174
196
|
messages:
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
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}'
|
179
218
|
full_messages:
|
180
|
-
format:
|
219
|
+
format: ! '%{attribute} %{message}'
|
@@ -1,20 +1,15 @@
|
|
1
|
+
---
|
1
2
|
en-GB:
|
2
3
|
language: English (UK)
|
3
|
-
|
4
|
-
# Generic terms.
|
5
|
-
#----------------------------------------------------------------------------
|
6
4
|
all: All
|
7
5
|
at: at
|
8
6
|
here: here
|
9
7
|
no_button: 'No'
|
10
8
|
not_implemented: Not implemented yet.
|
11
9
|
or: or
|
12
|
-
select_none:
|
13
|
-
select_blank:
|
10
|
+
select_none: -- None --
|
11
|
+
select_blank: -- Select --
|
14
12
|
yes_button: 'Yes'
|
15
|
-
|
16
|
-
# Settings.
|
17
|
-
#----------------------------------------------------------------------------
|
18
13
|
tab_dashboard: Dashboard
|
19
14
|
tab_tasks: Tasks
|
20
15
|
tab_campaigns: Campaigns
|
@@ -23,32 +18,27 @@ en-GB:
|
|
23
18
|
tab_contacts: Contacts
|
24
19
|
tab_opportunities: Opportunities
|
25
20
|
tab_team: Team
|
26
|
-
|
27
21
|
admin_tab_groups: Groups
|
28
22
|
admin_tab_users: Users
|
29
23
|
admin_tab_fields: Custom Fields
|
30
24
|
admin_tab_tags: Tags
|
31
25
|
admin_tab_settings: Settings
|
32
26
|
admin_tab_plugins: Plugins
|
33
|
-
|
34
27
|
affiliate: Affiliate
|
35
28
|
competitor: Competitor
|
36
29
|
customer: Customer
|
37
30
|
partner: Partner
|
38
31
|
reseller: Reseller
|
39
32
|
vendor: Vendor
|
40
|
-
|
41
33
|
planned: Planned
|
42
34
|
started: Started
|
43
35
|
on_hold: On Hold
|
44
36
|
completed: Completed
|
45
37
|
called_off: Called Off
|
46
|
-
|
47
38
|
new: New
|
48
39
|
contacted: Contacted
|
49
40
|
converted: Converted
|
50
41
|
rejected: Rejected
|
51
|
-
|
52
42
|
cold_call: Cold Call
|
53
43
|
conference: Conference
|
54
44
|
online: Online Marketing
|
@@ -57,7 +47,6 @@ en-GB:
|
|
57
47
|
web: Website
|
58
48
|
word_of_mouth: Word of Mouth
|
59
49
|
other: Other
|
60
|
-
|
61
50
|
prospecting: Prospecting
|
62
51
|
analysis: Analysis
|
63
52
|
presentation: Presentation
|
@@ -66,16 +55,13 @@ en-GB:
|
|
66
55
|
final_review: Final Review
|
67
56
|
won: Closed/Won
|
68
57
|
lost: Closed/Lost
|
69
|
-
|
70
58
|
call: Call
|
71
59
|
email: Email
|
72
60
|
follow_up: Follow-up
|
73
61
|
lunch: Lunch
|
74
62
|
meeting: Meeting
|
75
63
|
money: Money
|
76
|
-
presentation: Presentation
|
77
64
|
trip: Trip
|
78
|
-
|
79
65
|
overdue: Overdue
|
80
66
|
due_asap: As Soon As Possible
|
81
67
|
due_today: Today
|
@@ -84,24 +70,17 @@ en-GB:
|
|
84
70
|
due_next_week: Next Week
|
85
71
|
due_later: Sometime Later
|
86
72
|
due_specific_date: On Specific Date...
|
87
|
-
|
88
73
|
completed_today: Today
|
89
74
|
completed_yesterday: Yesterday
|
90
75
|
completed_last_week: Last week
|
91
76
|
completed_this_month: This month
|
92
77
|
completed_last_month: Last month
|
93
|
-
|
94
|
-
# Models/Activity.
|
95
|
-
#----------------------------------------------------------------------------
|
96
78
|
one_hour: One Hour
|
97
79
|
one_day: One Day
|
98
80
|
two_days: Two Days
|
99
81
|
one_week: One Week
|
100
82
|
two_weeks: Two Weeks
|
101
83
|
one_month: One Month
|
102
|
-
|
103
|
-
# Model Validations.
|
104
|
-
#----------------------------------------------------------------------------
|
105
84
|
activerecord:
|
106
85
|
errors:
|
107
86
|
models:
|
@@ -114,74 +93,74 @@ en-GB:
|
|
114
93
|
account:
|
115
94
|
attributes:
|
116
95
|
name:
|
117
|
-
missing_account_name:
|
96
|
+
missing_account_name: ^Please specify account name.
|
118
97
|
access:
|
119
|
-
share_account:
|
98
|
+
share_account: ^Please specify users to share the account with.
|
120
99
|
campaign:
|
121
100
|
attributes:
|
122
101
|
name:
|
123
|
-
missing_campaign_name:
|
102
|
+
missing_campaign_name: ^Please specify campaign name.
|
124
103
|
ends_on:
|
125
|
-
dates_not_in_sequence:
|
104
|
+
dates_not_in_sequence: ^Please make sure the campaign end date is after
|
105
|
+
the start date.
|
126
106
|
access:
|
127
|
-
share_campaign:
|
107
|
+
share_campaign: ^Please specify users to share the campaign with.
|
128
108
|
contact:
|
129
109
|
attributes:
|
130
110
|
first_name:
|
131
|
-
missing_first_name:
|
111
|
+
missing_first_name: ^Please specify first name.
|
132
112
|
last_name:
|
133
|
-
missing_last_name:
|
113
|
+
missing_last_name: ^Please specify last name.
|
134
114
|
access:
|
135
|
-
share_contact:
|
115
|
+
share_contact: ^Please specify users to share the contact with.
|
136
116
|
lead:
|
137
117
|
attributes:
|
138
118
|
first_name:
|
139
|
-
missing_first_name:
|
119
|
+
missing_first_name: ^Please specify first name.
|
140
120
|
last_name:
|
141
|
-
missing_last_name:
|
121
|
+
missing_last_name: ^Please specify last name.
|
142
122
|
access:
|
143
|
-
share_lead:
|
123
|
+
share_lead: ^Please specify users to share the lead with.
|
144
124
|
opportunity:
|
145
125
|
attributes:
|
146
126
|
name:
|
147
|
-
missing_opportunity_name:
|
127
|
+
missing_opportunity_name: ^Please specify opportunity name.
|
148
128
|
access:
|
149
|
-
share_opportunity:
|
129
|
+
share_opportunity: ^Please specify users to share the opportunity with.
|
150
130
|
task:
|
151
131
|
attributes:
|
152
132
|
name:
|
153
|
-
missing_task_name:
|
133
|
+
missing_task_name: ^Please specify task name.
|
154
134
|
calendar:
|
155
|
-
invalid_date:
|
135
|
+
invalid_date: ^Please specify valid date.
|
156
136
|
user:
|
157
137
|
attributes:
|
158
138
|
username:
|
159
|
-
missing_username:
|
160
|
-
username_taken:
|
139
|
+
missing_username: ^Please specify username.
|
140
|
+
username_taken: ^This username is already taken.
|
161
141
|
email:
|
162
|
-
missing_email:
|
163
|
-
email_in_use:
|
164
|
-
|
142
|
+
missing_email: ^Please specify email address.
|
143
|
+
email_in_use: ^There is another user with the same email.
|
165
144
|
msg_account_suspended: User account has been suspended.
|
166
145
|
password_reset_instruction: password reset instructions
|
167
|
-
|
168
|
-
|
169
|
-
#----------------------------------------------------------------------------
|
170
|
-
msg_account_created: Your account has been created and is awaiting approval by the system administrator.
|
146
|
+
msg_account_created: Your account has been created and is awaiting approval by the
|
147
|
+
system administrator.
|
171
148
|
msg_account_not_approved: Your account has not been approved yet.
|
172
|
-
msg_asset_deleted:
|
149
|
+
msg_asset_deleted: ! '%{value} has been deleted.'
|
173
150
|
msg_asset_not_available: This %{value} is no longer available.
|
174
151
|
msg_asset_not_authorized: You are not authorized to view this %{value}.
|
175
152
|
msg_assets_not_available: The %{value} are not available.
|
176
|
-
msg_asset_rejected:
|
177
|
-
msg_bad_image_file:
|
178
|
-
msg_cant_create_related:
|
179
|
-
|
180
|
-
|
153
|
+
msg_asset_rejected: ! '%{value} has been rejected.'
|
154
|
+
msg_bad_image_file: ^Could't upload or resize the image file you specified.
|
155
|
+
msg_cant_create_related: Can't create the %{asset} since the %{related} is no longer
|
156
|
+
available.
|
157
|
+
msg_cant_delete_user: ^Couldn't delete the user since %{value} has related assets
|
158
|
+
present.
|
159
|
+
msg_cant_do: Can't %{action} the %{asset} since it's no longer available.
|
181
160
|
msg_email_not_found: No user was found with that email address.
|
182
161
|
msg_enter_new_password: Please enter your new password.
|
183
162
|
msg_goodbye: You have been logged out. Thank you for using Fat Free CRM!
|
184
|
-
msg_invalid_password:
|
163
|
+
msg_invalid_password: ^Please specify valid current password
|
185
164
|
msg_invalig_login: Invalid username or password.
|
186
165
|
msg_last_login: Your last login was on %{value}.
|
187
166
|
msg_login_needed: You must be logged in to access this page.
|
@@ -189,15 +168,14 @@ en-GB:
|
|
189
168
|
msg_password_changed: Your password has been changed.
|
190
169
|
msg_password_not_changed: Your password has not been changed.
|
191
170
|
msg_password_updated: Password was successfully updated.
|
192
|
-
msg_pwd_instructions_sent: Instructions to reset your password have been sent to
|
171
|
+
msg_pwd_instructions_sent: Instructions to reset your password have been sent to
|
172
|
+
you. Please check your email.
|
193
173
|
msg_require_admin: You must be Administrator to access this page.
|
194
174
|
msg_successful_signup: Successful signup, welcome to Fat Free CRM!
|
195
175
|
msg_welcome: Welcome to Fat Free CRM!
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
"option_amount*probability": weighted amount
|
200
|
-
activity_options: Show %{models} %{action_type} performed by %{user} in the past %{period}.
|
176
|
+
option_amount*probability: weighted amount
|
177
|
+
activity_options: Show %{models} %{action_type} performed by %{user} in the past
|
178
|
+
%{period}.
|
201
179
|
all_users: all users
|
202
180
|
option_after: after
|
203
181
|
option_all: all
|
@@ -223,10 +201,8 @@ en-GB:
|
|
223
201
|
option_updated_at: date updated
|
224
202
|
show_per_page: Show %{number} %{models} per page using %{fmt} format.
|
225
203
|
sort_by: Sort %{models} by %{field}.
|
226
|
-
sort_by_displaying: Sort %{models} by %{field} displaying first name %{position}
|
227
|
-
|
228
|
-
# Views -> Profile.
|
229
|
-
#----------------------------------------------------------------------------
|
204
|
+
sort_by_displaying: Sort %{models} by %{field} displaying first name %{position}
|
205
|
+
last name.
|
230
206
|
aim: AOL IM
|
231
207
|
already_signed_up: Already signed up?
|
232
208
|
alt_email: Alternative email
|
@@ -236,12 +212,12 @@ en-GB:
|
|
236
212
|
contact_info: Contact Information
|
237
213
|
current_password: Current password
|
238
214
|
edit_profile: Edit Profile
|
239
|
-
# email: Email # <-- Already defined as the task type if Settings.
|
240
215
|
first_name: First name
|
241
216
|
google: Google IM
|
242
217
|
gravatar_help: Not familiar with Gravatars? Learn about Gravatars
|
243
218
|
image_file: Image file
|
244
|
-
image_help: The image file you upload will be automatically resized to 75 x 75 pixels.
|
219
|
+
image_help: The image file you upload will be automatically resized to 75 x 75 pixels.
|
220
|
+
Supported formats are GIF, JPG, and PNG.
|
245
221
|
job_title: Title
|
246
222
|
last_name: Last name
|
247
223
|
login_now_link: Login Now!
|
@@ -266,17 +242,11 @@ en-GB:
|
|
266
242
|
reports_to: Reports to
|
267
243
|
access: Access
|
268
244
|
contacts_account: Contact's account
|
269
|
-
|
270
|
-
# Views -> Authenticate.
|
271
|
-
#----------------------------------------------------------------------------
|
272
245
|
forgot_password: Forgot Password
|
273
246
|
login: Login
|
274
247
|
no_account: Do not have an account?
|
275
248
|
remember_me: Remember Me
|
276
249
|
sign_up_now: Sign Up Now!
|
277
|
-
|
278
|
-
# Views -> Accounts.
|
279
|
-
#----------------------------------------------------------------------------
|
280
250
|
account: Account
|
281
251
|
select_an_account: Select an Account
|
282
252
|
account_small: account
|
@@ -305,9 +275,6 @@ en-GB:
|
|
305
275
|
shipping_address: Shipping address
|
306
276
|
total_accounts: Total Accounts
|
307
277
|
website: Website
|
308
|
-
|
309
|
-
# Views -> Campaigns.
|
310
|
-
#----------------------------------------------------------------------------
|
311
278
|
actual: Actual
|
312
279
|
actual_performance: Actual Performance
|
313
280
|
budget: Budget
|
@@ -322,7 +289,7 @@ en-GB:
|
|
322
289
|
campaigns_small: campaigns
|
323
290
|
conversion: Conversion
|
324
291
|
conversion_label: Conversion (%)
|
325
|
-
conversion_number:
|
292
|
+
conversion_number: ! '%{value} conversion'
|
326
293
|
create_campaign: Create Campaign
|
327
294
|
end_date: End date
|
328
295
|
finished_on: completed on %{value}
|
@@ -330,11 +297,13 @@ en-GB:
|
|
330
297
|
no_start_date: no start date specified
|
331
298
|
number_of_leads: Number of leads
|
332
299
|
objectives: Objectives
|
333
|
-
objectives_help: Please specify target number of leads, expected leads-to-opportunities
|
300
|
+
objectives_help: Please specify target number of leads, expected leads-to-opportunities
|
301
|
+
conversion ratio, target revenue, and campaign budget. These numbers will let
|
302
|
+
you track actual campaign performance.
|
334
303
|
objectives_small: campaign objectives
|
335
304
|
revenue: Revenue
|
336
305
|
revenue_label: Revenue (£)
|
337
|
-
revenue_number:
|
306
|
+
revenue_number: ! '%{value} in revenue'
|
338
307
|
save_campaign: Save Campaign
|
339
308
|
start_date: Start date
|
340
309
|
started_ago: started %{value} ago
|
@@ -345,9 +314,6 @@ en-GB:
|
|
345
314
|
was_supposed_to_finish: was supposed to finish on %{value}
|
346
315
|
was_supposed_to_start: was supposed to start %{time_ago} ago on %{start_date}
|
347
316
|
was_supposed_to_start_in: was supposed to start in %{starts_in} on %{start_date}
|
348
|
-
|
349
|
-
# Views -> Contacts.
|
350
|
-
#----------------------------------------------------------------------------
|
351
317
|
alt_email_small: Other
|
352
318
|
blog: Website/Blog
|
353
319
|
contact: Contact
|
@@ -357,16 +323,19 @@ en-GB:
|
|
357
323
|
contacts_small: contacts
|
358
324
|
create_contact: Create Contact
|
359
325
|
department: Department
|
360
|
-
department_small: '%{value} department'
|
326
|
+
department_small: ! '%{value} department'
|
361
327
|
do_not_call: Do not call
|
362
328
|
extra_info: Extra Information
|
363
329
|
extra_info_small: extra contact
|
364
330
|
facebook: Facebook
|
365
331
|
linked_in: LinkedIn
|
366
332
|
myself: Myself
|
367
|
-
permissions_intro_private: By default only you will have access to the %{value}.
|
368
|
-
|
369
|
-
|
333
|
+
permissions_intro_private: By default only you will have access to the %{value}.
|
334
|
+
You can change permissions later.
|
335
|
+
permissions_intro_public: By default all users will have access to the %{value}.
|
336
|
+
You can change permissions later.
|
337
|
+
permissions_intro_shared: By default only the selected users will have access to
|
338
|
+
the %{value}. You can change permissions later.
|
370
339
|
referred_by: Referred by
|
371
340
|
referred_by_small: referred by
|
372
341
|
save_contact: Save Contact
|
@@ -374,21 +343,26 @@ en-GB:
|
|
374
343
|
unassigned: Unassigned
|
375
344
|
web_presence: Web Presence
|
376
345
|
web_presence_small: web presence
|
377
|
-
works_at:
|
378
|
-
|
379
|
-
# Views -> Leads.
|
380
|
-
#----------------------------------------------------------------------------
|
346
|
+
works_at: ! '%{job_title} at %{company}'
|
381
347
|
convert: Convert
|
382
348
|
convert_lead: Convert Lead
|
383
|
-
convert_lead_permissions_intro: Contact permissions will be copied from the lead
|
384
|
-
|
349
|
+
convert_lead_permissions_intro: Contact permissions will be copied from the lead
|
350
|
+
being converted. You can change contact permissions later.
|
351
|
+
convert_lead_text: By converting the lead %{value} will become a contact associated
|
352
|
+
with the existing or newly created account. Lead status will be automatically
|
353
|
+
set to converted.
|
385
354
|
create_lead: Create Lead
|
386
|
-
create_opp_for_contact: You can optionally create an opportunity for the %{value}
|
355
|
+
create_opp_for_contact: You can optionally create an opportunity for the %{value}
|
356
|
+
contact by specifying the name, current stage, estimated closing date, sale probability,
|
357
|
+
amount of the deal, and the discount offered.
|
387
358
|
lead: Lead
|
388
359
|
lead_info_small: lead contact
|
389
|
-
lead_permissions_intro_private: By default permissions will be copied from the campaign
|
390
|
-
|
391
|
-
|
360
|
+
lead_permissions_intro_private: By default permissions will be copied from the campaign
|
361
|
+
or set to private. You can change lead permissions later.
|
362
|
+
lead_permissions_intro_public: By default permissions will be copied from the campaign
|
363
|
+
or set to public. You can change lead permissions later.
|
364
|
+
lead_permissions_intro_shared: By default permissions will be copied from the campaign
|
365
|
+
or shared with the specified users. You can change lead permissions later.
|
392
366
|
lead_small: lead
|
393
367
|
lead_status_small: lead status
|
394
368
|
lead_summary: Lead Summary
|
@@ -403,9 +377,6 @@ en-GB:
|
|
403
377
|
source: Source
|
404
378
|
status: Status
|
405
379
|
total_leads: Total Leads
|
406
|
-
|
407
|
-
# Views -> Opportunities.
|
408
|
-
#----------------------------------------------------------------------------
|
409
380
|
amount: Amount
|
410
381
|
close_date: Close date
|
411
382
|
closed_ago_on: closed %{time_ago} ago on %{date}
|
@@ -427,7 +398,8 @@ en-GB:
|
|
427
398
|
opportunity: Opportunity
|
428
399
|
opportunity_small: opportunity
|
429
400
|
opportunity_summary: Opportunity At a Glance
|
430
|
-
opportunity_summary_text:
|
401
|
+
opportunity_summary_text: ! '%{amount} with %{discount} discount and %{probability}
|
402
|
+
probability'
|
431
403
|
past_due: past due, was expected to close %{value} ago
|
432
404
|
probability: Probability
|
433
405
|
probability_number: and %{value} probability
|
@@ -435,9 +407,6 @@ en-GB:
|
|
435
407
|
stage: Stage
|
436
408
|
total_opportunities: Total Opportunities
|
437
409
|
weighted_amount: Weighted amount
|
438
|
-
|
439
|
-
# Views -> Tasks.
|
440
|
-
#----------------------------------------------------------------------------
|
441
410
|
task: Task
|
442
411
|
task_small: task
|
443
412
|
tasks: Tasks
|
@@ -453,13 +422,13 @@ en-GB:
|
|
453
422
|
due: Due
|
454
423
|
feel_free: Feel free to
|
455
424
|
move_to: move to
|
456
|
-
no_tasks:
|
425
|
+
no_tasks: You don't have any %{value} tasks
|
457
426
|
no_tasks_pending: pending
|
458
427
|
no_tasks_assigned: assigned
|
459
428
|
no_tasks_completed: completed
|
460
429
|
pending_tab: Pending
|
461
430
|
pending_tasks: Pending Tasks
|
462
|
-
related: 're:'
|
431
|
+
related: ! 're:'
|
463
432
|
save_task: Save Task
|
464
433
|
task_assigned: The task has been assigned to %{value}
|
465
434
|
task_assigned_to: and assigned to %{value}
|
@@ -474,19 +443,11 @@ en-GB:
|
|
474
443
|
task_from: From %{value}
|
475
444
|
task_overdue: late, was due on
|
476
445
|
task_pending: The task has been moved to pending tasks
|
477
|
-
task_small: task
|
478
|
-
tasks: Tasks
|
479
446
|
total_tasks: Total %{value}
|
480
447
|
view_assigned_tasks: view assigned tasks
|
481
448
|
view_pending_tasks: view pending tasks
|
482
|
-
|
483
|
-
# Views -> Team.
|
484
|
-
#----------------------------------------------------------------------------
|
485
449
|
unassigned_opportunities: Unassigned Opportunities
|
486
450
|
no_opportunities_found: There are currently no outstanding opportunities.
|
487
|
-
|
488
|
-
# Views -> Home.
|
489
|
-
#----------------------------------------------------------------------------
|
490
451
|
action_completed: completed
|
491
452
|
action_create: created
|
492
453
|
action_destroy: deleted
|
@@ -515,7 +476,6 @@ en-GB:
|
|
515
476
|
update_past_participle: Updates
|
516
477
|
destroy_past_participle: Deletions
|
517
478
|
all_events_past_participle: Activities
|
518
|
-
|
519
479
|
my_tasks: My Tasks
|
520
480
|
no_task_records: You have no tasks.
|
521
481
|
my_opportunities: My Opportunities
|
@@ -523,30 +483,27 @@ en-GB:
|
|
523
483
|
my_accounts: My Accounts
|
524
484
|
no_account_records: You have no accounts
|
525
485
|
not_showing_hidden_entities: Not showing %{count} hidden %{entity}.
|
526
|
-
|
527
|
-
# Views -> Common.
|
528
|
-
#----------------------------------------------------------------------------
|
529
486
|
add_note: Add Note
|
530
487
|
save_note: Save Note
|
531
488
|
add_note_help: Add a new note...
|
532
489
|
edit_note: Edit Note
|
533
|
-
added_ago: added %{value}
|
534
|
-
added_by: added %{time_ago}
|
490
|
+
added_ago: added %{value}
|
491
|
+
added_by: added %{time_ago} by %{user}
|
535
492
|
back: Back
|
536
493
|
cancel: Cancel
|
537
494
|
close_form: Close form
|
538
495
|
comment_intro: You can add comments later.
|
539
496
|
confirm_delete: Are you sure you want to delete this %{value}?
|
540
497
|
copy_permissions: Copy %{value} permissions
|
541
|
-
could_not_find:
|
542
|
-
could_not_find_matching:
|
498
|
+
could_not_find: Couldn't find any %{value}. Feel free to
|
499
|
+
could_not_find_matching: Couldn't find any %{value} matching
|
543
500
|
create_new: create new
|
544
501
|
create_a_new: create a new
|
545
502
|
select_existing: select existing
|
546
503
|
delete: Delete
|
547
504
|
discard: Discard
|
548
505
|
edit: Edit
|
549
|
-
items_total: '%{count} total.'
|
506
|
+
items_total: ! '%{count} total.'
|
550
507
|
less: Less...
|
551
508
|
me: me
|
552
509
|
more: More...
|
@@ -563,11 +520,11 @@ en-GB:
|
|
563
520
|
select_task: Select Task
|
564
521
|
select_opportunity: Select Opportunity
|
565
522
|
search_assets: Search %{value}
|
566
|
-
time_ago:
|
523
|
+
time_ago: ! '%{value} ago'
|
567
524
|
background_info: Background
|
568
525
|
address: Address
|
569
|
-
street1: Street 1
|
570
|
-
street2: Street 2
|
526
|
+
street1: Street 1
|
527
|
+
street2: Street 2
|
571
528
|
city: City
|
572
529
|
zipcode: Post Code
|
573
530
|
state: County
|
@@ -577,9 +534,6 @@ en-GB:
|
|
577
534
|
collapse_all: Collapse all
|
578
535
|
expanded: Expanded
|
579
536
|
collapsed: Collapsed
|
580
|
-
|
581
|
-
# Views -> Layout.
|
582
|
-
#----------------------------------------------------------------------------
|
583
537
|
about: About
|
584
538
|
about_dev_group: Discussion group for developers
|
585
539
|
about_features: Features and bugs
|
@@ -588,24 +542,22 @@ en-GB:
|
|
588
542
|
about_ffc_version: Fat Free CRM version
|
589
543
|
about_home_page: Home page
|
590
544
|
about_project_page: Project page
|
591
|
-
about_thank_you: Thank you for using Fat Free CRM! We appreciate your business and
|
545
|
+
about_thank_you: Thank you for using Fat Free CRM! We appreciate your business and
|
546
|
+
hope you enjoy using the software.
|
592
547
|
about_twitter: Twitter commit updates
|
593
548
|
about_user_group: Discussion group for users
|
594
549
|
admin: Admin
|
595
550
|
logout: Logout
|
596
551
|
quick_find: Quick find
|
597
552
|
welcome: Welcome
|
598
|
-
|
599
|
-
# Views -> Advanced Search.
|
600
553
|
accounts_advanced_search: Accounts Advanced search
|
601
554
|
advanced_search: Advanced search
|
602
555
|
advanced_search_submit: Search
|
603
556
|
advanced_search_add_group: Add a group of filters
|
604
557
|
advanced_search_group_first: Show results where %{combinator} of the following match
|
605
|
-
advanced_search_group_rest: ...and where %{combinator} of the following match
|
558
|
+
advanced_search_group_rest: ! '...and where %{combinator} of the following match'
|
606
559
|
advanced_search_add_condition: Add a filter
|
607
560
|
advanced_search_remove_condition: Remove filter
|
608
|
-
|
609
561
|
ransack:
|
610
562
|
predicates:
|
611
563
|
eq: is
|
@@ -618,11 +570,8 @@ en-GB:
|
|
618
570
|
not_cont: doesn't contain
|
619
571
|
blank: is blank
|
620
572
|
present: is present
|
621
|
-
|
573
|
+
'null': is null
|
622
574
|
not_null: is not null
|
623
|
-
|
624
|
-
# Views -> Comments.
|
625
|
-
#----------------------------------------------------------------------------
|
626
575
|
comment: Comment
|
627
576
|
edit_comment: Editing comment
|
628
577
|
show: Show
|
@@ -631,38 +580,26 @@ en-GB:
|
|
631
580
|
notifications_tooltip: Subscribers will receive new comments via email
|
632
581
|
subscribe_via_email: Subscribe via email
|
633
582
|
disable_email_subscriptions: Disable email subscription
|
634
|
-
|
635
|
-
# Views -> Emails.
|
636
|
-
#----------------------------------------------------------------------------
|
637
|
-
email: Email
|
638
|
-
|
639
|
-
# Views -> Passwords.
|
640
|
-
#----------------------------------------------------------------------------
|
583
|
+
added_note: added note %{value}
|
641
584
|
confirm_password_intro: Please type your new password and then confirm it.
|
642
|
-
password_intro: Please specify your email address, and the instructions to reset
|
585
|
+
password_intro: Please specify your email address, and the instructions to reset
|
586
|
+
your password will be sent to you.
|
643
587
|
reset_password: Reset Password
|
644
588
|
update_password_and_login: Update Password and Login
|
645
|
-
|
646
|
-
# Views -> Admin
|
647
|
-
#----------------------------------------------------------------------------
|
648
589
|
back_to_crm: Back to Fat Free CRM
|
649
590
|
crm_admin_page: Fat Free CRM Administration
|
650
|
-
|
651
|
-
# Views -> Admin -> Groups
|
652
|
-
#----------------------------------------------------------------------------
|
653
591
|
create_group: Create Group
|
654
592
|
save_group: Save Group
|
655
593
|
group_members: members
|
656
594
|
groups: Groups
|
657
595
|
groups_small: groups
|
658
596
|
group_small: group
|
659
|
-
confirm_group_delete: Are you sure you wish to delete this group? There are %{count}
|
660
|
-
|
661
|
-
# Views -> Admin -> Users.
|
662
|
-
#----------------------------------------------------------------------------
|
597
|
+
confirm_group_delete: Are you sure you wish to delete this group? There are %{count}
|
598
|
+
items that still reference it.
|
663
599
|
approve: Approve
|
664
600
|
create_user: Create User
|
665
601
|
last_seen: last seen %{value} ago
|
602
|
+
last_seen2: last seen %{value}
|
666
603
|
personal_information: Personal Information
|
667
604
|
reactivate: Reactivate
|
668
605
|
save_user: Save User
|
@@ -672,7 +609,7 @@ en-GB:
|
|
672
609
|
user_awaits_approval: awaits your approval
|
673
610
|
user_confirm_delete: A user can only be deleted if no related assets are left behind.
|
674
611
|
user_is_admin: The user is Administrator
|
675
|
-
user_never_logged_in:
|
612
|
+
user_never_logged_in: hasn't logged in yet
|
676
613
|
user_signed_up: Signed Up
|
677
614
|
user_signed_up_on: signed up on %{value}
|
678
615
|
user_since: user since %{value}
|
@@ -680,100 +617,72 @@ en-GB:
|
|
680
617
|
user_suspended_on: suspended on %{value}
|
681
618
|
users: Users
|
682
619
|
users_small: users
|
683
|
-
|
684
|
-
# Views -> Versions
|
685
|
-
#----------------------------------------------------------------------------
|
686
620
|
versions: History
|
687
621
|
version:
|
688
|
-
create: %{item} created by %{by}
|
689
|
-
update: %{item} modified by %{by}
|
690
|
-
destroy: %{item} destroyed by %{by}
|
691
|
-
set_html: %{attr} set to %{to}
|
692
|
-
unset_html: %{attr} unset
|
693
|
-
change_html: %{attr} changed from %{from} to %{to}
|
622
|
+
create: ! '%{item} created by %{by}'
|
623
|
+
update: ! '%{item} modified by %{by}'
|
624
|
+
destroy: ! '%{item} destroyed by %{by}'
|
625
|
+
set_html: ! '%{attr} set to %{to}'
|
626
|
+
unset_html: ! '%{attr} unset'
|
627
|
+
change_html: ! '%{attr} changed from %{from} to %{to}'
|
694
628
|
anonymous: anonymous
|
695
|
-
|
696
|
-
# Export.
|
697
|
-
#----------------------------------------------------------------------------
|
698
629
|
to_xls: Export to Excel
|
699
630
|
to_csv: Export to comma-delimited file format (including deleted records)
|
700
631
|
to_rss: RSS feed
|
701
632
|
to_atom: Atom feed
|
702
|
-
|
703
|
-
# Dropbox.
|
704
|
-
#----------------------------------------------------------------------------
|
705
633
|
dropbox_notification_subject: dropbox - Added email - %{subject}
|
706
634
|
dropbox_notification_intro: Succesfully added the email you sent to dropbox
|
707
635
|
dropbox_notification_to: Added to
|
708
636
|
subject: Subject
|
709
637
|
body: Body
|
710
|
-
|
711
|
-
# Comment Inbox
|
712
|
-
#----------------------------------------------------------------------------
|
713
638
|
comment_notification:
|
714
|
-
intro:
|
715
|
-
reply_instructions:
|
716
|
-
|
717
|
-
# Lists
|
718
|
-
#----------------------------------------------------------------------------
|
639
|
+
intro: ! '%{user_full_name} commented on %{entity_type}: %{entity_name}'
|
640
|
+
reply_instructions: Reply to this email directly to add a new comment, or view
|
641
|
+
the %{entity} online
|
719
642
|
lists: Lists
|
720
643
|
list: List
|
721
644
|
no_saved_lists: No saved lists
|
722
645
|
make_current_view_list: Make current view a list
|
723
|
-
list_name_info: If you use the name of an existing list, you will overwrite that
|
724
|
-
|
725
|
-
# Pluralizations.
|
726
|
-
#----------------------------------------------------------------------------
|
646
|
+
list_name_info: If you use the name of an existing list, you will overwrite that
|
647
|
+
list with your current settings
|
727
648
|
pluralize:
|
728
649
|
comment:
|
729
|
-
one:
|
730
|
-
other: '%{count} comments'
|
650
|
+
one: 1 comment
|
651
|
+
other: ! '%{count} comments'
|
731
652
|
contact:
|
732
|
-
one:
|
733
|
-
other: '%{count} contacts'
|
653
|
+
one: 1 contact
|
654
|
+
other: ! '%{count} contacts'
|
734
655
|
opportunity:
|
735
|
-
one:
|
736
|
-
other: '%{count} opportunities'
|
656
|
+
one: 1 opportunity
|
657
|
+
other: ! '%{count} opportunities'
|
737
658
|
lead:
|
738
|
-
one:
|
739
|
-
other: '%{count} leads'
|
659
|
+
one: 1 lead
|
660
|
+
other: ! '%{count} leads'
|
740
661
|
day:
|
741
|
-
one:
|
742
|
-
other: '%{count} days'
|
662
|
+
one: 1 day
|
663
|
+
other: ! '%{count} days'
|
743
664
|
login:
|
744
|
-
one:
|
745
|
-
other: '%{count} logins'
|
746
|
-
|
747
|
-
# Custom date/time formats.
|
748
|
-
#----------------------------------------------------------------------------
|
665
|
+
one: 1 login
|
666
|
+
other: ! '%{count} logins'
|
749
667
|
date:
|
750
668
|
formats:
|
751
|
-
mmddyyyy:
|
752
|
-
mmdd:
|
753
|
-
mmddyy:
|
754
|
-
|
669
|
+
mmddyyyy: ! '%Y-%m-%d'
|
670
|
+
mmdd: ! '%e %b'
|
671
|
+
mmddyy: ! '%e %b, %Y'
|
755
672
|
time:
|
756
673
|
formats:
|
757
|
-
mmddhhss:
|
758
|
-
mmddyyyy_hhmm:
|
759
|
-
|
760
|
-
# will_paginate translations copied from 'en-US'
|
761
|
-
#----------------------------------------------------------------------------
|
674
|
+
mmddhhss: ! '%e %b at %l:%M%p'
|
675
|
+
mmddyyyy_hhmm: ! '%e %b %Y at %l:%M%p'
|
762
676
|
will_paginate:
|
763
|
-
previous_label:
|
764
|
-
next_label:
|
765
|
-
page_gap:
|
677
|
+
previous_label: ! '← Previous'
|
678
|
+
next_label: Next →
|
679
|
+
page_gap: ! '…'
|
766
680
|
page_entries_info:
|
767
681
|
single_page:
|
768
|
-
zero:
|
769
|
-
one:
|
770
|
-
other:
|
771
|
-
|
772
|
-
multi_page: "Displaying %{plural} %{from} - %{to} of %{total} in total"
|
773
|
-
|
774
|
-
|
775
|
-
# Views -> Admin -> Custom Fields
|
776
|
-
#----------------------------------------------------------------------------
|
682
|
+
zero: No %{plural} found
|
683
|
+
one: Displaying 1 %{name}
|
684
|
+
other: Displaying all %{count} %{plural}
|
685
|
+
multi_page: Displaying %{plural} %{from} - %{to} of %{total} in total
|
777
686
|
label: Label
|
778
687
|
custom_fields: Custom Fields
|
779
688
|
custom_field_options: Custom Field Options
|
@@ -782,105 +691,78 @@ en-GB:
|
|
782
691
|
create_field_group: Create field group
|
783
692
|
edit_field_group: Edit field group
|
784
693
|
save_field_group: Save field group
|
785
|
-
|
786
694
|
field_group_empty: There are no fields in this group.
|
787
|
-
|
788
695
|
select_or_create_tags: Select some tags, or create a new tag by pressing 'enter'.
|
789
|
-
|
790
696
|
restrict_by_tag: Restrict by Tag
|
791
697
|
restrict_by_tag_info: Only show fields for %{assets} that are tagged with
|
792
698
|
field_group_tag_restriction: This field group applies to %{assets} tagged with "%{tag}"
|
793
699
|
field_group_unrestricted: This field group applies to all %{assets}
|
794
|
-
field_group_confirm_delete: If a field group is deleted, any fields will be moved
|
700
|
+
field_group_confirm_delete: If a field group is deleted, any fields will be moved
|
701
|
+
to the default field group.
|
795
702
|
msg_cant_delete_field_group: Field Group could not be deleted.
|
703
|
+
admin_fields_info: ! 'Custom fields are displayed in groups.
|
796
704
|
|
797
|
-
admin_fields_info: |
|
798
|
-
Custom fields are displayed in groups.
|
799
705
|
Create a new field group, or add fields to one of the groups below.<br />
|
800
|
-
You can drag and drop fields to change their display order or move them between field groups.
|
801
706
|
|
802
|
-
|
803
|
-
|
707
|
+
You can drag and drop fields to change their display order or move them between
|
708
|
+
field groups.
|
709
|
+
|
710
|
+
'
|
804
711
|
tags: Tags
|
805
712
|
tag_small: tag
|
806
713
|
tagged: Tagged
|
807
714
|
create_tag: Create Tag
|
808
715
|
save_tag: Save Tag
|
809
716
|
field_group_tags: Field Groups shown for this Tag
|
810
|
-
tag_with_taggings_confirm_delete:
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
# Views -> Admin -> Plugins
|
815
|
-
#----------------------------------------------------------------------------
|
717
|
+
tag_with_taggings_confirm_delete: If this tag is deleted, it will be removed from
|
718
|
+
%{value} records.
|
719
|
+
msg_cant_delete_tag: Couldn't delete '%{value}' since it has associated Field Groups.
|
816
720
|
views:
|
817
721
|
admin:
|
818
722
|
plugins:
|
819
723
|
author: Author
|
820
724
|
version: Version
|
821
725
|
description: Description
|
822
|
-
|
823
|
-
|
824
|
-
# Simple Form translations
|
825
|
-
#----------------------------------------------------------------------------
|
826
726
|
simple_form:
|
827
|
-
|
828
|
-
|
727
|
+
'yes': 'Yes'
|
728
|
+
'no': 'No'
|
829
729
|
required:
|
830
|
-
text:
|
831
|
-
mark: '*'
|
832
|
-
# You can uncomment the line below if you need to overwrite the whole required html.
|
833
|
-
# When using html, text and mark won't be used.
|
834
|
-
# html: '<abbr title="required">*</abbr>'
|
730
|
+
text: required
|
731
|
+
mark: ! '*'
|
835
732
|
error_notification:
|
836
|
-
default_message:
|
837
|
-
# Labels and hints examples
|
838
|
-
# labels:
|
839
|
-
# password: 'Password'
|
840
|
-
# user:
|
841
|
-
# new:
|
842
|
-
# email: 'E-mail para efetuar o sign in.'
|
843
|
-
# edit:
|
844
|
-
# email: 'E-mail.'
|
845
|
-
# hints:
|
846
|
-
# username: 'User name to sign in.'
|
847
|
-
# password: 'No special characters, please.'
|
848
|
-
|
849
|
-
|
850
|
-
# Form field types
|
851
|
-
#----------------------------------------------------------------------------
|
733
|
+
default_message: ! 'Some errors were found, please take a look:'
|
852
734
|
field_types:
|
853
735
|
string:
|
854
|
-
title:
|
736
|
+
title: Short Answer
|
855
737
|
text:
|
856
|
-
title:
|
738
|
+
title: Long Answer
|
857
739
|
select:
|
858
|
-
title:
|
859
|
-
multiselect:
|
860
|
-
title:
|
740
|
+
title: Select List
|
741
|
+
multiselect:
|
742
|
+
title: Multi Select
|
861
743
|
radio:
|
862
|
-
title:
|
744
|
+
title: Radio Buttons
|
863
745
|
boolean:
|
864
|
-
title:
|
746
|
+
title: Checkbox
|
865
747
|
check_boxes:
|
866
|
-
title:
|
748
|
+
title: Checkbox List
|
867
749
|
date:
|
868
|
-
title:
|
750
|
+
title: Date
|
869
751
|
date_pair:
|
870
|
-
title:
|
752
|
+
title: Date Pair
|
871
753
|
datetime:
|
872
|
-
title:
|
754
|
+
title: Date & Time
|
873
755
|
datetime_pair:
|
874
|
-
title:
|
756
|
+
title: Date & Time Pair
|
875
757
|
email:
|
876
|
-
title:
|
758
|
+
title: Email Address
|
877
759
|
url:
|
878
|
-
title:
|
760
|
+
title: URL
|
879
761
|
tel:
|
880
|
-
title:
|
762
|
+
title: Phone Number
|
881
763
|
decimal:
|
882
|
-
title:
|
764
|
+
title: Number (Decimal)
|
883
765
|
integer:
|
884
|
-
title:
|
766
|
+
title: Number (Integer)
|
885
767
|
float:
|
886
|
-
title:
|
768
|
+
title: Number (Floating Point)
|