Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IDX-7547: Change Full and Short date-time setting labels #71

Merged
merged 1 commit into from
Feb 8, 2024
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
12 changes: 6 additions & 6 deletions src/bundle/Resources/translations/user_settings.en.xliff
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@
<note>key: settings.character_counter.value.title</note>
</trans-unit>
<trans-unit id="bb01c22de6038102d6fa6646f4ecebaf0c54e720" resname="settings.full_datetime_format.value.description">
<source>Date and time format</source>
<target state="new">Date and time format</target>
<source>Full date and time format</source>
<target state="new">Full date and time format</target>
<note>key: settings.full_datetime_format.value.description</note>
</trans-unit>
<trans-unit id="9b6504d133b0a02fd337aa91d724723c927e4e96" resname="settings.full_datetime_format.value.title">
<source>Long date and time format</source>
<target state="new">Long date and time format</target>
<source>Full date and time format</source>
<target state="new">Full date and time format</target>
<note>key: settings.full_datetime_format.value.title</note>
</trans-unit>
<trans-unit id="f69442f4afc8feed51643e408862c6a83f715560" resname="settings.group.browsing.description">
Expand Down Expand Up @@ -117,8 +117,8 @@
<note>key: settings.language.value.title</note>
</trans-unit>
<trans-unit id="f99a9bb9741db45f57f2436c535d89609ebc6b0d" resname="settings.short_datetime_format.value.description">
<source>Date and time format</source>
<target state="new">Date and time format</target>
<source>Short date and time format</source>
<target state="new">Short date and time format</target>
<note>key: settings.short_datetime_format.value.description</note>
</trans-unit>
<trans-unit id="f87e581648ae7baaa1e96941f1c8b45c11f73553" resname="settings.short_datetime_format.value.title">
Expand Down
4 changes: 2 additions & 2 deletions src/lib/UserSetting/Setting/FullDateTimeFormat.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function mapFieldForm(
protected function getTranslatedName(): string
{
return $this->translator->trans(
/** @Desc("Long date and time format") */
/** @Desc("Full date and time format") */
'settings.full_datetime_format.value.title',
[],
'user_settings'
Expand All @@ -94,7 +94,7 @@ protected function getTranslatedName(): string
protected function getTranslatedDescription(): string
{
return $this->translator->trans(
/** @Desc("Date and time format") */
/** @Desc("Full date and time format") */
'settings.full_datetime_format.value.description',
[],
'user_settings'
Expand Down
2 changes: 1 addition & 1 deletion src/lib/UserSetting/Setting/ShortDateTimeFormat.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ protected function getTranslatedName(): string
protected function getTranslatedDescription(): string
{
return $this->translator->trans(
/** @Desc("Date and time format") */
/** @Desc("Short date and time format") */
'settings.short_datetime_format.value.description',
[],
'user_settings'
Expand Down
Loading