You've already forked immich
							
							
				mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 00:18:28 +02:00 
			
		
		
		
	refactor(server, web, mobile): Change wording of memory titles (#9025)
Change wording of memory titles
This commit is contained in:
		| @@ -323,9 +323,9 @@ describe(AssetService.name, () => { | ||||
|       assetMock.getByDayOfYear.mockResolvedValue([image1, image2, image3, image4]); | ||||
|  | ||||
|       await expect(sut.getMemoryLane(authStub.admin, { day: 15, month: 1 })).resolves.toEqual([ | ||||
|         { yearsAgo: 1, title: '1 year since...', assets: [mapAsset(image1), mapAsset(image2)] }, | ||||
|         { yearsAgo: 9, title: '9 years since...', assets: [mapAsset(image3)] }, | ||||
|         { yearsAgo: 15, title: '15 years since...', assets: [mapAsset(image4)] }, | ||||
|         { yearsAgo: 1, title: '1 year ago', assets: [mapAsset(image1), mapAsset(image2)] }, | ||||
|         { yearsAgo: 9, title: '9 years ago', assets: [mapAsset(image3)] }, | ||||
|         { yearsAgo: 15, title: '15 years ago', assets: [mapAsset(image4)] }, | ||||
|       ]); | ||||
|  | ||||
|       expect(assetMock.getByDayOfYear.mock.calls).toEqual([[[authStub.admin.user.id], { day: 15, month: 1 }]]); | ||||
|   | ||||
| @@ -190,7 +190,7 @@ export class AssetService { | ||||
|       .map((yearsAgo) => ({ | ||||
|         yearsAgo, | ||||
|         // TODO move this to clients | ||||
|         title: `${yearsAgo} year${yearsAgo > 1 ? 's' : ''} since...`, | ||||
|         title: `${yearsAgo} year${yearsAgo > 1 ? 's' : ''} ago`, | ||||
|         assets: groups[yearsAgo].map((asset) => mapAsset(asset, { auth })), | ||||
|       })); | ||||
|   } | ||||
|   | ||||
| @@ -277,4 +277,4 @@ export const handlePromiseError = <T>(promise: Promise<T>): void => { | ||||
|   promise.catch((error) => console.error(`[utils.ts]:handlePromiseError ${error}`, error)); | ||||
| }; | ||||
|  | ||||
| export const memoryLaneTitle = (yearsAgo: number) => `${yearsAgo} ${yearsAgo ? 'years' : 'year'} since...`; | ||||
| export const memoryLaneTitle = (yearsAgo: number) => `${yearsAgo} ${yearsAgo ? 'years' : 'year'} ago`; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user