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:
andupetcu
2025-09-21 21:10:25 +03:00
parent 6eade8df49
commit 40c2df3b41
2 changed files with 20 additions and 13 deletions

View File

@@ -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>