Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
SweetSea-ButImNotSweet committed Oct 21, 2023
1 parent f9aa0e7 commit 250a90b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 16 deletions.
9 changes: 5 additions & 4 deletions parts/language/dict_vi.lua
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ Bạn muốn đóng góp vào bản dịch? Bạn có thể vào trang dự án
- Tốc độ rơi, 20G
- ARE, Line ARE, Death ARE
- Lockdown Delay, Spawn & Clear delay
05E2. Thông số điều khiển: DAS & ARR, DAS cut, Auto-lock cut, SDF
05E2. Thông số điều khiển:
DAS & ARR, DAS cut, Auto-lock cut, SDF
05F. Điều khiển
05F1. Tốc độ: LPM, PPS, BPM, KPM, KPP
05F2. Kỹ thuật: Hypertapping, Rolling, Finesse
Expand Down Expand Up @@ -340,7 +341,7 @@ Tuy nhiên, mỗi game sẽ có cách xử lý khác nhau. Ví dụ:
{"Hình dạng",
"nhom05a hình dạng của tetro. hình dạng của tetromino"..tetromino,
"term",
"Trong đa số các game xếp gạch, tất cả gạch đều là Tetromino\n\nCó 7 loại Tetromino, (nếu cho phép xoay nhưng không lật ngang hay dọc) gồm: Z, S, J, L, T, O, và I. Hãy xem mục \"Gạch & tên tương ứng\" để có thêm thông tin.", -- Removed " - gạch được liên kết bởi 4 ô, bám dính vào mặt chứ không bám vào góc."
"Trong đa số các game xếp gạch, tất cả gạch đều là Tetromino\n\nCó 7 loại Tetromino, nếu cho phép xoay nhưng không lật ngang hay dọc, gồm: Z, S, J, L, T, O, và I.\nHãy xem mục \"Gạch & tên tương ứng\" để có thêm thông tin.", -- Removed " - gạch được liên kết bởi 4 ô, bám dính vào mặt chứ không bám vào góc."
},
{"Màu",
"nhom05a màu"..tetromino,
Expand Down Expand Up @@ -530,7 +531,7 @@ Kiểu xáo His là phiên bản cải tiến so với kiểu xáo ngẫu nhiên
"nhom05d hispool historypoolgenerator kiểu xáo hispool",
"term",
[[
[Sea: Phần này không có trong Zictionary ngôn ngữ khác!
[Sea: Phần này không có trong Zictionary ngôn ngữ khác!]
Cách hoạt động của kiểu xáo HisPool diễn ra tuần tự như sau:
Bước 1: Lấy một viên gạch ngẫu nhiên trong cái Rổ.
Expand Down Expand Up @@ -1202,7 +1203,7 @@ Một trò chơi nổi tiếng với chế độ Battle Royale 99 người và c
[[
PS / NS / Xbox / Windows | Chơi đơn / Chơi trực tuyến
Đây là một tựa game ghép từ hai trò chơi giải đố: Tetris và Puyo Puyo, và bạn có thể chơi đối đầu trong cả hai game này. Có nhiều chế độ chơi đơn và chơi trực tuyến.
Đây là một tựa game ghép từ hai trò chơi giải đố: Tetris và Puyo Puyo, và bạn có thể chơi đối đầu trong cả hai game này. Có nhiều chế độ chơi đơn và chơi trực tuyến.
[MrZ: Bản PC (Steam) có cơ chế điều khiển và trải nghiệm trực tuyến khá là tệ.]
]],
Expand Down
4 changes: 2 additions & 2 deletions parts/language/lang_vi.lua
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ return {

page="Trang ",

-- ai_puzzle="AI is incompatible with puzzle game mode",
ai_puzzle="AI không tương thích với chế độ Puzzle",
ai_mission="AI không tương thích với nhiệm vụ tuỳ chọn.",
ai_badPiece="AI không tương thích với trình xáo gạch chứa gạch không phải là tetromino.",
cc_fixed="CC không tương thích với trình xáo gạch cố định",
Expand Down Expand Up @@ -623,7 +623,7 @@ C. Tay cầm chơi game (Gamepad):
},
setting_control={
-- title="Cài đặt Điều khiển",
title="Đ.chỉnh thg. số",
title="Điều chỉnh thông số",
preview="Xem trước",

das="DAS",arr="ARR",
Expand Down
12 changes: 3 additions & 9 deletions parts/scenes/dict.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ local localeFile -- Language file name, used for force reload

local lastTickInput
local searchWait -- Searching animation timer
local defaultSearchWait -- Default time to wait from the last key before searching

local lastSearch -- Last searched string
local lastSelected -- Last selected item
Expand Down Expand Up @@ -108,13 +107,9 @@ end
local function _search()
local input=inputBox:getText()
local pos
_clearResult()
local first
if needLowerUTF8 then
input=STRING.lowerUTF8(input)
else
input=input:lower()
end
_clearResult()
input=needLowerUTF8 and STRING.lowerUTF8(input) or input:lower()
for i=1,#dict do
pos=find(dict[i].titleLowered,input,nil,true) or find(STRING.lowerUTF8(dict[i].keywordsLowered),input,nil,true)
if pos==1 and not first then
Expand Down Expand Up @@ -170,7 +165,6 @@ function scene.enter()
'en'
)
needLowerUTF8=SETTING.locale:find'vi'
defaultSearchWait=(MOBILE and needLowerUTF8) and 2.6 or 0.8

dict=require(localeFile)
_scanDict(dict)
Expand Down Expand Up @@ -290,7 +284,7 @@ function scene.update(dt)
_clearResult()
listBox:setList(_getList())
else
searchWait=defaultSearchWait
searchWait=0.8
end
lastTickInput=input
end
Expand Down
2 changes: 1 addition & 1 deletion parts/scenes/setting_control.lua
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ local function _sliderShow(S)
return S.."F "..math.floor(S*16.67).."ms"
end
scene.widgetList={
WIDGET.newText{name='title', x=100, y=50,lim=500,font=70,align='L'},
WIDGET.newText{name='title', x=100, y=50,lim=626,font=70,align='L'},
WIDGET.newText{name='preview', x=520, y=610,font=40,align='R'},

WIDGET.newSlider{name='das', x=250, y=190,lim=230,w=600,axis={0,20,1},disp=SETval('das'), show=_sliderShow,code=SETsto('das')},
Expand Down

0 comments on commit 250a90b

Please sign in to comment.