Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions locales/en.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -607,6 +607,8 @@ sunset: |
If you want to use Mostro: https://mostro.network
If you want to run your own Mostro node: https://mostro.community/

🎥 Video tutorial: https://www.youtube.com/watch?v=Lnyjgecfd_w

# START modules/community
community_admin: |
<strong>Community Admin Mode</strong>
Expand Down
2 changes: 2 additions & 0 deletions locales/es.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -602,6 +602,8 @@ sunset: |
Si quieres usar Mostro: https://mostro.network
Si quieres correr tu propio nodo Mostro: https://mostro.community/

🎥 Video tutorial: https://www.youtube.com/watch?v=lbenPWNlykk

# START modules/community
community_admin: |
<strong>Community Admin Mode</strong>
Expand Down
4 changes: 4 additions & 0 deletions tests/bot/sunset.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ const SPANISH_ANNOUNCEMENT =
'https://x.com/negrunch/status/2086896990256799795';
const ENGLISH_ANNOUNCEMENT =
'https://x.com/negrunch/status/2086899005355704703';
const SPANISH_VIDEO_TUTORIAL = 'https://www.youtube.com/watch?v=lbenPWNlykk';
const ENGLISH_VIDEO_TUTORIAL = 'https://www.youtube.com/watch?v=Lnyjgecfd_w';

const makeCtx = (from: any) => {
const locales: string[] = [];
Expand Down Expand Up @@ -90,6 +92,7 @@ describe('sunset mode', () => {
const es = readLocale('es');
expect(es).to.include('sunset:');
expect(es).to.include(SPANISH_ANNOUNCEMENT);
expect(es).to.include(SPANISH_VIDEO_TUTORIAL);
expect(es).to.include('https://mostro.network');
expect(es).to.include('https://mostro.community');
});
Expand All @@ -98,6 +101,7 @@ describe('sunset mode', () => {
const en = readLocale('en');
expect(en).to.include('sunset:');
expect(en).to.include(ENGLISH_ANNOUNCEMENT);
expect(en).to.include(ENGLISH_VIDEO_TUTORIAL);
expect(en).to.include('https://mostro.network');
expect(en).to.include('https://mostro.community');
});
Expand Down