18 lines
535 B
Vue
18 lines
535 B
Vue
<template>
|
|
<div class="admin-translations-view">
|
|
<h1 class="text-2xl font-bold mb-6">i18n Translation Management</h1>
|
|
<p class="text-gray-400 mb-8">Manage translation keys and values for all supported languages.</p>
|
|
|
|
<div class="bg-gray-800/50 rounded-xl border border-gray-700 p-6">
|
|
<div class="text-center py-12 text-gray-500">
|
|
Advanced translation management interface will be implemented here.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
</script>
|
|
|
|
<style scoped>
|
|
</style> |