From 0b3ec6d7fa80495626fd11b281f3df80a5d11146 Mon Sep 17 00:00:00 2001 From: Fatonndev Date: Mon, 5 Jun 2023 00:52:22 +0300 Subject: [PATCH] chore: russian translation --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 5903bb9..9b2c1ae 100644 --- a/README.md +++ b/README.md @@ -8,14 +8,14 @@ For the library to work, you need to copy one of the necessary compiled native f After that, load the library `ProgressBar.loadLib(File file)` and specify JavaFX/JFrame/LWJGL/LibGDX and other window name: `ProgressBar.setWindowName(String name)`. ## Setting Progress value -Используйте метод `ProgressBar.setProgressValue(int value)` для установки текущего значения загрузки. Вы можете установить значение от 0 до 100 включительно. +Use the `ProgressBar.setProgressValue(int value)` method to set the current load value. You can set the value from 0 to 100 inclusive. ## Setting Progress state -Используйте метод `ProgressBar.setProgressState(ProgressState state)` для установки состояния загрузки. Для настройки используется `enum ProgressState`. +Use the `ProgressBar.setProgressState(ProgressState state)` method to set the boot state. The `enum ProgressState` is used for configuration. ### Вот его виды: -- `NO_PROGRESS` - Отключает загрузку. -- `NORMAL` - Включает стандартную загрузку через проценты. -- `PAUSE` - Меняет цвет статуса трея на желтный, обозначает паузу. -- `STOP_ERROR` - Меняет цвет статуса трея на красный, обозначает ошибку. -- `INDETERMINATE` - Отключает показ процентного значения загрузки, обозначает загрузку с неизвестным процентом загрузки. +- `NO_PROGRESS` - Disables the download. +- `NORMAL` - Enables standard loading via percentages. +- `PAUSE` - Changes the color of the tray status to yellow, indicates a pause. +- `STOP_ERROR` - Changes the color of the tray status to red, indicates an error. +- `INDETERMINATE` - Disables the display of the download percentage value, denotes a download with an unknown download percentage.