Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(ontology): update create ontology tooltip for unique name (DSP-1139) #500

Merged
merged 1 commit into from Aug 11, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -79,7 +79,7 @@ export class OntologyFormComponent implements OnInit {
'required': 'Name is required.',
'minlength': 'Name must be at least ' + this.nameMinLength + ' characters long.',
'maxlength': 'Name cannot be more than ' + this.nameMaxLength + ' characters long.',
'pattern': 'Name shouldn\'t start with a number or v + number and spaces or special characters are not allowed.',
'pattern': 'Name shouldn\'t start with a number or v + number and spaces or special characters (except dash, dot and underscore) are not allowed.',
'existingName': 'This name is not allowed or exists already.'
},
'label': {
Expand All @@ -93,7 +93,7 @@ export class OntologyFormComponent implements OnInit {
- must be at least 3 characters long
- shouldn't begin with a number
- shouldn't begin with the letter v and a number
- spaces or special characters are not allowed
- spaces or special characters (except dash, dot and underscore) are not allowed
- may not contain these reserved words: knora, ontology, salsah, shared, simple or standoff
- can't be changed afterwards
`;
Expand Down