diff --git a/src/App.vue b/src/App.vue index 6bc4988..c948b82 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,6 +1,7 @@ @@ -61,4 +64,4 @@ const emit = defineEmits(['open-custom', 'toggle-guide']); .guide-btn { /* Specific styling for guide if needed */ } - \ No newline at end of file + diff --git a/src/components/StatusPanel.vue b/src/components/StatusPanel.vue index 18d4660..236ba3a 100644 --- a/src/components/StatusPanel.vue +++ b/src/components/StatusPanel.vue @@ -2,9 +2,11 @@ import { computed } from 'vue'; import { usePuzzleStore } from '@/stores/puzzle'; import { useTimer } from '@/composables/useTimer'; +import { useI18n } from '@/composables/useI18n'; const store = usePuzzleStore(); const { formatTime } = useTimer(); +const { t } = useI18n(); const formattedTime = computed(() => formatTime(store.elapsedTime)); const progressText = computed(() => `${store.progressPercentage.toFixed(3)}%`); @@ -13,17 +15,17 @@ const progressText = computed(() => `${store.progressPercentage.toFixed(3)}%`);