9015cef098
Changed tooltip text for fixed buttons to match action bar wording: - Print button: "Print CV" → "Print Friendly" - Download button: "Download PDF" → "Download as PDF" This ensures consistency across all button locations (fixed left buttons, action bar, and hamburger menu). Changes: - templates/partials/widgets/print-friendly-button.html: Updated tooltip text - templates/partials/widgets/download-button.html: Updated tooltip text
14 lines
555 B
HTML
14 lines
555 B
HTML
{{define "print-friendly-button"}}
|
|
<!-- Print-Friendly Button (Fixed Left) -->
|
|
<button
|
|
id="print-friendly-button"
|
|
class="fixed-btn print-friendly-btn no-print has-tooltip"
|
|
aria-label="{{if eq .Lang "es"}}Imprimir CV{{else}}Print Friendly{{end}}"
|
|
data-tooltip="{{if eq .Lang "es"}}Imprimir CV{{else}}Print Friendly{{end}}"
|
|
onclick="window.print()"
|
|
_="on mouseenter call syncPrintHover(true)
|
|
on mouseleave call syncPrintHover(false)">
|
|
<iconify-icon icon="mdi:leaf" width="28" height="28"></iconify-icon>
|
|
</button>
|
|
{{end}}
|