fix: add missing translations

This commit is contained in:
codytseng
2025-03-03 20:48:01 +08:00
parent 264e188e48
commit 7e5328f2b1
13 changed files with 57 additions and 28 deletions

View File

@@ -74,7 +74,7 @@ export default function LightningAddressInput() {
}}
/>
<Button onClick={handleSave} disabled={saving || !hasChanged} className="w-20">
{saving ? <Loader className="animate-spin" /> : 'Save'}
{saving ? <Loader className="animate-spin" /> : t('Save')}
</Button>
</div>
</div>

View File

@@ -12,7 +12,7 @@ export default function QuickZapSwitch() {
<Label htmlFor="quick-zap-switch">
<div className="text-base font-medium">{t('Quick zap')}</div>
<div className="text-muted-foreground text-sm">
{t('If enabled, you can zap with a single click')}
{t('If enabled, you can zap with a single click. Click and hold for custom amounts')}
</div>
</Label>
<Switch id="quick-zap-switch" checked={quickZap} onCheckedChange={updateQuickZap} />