Skip to content

Commit 8cd47d6

Browse files
ValdnetAntreesy
authored andcommitted
fix(l10n): change apostrophe and quotes in "Let's get started" sample
Signed-off-by: Valdnet <[email protected]> Signed-off-by: Maksim Sukharev <[email protected]>
1 parent 57abd67 commit 8cd47d6

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/sample-conversations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ In each of the languages you can have a unique set of sample Markdown files.
3030
The first section of the Markdown files must contain the following information, prefixed with the matching keyword:
3131

3232
```
33-
NAME: Let´s get started!
33+
NAME: Let's get started!
3434
EMOJI: 💡
3535
COLOR: #0082c9
3636
---

docs/samples/en/lets-get-started.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
NAME: Let´s get started!
1+
NAME: Let's get started!
22
EMOJI: 💡
33
COLOR: #0082c9
44
---

lib/Service/SampleConversationsService.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public function initialCreateSamples(string $userId): void {
7878
protected function defaultSampleConversation(IUser $user): void {
7979
$room = $this->roomService->createConversation(
8080
Room::TYPE_GROUP,
81-
$this->l->t('Let´s get started!'),
81+
$this->l->t('Let\'s get started!'),
8282
$user,
8383
Room::OBJECT_TYPE_SAMPLE,
8484
$user->getUID()
@@ -114,7 +114,7 @@ protected function defaultSampleConversation(IUser $user): void {
114114
. "\n\n" . '{FILE:Readme.md}',
115115
$this->l->t('## 💭 Let the conversations flow: mention users, react to messages and more
116116
117-
You can mention everybody in a the conversation @all or mention specific participants by typing "@" and picking their name from the list.')
117+
You can mention everybody in a the conversation "@all" or mention specific participants by typing "@" and picking their name from the list.')
118118
. "\n" . '{REACTION:😍}{REACTION:👍}',
119119
'{REPLY}' . $this->l->t('You can reply to messages, forward them to other chats and people, or copy message content.'),
120120
$this->l->t('## ✨ Do more with Smart Picker

tests/integration/features/bootstrap/FeatureContext.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2813,7 +2813,7 @@ public function userGetsDashboardWidgetItems($user, $widgetId, $apiVersion = 'v1
28132813
$actualItems = $data[$widgetId]['items'];
28142814
}
28152815

2816-
$actualItems = array_values(array_filter($actualItems, static fn ($item) => $item['title'] !== 'Note to self' && $item['title'] !== 'Talk updates ✅' && $item['title'] !== 'Let´s get started!'));
2816+
$actualItems = array_values(array_filter($actualItems, static fn ($item) => $item['title'] !== 'Note to self' && $item['title'] !== 'Talk updates ✅' && $item['title'] !== 'Let\'s get started!'));
28172817

28182818
if (empty($expectedItems)) {
28192819
Assert::assertEmpty($actualItems);

0 commit comments

Comments
 (0)