├── LICENSE ├── README.md ├── locales ├── base.pot ├── en_US │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po ├── it_IT │ └── LC_MESSAGES │ │ ├── messages.mo │ │ └── messages.po └── tr_TR │ └── LC_MESSAGES │ ├── messages.mo │ └── messages.po ├── requirements.txt └── sbox.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameera-madushan/SubtitleBOX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameera-madushan/SubtitleBOX/HEAD/README.md -------------------------------------------------------------------------------- /locales/base.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameera-madushan/SubtitleBOX/HEAD/locales/base.pot -------------------------------------------------------------------------------- /locales/en_US/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameera-madushan/SubtitleBOX/HEAD/locales/en_US/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/en_US/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameera-madushan/SubtitleBOX/HEAD/locales/en_US/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/it_IT/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameera-madushan/SubtitleBOX/HEAD/locales/it_IT/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/it_IT/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameera-madushan/SubtitleBOX/HEAD/locales/it_IT/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /locales/tr_TR/LC_MESSAGES/messages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameera-madushan/SubtitleBOX/HEAD/locales/tr_TR/LC_MESSAGES/messages.mo -------------------------------------------------------------------------------- /locales/tr_TR/LC_MESSAGES/messages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameera-madushan/SubtitleBOX/HEAD/locales/tr_TR/LC_MESSAGES/messages.po -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameera-madushan/SubtitleBOX/HEAD/requirements.txt -------------------------------------------------------------------------------- /sbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameera-madushan/SubtitleBOX/HEAD/sbox.py --------------------------------------------------------------------------------