i have multiple custom-file dialogs in bootstrap 4 on my site. I know how i can set the custom-file-text via scss variables like this:
$custom-file-text: (
placeholder: (
en: "Choose file...",
es: "Seleccionar archivo...",
de: "Datei wählen..."
),
button-label: (
en: "Browse",
es: "Navegar",
de: "Durchsuchen"
)
);
But this would be applied to all my available custom-file dialogs. How can i set the texts for each custom-file dialog individually?