Commit d74380135d18eafc45e4f04b15dc07731564b41f
Committed by
Diego Camarinha
1 parent
b608a621
Exists in
colab
and in
4 other branches
Fixing english errors, blank spaces and strings in general.
Signed off by: Renan Fichberg <rfichberg@gmail.com> Signed off by: Alessandro Palmeira <alessandro.palmeira@gmail.com> Signed off by: Daniel Alves <danpaulalves@gmail.com> Signed off by: Daniel Bucher <daniel.bucher88@gmail.com> Signed off by: Diego Araujo <diegoamc90@gmail.com> Signed off by: Heitor Reis <marcheing@gmail.com> Signed off by: Rafael Manzo <rr.manzo@gmail.com> Signed off by: Renan Fichberg <rfichberg@gmail.com>
Showing
29 changed files
with
51 additions
and
58 deletions
Show diff stats
app/assets/javascripts/module/graphic.js.coffee
app/controllers/mezuro_configurations_controller.rb
| ... | ... | @@ -75,7 +75,7 @@ class MezuroConfigurationsController < ApplicationController |
| 75 | 75 | if @mezuro_configuration.save |
| 76 | 76 | current_user.mezuro_configuration_ownerships.create mezuro_configuration_id: @mezuro_configuration.id |
| 77 | 77 | |
| 78 | - format.html { redirect_to mezuro_configuration_path(@mezuro_configuration.id), notice: 'mezuro configuration was successfully created.' } | |
| 78 | + format.html { redirect_to mezuro_configuration_path(@mezuro_configuration.id), notice: 'Configuration was successfully created.' } | |
| 79 | 79 | format.json { render action: 'show', status: :created, location: @mezuro_configuration } |
| 80 | 80 | else |
| 81 | 81 | format.html { render action: 'new' } | ... | ... |
app/controllers/mezuro_ranges_controller.rb
| ... | ... | @@ -38,11 +38,11 @@ class MezuroRangesController < ApplicationController |
| 38 | 38 | @mezuro_range.metric_configuration_id = @metric_configuration_id |
| 39 | 39 | if @mezuro_range.update(mezuro_range_params) |
| 40 | 40 | format.html { redirect_to mezuro_configuration_metric_configuration_path( |
| 41 | - @mezuro_configuration_id, @metric_configuration_id), notice: 'The range was successfully edited.' } | |
| 41 | + @mezuro_configuration_id, @metric_configuration_id), notice: 'Range was successfully edited.' } | |
| 42 | 42 | format.json { head :no_content } |
| 43 | 43 | else |
| 44 | 44 | failed_action(format, 'edit') |
| 45 | - end | |
| 45 | + end | |
| 46 | 46 | end |
| 47 | 47 | end |
| 48 | 48 | |
| ... | ... | @@ -56,7 +56,7 @@ class MezuroRangesController < ApplicationController |
| 56 | 56 | def create_and_redir(format) |
| 57 | 57 | if @mezuro_range.save |
| 58 | 58 | format.html { redirect_to mezuro_configuration_metric_configuration_path( |
| 59 | - @mezuro_configuration_id, @metric_configuration_id), notice: 'The range was successfully created.' } | |
| 59 | + @mezuro_configuration_id, @metric_configuration_id), notice: 'Range was successfully created.' } | |
| 60 | 60 | else |
| 61 | 61 | failed_action(format, 'new') |
| 62 | 62 | end | ... | ... |
app/controllers/reading_groups_controller.rb
| ... | ... | @@ -31,7 +31,7 @@ class ReadingGroupsController < ApplicationController |
| 31 | 31 | |
| 32 | 32 | # GET /reading_groups/1/edit |
| 33 | 33 | # GET /reading_groups/1/edit.json |
| 34 | - def edit; end | |
| 34 | + def edit; end | |
| 35 | 35 | |
| 36 | 36 | def update |
| 37 | 37 | if @reading_group.update(reading_group_params) |
| ... | ... | @@ -53,7 +53,7 @@ class ReadingGroupsController < ApplicationController |
| 53 | 53 | end |
| 54 | 54 | |
| 55 | 55 | private |
| 56 | - | |
| 56 | + | |
| 57 | 57 | # Use callbacks to share common setup or constraints between actions. |
| 58 | 58 | def set_reading_group |
| 59 | 59 | @reading_group = ReadingGroup.find(params[:id]) | ... | ... |
app/controllers/repositories_controller.rb
app/helpers/metric_configurations_helper.rb
app/helpers/mezuro_ranges_helper.rb
app/models/concerns/kalibro_record.rb
app/models/date_module_result.rb
app/models/module_result.rb
| ... | ... | @@ -8,7 +8,7 @@ class ModuleResult < KalibroGatekeeperClient::Entities::ModuleResult |
| 8 | 8 | def history |
| 9 | 9 | self.class.history_of(@id).map { |date_module_result| DateModuleResult.new date_module_result.to_hash } |
| 10 | 10 | end |
| 11 | - | |
| 11 | + | |
| 12 | 12 | def metric_history(name) |
| 13 | 13 | grade_history = Hash.new |
| 14 | 14 | ... | ... |
app/models/reading.rb
| 1 | 1 | class Reading < KalibroGatekeeperClient::Entities::Reading |
| 2 | 2 | include KalibroRecord |
| 3 | - | |
| 3 | + | |
| 4 | 4 | attr_accessor :label, :grade, :color |
| 5 | 5 | |
| 6 | 6 | validates :label, presence: true, kalibro_uniqueness: true |
| 7 | 7 | validates :grade, presence: true, numericality: true |
| 8 | 8 | validates :color, presence: true |
| 9 | - | |
| 10 | 9 | end | ... | ... |
app/models/user.rb
| ... | ... | @@ -9,16 +9,14 @@ class User < ActiveRecord::Base |
| 9 | 9 | validates :email, uniqueness: true |
| 10 | 10 | |
| 11 | 11 | has_many :project_ownerships |
| 12 | - | |
| 13 | 12 | has_many :reading_group_ownerships |
| 14 | - | |
| 15 | 13 | has_many :mezuro_configuration_ownerships |
| 16 | 14 | # Alert: when adding new parameters to this model, they should also be added to registrations_controller |
| 17 | 15 | |
| 18 | 16 | def projects |
| 19 | 17 | project_ownerships.map { |project_ownership| project_ownership.project } |
| 20 | 18 | end |
| 21 | - | |
| 19 | + | |
| 22 | 20 | def reading_groups |
| 23 | 21 | reading_group_ownerships.map { |reading_group_ownership| reading_group_ownership.reading_group } |
| 24 | 22 | end | ... | ... |
app/models/validators/beginning_uniqueness_validator.rb
| ... | ... | @@ -2,7 +2,7 @@ class BeginningUniquenessValidator < ActiveModel::EachValidator |
| 2 | 2 | def validate_each(record, attribute, value) |
| 3 | 3 | record.class.ranges_of(record.metric_configuration_id).each do |mezuro_range| |
| 4 | 4 | if mezuro_range.beginning == value && mezuro_range.id != record.id |
| 5 | - record.errors[attribute] << "There's already a #{record.class} with #{attribute} #{value}! Please, choose another one." | |
| 5 | + record.errors[attribute] << "There is already a #{record.class} with #{attribute} #{value}! Please, choose another one." | |
| 6 | 6 | break |
| 7 | 7 | end |
| 8 | 8 | end | ... | ... |
app/models/validators/code_uniqueness_validator.rb
| ... | ... | @@ -2,7 +2,7 @@ class CodeUniquenessValidator < ActiveModel::EachValidator |
| 2 | 2 | def validate_each(record, attribute, value) |
| 3 | 3 | record.class.metric_configurations_of(record.configuration_id).each do |metric_configuration| |
| 4 | 4 | if metric_configuration.code == value && metric_configuration.id != record.id |
| 5 | - record.errors[attribute] << "There's already a #{record.class} with #{attribute} #{value}! Please, choose another one." | |
| 5 | + record.errors[attribute] << "There is already a #{record.class} with #{attribute} #{value}! Please, choose another one." | |
| 6 | 6 | break |
| 7 | 7 | end |
| 8 | 8 | end | ... | ... |
app/models/validators/greater_than_beginning_validator.rb
| 1 | 1 | class GreaterThanBeginningValidator < ActiveModel::EachValidator |
| 2 | 2 | def validate_each(record, attribute, value) |
| 3 | - if record.beginning.is_a?(String) || value.is_a?(String) #TOOO This will be useless when we start representing INF as ruby Infinity with the new Kalibro configuration application. | |
| 3 | + if record.beginning.is_a?(String) || value.is_a?(String) #TODO This will be useless when we start representing INF as ruby Infinity with the new Kalibro configuration application. | |
| 4 | 4 | if record.beginning=="INF" || value=="-INF" || record.beginning == value |
| 5 | 5 | add_error(record,attribute) |
| 6 | 6 | end |
| ... | ... | @@ -12,7 +12,7 @@ class GreaterThanBeginningValidator < ActiveModel::EachValidator |
| 12 | 12 | private |
| 13 | 13 | |
| 14 | 14 | def add_error(record, attribute) |
| 15 | - record.errors[attribute] << "The end value should be greater than the beginning value." | |
| 15 | + record.errors[attribute] << "The End value should be greater than the Beginning value." | |
| 16 | 16 | end |
| 17 | 17 | |
| 18 | 18 | end | ... | ... |
app/models/validators/kalibro_uniqueness_validator.rb
| ... | ... | @@ -2,7 +2,7 @@ class KalibroUniquenessValidator < ActiveModel::EachValidator |
| 2 | 2 | def validate_each(record, attribute, value) |
| 3 | 3 | record.class.all.each do |entity| |
| 4 | 4 | if (entity.send(attribute) == value) and (entity.id != record.id) |
| 5 | - record.errors[attribute] << "There's already a #{record.class} with #{attribute} #{value}! Please, choose another one." | |
| 5 | + record.errors[attribute] << "There is already a #{record.class} with #{attribute} #{value}! Please, choose another one." | |
| 6 | 6 | break |
| 7 | 7 | end |
| 8 | 8 | end | ... | ... |
app/models/validators/range_overlapping_validator.rb
| ... | ... | @@ -2,7 +2,7 @@ class RangeOverlappingValidator < ActiveModel::Validator |
| 2 | 2 | def validate(record) |
| 3 | 3 | record.class.ranges_of(record.metric_configuration_id).each do |mezuro_range| |
| 4 | 4 | if mezuro_range.id != record.id && overlaps?(mezuro_range,record) |
| 5 | - record.errors[:beginning] << "There's already a #{record.class} within these boundaries! Please, choose another ones." | |
| 5 | + record.errors[:beginning] << "There is already a #{record.class} within these boundaries! Please, choose another interval." | |
| 6 | 6 | break |
| 7 | 7 | end |
| 8 | 8 | end | ... | ... |
app/views/compound_metric_configurations/_form.html.erb
| ... | ... | @@ -13,10 +13,10 @@ |
| 13 | 13 | </div> |
| 14 | 14 | <div class="help-container"> |
| 15 | 15 | <p> |
| 16 | - Code it is a variable that holds the value of a metric analysis. It's used inside a compound metric | |
| 16 | + Code is a variable that keeps the value of a metric analysis. It is used inside a compound metric. | |
| 17 | 17 | </p> |
| 18 | 18 | <p> |
| 19 | - Example : | |
| 19 | + Example: | |
| 20 | 20 | Code foo := 10 |
| 21 | 21 | </p> |
| 22 | 22 | </div> |
| ... | ... | @@ -29,7 +29,7 @@ |
| 29 | 29 | </div> |
| 30 | 30 | <div class="help-container"> |
| 31 | 31 | <p> |
| 32 | - It's the weight of the metric | |
| 32 | + It is the weight of the metric. | |
| 33 | 33 | </p> |
| 34 | 34 | </div> |
| 35 | 35 | </div> |
| ... | ... | @@ -44,7 +44,7 @@ |
| 44 | 44 | </div> |
| 45 | 45 | <div class="help-container"> |
| 46 | 46 | <p> |
| 47 | - The reading group that is associated with this metric | |
| 47 | + The Reading Group associated with this metric. | |
| 48 | 48 | </p> |
| 49 | 49 | </div> |
| 50 | 50 | </div> | ... | ... |
app/views/compound_metric_configurations/_metric_options.html.erb
app/views/compound_metric_configurations/show.html.erb
| ... | ... | @@ -7,7 +7,7 @@ |
| 7 | 7 | <% if @compound_metric_configuration.metric.description.nil? %> |
| 8 | 8 | <%= "There is no description available." %> |
| 9 | 9 | <% else %> |
| 10 | - <%= @compound_metric_configuration.metric.description %> | |
| 10 | + <%= @compound_metric_configuration.metric.description %> | |
| 11 | 11 | <% end %> |
| 12 | 12 | </p> |
| 13 | 13 | |
| ... | ... | @@ -45,7 +45,7 @@ |
| 45 | 45 | |
| 46 | 46 | <h2> Ranges </h2> |
| 47 | 47 | <% if mezuro_configuration_owner? @compound_metric_configuration.configuration_id %> |
| 48 | - <%= link_to 'Add Range', mezuro_configuration_metric_configuration_new_mezuro_range_path(@compound_metric_configuration.configuration_id, | |
| 48 | + <%= link_to 'Add Range', mezuro_configuration_metric_configuration_new_mezuro_range_path(@compound_metric_configuration.configuration_id, | |
| 49 | 49 | @compound_metric_configuration.id), class: 'btn btn-info' %> |
| 50 | 50 | <% end %> |
| 51 | 51 | |
| ... | ... | @@ -72,7 +72,7 @@ |
| 72 | 72 | <%= link_to 'Back', mezuro_configuration_path(@compound_metric_configuration.configuration_id), class: 'btn btn-default' %> |
| 73 | 73 | <% if mezuro_configuration_owner? @compound_metric_configuration.configuration_id %> |
| 74 | 74 | <%= link_to 'Destroy Metric Configuration', mezuro_configuration_metric_configuration_path(@compound_metric_configuration.configuration_id, |
| 75 | - @compound_metric_configuration.id), method: :delete, data: { confirm: 'Are you sure that you want to destroy this metric configuration?' }, | |
| 75 | + @compound_metric_configuration.id), method: :delete, data: { confirm: 'Are you sure that you want to destroy this Metric Configuration?' }, | |
| 76 | 76 | class: 'btn btn-danger' %> |
| 77 | 77 | <% end %> |
| 78 | 78 | </p> | ... | ... |
app/views/devise/mailer/reset_password_instructions.html.erb
| 1 | 1 | <p>Hello <%= @resource.email %>!</p> |
| 2 | 2 | |
| 3 | -<p>Someone has requested a link to change your password. You can do this through the link below.</p> | |
| 3 | +<p>Someone has requested a link to change your password. You can do this through the link below:</p> | |
| 4 | 4 | |
| 5 | 5 | <p><%= link_to 'Change my password', edit_password_url(@resource, :reset_password_token => @token) %></p> |
| 6 | 6 | |
| 7 | -<p>If you didn't request this, please ignore this email.</p> | |
| 8 | -<p>Your password won't change until you access the link above and create a new one.</p> | |
| 7 | +<p>If you did not request this, please ignore this email.</p> | |
| 8 | +<p>Your password will not change until you access the link above and create a new one.</p> | ... | ... |
app/views/devise/passwords/new.html.erb
app/views/devise/registrations/edit.html.erb
| ... | ... | @@ -14,7 +14,7 @@ |
| 14 | 14 | </div> |
| 15 | 15 | <div class="help-container"> |
| 16 | 16 | <p> |
| 17 | - Your full name! | |
| 17 | + Your full name. | |
| 18 | 18 | </p> |
| 19 | 19 | </div> |
| 20 | 20 | </div> |
| ... | ... | @@ -30,19 +30,19 @@ |
| 30 | 30 | </div> |
| 31 | 31 | <div class="help-container"> |
| 32 | 32 | <p> |
| 33 | - Your email is the form of communication we have with you, so make sure you typed it correctly! | |
| 33 | + Your email is our communication channel. Make sure you have typed it correctly. | |
| 34 | 34 | </p> |
| 35 | 35 | </div> |
| 36 | 36 | </div> |
| 37 | 37 | |
| 38 | 38 | <div class="form-row"> |
| 39 | 39 | <div class="field-container"> |
| 40 | - <%= f.label :password, class: 'control-label' %> <i>(leave blank if you don't want to change it)</i><br /> | |
| 40 | + <%= f.label :password, class: 'control-label' %> <i>(leave it blank if you do not want to change it)</i><br /> | |
| 41 | 41 | <%= f.password_field :password, :autocomplete => "off", class: 'text-field' %> |
| 42 | 42 | </div> |
| 43 | 43 | <div class="help-container"> |
| 44 | 44 | <p> |
| 45 | - Your password must be at least 8 characters. Strong passwords contain characters in upper and lowercase, numbers and symbols. | |
| 45 | + Your password must have at least 8 characters. Strong passwords contain numbers, symbols, upper and lowercase characters. | |
| 46 | 46 | </p> |
| 47 | 47 | </div> |
| 48 | 48 | </div> |
| ... | ... | @@ -54,7 +54,7 @@ |
| 54 | 54 | </div> |
| 55 | 55 | <div class="help-container"> |
| 56 | 56 | <p> |
| 57 | - Confirm your password! | |
| 57 | + Confirm your password. | |
| 58 | 58 | </p> |
| 59 | 59 | </div> |
| 60 | 60 | </div> |
| ... | ... | @@ -66,7 +66,7 @@ |
| 66 | 66 | </div> |
| 67 | 67 | <div class="help-container"> |
| 68 | 68 | <p> |
| 69 | - We need your current password to confirm your changes! | |
| 69 | + Your current password is needed to confirm your changes. | |
| 70 | 70 | </p> |
| 71 | 71 | </div> |
| 72 | 72 | </div> |
| ... | ... | @@ -82,4 +82,4 @@ |
| 82 | 82 | |
| 83 | 83 | <h2>Cancel my account</h2> |
| 84 | 84 | |
| 85 | -<p>Unhappy? <%= button_to "Cancel my account", registration_path(resource_name), :data => { :confirm => "Are you sure?" }, :method => :delete, class: 'btn btn-danger' %></p> | |
| 85 | +<p>Unhappy? <%= button_to "Cancel my account", registration_path(resource_name), :data => { :confirm => "Do you really want to cancel your account?" }, :method => :delete, class: 'btn btn-danger' %></p> | ... | ... |
app/views/devise/registrations/new.html.erb
| ... | ... | @@ -14,7 +14,7 @@ |
| 14 | 14 | </div> |
| 15 | 15 | <div class="help-container"> |
| 16 | 16 | <p> |
| 17 | - Your full name! | |
| 17 | + Your full name. | |
| 18 | 18 | </p> |
| 19 | 19 | </div> |
| 20 | 20 | </div> |
| ... | ... | @@ -26,7 +26,7 @@ |
| 26 | 26 | </div> |
| 27 | 27 | <div class="help-container"> |
| 28 | 28 | <p> |
| 29 | - Your email is the form of communication we have with you, so make sure you typed it correctly! | |
| 29 | + Your email is our communication channel. Make sure you have typed it correctly. | |
| 30 | 30 | </p> |
| 31 | 31 | </div> |
| 32 | 32 | </div> |
| ... | ... | @@ -38,7 +38,7 @@ |
| 38 | 38 | </div> |
| 39 | 39 | <div class="help-container"> |
| 40 | 40 | <p> |
| 41 | - Your password must be at least 8 characters. Strong passwords contain characters in upper and lowercase, numbers and symbols. | |
| 41 | + Your password must have at least 8 characters. Strong passwords contain numbers, symbols, upper and lowercase characters. | |
| 42 | 42 | </p> |
| 43 | 43 | </div> |
| 44 | 44 | </div> |
| ... | ... | @@ -50,7 +50,7 @@ |
| 50 | 50 | </div> |
| 51 | 51 | <div class="help-container"> |
| 52 | 52 | <p> |
| 53 | - Confirm your password! | |
| 53 | + Confirm your password. | |
| 54 | 54 | </p> |
| 55 | 55 | </div> |
| 56 | 56 | </div> |
| ... | ... | @@ -58,6 +58,6 @@ |
| 58 | 58 | </div> |
| 59 | 59 | |
| 60 | 60 | <div class="row margin-left-none" style="margin-top: 20px"> |
| 61 | - <%= f.submit "Sign Up", class: 'btn btn-primary span2' %> | |
| 61 | + <%= f.submit "Sign Up", class: 'btn btn-primary span2' %> | |
| 62 | 62 | </div> |
| 63 | 63 | <% end %> | ... | ... |
app/views/devise/sessions/new.html.erb
| 1 | 1 | <div class="page-header"> |
| 2 | - <h1>Log in to Mezuro</h1> | |
| 2 | + <h1>Login into Mezuro</h1> | |
| 3 | 3 | </div> |
| 4 | 4 | |
| 5 | 5 | <%= form_for(resource, :as => resource_name, :url => session_path(resource_name),:html => { :class => "form-inline" }) do |f| %> |
| ... | ... | @@ -12,7 +12,7 @@ |
| 12 | 12 | </div> |
| 13 | 13 | <div class="help-container"> |
| 14 | 14 | <p> |
| 15 | - The same email address that you used on the sign up | |
| 15 | + The same email address used to sign up. | |
| 16 | 16 | </p> |
| 17 | 17 | </div> |
| 18 | 18 | </div> |
| ... | ... | @@ -28,7 +28,7 @@ |
| 28 | 28 | </div> |
| 29 | 29 | <div class="help-container"> |
| 30 | 30 | <p> |
| 31 | - If you <a href="/users/password/new">forgot your password</a> follow this link to reset it | |
| 31 | + If you forgot your password, follow this <a href="/users/password/new">link</a> to reset it. | |
| 32 | 32 | </p> |
| 33 | 33 | </div> |
| 34 | 34 | </div> |
| ... | ... | @@ -46,7 +46,7 @@ |
| 46 | 46 | </div> |
| 47 | 47 | <div class="help-container"> |
| 48 | 48 | <p> |
| 49 | - Stay logged in | |
| 49 | + Stay logged in. | |
| 50 | 50 | </p> |
| 51 | 51 | </div> |
| 52 | 52 | </div> | ... | ... |
app/views/devise/shared/_links.erb
| ... | ... | @@ -11,11 +11,11 @@ |
| 11 | 11 | <% end -%> --> |
| 12 | 12 | |
| 13 | 13 | <%- if devise_mapping.confirmable? && controller_name != 'confirmations' %> |
| 14 | - <%= link_to "Didn't receive confirmation instructions?", new_confirmation_path(resource_name), class: 'btn btn-info' %> | |
| 14 | + <%= link_to "Have you received confirmation instructions?", new_confirmation_path(resource_name), class: 'btn btn-info' %> | |
| 15 | 15 | <% end -%> |
| 16 | 16 | |
| 17 | 17 | <%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %> |
| 18 | - <%= link_to "Didn't receive unlock instructions?", new_unlock_path(resource_name), class: 'btn btn-info' %> | |
| 18 | + <%= link_to "Have you received unlock instructions?", new_unlock_path(resource_name), class: 'btn btn-info' %> | |
| 19 | 19 | <% end -%> |
| 20 | 20 | |
| 21 | 21 | <%- if devise_mapping.omniauthable? %> | ... | ... |
app/views/home/index.html.erb
| ... | ... | @@ -3,9 +3,9 @@ |
| 3 | 3 | |
| 4 | 4 | <p>This is Mezuro! A <strong>free/libre</strong> web platform for <strong>collaborative</strong> source code <strong>evaluation</strong>.</p> |
| 5 | 5 | |
| 6 | - <p>Here you can evaluate your source code with the most popular SCMs (Git SVN), just by providing it's URL. For now, you can evaluate <strong>C</strong>, <strong>C++</strong>, and <strong>Java</strong> source codes, but soon we hope to support more languages!</p> | |
| 6 | + <p>Here you can evaluate your source code with the most popular SCMs (like Git and SVN), just by providing its URL. For now, you can evaluate <strong>C</strong>, <strong>C++</strong> and <strong>Java</strong> source codes, but we hope to support more languages in the future.</p> | |
| 7 | 7 | |
| 8 | - <p> Mezuro is under development. Try it and give us your <%= link_to 'feedback', 'https://github.com/mezuro/mezuro/issues', target: '_blank' %>.</p> | |
| 8 | + <p> Mezuro is continuously under development. Try it and give us your <%= link_to 'feedback', 'https://github.com/mezuro/mezuro/issues', target: '_blank' %>.</p> | |
| 9 | 9 | </div> |
| 10 | 10 | |
| 11 | 11 | <h2>Latest projects</h2> | ... | ... |
app/views/layouts/application.html.erb
| ... | ... | @@ -97,7 +97,7 @@ |
| 97 | 97 | </div><!--/.well --> |
| 98 | 98 | </div><!--/span--> |
| 99 | 99 | <div class="span9"> |
| 100 | - <div class="alert alert-info" id="loader">Hold tight we're loading the page that you've requested!</div> | |
| 100 | + <div class="alert alert-info" id="loader">Wait an instant while we are loading the page that you have requested.</div> | |
| 101 | 101 | |
| 102 | 102 | <%= bootstrap_flash %> |
| 103 | 103 | <%= yield %> | ... | ... |
app/views/repositories/_unstarted_processing.html.erb
| 1 | -<p>This repository has no processings yet. Please hold tight that as soon as possible we'll start it!</p> | |
| 1 | +<p>This Repository has no processings yet. Please, wait an instant as we start it!</p> | |
| 2 | 2 | |
| 3 | 3 | <div id="processing_information"><%= image_tag 'loader.gif' %> Loading data. Please, wait.</div> |
| 4 | 4 | \ No newline at end of file | ... | ... |