Update Collection.lua

This commit is contained in:
IBims2CooleTim 2023-09-30 23:27:51 +02:00 committed by GitHub
parent c3afb8694c
commit a7142926be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,8 +1,8 @@
return {
CollectionNotFound = function(message: string):string
return ("[MarcSync Exception] CollectionNotFound: %s"):format(message)
return ("[MarkSynchronisationsausnahme] SammlungNichtGefunden: %s"):format(message)
end,
CollectionAlreadyExists = function(message: string):string
return ("[MarcSync Exception] CollectionAlreadyExists: %s"):format(message)
return ("[MarkSynchronisationsausnahme] SammlungExistiertBereits: %s"):format(message)
end
}
}