Upload 8 files
Browse files
app.py
CHANGED
|
@@ -943,7 +943,7 @@ def _step5_translate() -> None:
|
|
| 943 |
return
|
| 944 |
|
| 945 |
# ββ Translation UI ββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 946 |
-
from translation import CHUNK_SIZE
|
| 947 |
import math
|
| 948 |
total_chunks = math.ceil(len(lines) / CHUNK_SIZE)
|
| 949 |
|
|
|
|
| 943 |
return
|
| 944 |
|
| 945 |
# ββ Translation UI ββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 946 |
+
from translation import BASE_CHUNK_SIZE as CHUNK_SIZE
|
| 947 |
import math
|
| 948 |
total_chunks = math.ceil(len(lines) / CHUNK_SIZE)
|
| 949 |
|