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

From Mudlet
Jump to navigation Jump to search
(Updating translation from gettext import)
 
(Updating translation from gettext import)
 
Line 1: Line 1:
If you’d like to include variables in the send command, you need to prefix and suffix them with two dots outside the quotes, like this:
+
如果你希望在发送命令中包含变量,那么需要在引号前面加上两个点的前缀和后缀,例如 :
 
<syntaxhighlight lang="lua">send("My name is " .. full_name .. ". What's yours?")</syntaxhighlight>
 
<syntaxhighlight lang="lua">send("My name is " .. full_name .. ". What's yours?")</syntaxhighlight>

Latest revision as of 01:01, 3 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)
If you’d like to include variables in the send command, you need to prefix and suffix them with two dots outside the quotes, like this:
<syntaxhighlight lang="lua">send("My name is " .. full_name .. ". What's yours?")</syntaxhighlight>

如果你希望在发送命令中包含变量,那么需要在引号前面加上两个点的前缀和后缀,例如 :

send("My name is " .. full_name .. ". What's yours?")