16 lines
383 B
Python
16 lines
383 B
Python
#!/usr/bin/python3
|
|
from pathlib import Path
|
|
from subprocess import check_call
|
|
from tkinter import filedialog, ttk
|
|
from cls_mth_fc import Create, LxTools
|
|
from wp_app_config import AppConfig, Msg
|
|
import gettext
|
|
import locale
|
|
import os
|
|
import shutil
|
|
import subprocess
|
|
from typing import Optional, Dict, Any, NoReturn, TextIO, Tuple, List
|
|
# Translate
|
|
_ = AppConfig.setup_translations()
|
|
|