@@ -230,7 +230,7 @@ export interface Plan {
230230 title : string ;
231231 description ?: string | null ;
232232 /**
233- * Skąd zaimportowano plan
233+ * Where the plan was imported from
234234 */
235235 source ?: string | null ;
236236 updatedAt : string ;
@@ -264,7 +264,7 @@ export interface Microcycle {
264264 title : string ;
265265 plan : number | Plan ;
266266 /**
267- * Docelowy RPE mikrocyklu (6–9)
267+ * Target RPE for the microcycle (6–9)
268268 */
269269 rpe ?: number | null ;
270270 order ?: number | null ;
@@ -284,11 +284,11 @@ export interface Workout {
284284 sections ?:
285285 | {
286286 /**
287- * np. Rozgrzewka, Część główna
287+ * e.g. Warm-up, Main part
288288 */
289289 title ?: string | null ;
290290 /**
291- * np . Upper Body, EMOM
291+ * e.g . Upper Body, EMOM
292292 */
293293 subtitle ?: string | null ;
294294 id ?: string | null ;
@@ -305,37 +305,37 @@ export interface WorkoutGroup {
305305 id : number ;
306306 workout : number | Workout ;
307307 /**
308- * Row ID sekcji z workout.sections
308+ * Row ID of the section from workout.sections
309309 */
310310 sectionRowId ?: string | null ;
311311 /**
312- * np. "Superset górny ", "Część główna A" (opcjonalne )
312+ * e.g. "Upper superset ", "Main part A" (optional )
313313 */
314314 label ?: string | null ;
315315 order ?: number | null ;
316316 protocol ?: ( 'standard' | 'emom' | 'amrap' | 'for_time' | 'tabata' ) | null ;
317317 /**
318- * np . "4", "1-3"
318+ * e.g . "4", "1-3"
319319 */
320320 rounds ?: string | null ;
321321 /**
322- * Używane dla AMRAP
322+ * Used for AMRAP
323323 */
324324 durationMinutes ?: number | null ;
325325 /**
326- * Używane dla EMOM — domyślnie 60
326+ * Used for EMOM — default 60
327327 */
328328 intervalSeconds ?: number | null ;
329329 /**
330- * Używane dla Tabata — domyślnie 20
330+ * Used for Tabata — default 20
331331 */
332332 workSeconds ?: number | null ;
333333 /**
334- * Używane dla Tabata — domyślnie 10
334+ * Used for Tabata — default 10
335335 */
336336 restSeconds ?: number | null ;
337337 /**
338- * Przerwa po ukończeniu pełnej rundy/obwodu
338+ * Rest after completing a full round/circuit
339339 */
340340 restBetweenRounds ?: string | null ;
341341 updatedAt : string ;
@@ -350,16 +350,16 @@ export interface WorkoutExerciseRow {
350350 group : number | WorkoutGroup ;
351351 order ?: number | null ;
352352 /**
353- * np . "1a", "2b"
353+ * e.g . "1a", "2b"
354354 */
355355 numer ?: string | null ;
356356 /**
357- * Powiązanie z katalogiem — do wideo i progresu
357+ * Link to the catalog — for video and progress tracking
358358 */
359359 exercise ?: ( number | null ) | Exercise ;
360360 note ?: string | null ;
361361 /**
362- * np . 4, 3-4
362+ * e.g . 4, 3-4
363363 */
364364 rounds ?: string | null ;
365365 reps ?: string | null ;
@@ -370,7 +370,7 @@ export interface WorkoutExerciseRow {
370370 durationMin ?: number | null ;
371371 durationSec ?: number | null ;
372372 /**
373- * Wypełnij tylko dla drop setów / piramidy. Puste = wszystkie serie identyczne .
373+ * Fill in only for drop sets / pyramids. Empty = all sets identical .
374374 */
375375 setParameters ?:
376376 | {
@@ -381,7 +381,7 @@ export interface WorkoutExerciseRow {
381381 } [ ]
382382 | null ;
383383 /**
384- * Zostaw puste jeśli ćwiczenie dziedziczy protokół z grupy .
384+ * Leave empty if the exercise inherits the protocol from the group .
385385 */
386386 override ?: {
387387 protocol ?: ( '' | 'standard' | 'emom' | 'amrap' | 'for_time' | 'tabata' ) | null ;
@@ -402,12 +402,12 @@ export interface Exercise {
402402 id : number ;
403403 name : string ;
404404 /**
405- * Decyduje, które pola pokazuje formularz logowania serii
405+ * Determines which fields are shown in the set logging form
406406 */
407407 trackingType ?: ( 'strength' | 'cardio' ) | null ;
408408 description ?: string | null ;
409409 /**
410- * URL do filmu instruktażowego (np . YouTube)
410+ * URL to instructional video (e.g . YouTube)
411411 */
412412 videoUrl ?: string | null ;
413413 muscleGroup ?: string | null ;
@@ -422,7 +422,7 @@ export interface Exercise {
422422export interface WorkoutLog {
423423 id : number ;
424424 /**
425- * Generowany automatycznie
425+ * Auto-generated
426426 */
427427 title ?: string | null ;
428428 workout : number | Workout ;
0 commit comments