Rename audio_lib type "system" into "notifications"

This commit is contained in:
marco_a 2024-01-25 01:33:54 +01:00
parent c45a6df871
commit d31afad391
7 changed files with 10 additions and 10 deletions

View File

@ -3,7 +3,7 @@
# reviewer(s):
##[ src/_load.lua ]##
System=
Notifications=
Party invite jingle=
Someone joins the party=
Someone leaves the party=

View File

@ -3,7 +3,7 @@
# reviewer(s):
##[ src/_load.lua ]##
System=
Notifications=
Party invite jingle=
Someone joins the party=
Someone leaves the party=

View File

@ -3,7 +3,7 @@
# reviewer(s):
##[ src/_load.lua ]##
System=
Notifications=
Party invite jingle=
Someone joins the party=
Someone leaves the party=

View File

@ -3,7 +3,7 @@
# reviewer(s):
##[ src/_load.lua ]##
System=Sistema
Notifications=Notifiche
Party invite jingle=Motivetto d'invito al gruppo
Someone joins the party=Qualcunə entra nel gruppo
Someone leaves the party=Qualcunə abbandona il gruppo

View File

@ -3,7 +3,7 @@
# reviewer(s):
##[ src/_load.lua ]##
System=
Notifications=
Party invite jingle=
Someone joins the party=
Someone leaves the party=

View File

@ -3,7 +3,7 @@
# reviewer(s):
##[ src/_load.lua ]##
System=
Notifications=
Party invite jingle=
Someone joins the party=
Someone leaves the party=

View File

@ -27,8 +27,8 @@ load_world_folder()
if not minetest.get_modpath("audio_lib") then return end
audio_lib.register_type("parties", "system", S("System"))
audio_lib.register_type("parties", "notifications", S("Notifications"))
audio_lib.register_sound("system", "parties_invite", S("Party invite jingle"))
audio_lib.register_sound("system", "parties_join", S("Someone joins the party"))
audio_lib.register_sound("system", "parties_leave", S("Someone leaves the party"))
audio_lib.register_sound("notifications", "parties_invite", S("Party invite jingle"))
audio_lib.register_sound("notifications", "parties_join", S("Someone joins the party"))
audio_lib.register_sound("notifications", "parties_leave", S("Someone leaves the party"))