diff --git a/README.md b/README.md
index 3b0f050..6dcfd1b 100644
--- a/README.md
+++ b/README.md
@@ -5,7 +5,7 @@ An AI-powered game translation tool with a GUI. Translate RPG Maker, Ren'Py, Tyr
## Credits
- **[Sinflower](https://github.com/Sinflower)** — [RV2JSON](https://github.com/Sinflower/RV2JSON) — enables RPGMaker Ace games to be translated the same way as MV/MZ by converting rvdata2 files to JSON and back.
-- **Sakura & kaoss** — TL Inspector (`util/tl_inspector/`) — in-game translation source inspector and live-edit plugin for RPG Maker MV/MZ playtesting.
+- **Sakura & Kao_SSS** — TL Inspector (`util/tl_inspector/`) — in-game translation source inspector and live-edit plugin for RPG Maker MV/MZ playtesting.
## Table of Contents
diff --git a/gui/workflow_tab.py b/gui/workflow_tab.py
index ce45ea3..045de82 100644
--- a/gui/workflow_tab.py
+++ b/gui/workflow_tab.py
@@ -2419,7 +2419,7 @@ class WorkflowTab(QWidget):
hint.setStyleSheet("color:#9d9d9d;font-size:13px;padding-bottom:4px;")
layout.addWidget(hint)
- credits = QLabel("Idea by Sakura · Plugin by kaoss")
+ credits = QLabel("Idea by Sakura · Plugin by Kao_SSS")
credits.setStyleSheet("color:#6a6a6a;font-size:11px;font-style:italic;padding-bottom:6px;")
layout.addWidget(credits)
diff --git a/util/tl_inspector/TLInspector.bat b/util/tl_inspector/TLInspector.bat
index c8b4747..1085807 100644
--- a/util/tl_inspector/TLInspector.bat
+++ b/util/tl_inspector/TLInspector.bat
@@ -1,7 +1,7 @@
@echo off
rem ============================================================================
rem TLInspector installer / uninstaller (RPG Maker MV & MZ)
-rem Idea by Sakura · Plugin by kaoss
+rem Idea by Sakura · Plugin by Kao_SSS
rem Put this file and TLInspector.js in the GAME ROOT (next to the .exe /
rem index.html), then double-click this file.
rem - Not installed yet -> installs it (moves the plugin into the plugins
@@ -22,7 +22,7 @@ function PauseExit { [void](Read-Host "`nPress Enter to exit"); exit }
$root = $env:TLI_ROOT
Write-Host "============================================"
Write-Host " TLInspector installer"
-Write-Host " Idea by Sakura · Plugin by kaoss"
+Write-Host " Idea by Sakura · Plugin by Kao_SSS"
Write-Host "============================================"
# --- Detect engine / locate plugins.js (MV uses www\, MZ does not) ----------
diff --git a/util/tl_inspector/TLInspector.js b/util/tl_inspector/TLInspector.js
index b6d69a2..054a0f0 100644
--- a/util/tl_inspector/TLInspector.js
+++ b/util/tl_inspector/TLInspector.js
@@ -1,16 +1,16 @@
//=============================================================================
// TLInspector.js
-// Idea by Sakura · Plugin by kaoss
+// Idea by Sakura · Plugin by Kao_SSS
//=============================================================================
/*:
* @plugindesc Translation Source Inspector - shows which source file/line every
* on-screen line of text and image comes from, and jumps to it in VSCode.
- * @author kaoss
+ * @author Kao_SSS
*
* @help
* ----------------------------------------------------------------------------
* TLInspector (RPGMaker MV / MZ, NW.js)
- * Credits: Idea by Sakura · Plugin by kaoss
+ * Credits: Idea by Sakura · Plugin by Kao_SSS
* ----------------------------------------------------------------------------
* A drop-in proofreading aid for translators. While the game runs, it tracks
* every message / choice / scrolling-text line and every on-screen image, and
@@ -135,7 +135,7 @@
function log() {
if (window.console) { console.log.apply(console, ['[TLInspector]'].concat([].slice.call(arguments))); }
}
- log('init', { engine: ENGINE, node: nodeOk, dataDir: DATA_DIR, credits: 'Idea by Sakura · Plugin by kaoss' });
+ log('init', { engine: ENGINE, node: nodeOk, dataDir: DATA_DIR, credits: 'Idea by Sakura · Plugin by Kao_SSS' });
//=========================================================================
// File cache + JSON value locator (path -> char offset -> line:col)
@@ -1379,7 +1379,7 @@
var head = document.createElement('div');
head.style.cssText = 'padding:8px 10px;background:#11131a;border-bottom:1px solid #333;display:flex;align-items:center;gap:8px;flex:0 0 auto';
head.innerHTML =
- 'TL Inspector' +
+ 'TL Inspector' +
'Text' +
'Images' +
'⌖ Inspect' +
diff --git a/util/tl_inspector/__init__.py b/util/tl_inspector/__init__.py
index 8338591..362c1e2 100644
--- a/util/tl_inspector/__init__.py
+++ b/util/tl_inspector/__init__.py
@@ -1,4 +1,4 @@
-"""TL Inspector install helpers for RPG Maker MV/MZ (Idea: Sakura · Plugin: kaoss)."""
+"""TL Inspector install helpers for RPG Maker MV/MZ (Idea: Sakura · Plugin: Kao_SSS)."""
from util.tl_inspector.installer import bundled_plugin_path, detect_engine, install, status, uninstall
diff --git a/util/tl_inspector/installer.py b/util/tl_inspector/installer.py
index 409e6b7..b9116a7 100644
--- a/util/tl_inspector/installer.py
+++ b/util/tl_inspector/installer.py
@@ -1,6 +1,6 @@
"""Install / uninstall TLInspector into an RPG Maker MV or MZ game folder.
-Credits: Idea by Sakura · Plugin by kaoss
+Credits: Idea by Sakura · Plugin by Kao_SSS
"""
from __future__ import annotations