changed string Bamort to BaMoRT

This commit is contained in:
2026-01-25 21:57:58 +01:00
parent 5112090718
commit e79067b39f
14 changed files with 23 additions and 23 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
This package is part of the Bamort monorepo and is licensed under the PolyForm Noncommercial License 1.0.0.
This package is part of the BaMoRT monorepo and is licensed under the PolyForm Noncommercial License 1.0.0.
See ../LICENSE
+1 -1
View File
@@ -1,6 +1,6 @@
# Bamort Frontend
Vue 3 + Vite frontend for the Bamort monorepo.
Vue 3 + Vite frontend for the BaMoRT monorepo.
## Development
+1 -1
View File
@@ -5,7 +5,7 @@
<!-- <link rel="icon" href="/favicon.ico">-->
<link rel="icon" href="/favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bamort</title>
<title>BaMoRT</title>
</head>
<body>
<div id="app"></div>
+5 -5
View File
@@ -16,7 +16,7 @@
<option value="">{{ $t('export.pleaseSelectFormat') }}</option>
<option value="pdf">{{ $t('export.formatPDF') }}</option>
<option value="vtt">{{ $t('export.formatVTT') }}</option>
<option value="bamort">{{ $t('export.formatBamort') }}</option>
<option value="bamort">{{ $t('export.formatBaMoRT') }}</option>
</select>
</div>
<div v-if="selectedFormat === 'pdf'" class="form-group">
@@ -111,7 +111,7 @@ export default {
} else if (this.selectedFormat === 'vtt') {
await this.exportToVTT()
} else if (this.selectedFormat === 'bamort') {
await this.exportToBamort()
await this.exportToBaMoRT()
}
},
@@ -187,11 +187,11 @@ export default {
}
},
async exportToBamort() {
async exportToBaMoRT() {
this.isExporting = true
try {
// Get Bamort JSON data and trigger download
// Get BaMoRT JSON data and trigger download
const response = await API.get(`/api/transfer/download/${this.characterId}`, {
responseType: 'blob'
})
@@ -210,7 +210,7 @@ export default {
this.$emit('export-success')
this.closeDialog()
} catch (error) {
console.error('Failed to export Bamort format:', error)
console.error('Failed to export BaMoRT format:', error)
alert(this.$t('export.exportFailed') + ': ' + (error.response?.data?.error || error.message))
} finally {
this.isExporting = false
+2 -2
View File
@@ -88,7 +88,7 @@ export default {
},
landing:{
title:'BaMoRT - Charakterverwaltung für mein Lieblingsrollenspielsystem',
description:'Bamort ist ein Werkzeug zur Charakterverwaltung für Rollenspiele. Es bietet Funktionen zur Charaktererstellung, -entwicklung und -verwaltung mit Unterstützung für Fertigkeiten, Zauber, Ausrüstung und mehr. Viele Ausrüstungsteile, Fertikeiten und Zauber fehlen noch, da das Projekt noch in der Entwicklung ist.',
description:'BaMoRT ist ein Werkzeug zur Charakterverwaltung für Rollenspiele. Es bietet Funktionen zur Charaktererstellung, -entwicklung und -verwaltung mit Unterstützung für Fertigkeiten, Zauber, Ausrüstung und mehr. Viele Ausrüstungsteile, Fertikeiten und Zauber fehlen noch, da das Projekt noch in der Entwicklung ist.',
frontendVersion:'Frontend Version',
backendVersion:'Backend Version',
version:'Version',
@@ -656,7 +656,7 @@ export default {
},
faq4: {
question: 'Wie funktioniert die Charaktererstellung?',
answer: 'Die Charaktererstellung basiert auf dem Midgard-Regelsystem. Wählen Sie Volk, Geschlecht und Klasse und verteilen Sie dann Ihre Attributswerte. Das System berechnet automatisch alle abgeleiteten Werte.'
answer: 'Die Charaktererstellung basiert auf einem populären deutschen Rollenspiel-Regelsystem. Wählen Sie Volk, Geschlecht und Klasse und verteilen Sie dann Ihre Attributswerte. Das System berechnet automatisch alle abgeleiteten Werte.'
},
faq5: {
question: 'Werden meine Daten gespeichert?',
+2 -2
View File
@@ -87,7 +87,7 @@ export default {
},
landing:{
title:'BaMoRT - Character Management for Role-Playing Games',
description:'Bamort is a modern character management tool for role-playing games. It provides comprehensive features for character creation, development, and management with support for skills, spells, equipment, and more.',
description:'BaMoRT is a modern character management tool for role-playing games. It provides comprehensive features for character creation, development, and management with support for skills, spells, equipment, and more.',
frontendVersion:'Frontend Version',
backendVersion:'Backend Version',
version:'Version',
@@ -651,7 +651,7 @@ export default {
},
faq4: {
question: 'How does character creation work?',
answer: 'Character creation is based on the Midgard rule system. Choose race, gender, and class, then distribute your attribute values. The system automatically calculates all derived values.'
answer: 'Character creation is based on a popular German RPG rule system. Choose race, gender, and class, then distribute your attribute values. The system automatically calculates all derived values.'
},
faq5: {
question: 'Is my data saved?',
+1 -1
View File
@@ -2,7 +2,7 @@
<div class="landing-page">
<div class="landing-content">
<div class="dragon-container">
<img src="/bamorty.png" alt="Bamort Dragon" class="dragon-image" />
<img src="/bamorty.png" alt="BaMoRT Dragon" class="dragon-image" />
</div>
<div class="info-container">
+1 -1
View File
@@ -1,4 +1,4 @@
# Environment variables for Bamort development environment
# Environment variables for BaMoRT development environment
# API Configuration
# API_URL=http://localhost:8180