fix: rename TranscriptorIO to Transcriptarr

This commit is contained in:
2026-01-16 17:07:04 +01:00
parent b7628ab316
commit ac7241b1b9
22 changed files with 45 additions and 45 deletions

View File

@@ -1,6 +1,6 @@
# TranscriptorIO Frontend
# Transcriptarr Frontend
Vue 3 + TypeScript + Vite frontend for TranscriptorIO.
Vue 3 + TypeScript + Vite frontend for Transcriptarr.
## 🚀 Quick Start

View File

@@ -4,7 +4,7 @@
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TranscriptorIO</title>
<title>Transcriptarr</title>
</head>
<body>
<div id="app"></div>

View File

@@ -1,7 +1,7 @@
{
"name": "transcriptorio-ui",
"version": "1.0.0",
"description": "TranscriptorIO Web UI - Vue 3 Frontend",
"description": "Transcriptarr Web UI - Vue 3 Frontend",
"type": "module",
"scripts": {
"dev": "vite",

View File

@@ -1,6 +1,6 @@
#!/bin/bash
echo "🎬 TranscriptorIO Frontend - Setup Script"
echo "🎬 Transcriptarr Frontend - Setup Script"
echo "=========================================="
echo ""

View File

@@ -10,7 +10,7 @@
<div class="container">
<div class="header-content">
<div class="logo">
<h1>🎬 TranscriptorIO</h1>
<h1>🎬 Transcriptarr</h1>
<span class="subtitle">AI-Powered Subtitle Transcription</span>
</div>
<nav class="main-nav">
@@ -41,7 +41,7 @@
<footer class="app-footer">
<div class="container">
<p>&copy; 2026 TranscriptorIO | Powered by Whisper AI</p>
<p>&copy; 2026 Transcriptarr | Powered by Whisper AI</p>
</div>
</footer>
</div>

View File

@@ -2,14 +2,14 @@
<div class="setup-wizard-overlay">
<div class="wizard-container">
<div class="wizard-header">
<h1>🎬 Welcome to TranscriptorIO</h1>
<h1>🎬 Welcome to Transcriptarr</h1>
<p>Let's get you set up in just a few steps</p>
</div>
<!-- Step 1: Choose Mode -->
<div v-if="currentStep === 1" class="wizard-step">
<h2>Choose Operation Mode</h2>
<p class="step-description">How would you like to use TranscriptorIO?</p>
<p class="step-description">How would you like to use Transcriptarr?</p>
<div class="mode-cards">
<div
@@ -150,7 +150,7 @@
<!-- Scanner Configuration -->
<div class="config-section">
<h3 class="section-title">⏰ Automatic Scanning</h3>
<p class="section-description">How often should TranscriptorIO scan your libraries for new content?</p>
<p class="section-description">How often should Transcriptarr scan your libraries for new content?</p>
<div class="scanner-config">
<div class="form-group">
@@ -298,7 +298,7 @@
<!-- Step 2b: Bazarr Slave Configuration -->
<div v-if="currentStep === 2 && selectedMode === 'bazarr_slave'" class="wizard-step">
<h2>Bazarr Provider Configuration</h2>
<p class="step-description">Use these details to add TranscriptorIO as a provider in Bazarr</p>
<p class="step-description">Use these details to add Transcriptarr as a provider in Bazarr</p>
<div v-if="bazarrInfo" class="bazarr-info-card">
<div class="info-section">
@@ -319,7 +319,7 @@
<div class="info-section">
<h3>Provider Type</h3>
<code>TranscriptorIO (Whisper AI)</code>
<code>Transcriptarr (Whisper AI)</code>
</div>
<div class="info-instructions">
@@ -346,7 +346,7 @@
<div v-if="currentStep === 5" class="wizard-step completion">
<div class="completion-icon">✅</div>
<h2>Setup Complete!</h2>
<p>TranscriptorIO is ready to use</p>
<p>Transcriptarr is ready to use</p>
<button @click="finishSetup" class="btn btn-primary btn-lg">
Go to Dashboard →
</button>

View File

@@ -46,7 +46,7 @@ const router = createRouter({
})
router.beforeEach((to, _from, next) => {
document.title = `${to.meta.title || 'TranscriptorIO'} - TranscriptorIO`
document.title = `${to.meta.title || 'Transcriptarr'} - Transcriptarr`
next()
})