From 40550e6dcecdf77a6330ad74e1e4eb2964869957 Mon Sep 17 00:00:00 2001 From: Jonas Thelemann Date: Tue, 7 Nov 2023 23:32:10 +0100 Subject: [PATCH] feat(locales): add hearts to description --- src/handlebars.test.ts | 8 ++++---- src/locales/de/maevsi.json | 4 ++-- src/locales/en/maevsi.json | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/handlebars.test.ts b/src/handlebars.test.ts index b2210a23..cfb948b0 100644 --- a/src/handlebars.test.ts +++ b/src/handlebars.test.ts @@ -2,24 +2,24 @@ import { i18nextResolve, templateCompile } from './handlebars.js' test('compiles template', () => { expect(templateCompile('{{__ "maevsi:subtitle"}}', 'en', {})).toBe( - 'Find events, guests and friends.', + 'Find events, guests and friends 💙❤️💚', ) }) test('compiles template in another language', () => { expect(templateCompile('{{__ "maevsi:subtitle"}}', 'de', {})).toBe( - 'Finde Veranstaltungen, Gäste und Freunde.', + 'Finde Veranstaltungen, Gäste und Freunde 💙❤️💚', ) }) test('resolves template', () => { expect(i18nextResolve('maevsi:subtitle')).toBe( - 'Find events, guests and friends.', + 'Find events, guests and friends 💙❤️💚', ) }) test('resolves template in another language', () => { expect(i18nextResolve('maevsi:subtitle', 'de')).toBe( - 'Finde Veranstaltungen, Gäste und Freunde.', + 'Finde Veranstaltungen, Gäste und Freunde 💙❤️💚', ) }) diff --git a/src/locales/de/maevsi.json b/src/locales/de/maevsi.json index ed6d9bca..09ff86cd 100644 --- a/src/locales/de/maevsi.json +++ b/src/locales/de/maevsi.json @@ -2,6 +2,6 @@ "author": "maevsis Autor", "logo": "maevsis Logo", "profilePicture": "Profilbild", - "subtitle": "Finde Veranstaltungen, Gäste und Freunde.", + "subtitle": "Finde Veranstaltungen, Gäste und Freunde 💙❤️💚", "unsubscribe": "E-Mails abbestellen" -} \ No newline at end of file +} diff --git a/src/locales/en/maevsi.json b/src/locales/en/maevsi.json index d6933b95..c13fdddb 100644 --- a/src/locales/en/maevsi.json +++ b/src/locales/en/maevsi.json @@ -2,6 +2,6 @@ "author": "maevsi's author", "logo": "maevsi's logo", "profilePicture": "Profile picture", - "subtitle": "Find events, guests and friends.", + "subtitle": "Find events, guests and friends 💙❤️💚", "unsubscribe": "Unsubscribe from emails" -} \ No newline at end of file +}