- An optional text to be displayed at the start of the sign-up form.
+ {{ $t('components.admin.SignupFormBuilder.helpTextMessage') }}
{
- Additional form fields to be displayed in the form. Only shown if manual sign-up validation is enabled.
+ {{ $t('components.admin.SignupFormBuilder.additionalFieldsMessage') }}
- Field label
+ {{ $t('components.admin.SignupFormBuilder.fieldLabelTableHeader') }}
- Field type
+ {{ $t('components.admin.SignupFormBuilder.fieldTypeTableHeader') }}
- You may need to subscribe to this channel to see its content.
+ {{ $t('components.audio.ChannelEntries.emptyMessage') }}
diff --git a/front/src/components/audio/ChannelForm.vue b/front/src/components/audio/ChannelForm.vue
index e9a353f4e..7ae918d63 100644
--- a/front/src/components/audio/ChannelForm.vue
+++ b/front/src/components/audio/ChannelForm.vue
@@ -45,13 +45,13 @@ const creating = computed(() => props.object === null)
const categoryChoices = computed(() => [
{
value: 'podcast',
- label: t('Podcasts'),
- helpText: t('Host your episodes and keep your community updated.')
+ label: t('components.audio.ChannelForm.podcastsLabel'),
+ helpText: t('components.audio.ChannelForm.podcastsHelpText')
},
{
value: 'music',
- label: t('Artist discography'),
- helpText: t('Publish music you make as a nice discography of albums and singles.')
+ label: t('components.audio.ChannelForm.discographyLabel'),
+ helpText: t('components.audio.ChannelForm.discographyHelpText')
}
])
@@ -81,8 +81,8 @@ const itunesSubcategories = computed(() => {
})
const labels = computed(() => ({
- namePlaceholder: t('Awesome channel name'),
- usernamePlaceholder: t('awesomechannelname')
+ namePlaceholder: t('components.audio.ChannelForm.namePlaceholder'),
+ usernamePlaceholder: t('components.audio.ChannelForm.usernamePlaceholder')
}))
const submittable = computed(() => !!(
@@ -165,7 +165,7 @@ defineExpose({
class="ui negative message"
>
- Error while saving channel
+ {{ $t('components.audio.ChannelForm.errorHeader') }}
@@ -210,7 +210,7 @@ defineExpose({
@@ -238,7 +238,7 @@ defineExpose({
- Used in URLs and to follow this channel in the Fediverse. It cannot be changed later.
+ {{ $t('components.audio.ChannelForm.channelUsernameDescription') }}