Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Traditional Chinese update #8

Closed
wants to merge 25 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
29486e9
chore: bump AGP version to v7.4.1
qwq233 Feb 18, 2023
32b52d0
feat: override Device Performance
qwq233 Feb 18, 2023
733fd05
fix: status bar color
qwq233 Feb 18, 2023
a14fdb7
chore: bump gradle version to v8.0.1
qwq233 Feb 18, 2023
6fcdd3d
chore: bump dependencies version
qwq233 Feb 18, 2023
4215110
refactor: make it nagram, thou nnngram now
NextAlone Feb 18, 2023
fd2cac7
revert: enable obfuscate
NextAlone Feb 18, 2023
a9fb771
refactor: upgrade jvmTarget and gradle
NextAlone Feb 18, 2023
3eb2d2c
refactor: use nagram icons
NextAlone Feb 18, 2023
3a6a316
feat: hide drawer items
NextAlone Feb 18, 2023
90c939e
feat: truly hide phone in drawer
NextAlone Feb 18, 2023
ce79f11
feat: replace noquote forward icon
NextAlone Feb 18, 2023
12c03d2
feat: do not unarchive by swipe
NextAlone Feb 18, 2023
d46edc6
feat: hide bot button in input field
NextAlone Feb 19, 2023
6be2955
refactor: upgrade AGP version
NextAlone Feb 19, 2023
05555c9
style: use popup with double tao
NextAlone Feb 19, 2023
8390725
feat: hide message seen tooltip
NextAlone Feb 19, 2023
0c3dec8
fix: dialog icons
NextAlone Feb 19, 2023
1607b4e
feat: disable reaction in chat menu
NextAlone Feb 19, 2023
56248ce
feat: disable report in chat menu
NextAlone Feb 19, 2023
83953a6
feat: to the beginning message
NextAlone Feb 19, 2023
e23c61a
fix: duplicated share contact
NextAlone Feb 20, 2023
9e69c91
fix: hide forward time when not valid
NextAlone Feb 20, 2023
f3333ce
feat: disable notification bubble
NextAlone Feb 20, 2023
6a142f9
Traditional Chinese update
OrStudio Feb 20, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: dialog icons
Signed-off-by: Next Alone <12210746+NextAlone@users.noreply.github.com>
  • Loading branch information
NextAlone committed Feb 20, 2023
commit 0c3dec84b8fe370d5987e600aeb219e161bb31a2
Original file line number Diff line number Diff line change
Expand Up @@ -3002,9 +3002,9 @@ protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
}
} else if (a == 2) {
if (N == 3) continue;
cell.setTextAndIcon(LocaleController.getString("FilterDeleteItem", R.string.FilterDeleteItem), R.drawable.baseline_delete_24);
cell.setTextAndIcon(LocaleController.getString("FilterDeleteItem", R.string.FilterDeleteItem), R.drawable.msg_delete);
} else {
cell.setTextAndIcon(LocaleController.getString("MarkAllAsRead", R.string.MarkAllAsRead), R.drawable.baseline_done_all_24);
cell.setTextAndIcon(LocaleController.getString("MarkAllAsRead", R.string.MarkAllAsRead), R.drawable.msg_markread);
}
scrimPopupWindowItems[a] = cell;
linearLayout.addView(cell);
Expand Down