fix(web): Remove tag buttons in search and modal missing tooltip translations (#19087)

* - use translations for "remove tag" text on the search-tags-section and the AssetTagModal

* include new translations

* - fix i18n
This commit is contained in:
xCJPECKOVERx 2025-06-10 00:49:34 -04:00 committed by GitHub
parent c0ed2210b4
commit 16745e77d4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 2 deletions

View File

@ -1499,6 +1499,7 @@
"remove_from_shared_link": "Remove from shared link", "remove_from_shared_link": "Remove from shared link",
"remove_memory": "Remove memory", "remove_memory": "Remove memory",
"remove_photo_from_memory": "Remove photo from this memory", "remove_photo_from_memory": "Remove photo from this memory",
"remove_tag": "Remove tag",
"remove_url": "Remove URL", "remove_url": "Remove URL",
"remove_user": "Remove user", "remove_user": "Remove user",
"removed_api_key": "Removed API Key: {name}", "removed_api_key": "Removed API Key: {name}",

View File

@ -67,7 +67,7 @@
<button <button
type="button" type="button"
class="text-gray-100 dark:text-immich-dark-gray bg-immich-primary/95 dark:bg-immich-dark-primary/95 rounded-e-full place-items-center place-content-center pe-2 ps-1 py-1 hover:bg-immich-primary/80 dark:hover:bg-immich-dark-primary/80 transition-all" class="text-gray-100 dark:text-immich-dark-gray bg-immich-primary/95 dark:bg-immich-dark-primary/95 rounded-e-full place-items-center place-content-center pe-2 ps-1 py-1 hover:bg-immich-primary/80 dark:hover:bg-immich-dark-primary/80 transition-all"
title="Remove tag" title={$t('remove_tag')}
onclick={() => handleRemove(tagId)} onclick={() => handleRemove(tagId)}
> >
<Icon path={mdiClose} /> <Icon path={mdiClose} />

View File

@ -87,7 +87,7 @@
<button <button
type="button" type="button"
class="text-gray-100 dark:text-immich-dark-gray bg-immich-primary/95 dark:bg-immich-dark-primary/95 rounded-e-full place-items-center place-content-center pe-2 ps-1 py-1 hover:bg-immich-primary/80 dark:hover:bg-immich-dark-primary/80 transition-all" class="text-gray-100 dark:text-immich-dark-gray bg-immich-primary/95 dark:bg-immich-dark-primary/95 rounded-e-full place-items-center place-content-center pe-2 ps-1 py-1 hover:bg-immich-primary/80 dark:hover:bg-immich-dark-primary/80 transition-all"
title="Remove tag" title={$t('remove_tag')}
onclick={() => handleRemove(tagId)} onclick={() => handleRemove(tagId)}
> >
<Icon path={mdiClose} /> <Icon path={mdiClose} />