mirror of
https://github.com/movie-web/movie-web.git
synced 2024-12-26 03:51:51 +01:00
Merge branch 'dev' into dev
This commit is contained in:
commit
3b1cb851c1
@ -14,7 +14,10 @@ export function useRandomTranslation() {
|
||||
const defaultTitle = t(`${key}.default`) ?? "";
|
||||
if (!shouldJoke) return defaultTitle;
|
||||
|
||||
const keys = t(`${key}.extra`, { returnObjects: true });
|
||||
const keys = t(`${key}.extra`, {
|
||||
returnObjects: true,
|
||||
defaultValue: defaultTitle,
|
||||
});
|
||||
if (Array.isArray(keys)) {
|
||||
if (keys.length === 0) return defaultTitle;
|
||||
return keys[Math.floor(seed * keys.length)];
|
||||
|
Loading…
Reference in New Issue
Block a user