mirror of
https://github.com/MadeBaruna/paimon-moe.git
synced 2025-03-14 11:43:52 +01:00
Add items translation
This commit is contained in:
parent
63f7acbd62
commit
3aa8b6d7db
15 changed files with 23 additions and 19 deletions
|
@ -36,12 +36,14 @@
|
|||
<div
|
||||
on:click={() => select(index, item)}
|
||||
class={`h-20 w-20 p-2 mr-2 flex items-center justify-center cursor-pointer rounded-xl transition duration-300
|
||||
${selected === index ? 'bg-background border-primary border-2' : ''}`}>
|
||||
${selected === index ? 'bg-background border-primary border-2' : ''}`}
|
||||
>
|
||||
<img
|
||||
class="w-full max-h-full object-contain"
|
||||
src={`/images/items/${item.id}.png`}
|
||||
alt={item.name}
|
||||
title={item.name} />
|
||||
title={item.name}
|
||||
/>
|
||||
</div>
|
||||
{/each}
|
||||
</div>
|
||||
|
@ -52,7 +54,8 @@
|
|||
class="w-full max-h-full object-contain"
|
||||
src={`/images/items/${item}.png`}
|
||||
alt={itemList[item].name}
|
||||
title={itemList[item].name} />
|
||||
title={itemList[item].name}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
|
@ -68,9 +71,10 @@
|
|||
class="w-full max-h-full object-contain"
|
||||
src={`/images/items/${selectedItem.id}.png`}
|
||||
alt={selectedItem.name}
|
||||
title={selectedItem.name} />
|
||||
title={selectedItem.name}
|
||||
/>
|
||||
</div>
|
||||
<span>{selectedItem.name}</span>
|
||||
<span>{$t(selectedItem.name)}</span>
|
||||
<div class="mx-2 w-4 flex-shrink-0">
|
||||
<Icon size={0.5} path={mdiClose} />
|
||||
</div>
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -310,7 +310,7 @@
|
|||
loading="lazy"
|
||||
/>
|
||||
</div>
|
||||
<span>{itemList[itemName].name}</span>
|
||||
<span>{$t(itemList[itemName].name)}</span>
|
||||
</div>
|
||||
</td>
|
||||
<td class="border-gray-700 border-b align-middle pt-2 weapon-cell">
|
||||
|
|
Loading…
Add table
Reference in a new issue