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

vi: Add Vietnamese translation #553

Draft
wants to merge 56 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
fbf3194
Init the Vietnamese translation file
huylenq Aug 4, 2021
80e4d55
Correct language code
huylenq Aug 4, 2021
615a829
Minor format correction
huylenq Aug 6, 2021
4479b49
Some Vietnamese updates
huylenq Aug 8, 2021
fc1db5b
Another mini-batch of updates
huylenq Aug 10, 2021
b33eb3f
Another Vietnamese language update
huylenq Aug 11, 2021
6059495
Another VI translation batch
huylenq Aug 22, 2021
abb56f0
More consistent Vietnamese terminologies
huylenq Aug 22, 2021
f44b487
Another VI mini-update
huylenq Aug 24, 2021
757ba96
Another VI mini-update
huylenq Sep 3, 2021
98c3a9e
Another VI update
huylenq Sep 8, 2021
924d4bd
Another VI mini-update
huylenq Sep 14, 2021
5942893
Another VI update
huylenq Sep 18, 2021
60a9a76
Another VI update
huylenq Sep 19, 2021
b6e53e9
Another VI update
huylenq Oct 3, 2021
b6c74fc
Another VI update
huylenq Oct 10, 2021
6790263
Fix a spelling
huylenq Oct 10, 2021
bccc8d4
Another VI update
huylenq Oct 16, 2021
564a0c5
Another VI update
huylenq Oct 17, 2021
db35d80
Another VI update
huylenq Oct 18, 2021
11c6554
Another VI update
huylenq Dec 5, 2021
bfe5bc2
Another VI update
huylenq Dec 13, 2021
a0d7d70
Another VI update
huylenq Dec 14, 2021
49a5132
Another VI update
huylenq Dec 15, 2021
45e1973
Another VI update
huylenq Dec 16, 2021
7102ce4
Fix a typo
huylenq Dec 17, 2021
1a52dc3
Improve a translation
huylenq Dec 17, 2021
36f8f62
Another VI update
huylenq Jan 22, 2022
96e7d55
Another VI update
huylenq Jan 25, 2022
da0ae25
Another VI update
huylenq Jan 28, 2022
a0e9c71
Another VI update
huylenq Jan 29, 2022
e937e32
Another VI update
huylenq Jan 30, 2022
a02fa94
Another VI update
huylenq Jan 31, 2022
9adcffd
Another VI update
huylenq Feb 6, 2022
6a61ba8
Another VI update
huylenq Feb 7, 2022
3290ea7
Another VI update
huylenq Feb 8, 2022
3a2e080
Another VI update
huylenq Feb 13, 2022
5ebafd6
Update VI entry
huylenq Feb 13, 2022
4bf2160
VI: a better translation of availability
huylenq Feb 20, 2022
9931662
Another VI update
huylenq Feb 20, 2022
9dfd2d2
Another VI update
huylenq May 3, 2022
457e708
Another VI update
huylenq Jul 16, 2022
abd71b9
Another VI update
huylenq Aug 21, 2022
b695fde
Another VI update
huylenq Nov 13, 2022
fff8b31
Another VI update
huylenq Dec 11, 2022
87137fd
Another VI update
huylenq Jan 14, 2023
0e09d70
Another VI update
huylenq Jan 16, 2023
8bd8b2d
Another VI update
huylenq Jan 27, 2023
58db82b
Another VI update
huylenq Jan 28, 2023
3ceb5e3
Another VI update
huylenq Mar 14, 2023
cb8a82c
Another VI update
huylenq Mar 18, 2023
8498056
Another VI Update
huylenq Apr 30, 2023
73a1d7d
Another VI update
huylenq Jan 4, 2024
e1e6f35
Another VI update
huylenq Jan 5, 2024
4347e37
Another VI update
huylenq Jan 9, 2024
7af3de7
Another VI update
huylenq Jan 12, 2024
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
Another VI update
  • Loading branch information
huylenq committed Dec 11, 2022
commit fff8b3147547b75569e160fc9564fc742a95ae87
8 changes: 7 additions & 1 deletion README-vi.md
Original file line number Diff line number Diff line change
Expand Up @@ -1157,6 +1157,7 @@ Both masters serve reads and writes and coordinate with each other on writes. I
* Replication adds more hardware and additional complexity.

##### Source(s) and further reading: replication
##### Nguồn đọc thêm: replication

* [Scalability, availability, stability, patterns](http://www.slideshare.net/jboner/scalability-availability-stability-patterns/)
* [Multi-master replication](https://en.wikipedia.org/wiki/Multi-master_replication)
Expand All @@ -1172,11 +1173,16 @@ Both masters serve reads and writes and coordinate with each other on writes. I
Federation (or functional partitioning) splits up databases by function. For example, instead of a single, monolithic database, you could have three databases: **forums**, **users**, and **products**, resulting in less read and write traffic to each database and therefore less replication lag. Smaller databases result in more data that can fit in memory, which in turn results in more cache hits due to improved cache locality. With no single central master serializing writes you can write in parallel, increasing throughput.

##### Disadvantage(s): federation
##### Bất lợi của federation

* Federation is not effective if your schema requires huge functions or tables.
* Federation không hiệu quả nếu schema của bạn đòi hỏi nhiều hàm hoặc bảng.
* You'll need to update your application logic to determine which database to read and write.
* Bạn sẽ cần cập nhật logic phía ứng dụng để xác định CSDL nào để đọc và ghi.
* Joining data from two databases is more complex with a [server link](http://stackoverflow.com/questions/5145637/querying-data-by-joining-two-tables-in-two-database-on-different-servers).
* Liên kết dữ liệu giữa hai CSDL là phức tạp hơn với [server link](http://stackoverflow.com/questions/5145637/querying-data-by-joining-two-tables-in-two-database-on-different-servers). # FIXME: probably wrong meaning?
* Federation adds more hardware and additional complexity.
* Federation cần thêm phần cứng và tăng độ phức tạp.

##### Source(s) and further reading: federation

Expand Down Expand Up @@ -2195,7 +2201,7 @@ My contact info can be found on my [GitHub page](https://github.com/donnemartin)
- Cache: "tiền bộ nhớ"?
- Item: highly contextual, it doesn't really have a parlance on the Vietnamese side.
- Client
- Replication/replica
- Replication/replica: tái tạo / sao chép?
- Availability: tính sẵn có / hiện có / khả dụng

### Words that does have a translation but the English version is widely accepted among the Vietnamese-speakers
Expand Down