Add sidebar i18n support and fix language selector visibility
Extended the internationalization system to support sidebar navigation menu with French/English translations. Fixed language selector dropdown styling to improve text visibility with proper contrast (gray background instead of transparent). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -13,9 +13,9 @@
|
||||
-->
|
||||
|
||||
<!-- Language Switcher -->
|
||||
<select class="form-select form-select-sm me-2" id="languageSwitcher" style="width: auto; background-color: transparent; color: white; border-color: white;" onchange="i18n.setLanguage(this.value)">
|
||||
<option value="fr">🇫🇷 FR</option>
|
||||
<option value="en">🇬🇧 EN</option>
|
||||
<select class="form-select form-select-sm me-2" id="languageSwitcher" style="width: auto; background-color: #6c757d; color: white; border-color: white;" onchange="i18n.setLanguage(this.value)">
|
||||
<option value="fr" style="background-color: #6c757d; color: white;">🇫🇷 FR</option>
|
||||
<option value="en" style="background-color: #6c757d; color: white;">🇬🇧 EN</option>
|
||||
</select>
|
||||
|
||||
<button type="button" class="btn btn-outline-light" id="RTC_time">loading...</button>
|
||||
|
||||
Reference in New Issue
Block a user