Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def params_for_create_snapshot
:id => 'name',
:label => _('Name'),
:isRequired => true,
:helperText => _('Must start with a letter and contain only letters, numbers, and underscores.'),
:helperText => _('Must start with a letter and contain only letters, numbers, and underscores'),
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See line 20 below... these were duplicated but one had a period.

:validate => [
{:type => 'required'},
{:type => 'pattern', :pattern => '^[a-zA-Z][a-zA-Z0-9_]*$', :message => _('Must start with a letter and contain only letters, numbers, and underscores')}
Expand All @@ -34,7 +34,7 @@ def params_for_create_snapshot
:onText => _('Yes'),
:offText => _('No'),
:isDisabled => current_state != 'on',
:helperText => _('Snapshotting the memory is only available if the VM is powered on.')
:helperText => _('Snapshotting the memory is only available if the VM is powered on')
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For consistency, I removed the period since this is often a phrase, partial sentence, or command.

}
]
}
Expand Down