Minor string fixes
parent
e8a4bcffbb
commit
a07ccb5b71
|
@ -171,7 +171,7 @@ export default defineComponent({
|
|||
if: () => this.routeIsArchive(),
|
||||
},
|
||||
{
|
||||
name: t("memories", "Edit Metadata"),
|
||||
name: t("memories", "Edit metadata"),
|
||||
icon: EditFileIcon,
|
||||
callback: this.editMetadataSelection.bind(this),
|
||||
},
|
||||
|
@ -191,11 +191,10 @@ export default defineComponent({
|
|||
name: t("memories", "Add to album"),
|
||||
icon: AlbumsIcon,
|
||||
callback: this.addToAlbum.bind(this),
|
||||
if: (self: typeof this) =>
|
||||
self.config_albumsEnabled && !self.routeIsAlbum(),
|
||||
if: (self: any) => self.config_albumsEnabled && !self.routeIsAlbum(),
|
||||
},
|
||||
{
|
||||
name: t("memories", "Move to another person"),
|
||||
name: t("memories", "Move to person"),
|
||||
icon: MoveIcon,
|
||||
callback: this.moveSelectionToPerson.bind(this),
|
||||
if: () => this.$route.name === "recognize",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<template>
|
||||
<Modal v-if="show" @close="close">
|
||||
<template #title>
|
||||
{{ t("memories", "Edit Metadata") }}
|
||||
{{ t("memories", "Edit metadata") }}
|
||||
</template>
|
||||
|
||||
<template #buttons>
|
||||
|
|
|
@ -132,12 +132,12 @@
|
|||
</template>
|
||||
</NcActionButton>
|
||||
<NcActionButton
|
||||
:aria-label="t('memories', 'Edit Metadata')"
|
||||
:aria-label="t('memories', 'Edit metadata')"
|
||||
v-if="!routeIsPublic"
|
||||
@click="editMetadata"
|
||||
:close-after-click="true"
|
||||
>
|
||||
{{ t("memories", "Edit Metadata") }}
|
||||
{{ t("memories", "Edit metadata") }}
|
||||
<template #icon>
|
||||
<EditFileIcon :size="24" />
|
||||
</template>
|
||||
|
@ -1165,7 +1165,7 @@ export default defineComponent({
|
|||
},
|
||||
|
||||
/**
|
||||
* Edit Metadata for current photo
|
||||
* Edit metadata for current photo
|
||||
*/
|
||||
editMetadata() {
|
||||
globalThis.editMetadata([globalThis.currentViewerPhoto]);
|
||||
|
|
Loading…
Reference in New Issue