date plugin overwritten

This commit is contained in:
Akamaru 2015-07-07 14:26:58 +02:00
parent 3b63b7b54e
commit 47f08e01a4
1 changed files with 28 additions and 2 deletions

View File

@ -1,10 +1,36 @@
function run(msg, matches)
return os.date("Heute ist der %d.%m.%Y und es ist %H:%M:%S")
text = os.date("Heute ist %A der %d. %B (%m) %Y und es ist %H:%M:%S %p Uhr")
-- Days
text = string.gsub(text, "Monday", "Montag")
text = string.gsub(text, "Tuesday", "Dienstag")
text = string.gsub(text, "Wednesday", "Mittwoch")
text = string.gsub(text, "Thursday", "Donnerstag")
text = string.gsub(text, "Friday", "Freitag")
text = string.gsub(text, "Saturday", "Samsstag")
text = string.gsub(text, "Sunday", "Sonntag")
-- Months
text = string.gsub(text, "January", "Januar")
text = string.gsub(text, "February", "Februar")
text = string.gsub(text, "March", "März")
text = string.gsub(text, "April", "April")
text = string.gsub(text, "May", "Mai")
text = string.gsub(text, "June", "Juni")
text = string.gsub(text, "July", "Juli")
text = string.gsub(text, "August", "August")
text = string.gsub(text, "September", "September")
text = string.gsub(text, "October", "Oktober")
text = string.gsub(text, "November", "November")
text = string.gsub(text, "December", "Dezember")
return text
end
return {
description = "Zeigt das aktuelle Datum und Zeit an",
usage = {"/date"},
patterns = {"^/date$"},
patterns = {"^/[D|d]ate$","^/[D|d]atum$"},
run = run
}
--by Akamaru [https://ponywave.de]