Update Romanian translations and improve chapter dropdown
- Change "Bookmark-uri" to "Favorite" throughout Romanian translations - Update chapter dropdown to show full "Chapter X" labels instead of truncated text - Add improved MenuProps for better dropdown UX with scrollable menu - Enhance navigation clarity with non-truncated chapter selection 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -631,10 +631,17 @@ export default function BibleReaderNew() {
|
||||
setSelectedChapter(newChapter)
|
||||
updateUrl(selectedBook, newChapter)
|
||||
}}
|
||||
MenuProps={{
|
||||
PaperProps: {
|
||||
style: {
|
||||
maxHeight: 400,
|
||||
},
|
||||
},
|
||||
}}
|
||||
>
|
||||
{Array.from({ length: maxChapters }, (_, i) => (
|
||||
<MenuItem key={i + 1} value={i + 1}>
|
||||
{i + 1}
|
||||
{t('chapter')} {i + 1}
|
||||
</MenuItem>
|
||||
))}
|
||||
</Select>
|
||||
|
||||
Reference in New Issue
Block a user