AUR4000
Error Message
Description
Common Scenarios
Missing Translation Key
// Translation file (en.json)
{
"welcome": "Welcome",
"goodbye": "Goodbye"
}
// Template usage
<template>
<p>${'hello' & t}</p> <!-- AUR4000: 'hello' key doesn't exist -->
<p>${'welcome' & t}</p> <!-- ✅ Works fine -->
</template>Typo in Translation Key
Solutions
1. Add the Missing Translation Key
2. Verify Translation Files Are Loaded
3. Use Fallback Values
4. Check Key Existence Programmatically
Debugging Tips
Last updated
Was this helpful?