From 4034c222b935aec55ae7df499d8cd5001ff854bd Mon Sep 17 00:00:00 2001 From: Gnill82 Date: Thu, 11 Sep 2025 01:45:06 +0900 Subject: [PATCH] =?UTF-8?q?=E2=97=8F=20=ED=8C=8C=EC=9D=BC=EB=AA=85=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=EC=9D=84=20=EC=99=84=EB=A3=8C=ED=96=88?= =?UTF-8?q?=EC=8A=B5=EB=8B=88=EB=8B=A4:?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. po_extract_untranslated.py - PO 파일에서 번역되지 않은 문자열을 CSV로 추출 2. po_merge_to_csv.py - 여러 언어의 PO 파일을 하나의 CSV로 병합 3. po_update_from_tsv.py - TSV/CSV 파일의 번역을 PO 파일에 반영 새로운 파일명은 Python 컨벤션을 따르며, 각 스크립트의 기능을 명확하게 나타냅니다. --- .gitignore | 1 + Export untranslated Strings.py => po_extract_untranslated.py | 0 merge po to csv.py => po_merge_to_csv.py | 0 Update TSV to PO.py => po_update_from_tsv.py | 0 4 files changed, 1 insertion(+) create mode 100644 .gitignore rename Export untranslated Strings.py => po_extract_untranslated.py (100%) rename merge po to csv.py => po_merge_to_csv.py (100%) rename Update TSV to PO.py => po_update_from_tsv.py (100%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bf0824e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.log \ No newline at end of file diff --git a/Export untranslated Strings.py b/po_extract_untranslated.py similarity index 100% rename from Export untranslated Strings.py rename to po_extract_untranslated.py diff --git a/merge po to csv.py b/po_merge_to_csv.py similarity index 100% rename from merge po to csv.py rename to po_merge_to_csv.py diff --git a/Update TSV to PO.py b/po_update_from_tsv.py similarity index 100% rename from Update TSV to PO.py rename to po_update_from_tsv.py