Gramatical misttakes fixed.
This commit is contained in:
parent
3a015e943d
commit
17e2f0adf7
@ -9,7 +9,7 @@ if(not activate) then return end
|
||||
sc.register_help({
|
||||
Name = cname,
|
||||
Usage = "/c " .. cname,
|
||||
Description = S("Set a channel from permanent free."),
|
||||
Description = S("Unmarks a channel as permanent."),
|
||||
Parameter = "",
|
||||
Shortcut = "/c " .. short,
|
||||
}
|
||||
@ -28,7 +28,7 @@ sc.registered_commands[cname] = function(player)
|
||||
if(sc.player[player] ~= nil) then
|
||||
if(sc.permchannel[channel] ~= nil) then
|
||||
sc.permchannel[channel] = nil
|
||||
sc.report(player, sc.orange .. player .. sc.green .. S(" removes the Channel [") .. sc.yellow .. channel
|
||||
sc.report(player, sc.orange .. player .. sc.green .. S(" Unmarks the Channel [") .. sc.yellow .. channel
|
||||
.. sc.green .. S("] from permanent."))
|
||||
sc.storage:from_table({fields=sc.permchannel})
|
||||
|
||||
@ -38,7 +38,7 @@ sc.registered_commands[cname] = function(player)
|
||||
end -- if(sc.permchannel[channel]
|
||||
|
||||
else
|
||||
sc.print(player, sc.red .. S("Error: You can't free the public Chat from permanent."))
|
||||
sc.print(player, sc.red .. S("Error: You can't unmarks the public Chat from permanent."))
|
||||
|
||||
end -- if(sc.player
|
||||
|
||||
|
@ -9,7 +9,7 @@ if(not activate) then return end
|
||||
sc.register_help({
|
||||
Name = cname,
|
||||
Usage = "/c " .. cname .. " <name>",
|
||||
Description = S("Lists all player in the channel."),
|
||||
Description = S("List all player in the channel."),
|
||||
Parameter = "<>",
|
||||
Shortcut = "/c " .. short .. " <name>",
|
||||
}
|
||||
|
@ -9,7 +9,7 @@ if(not activate) then return end
|
||||
sc.register_help({
|
||||
Name = cname,
|
||||
Usage = "/c " .. cname,
|
||||
Description = S("Turn's the permanent public Chat on or off."),
|
||||
Description = S("Turns the permanent public Chat on or off."),
|
||||
Parameter = "<>",
|
||||
Shortcut = "/c " .. short,
|
||||
}
|
||||
|
@ -9,7 +9,7 @@ if(not activate) then return end
|
||||
sc.register_help({
|
||||
Name = cname,
|
||||
Usage = "/c " .. cname .. " <name>",
|
||||
Description = S("Show's the room, where <name> is."),
|
||||
Description = S("Shows which channel <name> is on."),
|
||||
Parameter = "<>",
|
||||
Shortcut = "/c " .. short .. " <name>",
|
||||
}
|
||||
|
@ -8,7 +8,7 @@ Error: No Message given.=Fehler: Keine Nachricht angebeben.
|
||||
### cmd_all.lua ###
|
||||
### cmd_talk2public.lua ###
|
||||
|
||||
Error - require 'basic_privs' privilege.=Fehler - 'basic_privs' benötigt.
|
||||
Error - require 'basic_privs' privilege.=Fehler - 'basic_privs' Privileg benötigt.
|
||||
Send's a message on all.=Sendet eine Nachricht an alle.
|
||||
|
||||
### cmd_channels.lua ###
|
||||
@ -18,10 +18,10 @@ Lists all channels on the Server.=Listet alle Kanäle auf dem Server.
|
||||
|
||||
### cmd_free_channel.lua ###
|
||||
|
||||
removes the Channel [= gibt den Kanal [
|
||||
Unmarks the Channel [=Gibt den Kanal [
|
||||
Error: Permanent Channels not found.=Fehler: Permanenter Kanal nicht gefunden.
|
||||
Error: You can't free the public Chat from permanent.=Fehler: Du kannst den öffentlichen Chat nicht von permanent freigeben.
|
||||
Set a channel from permanent free.=Gibt einen permanenten Kanal wieder frei.
|
||||
Error: You can't unmarks the public Chat from permanent.=Fehler: Der öffentliche Kanal bleibt permanent.
|
||||
Unmarks a channel as permanent.=Du kannst den öffentlichen Chat nicht von permanent freigeben.
|
||||
] from permanent.=] von permanent wieder frei.
|
||||
|
||||
### cmd_free_channel.lua ###
|
||||
@ -102,7 +102,7 @@ Leaves a channel=Verlässt einen Kanal
|
||||
|
||||
### cmd_list.lua ###
|
||||
|
||||
Lists all player in the channel.=Zeigt alle Spieler in dem Kanal.
|
||||
List all player in the channel.=Zeigt alle Spieler in dem Kanal.
|
||||
Player in Channel=Spieler im Kanal
|
||||
|
||||
### cmd_move.lua ###
|
||||
@ -152,7 +152,7 @@ Template Command with Parameter <=Musterkommando mit Parameter <
|
||||
|
||||
The permanent public chat is now off.=Der permanente öffentliche Chat ist nun aus.
|
||||
The permanent public chat is now on.=Der permanente öffentliche Chat ist nun ein.
|
||||
Turn's the permanent public Chat on or off.=Schaltet den permanent öffentlichen Chat ein oder aus.
|
||||
Turns the permanent public Chat on or off.=Schaltet den permanent öffentlichen Chat ein oder aus.
|
||||
You are already in the public Chat.=Du bist schon im öffentlichem Chat.
|
||||
|
||||
### cmd_where.lua ###
|
||||
@ -160,7 +160,7 @@ You are already in the public Chat.=Du bist schon im öffentlichem Chat.
|
||||
Error: No name given.=Fehler: Keinen Namen angegeben.
|
||||
Error: Player is not online.=Fehler: Spieler ist nicht online.
|
||||
Player [=Spieler [
|
||||
Show's the room, where <name> is.=Zeigt den Raum, wo sich <Name> aufhält.
|
||||
Shows which channel <name> is on.=Zeigt den Kanal, wo sich <Name> aufhält.
|
||||
] is in Channel {=] ist im Kanal {
|
||||
] is in the public Chat.=] ist im öffentlichem Chat.
|
||||
|
||||
@ -168,6 +168,7 @@ Show's the room, where <name> is.=Zeigt den Raum, wo sich <Name> aufhält.
|
||||
|
||||
joins the World=betritt die Welt.
|
||||
leaves the World=verlässt die Welt.
|
||||
unknown=
|
||||
|
||||
### init.lua ###
|
||||
|
||||
|
@ -18,10 +18,10 @@ Lists all channels on the Server.=
|
||||
|
||||
### cmd_free_channel.lua ###
|
||||
|
||||
removes the Channel [=
|
||||
Unmarks the Channel [=
|
||||
Error: Permanent Channels not found.=
|
||||
Error: You can't free the public Chat from permanent.=
|
||||
Set a channel from permanent free.=
|
||||
Error: You can't unmarks the public Chat from permanent.=
|
||||
Unmarks a channel as permanent.=
|
||||
] from permanent.=
|
||||
|
||||
### cmd_free_channel.lua ###
|
||||
@ -102,7 +102,7 @@ Leaves a channel=
|
||||
|
||||
### cmd_list.lua ###
|
||||
|
||||
Lists all player in the channel.=
|
||||
List all player in the channel.=
|
||||
Player in Channel=
|
||||
|
||||
### cmd_move.lua ###
|
||||
@ -152,7 +152,7 @@ Template Command with Parameter <=
|
||||
|
||||
The permanent public chat is now off.=
|
||||
The permanent public chat is now on.=
|
||||
Turn's the permanent public Chat on or off.=
|
||||
Turns the permanent public Chat on or off.=
|
||||
You are already in the public Chat.=
|
||||
|
||||
### cmd_where.lua ###
|
||||
@ -160,7 +160,7 @@ You are already in the public Chat.=
|
||||
Error: No name given.=
|
||||
Error: Player is not online.=
|
||||
Player [=
|
||||
Show's the room, where <name> is.=
|
||||
Shows which channel <name> is on.=
|
||||
] is in Channel {=
|
||||
] is in the public Chat.=
|
||||
|
||||
@ -168,6 +168,7 @@ Show's the room, where <name> is.=
|
||||
|
||||
joins the World=
|
||||
leaves the World=
|
||||
unknown=
|
||||
|
||||
### init.lua ###
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user