mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1001 B
34 lines
1001 B
export default {
|
|
colorRules: {
|
|
colorRequired: 'Farbe wird benötigt'
|
|
},
|
|
labelNameRules: {
|
|
labelRequired: 'Labelname wird benötigt',
|
|
labelLessThan100Chars: 'Labelname muss kürzer als 100 Zeichen sein'
|
|
},
|
|
userNameRules: {
|
|
userNameRequired: 'Benutzername wird benötigt',
|
|
userNameLessThan30Chars: 'Benutzername muss kürzer als 30 Zeichen sein'
|
|
},
|
|
roleRules: {
|
|
roleRequired: 'Rolle wird benötigt'
|
|
},
|
|
projectName: {
|
|
required: 'Projektname wird benötigt',
|
|
maxLength: 'Projektname muss kürzer als 100 Zeichen sein'
|
|
},
|
|
description: {
|
|
required: 'Beschreibung wird benötigt'
|
|
},
|
|
fileFormatRules: {
|
|
fileFormatRequired: 'Dateiformat wird benötigt'
|
|
},
|
|
uploadFileRules: {
|
|
fileRequired: 'Datei(en) werden benötigt',
|
|
fileLessThan1MB: 'Dateigröße muss kleiner als 100 MB sein!'
|
|
},
|
|
passwordRules: {
|
|
passwordRequired: 'Passwort wird benötigt',
|
|
passwordLessThan30Chars: 'Passwort muss kürzer als 30 Zeichen sein'
|
|
}
|
|
}
|