translation

This commit is contained in:
bkfox
2022-05-21 16:37:11 +02:00
parent 8f0dd9d248
commit 478ce58c17
7 changed files with 361 additions and 271 deletions

View File

@ -6,13 +6,11 @@ A Station contains programs that can be scheduled or streamed. A *Scheduled Prog
Each program has a directory on the server where user puts its podcasts (in **AIRCOX_PROGRAM_DIR**). It contains the directories **archives** (complete show's podcasts) and **excerpts** (partial or whatever podcasts).
## manage.py's commands
* **diffusions**: update/create, check and clean diffusions based on programs schedules;
* **import_playlist**: import a playlist from a csv file, and associate it to a sound;
* **sound_monitor**: check for existing and missing sounds files in programs directories and synchronize the database. It can check for the quality of file and update sound info.
* **sound_quality_check**: check for the quality of the file (don't update database);
* **streamer**: audio stream generation and control it;
* `diffusions`: update/create, check and clean diffusions based on programs schedules;
* `import_playlist`: import a playlist from a csv file, and associate it to a sound;
* `sounds_monitor`: check for existing and missing sounds files in programs directories and synchronize the database. It can check for the quality of file and update sound info.
* `sounds_quality_check`: check for the quality of the file (don't update database);
## Requirements

File diff suppressed because it is too large Load Diff

View File

@ -466,13 +466,13 @@ class Stream(models.Model):
)
begin = models.TimeField(
_('begin'), blank=True, null=True,
help_text=_('used to define a time range this stream is'
help_text=_('used to define a time range this stream is '
'played')
)
end = models.TimeField(
_('end'),
blank=True, null=True,
help_text=_('used to define a time range this stream is'
help_text=_('used to define a time range this stream is '
'played')
)