├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── app ├── __init__.py ├── controllers │ ├── image.py │ ├── projects.py │ ├── rect_item.py │ ├── text.py │ └── webtoons.py ├── icon_resource.py ├── projects │ ├── parsers.py │ └── project_state.py ├── thread_worker.py ├── translations │ ├── .gitignore │ ├── ct_de.ts │ ├── ct_en.ts │ ├── ct_es.ts │ ├── ct_fr.ts │ ├── ct_it.ts │ ├── ct_ja.ts │ ├── ct_ko.ts │ ├── ct_nl.ts │ ├── ct_ru.ts │ ├── ct_tr.ts │ ├── ct_translations.py │ ├── ct_zh_CN.ts │ └── ct_zh_TW.ts └── ui │ ├── __init__.py │ ├── canvas │ ├── drawing_manager.py │ ├── event_handler.py │ ├── image_viewer.py │ ├── interaction_manager.py │ ├── rectangle.py │ ├── rotate_cursor.py │ ├── save_renderer.py │ ├── text │ │ └── text_item_properties.py │ ├── text_item.py │ └── webtoons │ │ ├── coordinate_converter.py │ │ ├── image_loader.py │ │ ├── scene_items │ │ ├── brush_stroke_manager.py │ │ ├── patch_manager.py │ │ ├── rectangle_manager.py │ │ ├── scene_item_manager.py │ │ ├── text_block_manager.py │ │ └── text_item_manager.py │ │ ├── webtoon_layout_manager.py │ │ └── webtoon_manager.py │ ├── commands │ ├── base.py │ ├── box.py │ ├── brush.py │ ├── image.py │ ├── inpaint.py │ └── textformat.py │ ├── dayu_widgets │ ├── __init__.py │ ├── __version__.py │ ├── alert.py │ ├── avatar.py │ ├── badge.py │ ├── breadcrumb.py │ ├── browser.py │ ├── button_group.py │ ├── card.py │ ├── carousel.py │ ├── check_box.py │ ├── clickable_card.py │ ├── collapse.py │ ├── color_palette.py │ ├── combo_box.py │ ├── completer.py │ ├── db_path_buttons.py │ ├── divider.py │ ├── dock_widget.py │ ├── drawer.py │ ├── field_mixin.py │ ├── flow_layout.py │ ├── form.py │ ├── header_view.py │ ├── item_model.py │ ├── item_view.py │ ├── item_view_full_set.py │ ├── item_view_set.py │ ├── label.py │ ├── line_edit.py │ ├── line_tab_widget.py │ ├── loading.py │ ├── menu.py │ ├── menu_tab_widget.py │ ├── message.py │ ├── mixin.py │ ├── page.py │ ├── popup.py │ ├── progress_bar.py │ ├── progress_circle.py │ ├── push_button.py │ ├── qt │ │ └── __init__.py │ ├── radio_button.py │ ├── slider.py │ ├── spin_box.py │ ├── splitter.py │ ├── stacked_widget.py │ ├── switch.py │ ├── tab_widget.py │ ├── text_edit.py │ ├── theme.py │ ├── toast.py │ ├── tool_button.py │ └── utils.py │ ├── list_view.py │ ├── list_view_image_loader.py │ ├── main_window.py │ ├── messages.py │ └── settings │ ├── credentials_page.py │ ├── export_page.py │ ├── llms_page.py │ ├── personalization_page.py │ ├── settings_page.py │ ├── settings_ui.py │ ├── text_rendering_page.py │ ├── tools_page.py │ └── utils.py ├── comic.py ├── controller.py ├── docs ├── README_fr.md ├── README_ja.md ├── README_ko.md ├── README_pt-BR.md └── README_zh-CN.md ├── imkit ├── __init__.py ├── analysis.py ├── io.py ├── morphology.py ├── transforms.py └── utils.py ├── models ├── .gitignore ├── detection │ └── .gitignore ├── inpainting │ └── .gitignore └── ocr │ └── .gitignore ├── modules ├── __init__.py ├── detection │ ├── __init__.py │ ├── base.py │ ├── factory.py │ ├── processor.py │ ├── rtdetr_v2.py │ ├── rtdetr_v2_onnx.py │ └── utils │ │ ├── __init__.py │ │ ├── bubbles.py │ │ ├── content.py │ │ ├── geometry.py │ │ ├── orientation.py │ │ ├── slicer.py │ │ └── text_lines.py ├── inpainting │ ├── .gitignore │ ├── __init__.py │ ├── aot.py │ ├── base.py │ ├── lama.py │ ├── mi_gan.py │ └── schema.py ├── ocr │ ├── base.py │ ├── doctr_ocr.py │ ├── easy_ocr.py │ ├── factory.py │ ├── gemini_ocr.py │ ├── google_ocr.py │ ├── gpt_ocr.py │ ├── manga_ocr │ │ ├── __init__.py │ │ ├── engine.py │ │ └── onnx_engine.py │ ├── microsoft_ocr.py │ ├── paddle_ocr.py │ ├── pororo │ │ ├── .gitignore │ │ ├── engine.py │ │ ├── main.py │ │ ├── onnx_engine.py │ │ ├── pororo │ │ │ ├── __init__.py │ │ │ ├── __version__.py │ │ │ ├── models │ │ │ │ └── brainOCR │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _dataset.py │ │ │ │ │ ├── _modules.py │ │ │ │ │ ├── brainocr.py │ │ │ │ │ ├── craft.py │ │ │ │ │ ├── craft_utils.py │ │ │ │ │ ├── detection.py │ │ │ │ │ ├── imgproc.py │ │ │ │ │ ├── model.py │ │ │ │ │ ├── modules │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── basenet.py │ │ │ │ │ ├── feature_extraction.py │ │ │ │ │ ├── prediction.py │ │ │ │ │ ├── sequence_modeling.py │ │ │ │ │ └── transformation.py │ │ │ │ │ ├── recognition.py │ │ │ │ │ └── utils.py │ │ │ ├── pororo.py │ │ │ ├── tasks │ │ │ │ ├── __init__.py │ │ │ │ ├── optical_character_recognition.py │ │ │ │ └── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── config.py │ │ │ │ │ ├── download_utils.py │ │ │ │ │ └── tokenizer.py │ │ │ └── utils.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ └── image_util.py │ ├── ppocr │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── engine.py │ │ ├── postprocessing.py │ │ ├── preprocessing.py │ │ └── typings.py │ ├── processor.py │ └── rapid_ocr.py ├── rendering │ ├── __init__.py │ ├── hyphen_textwrap.py │ └── render.py ├── translation │ ├── base.py │ ├── deepl.py │ ├── factory.py │ ├── google.py │ ├── llm │ │ ├── base.py │ │ ├── claude.py │ │ ├── custom.py │ │ ├── deepseek.py │ │ ├── gemini.py │ │ └── gpt.py │ ├── microsoft.py │ ├── processor.py │ └── yandex.py └── utils │ ├── __init__.py │ ├── archives.py │ ├── device.py │ ├── download.py │ ├── download_file.py │ ├── file_handler.py │ ├── inpainting.py │ ├── pipeline_utils.py │ ├── textblock.py │ └── translator_utils.py ├── pipeline ├── __init__.py ├── batch_processor.py ├── block_detection.py ├── cache_manager.py ├── inpainting.py ├── main_pipeline.py ├── ocr_handler.py ├── segmentation_handler.py ├── translation_handler.py ├── virtual_page.py ├── webtoon_batch_processor.py └── webtoon_utils.py ├── requirements-dev.txt ├── requirements.txt ├── resources ├── fonts │ └── .gitignore └── static │ ├── add_line.svg │ ├── alert_fill.svg │ ├── alert_line.svg │ ├── app-houdini.png │ ├── app-maya.png │ ├── app-nuke.png │ ├── arrow-left.svg │ ├── arrow-right.svg │ ├── attachment_line.svg │ ├── avatar.png │ ├── base.json │ ├── big_view.svg │ ├── bold.svg │ ├── brush-fill.svg │ ├── calendar_fill.png │ ├── calendar_fill.svg │ ├── calendar_fill_dark.png │ ├── calendar_fill_dark.svg │ ├── calendar_line.png │ ├── calendar_line.svg │ ├── calendar_line_dark.png │ ├── calendar_line_dark.svg │ ├── check.png │ ├── check.svg │ ├── circle.png │ ├── circle.svg │ ├── clear-outlined.svg │ ├── close_fill.svg │ ├── close_line.png │ ├── close_line.svg │ ├── close_line_dark.png │ ├── close_line_dark.svg │ ├── cloud_fill.svg │ ├── cloud_line.svg │ ├── confirm_fill.svg │ ├── confirm_line.svg │ ├── ct-file-icon.svg │ ├── dark.json │ ├── detail_line.svg │ ├── down_fill.svg │ ├── down_line.png │ ├── down_line.svg │ ├── down_line_dark.png │ ├── down_line_dark.svg │ ├── edit_fill.svg │ ├── edit_line.svg │ ├── empty.svg │ ├── eraser.svg │ ├── eraser_fill.svg │ ├── error_fill.svg │ ├── error_line.svg │ ├── female.svg │ ├── file-plus.svg │ ├── file.svg │ ├── filter_fill.svg │ ├── filter_line.svg │ ├── float.png │ ├── float.svg │ ├── float_dark.png │ ├── float_dark.svg │ ├── flowbite--file-zip-outline.svg │ ├── fluent--save-16-regular.svg │ ├── fluent--save-as-24-regular.svg │ ├── folder-open.svg │ ├── folder_fill.svg │ ├── folder_line.svg │ ├── gridicons--create.svg │ ├── home_fill.svg │ ├── home_line.svg │ ├── icon-loading.gif │ ├── info_fill.svg │ ├── info_line.svg │ ├── ion--image-outline.svg │ ├── italic.svg │ ├── left_fill.svg │ ├── left_line.png │ ├── left_line.svg │ ├── left_line_dark.png │ ├── left_line_dark.svg │ ├── light.json │ ├── list_view.svg │ ├── loading.svg │ ├── main.qss │ ├── male.svg │ ├── mdi--comic-thought-bubble-outline.svg │ ├── media_fill.svg │ ├── media_line.svg │ ├── mingcute--document-line.svg │ ├── minus.png │ ├── minus.svg │ ├── minus_line.svg │ ├── more.svg │ ├── pan_tool.svg │ ├── redo.svg │ ├── refresh_line.svg │ ├── right_fill.svg │ ├── right_line.png │ ├── right_line.svg │ ├── right_line_dark.png │ ├── right_line_dark.svg │ ├── rotate-arrow-top.svg │ ├── save-all.svg │ ├── save.svg │ ├── save_fill.svg │ ├── save_line.svg │ ├── search_line.svg │ ├── select.svg │ ├── settings.svg │ ├── size_grip.png │ ├── size_grip.svg │ ├── size_grip_dark.png │ ├── size_grip_dark.svg │ ├── sphere.png │ ├── sphere.svg │ ├── spliter.svg │ ├── splitter.png │ ├── splitter.svg │ ├── splitter_dark.png │ ├── splitter_dark.svg │ ├── success_fill.svg │ ├── success_line.svg │ ├── table_view.svg │ ├── tabler--align-center.svg │ ├── tabler--align-left.svg │ ├── tabler--align-right.svg │ ├── tabler--file-export.svg │ ├── trash_fill.svg │ ├── trash_line.svg │ ├── tree_view.svg │ ├── underline.svg │ ├── undo.svg │ ├── up_fill.svg │ ├── up_line.png │ ├── up_line.svg │ ├── up_line_dark.png │ ├── up_line_dark.svg │ ├── upload-file.svg │ ├── upload_line.svg │ ├── user_fill.svg │ ├── user_line.svg │ ├── vline.png │ ├── warning_fill.svg │ ├── warning_line.svg │ └── webtoon-toggle.svg └── tests ├── __init__.py └── test_app.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/controllers/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/controllers/image.py -------------------------------------------------------------------------------- /app/controllers/projects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/controllers/projects.py -------------------------------------------------------------------------------- /app/controllers/rect_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/controllers/rect_item.py -------------------------------------------------------------------------------- /app/controllers/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/controllers/text.py -------------------------------------------------------------------------------- /app/controllers/webtoons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/controllers/webtoons.py -------------------------------------------------------------------------------- /app/icon_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/icon_resource.py -------------------------------------------------------------------------------- /app/projects/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/projects/parsers.py -------------------------------------------------------------------------------- /app/projects/project_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/projects/project_state.py -------------------------------------------------------------------------------- /app/thread_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/thread_worker.py -------------------------------------------------------------------------------- /app/translations/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/translations/.gitignore -------------------------------------------------------------------------------- /app/translations/ct_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/translations/ct_de.ts -------------------------------------------------------------------------------- /app/translations/ct_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/translations/ct_en.ts -------------------------------------------------------------------------------- /app/translations/ct_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/translations/ct_es.ts -------------------------------------------------------------------------------- /app/translations/ct_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/translations/ct_fr.ts -------------------------------------------------------------------------------- /app/translations/ct_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/translations/ct_it.ts -------------------------------------------------------------------------------- /app/translations/ct_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/translations/ct_ja.ts -------------------------------------------------------------------------------- /app/translations/ct_ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/translations/ct_ko.ts -------------------------------------------------------------------------------- /app/translations/ct_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/translations/ct_nl.ts -------------------------------------------------------------------------------- /app/translations/ct_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/translations/ct_ru.ts -------------------------------------------------------------------------------- /app/translations/ct_tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/translations/ct_tr.ts -------------------------------------------------------------------------------- /app/translations/ct_translations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/translations/ct_translations.py -------------------------------------------------------------------------------- /app/translations/ct_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/translations/ct_zh_CN.ts -------------------------------------------------------------------------------- /app/translations/ct_zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/translations/ct_zh_TW.ts -------------------------------------------------------------------------------- /app/ui/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/ui/canvas/drawing_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/canvas/drawing_manager.py -------------------------------------------------------------------------------- /app/ui/canvas/event_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/canvas/event_handler.py -------------------------------------------------------------------------------- /app/ui/canvas/image_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/canvas/image_viewer.py -------------------------------------------------------------------------------- /app/ui/canvas/interaction_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/canvas/interaction_manager.py -------------------------------------------------------------------------------- /app/ui/canvas/rectangle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/canvas/rectangle.py -------------------------------------------------------------------------------- /app/ui/canvas/rotate_cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/canvas/rotate_cursor.py -------------------------------------------------------------------------------- /app/ui/canvas/save_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/canvas/save_renderer.py -------------------------------------------------------------------------------- /app/ui/canvas/text/text_item_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/canvas/text/text_item_properties.py -------------------------------------------------------------------------------- /app/ui/canvas/text_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/canvas/text_item.py -------------------------------------------------------------------------------- /app/ui/canvas/webtoons/coordinate_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/canvas/webtoons/coordinate_converter.py -------------------------------------------------------------------------------- /app/ui/canvas/webtoons/image_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/canvas/webtoons/image_loader.py -------------------------------------------------------------------------------- /app/ui/canvas/webtoons/scene_items/brush_stroke_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/canvas/webtoons/scene_items/brush_stroke_manager.py -------------------------------------------------------------------------------- /app/ui/canvas/webtoons/scene_items/patch_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/canvas/webtoons/scene_items/patch_manager.py -------------------------------------------------------------------------------- /app/ui/canvas/webtoons/scene_items/rectangle_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/canvas/webtoons/scene_items/rectangle_manager.py -------------------------------------------------------------------------------- /app/ui/canvas/webtoons/scene_items/scene_item_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/canvas/webtoons/scene_items/scene_item_manager.py -------------------------------------------------------------------------------- /app/ui/canvas/webtoons/scene_items/text_block_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/canvas/webtoons/scene_items/text_block_manager.py -------------------------------------------------------------------------------- /app/ui/canvas/webtoons/scene_items/text_item_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/canvas/webtoons/scene_items/text_item_manager.py -------------------------------------------------------------------------------- /app/ui/canvas/webtoons/webtoon_layout_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/canvas/webtoons/webtoon_layout_manager.py -------------------------------------------------------------------------------- /app/ui/canvas/webtoons/webtoon_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/canvas/webtoons/webtoon_manager.py -------------------------------------------------------------------------------- /app/ui/commands/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/commands/base.py -------------------------------------------------------------------------------- /app/ui/commands/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/commands/box.py -------------------------------------------------------------------------------- /app/ui/commands/brush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/commands/brush.py -------------------------------------------------------------------------------- /app/ui/commands/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/commands/image.py -------------------------------------------------------------------------------- /app/ui/commands/inpaint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/commands/inpaint.py -------------------------------------------------------------------------------- /app/ui/commands/textformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/commands/textformat.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/__init__.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/__version__.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/alert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/alert.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/avatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/avatar.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/badge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/badge.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/breadcrumb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/breadcrumb.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/browser.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/button_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/button_group.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/card.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/carousel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/carousel.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/check_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/check_box.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/clickable_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/clickable_card.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/collapse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/collapse.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/color_palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/color_palette.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/combo_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/combo_box.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/completer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/completer.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/db_path_buttons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/db_path_buttons.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/divider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/divider.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/dock_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/dock_widget.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/drawer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/drawer.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/field_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/field_mixin.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/flow_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/flow_layout.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/form.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/header_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/header_view.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/item_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/item_model.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/item_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/item_view.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/item_view_full_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/item_view_full_set.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/item_view_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/item_view_set.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/label.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/line_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/line_edit.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/line_tab_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/line_tab_widget.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/loading.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/menu.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/menu_tab_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/menu_tab_widget.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/message.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/mixin.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/page.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/popup.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/progress_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/progress_bar.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/progress_circle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/progress_circle.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/push_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/push_button.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/qt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/qt/__init__.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/radio_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/radio_button.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/slider.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/spin_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/spin_box.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/splitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/splitter.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/stacked_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/stacked_widget.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/switch.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/tab_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/tab_widget.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/text_edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/text_edit.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/theme.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/toast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/toast.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/tool_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/tool_button.py -------------------------------------------------------------------------------- /app/ui/dayu_widgets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/dayu_widgets/utils.py -------------------------------------------------------------------------------- /app/ui/list_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/list_view.py -------------------------------------------------------------------------------- /app/ui/list_view_image_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/list_view_image_loader.py -------------------------------------------------------------------------------- /app/ui/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/main_window.py -------------------------------------------------------------------------------- /app/ui/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/messages.py -------------------------------------------------------------------------------- /app/ui/settings/credentials_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/settings/credentials_page.py -------------------------------------------------------------------------------- /app/ui/settings/export_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/settings/export_page.py -------------------------------------------------------------------------------- /app/ui/settings/llms_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/settings/llms_page.py -------------------------------------------------------------------------------- /app/ui/settings/personalization_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/settings/personalization_page.py -------------------------------------------------------------------------------- /app/ui/settings/settings_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/settings/settings_page.py -------------------------------------------------------------------------------- /app/ui/settings/settings_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/settings/settings_ui.py -------------------------------------------------------------------------------- /app/ui/settings/text_rendering_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/settings/text_rendering_page.py -------------------------------------------------------------------------------- /app/ui/settings/tools_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/settings/tools_page.py -------------------------------------------------------------------------------- /app/ui/settings/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/app/ui/settings/utils.py -------------------------------------------------------------------------------- /comic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/comic.py -------------------------------------------------------------------------------- /controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/controller.py -------------------------------------------------------------------------------- /docs/README_fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/docs/README_fr.md -------------------------------------------------------------------------------- /docs/README_ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/docs/README_ja.md -------------------------------------------------------------------------------- /docs/README_ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/docs/README_ko.md -------------------------------------------------------------------------------- /docs/README_pt-BR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/docs/README_pt-BR.md -------------------------------------------------------------------------------- /docs/README_zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/docs/README_zh-CN.md -------------------------------------------------------------------------------- /imkit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/imkit/__init__.py -------------------------------------------------------------------------------- /imkit/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/imkit/analysis.py -------------------------------------------------------------------------------- /imkit/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/imkit/io.py -------------------------------------------------------------------------------- /imkit/morphology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/imkit/morphology.py -------------------------------------------------------------------------------- /imkit/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/imkit/transforms.py -------------------------------------------------------------------------------- /imkit/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/imkit/utils.py -------------------------------------------------------------------------------- /models/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/models/.gitignore -------------------------------------------------------------------------------- /models/detection/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/models/detection/.gitignore -------------------------------------------------------------------------------- /models/inpainting/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/models/inpainting/.gitignore -------------------------------------------------------------------------------- /models/ocr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/models/ocr/.gitignore -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/detection/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/detection/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/detection/base.py -------------------------------------------------------------------------------- /modules/detection/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/detection/factory.py -------------------------------------------------------------------------------- /modules/detection/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/detection/processor.py -------------------------------------------------------------------------------- /modules/detection/rtdetr_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/detection/rtdetr_v2.py -------------------------------------------------------------------------------- /modules/detection/rtdetr_v2_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/detection/rtdetr_v2_onnx.py -------------------------------------------------------------------------------- /modules/detection/utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/detection/utils/bubbles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/detection/utils/bubbles.py -------------------------------------------------------------------------------- /modules/detection/utils/content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/detection/utils/content.py -------------------------------------------------------------------------------- /modules/detection/utils/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/detection/utils/geometry.py -------------------------------------------------------------------------------- /modules/detection/utils/orientation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/detection/utils/orientation.py -------------------------------------------------------------------------------- /modules/detection/utils/slicer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/detection/utils/slicer.py -------------------------------------------------------------------------------- /modules/detection/utils/text_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/detection/utils/text_lines.py -------------------------------------------------------------------------------- /modules/inpainting/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/inpainting/.gitignore -------------------------------------------------------------------------------- /modules/inpainting/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/inpainting/aot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/inpainting/aot.py -------------------------------------------------------------------------------- /modules/inpainting/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/inpainting/base.py -------------------------------------------------------------------------------- /modules/inpainting/lama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/inpainting/lama.py -------------------------------------------------------------------------------- /modules/inpainting/mi_gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/inpainting/mi_gan.py -------------------------------------------------------------------------------- /modules/inpainting/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/inpainting/schema.py -------------------------------------------------------------------------------- /modules/ocr/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/base.py -------------------------------------------------------------------------------- /modules/ocr/doctr_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/doctr_ocr.py -------------------------------------------------------------------------------- /modules/ocr/easy_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/easy_ocr.py -------------------------------------------------------------------------------- /modules/ocr/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/factory.py -------------------------------------------------------------------------------- /modules/ocr/gemini_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/gemini_ocr.py -------------------------------------------------------------------------------- /modules/ocr/google_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/google_ocr.py -------------------------------------------------------------------------------- /modules/ocr/gpt_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/gpt_ocr.py -------------------------------------------------------------------------------- /modules/ocr/manga_ocr/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/ocr/manga_ocr/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/manga_ocr/engine.py -------------------------------------------------------------------------------- /modules/ocr/manga_ocr/onnx_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/manga_ocr/onnx_engine.py -------------------------------------------------------------------------------- /modules/ocr/microsoft_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/microsoft_ocr.py -------------------------------------------------------------------------------- /modules/ocr/paddle_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/paddle_ocr.py -------------------------------------------------------------------------------- /modules/ocr/pororo/.gitignore: -------------------------------------------------------------------------------- 1 | export_onnx.py -------------------------------------------------------------------------------- /modules/ocr/pororo/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/engine.py -------------------------------------------------------------------------------- /modules/ocr/pororo/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/main.py -------------------------------------------------------------------------------- /modules/ocr/pororo/onnx_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/onnx_engine.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/__init__.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/__version__.py: -------------------------------------------------------------------------------- 1 | version = "0.4.1" 2 | -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/models/brainOCR/__init__.py: -------------------------------------------------------------------------------- 1 | from .brainocr import Reader # noqa 2 | -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/models/brainOCR/_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/models/brainOCR/_dataset.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/models/brainOCR/_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/models/brainOCR/_modules.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/models/brainOCR/brainocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/models/brainOCR/brainocr.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/models/brainOCR/craft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/models/brainOCR/craft.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/models/brainOCR/craft_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/models/brainOCR/craft_utils.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/models/brainOCR/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/models/brainOCR/detection.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/models/brainOCR/imgproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/models/brainOCR/imgproc.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/models/brainOCR/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/models/brainOCR/model.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/models/brainOCR/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/models/brainOCR/modules/basenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/models/brainOCR/modules/basenet.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/models/brainOCR/modules/feature_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/models/brainOCR/modules/feature_extraction.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/models/brainOCR/modules/prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/models/brainOCR/modules/prediction.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/models/brainOCR/modules/sequence_modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/models/brainOCR/modules/sequence_modeling.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/models/brainOCR/modules/transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/models/brainOCR/modules/transformation.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/models/brainOCR/recognition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/models/brainOCR/recognition.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/models/brainOCR/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/models/brainOCR/utils.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/pororo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/pororo.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/tasks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/tasks/__init__.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/tasks/optical_character_recognition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/tasks/optical_character_recognition.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/tasks/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/tasks/utils/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/tasks/utils/base.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/tasks/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/tasks/utils/config.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/tasks/utils/download_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/tasks/utils/download_utils.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/tasks/utils/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/tasks/utils/tokenizer.py -------------------------------------------------------------------------------- /modules/ocr/pororo/pororo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/pororo/utils.py -------------------------------------------------------------------------------- /modules/ocr/pororo/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/ocr/pororo/utils/image_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/pororo/utils/image_util.py -------------------------------------------------------------------------------- /modules/ocr/ppocr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/ppocr/.gitignore -------------------------------------------------------------------------------- /modules/ocr/ppocr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/ppocr/__init__.py -------------------------------------------------------------------------------- /modules/ocr/ppocr/engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/ppocr/engine.py -------------------------------------------------------------------------------- /modules/ocr/ppocr/postprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/ppocr/postprocessing.py -------------------------------------------------------------------------------- /modules/ocr/ppocr/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/ppocr/preprocessing.py -------------------------------------------------------------------------------- /modules/ocr/ppocr/typings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/ppocr/typings.py -------------------------------------------------------------------------------- /modules/ocr/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/processor.py -------------------------------------------------------------------------------- /modules/ocr/rapid_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/ocr/rapid_ocr.py -------------------------------------------------------------------------------- /modules/rendering/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/rendering/hyphen_textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/rendering/hyphen_textwrap.py -------------------------------------------------------------------------------- /modules/rendering/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/rendering/render.py -------------------------------------------------------------------------------- /modules/translation/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/translation/base.py -------------------------------------------------------------------------------- /modules/translation/deepl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/translation/deepl.py -------------------------------------------------------------------------------- /modules/translation/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/translation/factory.py -------------------------------------------------------------------------------- /modules/translation/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/translation/google.py -------------------------------------------------------------------------------- /modules/translation/llm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/translation/llm/base.py -------------------------------------------------------------------------------- /modules/translation/llm/claude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/translation/llm/claude.py -------------------------------------------------------------------------------- /modules/translation/llm/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/translation/llm/custom.py -------------------------------------------------------------------------------- /modules/translation/llm/deepseek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/translation/llm/deepseek.py -------------------------------------------------------------------------------- /modules/translation/llm/gemini.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/translation/llm/gemini.py -------------------------------------------------------------------------------- /modules/translation/llm/gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/translation/llm/gpt.py -------------------------------------------------------------------------------- /modules/translation/microsoft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/translation/microsoft.py -------------------------------------------------------------------------------- /modules/translation/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/translation/processor.py -------------------------------------------------------------------------------- /modules/translation/yandex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/translation/yandex.py -------------------------------------------------------------------------------- /modules/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from .textblock import * 2 | 3 | 4 | -------------------------------------------------------------------------------- /modules/utils/archives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/utils/archives.py -------------------------------------------------------------------------------- /modules/utils/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/utils/device.py -------------------------------------------------------------------------------- /modules/utils/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/utils/download.py -------------------------------------------------------------------------------- /modules/utils/download_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/utils/download_file.py -------------------------------------------------------------------------------- /modules/utils/file_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/utils/file_handler.py -------------------------------------------------------------------------------- /modules/utils/inpainting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/utils/inpainting.py -------------------------------------------------------------------------------- /modules/utils/pipeline_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/utils/pipeline_utils.py -------------------------------------------------------------------------------- /modules/utils/textblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/utils/textblock.py -------------------------------------------------------------------------------- /modules/utils/translator_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/modules/utils/translator_utils.py -------------------------------------------------------------------------------- /pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | # Pipeline modules 2 | -------------------------------------------------------------------------------- /pipeline/batch_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/pipeline/batch_processor.py -------------------------------------------------------------------------------- /pipeline/block_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/pipeline/block_detection.py -------------------------------------------------------------------------------- /pipeline/cache_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/pipeline/cache_manager.py -------------------------------------------------------------------------------- /pipeline/inpainting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/pipeline/inpainting.py -------------------------------------------------------------------------------- /pipeline/main_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/pipeline/main_pipeline.py -------------------------------------------------------------------------------- /pipeline/ocr_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/pipeline/ocr_handler.py -------------------------------------------------------------------------------- /pipeline/segmentation_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/pipeline/segmentation_handler.py -------------------------------------------------------------------------------- /pipeline/translation_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/pipeline/translation_handler.py -------------------------------------------------------------------------------- /pipeline/virtual_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/pipeline/virtual_page.py -------------------------------------------------------------------------------- /pipeline/webtoon_batch_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/pipeline/webtoon_batch_processor.py -------------------------------------------------------------------------------- /pipeline/webtoon_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/pipeline/webtoon_utils.py -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | -r requirements.txt 2 | pytest-qt==4.4.0 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/fonts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/fonts/.gitignore -------------------------------------------------------------------------------- /resources/static/add_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/add_line.svg -------------------------------------------------------------------------------- /resources/static/alert_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/alert_fill.svg -------------------------------------------------------------------------------- /resources/static/alert_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/alert_line.svg -------------------------------------------------------------------------------- /resources/static/app-houdini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/app-houdini.png -------------------------------------------------------------------------------- /resources/static/app-maya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/app-maya.png -------------------------------------------------------------------------------- /resources/static/app-nuke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/app-nuke.png -------------------------------------------------------------------------------- /resources/static/arrow-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/arrow-left.svg -------------------------------------------------------------------------------- /resources/static/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/arrow-right.svg -------------------------------------------------------------------------------- /resources/static/attachment_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/attachment_line.svg -------------------------------------------------------------------------------- /resources/static/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/avatar.png -------------------------------------------------------------------------------- /resources/static/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/base.json -------------------------------------------------------------------------------- /resources/static/big_view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/big_view.svg -------------------------------------------------------------------------------- /resources/static/bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/bold.svg -------------------------------------------------------------------------------- /resources/static/brush-fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/brush-fill.svg -------------------------------------------------------------------------------- /resources/static/calendar_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/calendar_fill.png -------------------------------------------------------------------------------- /resources/static/calendar_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/calendar_fill.svg -------------------------------------------------------------------------------- /resources/static/calendar_fill_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/calendar_fill_dark.png -------------------------------------------------------------------------------- /resources/static/calendar_fill_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/calendar_fill_dark.svg -------------------------------------------------------------------------------- /resources/static/calendar_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/calendar_line.png -------------------------------------------------------------------------------- /resources/static/calendar_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/calendar_line.svg -------------------------------------------------------------------------------- /resources/static/calendar_line_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/calendar_line_dark.png -------------------------------------------------------------------------------- /resources/static/calendar_line_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/calendar_line_dark.svg -------------------------------------------------------------------------------- /resources/static/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/check.png -------------------------------------------------------------------------------- /resources/static/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/check.svg -------------------------------------------------------------------------------- /resources/static/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/circle.png -------------------------------------------------------------------------------- /resources/static/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/circle.svg -------------------------------------------------------------------------------- /resources/static/clear-outlined.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/clear-outlined.svg -------------------------------------------------------------------------------- /resources/static/close_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/close_fill.svg -------------------------------------------------------------------------------- /resources/static/close_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/close_line.png -------------------------------------------------------------------------------- /resources/static/close_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/close_line.svg -------------------------------------------------------------------------------- /resources/static/close_line_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/close_line_dark.png -------------------------------------------------------------------------------- /resources/static/close_line_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/close_line_dark.svg -------------------------------------------------------------------------------- /resources/static/cloud_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/cloud_fill.svg -------------------------------------------------------------------------------- /resources/static/cloud_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/cloud_line.svg -------------------------------------------------------------------------------- /resources/static/confirm_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/confirm_fill.svg -------------------------------------------------------------------------------- /resources/static/confirm_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/confirm_line.svg -------------------------------------------------------------------------------- /resources/static/ct-file-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/ct-file-icon.svg -------------------------------------------------------------------------------- /resources/static/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/dark.json -------------------------------------------------------------------------------- /resources/static/detail_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/detail_line.svg -------------------------------------------------------------------------------- /resources/static/down_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/down_fill.svg -------------------------------------------------------------------------------- /resources/static/down_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/down_line.png -------------------------------------------------------------------------------- /resources/static/down_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/down_line.svg -------------------------------------------------------------------------------- /resources/static/down_line_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/down_line_dark.png -------------------------------------------------------------------------------- /resources/static/down_line_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/down_line_dark.svg -------------------------------------------------------------------------------- /resources/static/edit_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/edit_fill.svg -------------------------------------------------------------------------------- /resources/static/edit_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/edit_line.svg -------------------------------------------------------------------------------- /resources/static/empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/empty.svg -------------------------------------------------------------------------------- /resources/static/eraser.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/eraser.svg -------------------------------------------------------------------------------- /resources/static/eraser_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/eraser_fill.svg -------------------------------------------------------------------------------- /resources/static/error_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/error_fill.svg -------------------------------------------------------------------------------- /resources/static/error_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/error_line.svg -------------------------------------------------------------------------------- /resources/static/female.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/female.svg -------------------------------------------------------------------------------- /resources/static/file-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/file-plus.svg -------------------------------------------------------------------------------- /resources/static/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/file.svg -------------------------------------------------------------------------------- /resources/static/filter_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/filter_fill.svg -------------------------------------------------------------------------------- /resources/static/filter_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/filter_line.svg -------------------------------------------------------------------------------- /resources/static/float.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/float.png -------------------------------------------------------------------------------- /resources/static/float.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/float.svg -------------------------------------------------------------------------------- /resources/static/float_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/float_dark.png -------------------------------------------------------------------------------- /resources/static/float_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/float_dark.svg -------------------------------------------------------------------------------- /resources/static/flowbite--file-zip-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/flowbite--file-zip-outline.svg -------------------------------------------------------------------------------- /resources/static/fluent--save-16-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/fluent--save-16-regular.svg -------------------------------------------------------------------------------- /resources/static/fluent--save-as-24-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/fluent--save-as-24-regular.svg -------------------------------------------------------------------------------- /resources/static/folder-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/folder-open.svg -------------------------------------------------------------------------------- /resources/static/folder_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/folder_fill.svg -------------------------------------------------------------------------------- /resources/static/folder_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/folder_line.svg -------------------------------------------------------------------------------- /resources/static/gridicons--create.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/gridicons--create.svg -------------------------------------------------------------------------------- /resources/static/home_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/home_fill.svg -------------------------------------------------------------------------------- /resources/static/home_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/home_line.svg -------------------------------------------------------------------------------- /resources/static/icon-loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/icon-loading.gif -------------------------------------------------------------------------------- /resources/static/info_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/info_fill.svg -------------------------------------------------------------------------------- /resources/static/info_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/info_line.svg -------------------------------------------------------------------------------- /resources/static/ion--image-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/ion--image-outline.svg -------------------------------------------------------------------------------- /resources/static/italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/italic.svg -------------------------------------------------------------------------------- /resources/static/left_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/left_fill.svg -------------------------------------------------------------------------------- /resources/static/left_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/left_line.png -------------------------------------------------------------------------------- /resources/static/left_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/left_line.svg -------------------------------------------------------------------------------- /resources/static/left_line_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/left_line_dark.png -------------------------------------------------------------------------------- /resources/static/left_line_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/left_line_dark.svg -------------------------------------------------------------------------------- /resources/static/light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/light.json -------------------------------------------------------------------------------- /resources/static/list_view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/list_view.svg -------------------------------------------------------------------------------- /resources/static/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/loading.svg -------------------------------------------------------------------------------- /resources/static/main.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/main.qss -------------------------------------------------------------------------------- /resources/static/male.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/male.svg -------------------------------------------------------------------------------- /resources/static/mdi--comic-thought-bubble-outline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/mdi--comic-thought-bubble-outline.svg -------------------------------------------------------------------------------- /resources/static/media_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/media_fill.svg -------------------------------------------------------------------------------- /resources/static/media_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/media_line.svg -------------------------------------------------------------------------------- /resources/static/mingcute--document-line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/mingcute--document-line.svg -------------------------------------------------------------------------------- /resources/static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/minus.png -------------------------------------------------------------------------------- /resources/static/minus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/minus.svg -------------------------------------------------------------------------------- /resources/static/minus_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/minus_line.svg -------------------------------------------------------------------------------- /resources/static/more.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/more.svg -------------------------------------------------------------------------------- /resources/static/pan_tool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/pan_tool.svg -------------------------------------------------------------------------------- /resources/static/redo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/redo.svg -------------------------------------------------------------------------------- /resources/static/refresh_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/refresh_line.svg -------------------------------------------------------------------------------- /resources/static/right_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/right_fill.svg -------------------------------------------------------------------------------- /resources/static/right_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/right_line.png -------------------------------------------------------------------------------- /resources/static/right_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/right_line.svg -------------------------------------------------------------------------------- /resources/static/right_line_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/right_line_dark.png -------------------------------------------------------------------------------- /resources/static/right_line_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/right_line_dark.svg -------------------------------------------------------------------------------- /resources/static/rotate-arrow-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/rotate-arrow-top.svg -------------------------------------------------------------------------------- /resources/static/save-all.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/save-all.svg -------------------------------------------------------------------------------- /resources/static/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/save.svg -------------------------------------------------------------------------------- /resources/static/save_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/save_fill.svg -------------------------------------------------------------------------------- /resources/static/save_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/save_line.svg -------------------------------------------------------------------------------- /resources/static/search_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/search_line.svg -------------------------------------------------------------------------------- /resources/static/select.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/select.svg -------------------------------------------------------------------------------- /resources/static/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/settings.svg -------------------------------------------------------------------------------- /resources/static/size_grip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/size_grip.png -------------------------------------------------------------------------------- /resources/static/size_grip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/size_grip.svg -------------------------------------------------------------------------------- /resources/static/size_grip_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/size_grip_dark.png -------------------------------------------------------------------------------- /resources/static/size_grip_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/size_grip_dark.svg -------------------------------------------------------------------------------- /resources/static/sphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/sphere.png -------------------------------------------------------------------------------- /resources/static/sphere.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/sphere.svg -------------------------------------------------------------------------------- /resources/static/spliter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/spliter.svg -------------------------------------------------------------------------------- /resources/static/splitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/splitter.png -------------------------------------------------------------------------------- /resources/static/splitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/splitter.svg -------------------------------------------------------------------------------- /resources/static/splitter_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/splitter_dark.png -------------------------------------------------------------------------------- /resources/static/splitter_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/splitter_dark.svg -------------------------------------------------------------------------------- /resources/static/success_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/success_fill.svg -------------------------------------------------------------------------------- /resources/static/success_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/success_line.svg -------------------------------------------------------------------------------- /resources/static/table_view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/table_view.svg -------------------------------------------------------------------------------- /resources/static/tabler--align-center.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/tabler--align-center.svg -------------------------------------------------------------------------------- /resources/static/tabler--align-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/tabler--align-left.svg -------------------------------------------------------------------------------- /resources/static/tabler--align-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/tabler--align-right.svg -------------------------------------------------------------------------------- /resources/static/tabler--file-export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/tabler--file-export.svg -------------------------------------------------------------------------------- /resources/static/trash_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/trash_fill.svg -------------------------------------------------------------------------------- /resources/static/trash_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/trash_line.svg -------------------------------------------------------------------------------- /resources/static/tree_view.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/tree_view.svg -------------------------------------------------------------------------------- /resources/static/underline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/underline.svg -------------------------------------------------------------------------------- /resources/static/undo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/undo.svg -------------------------------------------------------------------------------- /resources/static/up_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/up_fill.svg -------------------------------------------------------------------------------- /resources/static/up_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/up_line.png -------------------------------------------------------------------------------- /resources/static/up_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/up_line.svg -------------------------------------------------------------------------------- /resources/static/up_line_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/up_line_dark.png -------------------------------------------------------------------------------- /resources/static/up_line_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/up_line_dark.svg -------------------------------------------------------------------------------- /resources/static/upload-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/upload-file.svg -------------------------------------------------------------------------------- /resources/static/upload_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/upload_line.svg -------------------------------------------------------------------------------- /resources/static/user_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/user_fill.svg -------------------------------------------------------------------------------- /resources/static/user_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/user_line.svg -------------------------------------------------------------------------------- /resources/static/vline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/vline.png -------------------------------------------------------------------------------- /resources/static/warning_fill.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/warning_fill.svg -------------------------------------------------------------------------------- /resources/static/warning_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/warning_line.svg -------------------------------------------------------------------------------- /resources/static/webtoon-toggle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/resources/static/webtoon-toggle.svg -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogkalu2/comic-translate/HEAD/tests/test_app.py --------------------------------------------------------------------------------