Difference between revisions of "Translations:Manual:Introduction/194/zh-CN"

From Mudlet
Jump to navigation Jump to search
(Updating translation from gettext import)
 
(Updating translation from gettext import)
 
Line 1: Line 1:
'''Mud syntax''': ''unlock northwest with steel key''
+
'''Mud服务端输出''': ''unlock northwest with steel key''
'''Alias Pattern''': '''^un (\w+) (.*)$'''
+
'''匹配的正则表达式''': '''^un (\w+) (.*)$'''
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
 
send("unlock " .. matches[2] .. " with " .. matches[3] )
 
send("unlock " .. matches[2] .. " with " .. matches[3] )
 
</syntaxhighlight>
 
</syntaxhighlight>

Latest revision as of 01:02, 16 December 2021

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Manual:Introduction)
'''Mud syntax''': ''unlock northwest with steel key''
'''Alias Pattern''': '''^un (\w+) (.*)$'''
<syntaxhighlight lang="lua">
send("unlock " .. matches[2] .. " with " .. matches[3] )
</syntaxhighlight>

Mud服务端输出: unlock northwest with steel key 匹配的正则表达式: ^un (\w+) (.*)$

send("unlock " .. matches[2] .. " with " .. matches[3] )