Skip to content

Commit 51247a4

Browse files
authored
Update meta.lua
localization.
1 parent ec9c13f commit 51247a4

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

locale/zh-tw/meta.lua

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cgopt.collect =
1010
cgopt.stop =
1111
'停止垃圾回收的執行。 '
1212
cgopt.restart =
13-
'重啟垃圾回售的自動執行'
13+
'重啟垃圾回收的自動執行'
1414
cgopt.count =
1515
'以K 字元數為單位回傳Lua 使用的總記憶體量。 '
1616
cgopt.step =
@@ -165,7 +165,7 @@ bit32.bor =
165165
bit32.btest =
166166
'參數按位與的結果不為0時,回傳`true` 。 '
167167
bit32.bxor =
168-
'回傳參數按位異或的結果'
168+
'回傳參數按位互斥或的結果'
169169
bit32.extract =
170170
'回傳`n` 中第`field` 到第`field + width - 1` 位組成的結果。 '
171171
bit32.replace =
@@ -271,7 +271,7 @@ debug.setuservalue['>5.4']=
271271
debug.traceback =
272272
'回傳呼叫堆疊的堆疊回溯訊息。字串可選項`message` 被添加在堆疊回溯訊息的開頭。 '
273273
debug.upvalueid =
274-
'回傳指定函式第`n` 個上值的唯一標識符(一個輕量使用者資料)。 '
274+
'回傳指定函式第`n` 個上值的唯一識別符(一個輕量使用者資料)。 '
275275
debug.upvaluejoin =
276276
'讓Lua 閉包`f1` 的第`n1` 個上值引用`Lua` 閉包`f2` 的第`n2` 個上值。 '
277277
infowhat.n =
@@ -304,7 +304,7 @@ file =
304304
file[':close'] =
305305
'關閉`file`。 '
306306
file[':flush'] =
307-
'將寫入的資料保存到`file` 中。 '
307+
'將寫入的資料儲存到`file` 中。 '
308308
file[':lines'] =
309309
[[
310310
------
@@ -354,7 +354,7 @@ io.stderr =
354354
io.close =
355355
'關閉`file` 或預設輸出檔案。 '
356356
io.flush =
357-
'將寫入的資料保存到預設輸出檔案中'
357+
'將寫入的資料儲存到預設輸出檔案中'
358358
io.input =
359359
'設定`file` 為預設輸入檔案。 '
360360
io.lines =
@@ -513,9 +513,9 @@ os.difftime =
513513
os.execute =
514514
'呼叫系統直譯器執行`command`。 '
515515
os.exit['<5.1'] =
516-
'呼叫C 函式`exit` 終止宿主程式'
516+
'呼叫C 函式`exit` 終止主機程式'
517517
os.exit['>5.2'] =
518-
'呼叫ISO C 函式`exit` 終止宿主程式'
518+
'呼叫ISO C 函式`exit` 終止主機程式'
519519
os.getenv =
520520
'回傳行程環境變數`varname` 的值。 '
521521
os.remove =
@@ -562,11 +562,11 @@ package.loaded =
562562
package.loaders =
563563
'用於`require` 控制如何載入模組的表。 '
564564
package.loadlib =
565-
'讓宿主程式動態連結C 庫`libname` 。 '
565+
'讓主機程式動態連結C 庫`libname` 。 '
566566
package.path =
567567
'這個路徑被`require` 在Lua 載入器中做搜尋時用到。 '
568568
package.preload =
569-
'保存有一些特殊模組的載入器'
569+
'儲存有一些特殊模組的載入器'
570570
package.searchers =
571571
'用於`require` 控制如何載入模組的表。 '
572572
package.searchpath =
@@ -608,7 +608,7 @@ string.lower =
608608
string.match =
609609
'在字串s 中找到第一個能用pattern (參見§6.4.1)匹配到的部分。如果能找到,match 回傳其中的捕獲物; 否則回傳nil 。 '
610610
string.pack =
611-
'回傳一個打包了(即以二進制形式序列化) v1, v2 等值的二進製字串。字串fmt 為打包格式(參見§6.4.2)。 '
611+
'回傳一個打包了(即以二進制形式序列化) v1, v2 等值的二進制字串。字串fmt 為打包格式(參見§6.4.2)。 '
612612
string.packsize =
613613
[[回傳以指定格式用$string.pack 打包的字串的長度。格式化字串中不可以有變長選項's' 或'z' (參見§6.4.2)。 ]]
614614
string.rep['<5.1'] =
@@ -661,7 +661,7 @@ utf8 =
661661
utf8.char =
662662
'接收零或多個整數, 將每個整數轉換成對應的UTF-8 字元序列,並回傳這些序列連接到一起的字串。 '
663663
utf8.charpattern =
664-
'用於精確匹配到一個UTF-8 字元序列的模式,它假定處理的對像是一個合法的UTF-8 字串。 '
664+
'用於精確匹配到一個UTF-8 字元序列的模式,它假定處理的對象是一個合法的UTF-8 字串。 '
665665
utf8.codes =
666666
[[
667667
回傳一系列的值,可以讓

0 commit comments

Comments
 (0)