added common translations
This commit is contained in:
@@ -19,19 +19,19 @@
|
||||
<div class="filter-item">
|
||||
<label>{{ $t('equipment.personal_item') }}:</label>
|
||||
<select v-model="filterPersonalItem">
|
||||
<option value="">{{ $t('all') || 'All' }}</option>
|
||||
<option value="true">{{ $t('yes') || 'Yes' }}</option>
|
||||
<option value="false">{{ $t('no') || 'No' }}</option>
|
||||
<option value="">{{ $t('common.all') }}</option>
|
||||
<option value="true">{{ $t('common.yes') }}</option>
|
||||
<option value="false">{{ $t('common.no') }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="filter-item">
|
||||
<label>{{ $t('equipment.quelle') }}:</label>
|
||||
<select v-model="filterQuelle">
|
||||
<option value="">{{ $t('all') || 'All' }}</option>
|
||||
<option value="">{{ $t('common.all') }}</option>
|
||||
<option v-for="quelle in availableQuellen" :key="quelle" :value="quelle">{{ quelle }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<button @click="clearFilters" class="btn-clear-filters">{{ $t('clearFilters') || 'Clear Filters' }}</button>
|
||||
<button @click="clearFilters" class="btn-clear-filters">{{ $t('common.clearFilters') }}</button>
|
||||
</div>
|
||||
|
||||
<div class="tables-container">
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<div class="search-box">
|
||||
<input v-model="searchTerm" type="text" :placeholder="$t('search')" />
|
||||
<select v-model="filterKey">
|
||||
<option value="">{{ $t('all') || 'All' }}</option>
|
||||
<option value="">{{ $t('common.all') }}</option>
|
||||
<option v-for="key in keyOptions" :key="key" :value="key">{{ key }}</option>
|
||||
</select>
|
||||
<button class="btn-primary" @click="startCreate">{{ $t('newEntry') }}</button>
|
||||
|
||||
@@ -18,41 +18,41 @@
|
||||
<div class="filter-item">
|
||||
<label>{{ $t('skill.category') }}:</label>
|
||||
<select v-model="filterCategory">
|
||||
<option value="">{{ $t('all') || 'All' }}</option>
|
||||
<option value="">{{ $t('common.all') }}</option>
|
||||
<option v-for="cat in availableCategories" :key="cat" :value="cat">{{ cat }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="filter-item">
|
||||
<label>{{ $t('skill.difficulty') }}:</label>
|
||||
<select v-model="filterDifficulty">
|
||||
<option value="">{{ $t('all') || 'All' }}</option>
|
||||
<option value="">{{ $t('common.all') }}</option>
|
||||
<option v-for="diff in availableDifficulties" :key="diff" :value="diff">{{ diff }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="filter-item">
|
||||
<label>{{ $t('skill.improvable') }}:</label>
|
||||
<select v-model="filterImprovable">
|
||||
<option value="">{{ $t('all') || 'All' }}</option>
|
||||
<option value="true">{{ $t('yes') || 'Yes' }}</option>
|
||||
<option value="false">{{ $t('no') || 'No' }}</option>
|
||||
<option value="">{{ $t('common.all') }}</option>
|
||||
<option value="true">{{ $t('common.yes') }}</option>
|
||||
<option value="false">{{ $t('common.no') }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="filter-item">
|
||||
<label>{{ $t('skill.innateskill') }}:</label>
|
||||
<select v-model="filterInnateskill">
|
||||
<option value="">{{ $t('all') || 'All' }}</option>
|
||||
<option value="true">{{ $t('yes') || 'Yes' }}</option>
|
||||
<option value="false">{{ $t('no') || 'No' }}</option>
|
||||
<option value="">{{ $t('common.all') }}</option>
|
||||
<option value="true">{{ $t('common.yes') }}</option>
|
||||
<option value="false">{{ $t('common.no') }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="filter-item">
|
||||
<label>{{ $t('skill.bonusskill') }}:</label>
|
||||
<select v-model="filterBonuseigenschaft">
|
||||
<option value="">{{ $t('all') || 'All' }}</option>
|
||||
<option value="">{{ $t('common.all') }}</option>
|
||||
<option v-for="bonus in availableBonuseigenschaften" :key="bonus" :value="bonus">{{ bonus }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<button @click="clearFilters" class="btn-clear-filters">{{ $t('clearFilters') || 'Clear Filters' }}</button>
|
||||
<button @click="clearFilters" class="btn-clear-filters">{{ $t('common.clearFilters') }}</button>
|
||||
</div>
|
||||
|
||||
<div class="tables-container">
|
||||
|
||||
@@ -78,46 +78,46 @@
|
||||
<div class="filter-item">
|
||||
<label>{{ $t('spell.category') }}:</label>
|
||||
<select v-model="filterCategory">
|
||||
<option value="">{{ $t('all') || 'All' }}</option>
|
||||
<option value="">{{ $t('common.all') }}</option>
|
||||
<option v-for="cat in availableCategories" :key="cat" :value="cat">{{ cat }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="filter-item">
|
||||
<label>{{ $t('spell.level') }}:</label>
|
||||
<select v-model="filterLevel">
|
||||
<option value="">{{ $t('all') || 'All' }}</option>
|
||||
<option value="">{{ $t('common.all') }}</option>
|
||||
<option v-for="level in availableLevels" :key="level" :value="level">{{ level }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="filter-item">
|
||||
<label>{{ $t('spell.ursprung') }}:</label>
|
||||
<select v-model="filterUrsprung">
|
||||
<option value="">{{ $t('all') || 'All' }}</option>
|
||||
<option value="">{{ $t('common.all') }}</option>
|
||||
<option v-for="ursprung in availableUrsprungs" :key="ursprung" :value="ursprung">{{ ursprung }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="filter-item">
|
||||
<label>{{ $t('spell.reichweite') }}:</label>
|
||||
<select v-model="filterReichweite">
|
||||
<option value="">{{ $t('all') || 'All' }}</option>
|
||||
<option value="">{{ $t('common.all') }}</option>
|
||||
<option v-for="reichweite in availableReichweiten" :key="reichweite" :value="reichweite">{{ reichweite }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="filter-item">
|
||||
<label>{{ $t('spell.wirkungsziel') }}:</label>
|
||||
<select v-model="filterWirkungsziel">
|
||||
<option value="">{{ $t('all') || 'All' }}</option>
|
||||
<option value="">{{ $t('common.all') }}</option>
|
||||
<option v-for="wirkungsziel in availableWirkungsziele" :key="wirkungsziel" :value="wirkungsziel">{{ wirkungsziel }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="filter-item">
|
||||
<label>{{ $t('spell.quelle') }}:</label>
|
||||
<select v-model="filterQuelle">
|
||||
<option value="">{{ $t('all') || 'All' }}</option>
|
||||
<option value="">{{ $t('common.all') }}</option>
|
||||
<option v-for="quelle in availableQuellen" :key="quelle" :value="quelle">{{ quelle }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<button @click="clearFilters" class="btn-clear-filters">{{ $t('clearFilters') || 'Clear Filters' }}</button>
|
||||
<button @click="clearFilters" class="btn-clear-filters">{{ $t('common.clearFilters') }}</button>
|
||||
</div>
|
||||
|
||||
<div class="tables-container">
|
||||
|
||||
@@ -19,18 +19,18 @@
|
||||
<div class="filter-item">
|
||||
<label>{{ $t('weaponskill.difficulty') }}:</label>
|
||||
<select v-model="filterDifficulty">
|
||||
<option value="">{{ $t('all') || 'All' }}</option>
|
||||
<option value="">{{ $t('common.all') }}</option>
|
||||
<option v-for="diff in availableDifficulties" :key="diff" :value="diff">{{ diff }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="filter-item">
|
||||
<label>{{ $t('weaponskill.quelle') }}:</label>
|
||||
<select v-model="filterQuelle">
|
||||
<option value="">{{ $t('all') || 'All' }}</option>
|
||||
<option value="">{{ $t('common.all') }}</option>
|
||||
<option v-for="quelle in availableQuellen" :key="quelle" :value="quelle">{{ quelle }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<button @click="clearFilters" class="btn-clear-filters">{{ $t('clearFilters') || 'Clear Filters' }}</button>
|
||||
<button @click="clearFilters" class="btn-clear-filters">{{ $t('common.clearFilters') }}</button>
|
||||
</div>
|
||||
|
||||
<div class="tables-container">
|
||||
|
||||
@@ -19,46 +19,46 @@
|
||||
<div class="filter-item">
|
||||
<label>{{ $t('weapon.skillrequired') }}:</label>
|
||||
<select v-model="filterSkillRequired">
|
||||
<option value="">{{ $t('all') || 'All' }}</option>
|
||||
<option value="">{{ $t('common.all') }}</option>
|
||||
<option v-for="skill in availableSkillsRequired" :key="skill" :value="skill">{{ skill }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="filter-item">
|
||||
<label>{{ $t('weapon.damage') }}:</label>
|
||||
<select v-model="filterDamage">
|
||||
<option value="">{{ $t('all') || 'All' }}</option>
|
||||
<option value="">{{ $t('common.all') }}</option>
|
||||
<option v-for="dmg in availableDamages" :key="dmg" :value="dmg">{{ dmg }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="filter-item">
|
||||
<label>{{ $t('weapon.rangenear') }}:</label>
|
||||
<select v-model="filterRangeNear">
|
||||
<option value="">{{ $t('all') || 'All' }}</option>
|
||||
<option value="">{{ $t('common.all') }}</option>
|
||||
<option v-for="range in availableRangesNear" :key="range" :value="range">{{ range }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="filter-item">
|
||||
<label>{{ $t('weapon.rangemiddle') }}:</label>
|
||||
<select v-model="filterRangeMiddle">
|
||||
<option value="">{{ $t('all') || 'All' }}</option>
|
||||
<option value="">{{ $t('common.all') }}</option>
|
||||
<option v-for="range in availableRangesMiddle" :key="range" :value="range">{{ range }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="filter-item">
|
||||
<label>{{ $t('weapon.rangefar') }}:</label>
|
||||
<select v-model="filterRangeFar">
|
||||
<option value="">{{ $t('all') || 'All' }}</option>
|
||||
<option value="">{{ $t('common.all') }}</option>
|
||||
<option v-for="range in availableRangesFar" :key="range" :value="range">{{ range }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="filter-item">
|
||||
<label>{{ $t('weapon.quelle') }}:</label>
|
||||
<select v-model="filterQuelle">
|
||||
<option value="">{{ $t('all') || 'All' }}</option>
|
||||
<option value="">{{ $t('common.all') }}</option>
|
||||
<option v-for="quelle in availableQuellen" :key="quelle" :value="quelle">{{ quelle }}</option>
|
||||
</select>
|
||||
</div>
|
||||
<button @click="clearFilters" class="btn-clear-filters">{{ $t('clearFilters') || 'Clear Filters' }}</button>
|
||||
<button @click="clearFilters" class="btn-clear-filters">{{ $t('common.clearFilters') }}</button>
|
||||
</div>
|
||||
|
||||
<div class="tables-container">
|
||||
|
||||
@@ -1,5 +1,9 @@
|
||||
export default {
|
||||
common: {
|
||||
all: 'Alle',
|
||||
yes: 'Ja',
|
||||
no: 'Nein',
|
||||
clearFilters: 'Filter zurücksetzen',
|
||||
loading: 'Laden...',
|
||||
cancel: 'Abbrechen',
|
||||
previous: 'Zurück',
|
||||
@@ -134,6 +138,7 @@ export default {
|
||||
quelle:'Quelle',
|
||||
system:'System',
|
||||
personal_item:'Pers',
|
||||
page:'Seite',
|
||||
add: 'Ausrüstung hinzufügen',
|
||||
addEquipment: 'Ausrüstung hinzufügen',
|
||||
search: 'Suche',
|
||||
@@ -192,6 +197,7 @@ export default {
|
||||
pp:'AP',
|
||||
quelle:'Quelle',
|
||||
import: 'Import',
|
||||
importing: 'Importiere...',
|
||||
selectCsv: 'CSV auswählen',
|
||||
system: 'System'
|
||||
},
|
||||
|
||||
+18
-12
@@ -1,5 +1,9 @@
|
||||
export default {
|
||||
common: {
|
||||
common: {
|
||||
all: 'All',
|
||||
yes: 'Yes',
|
||||
no: 'No',
|
||||
clearFilters: 'Clear Filters',
|
||||
loading: 'Loading...',
|
||||
cancel: 'Cancel',
|
||||
previous: 'Previous',
|
||||
@@ -132,6 +136,7 @@ export default {
|
||||
wert:'Value',
|
||||
quelle:'Source',
|
||||
system:'System',
|
||||
page:'Page',
|
||||
personal_item:'Pers', add: 'Add Equipment',
|
||||
addEquipment: 'Add Equipment',
|
||||
search: 'Search',
|
||||
@@ -188,6 +193,7 @@ export default {
|
||||
pp:'AP',
|
||||
quelle:'Source',
|
||||
import: 'Import',
|
||||
importing: 'Importing...',
|
||||
selectCsv: 'select CSV',
|
||||
system: 'System',
|
||||
},
|
||||
@@ -217,7 +223,7 @@ export default {
|
||||
gold: 'Gold'
|
||||
}
|
||||
},
|
||||
Spell:'Zauber',
|
||||
Spell:'Spell',
|
||||
weapon:{
|
||||
id:'ID',
|
||||
name:'Name',
|
||||
@@ -265,7 +271,7 @@ export default {
|
||||
editSuccess: 'Weapon successfully updated!',
|
||||
editError: 'Error saving weapon'
|
||||
},
|
||||
Weapons:'Waffen',
|
||||
Weapons:'Weapons',
|
||||
weaponskill:{
|
||||
id:'ID',
|
||||
name:'Name',
|
||||
@@ -283,14 +289,14 @@ export default {
|
||||
initialwert:'Initial Value',
|
||||
difficulty:'Difficulty',
|
||||
},
|
||||
WaeponSkill:'Waffenfertigkeiten',
|
||||
maintenance:'Wartung',
|
||||
WaeponSkill:'Weapon Skills',
|
||||
maintenance:'Maintenance',
|
||||
maintmenu:{
|
||||
skill:'Fertigkeiten',
|
||||
weaponskill:'Waffenfertigkeiten',
|
||||
spell:'Zauber',
|
||||
equipment:'Ausrüstung',
|
||||
weapon:'Waffen',
|
||||
skill:'Skills',
|
||||
weaponskill:'Weapon Skills',
|
||||
spell:'Spells',
|
||||
equipment:'Equipment',
|
||||
weapon:'Weapons',
|
||||
believe:'Beliefs',
|
||||
gamesystem:'Game Systems',
|
||||
litsource:'Sources',
|
||||
@@ -366,9 +372,9 @@ export default {
|
||||
saving: 'Saving...',
|
||||
cancel: 'Cancel'
|
||||
},
|
||||
search:'Suche',
|
||||
search:'Search',
|
||||
newEntry:'New Entry',
|
||||
Skill:'Fertigkeit',
|
||||
Skill:'Skill',
|
||||
newSkill:'New Skill',
|
||||
createSkill:'Create Skill',
|
||||
experience: {
|
||||
|
||||
Reference in New Issue
Block a user