fix(l10n): change apostrophe and quotes in "Let's get started" sample

Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
This commit is contained in:
Valdnet 2025-02-23 16:45:49 +01:00 committed by Joas Schilling
parent 76b0569189
commit 0a62bb7cf6
No known key found for this signature in database
GPG key ID: F72FA5B49FFA96B0
4 changed files with 5 additions and 5 deletions

View file

@ -30,7 +30,7 @@ In each of the languages you can have a unique set of sample Markdown files.
The first section of the Markdown files must contain the following information, prefixed with the matching keyword:
```
NAME: Let´s get started!
NAME: Let's get started!
EMOJI: 💡
COLOR: #0082c9
---

View file

@ -1,4 +1,4 @@
NAME: Let´s get started!
NAME: Let's get started!
EMOJI: 💡
COLOR: #0082c9
---

View file

@ -78,7 +78,7 @@ class SampleConversationsService {
protected function defaultSampleConversation(IUser $user): void {
$room = $this->roomService->createConversation(
Room::TYPE_GROUP,
$this->l->t('Let´s get started!'),
$this->l->t('Let\'s get started!'),
$user,
Room::OBJECT_TYPE_SAMPLE,
$user->getUID()
@ -114,7 +114,7 @@ Attach files from your Nextcloud Hub using the "+" button. Share items from File
. "\n\n" . '{FILE:Readme.md}',
$this->l->t('## 💭 Let the conversations flow: mention users, react to messages and more
You can mention everybody in a the conversation @all or mention specific participants by typing "@" and picking their name from the list.')
You can mention everybody in a the conversation %s or mention specific participants by typing "@" and picking their name from the list.', ['@all'])
. "\n" . '{REACTION:😍}{REACTION:👍}',
'{REPLY}' . $this->l->t('You can reply to messages, forward them to other chats and people, or copy message content.'),
$this->l->t('## ✨ Do more with Smart Picker

View file

@ -2813,7 +2813,7 @@ class FeatureContext implements Context, SnippetAcceptingContext {
$actualItems = $data[$widgetId]['items'];
}
$actualItems = array_values(array_filter($actualItems, static fn ($item) => $item['title'] !== 'Note to self' && $item['title'] !== 'Talk updates ✅' && $item['title'] !== 'Let´s get started!'));
$actualItems = array_values(array_filter($actualItems, static fn ($item) => $item['title'] !== 'Note to self' && $item['title'] !== 'Talk updates ✅' && $item['title'] !== 'Let\'s get started!'));
if (empty($expectedItems)) {
Assert::assertEmpty($actualItems);