Update Entry.lua

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

View File

@ -1,8 +1,8 @@
return { return {
InvalidEntryData = function(message: string):string InvalidEntryData = function(message: string):string
return ("[MarcSync Exception] InvalidEntryData: %s"):format(message) return ("[MarkSynchronisationsausnahme] InvaliedeEintragsDaten: %s"):format(message)
end, end,
EntryNotFound = function(message: string):string EntryNotFound = function(message: string):string
return ("[MarcSync Exception] EntryNotFound: %s"):format(message) return ("[MarkSynchronisationsausnahme] EintragNichtGefunden: %s"):format(message)
end end
} }