-
+
Changing your password will also change your Subsonic API password if you have requested one.
-
+
You will have to update your password on your clients that use this password.
-
+
This will prevent this application from accessing the service on your behalf.
-
+
Revoke access
@@ -662,11 +662,11 @@ fetchOwnedApps()
-
+
You don't have any application connected with your account.
-
+
If you authorize third-party applications to access your data, those applications will be listed here.
@@ -679,13 +679,13 @@ fetchOwnedApps()
-
+
Your applications
-
+
This is the list of applications that you have registered.
-
+
This will permanently remove the application and all the associated tokens.
-
+
Remove application
@@ -782,11 +782,11 @@ fetchOwnedApps()
-
+
You don't have registered any application yet.
-
+
Register one to integrate Funkwhale with third-party applications.
@@ -800,13 +800,13 @@ fetchOwnedApps()
-
+
Plugins
-
+
Use plugins to extend Funkwhale and get additional features.
-
+
You can permanently and irreversibly delete your account and all the associated data using the form below. You will be asked for confirmation.
@@ -911,7 +911,7 @@ fetchOwnedApps()
role="alert"
class="ui warning message"
>
-
+
Your account will be deleted from our servers within a few minutes. We will also notify other servers who may have a copy of some of your data so they can proceed to deletion. Please note that some of these servers may be offline or unwilling to comply though.
-
+
This is irreversible and will permanently remove your data from our servers. You will we immediately logged out.
@@ -968,7 +968,7 @@ fetchOwnedApps()
-
+
Delete my account
diff --git a/front/src/components/auth/SignupForm.vue b/front/src/components/auth/SignupForm.vue
index c4970b920..bad844f05 100644
--- a/front/src/components/auth/SignupForm.vue
+++ b/front/src/components/auth/SignupForm.vue
@@ -3,7 +3,7 @@ import type { RouteLocationRaw } from 'vue-router'
import type { BackendError, Form } from '~/types'
import { computed, reactive, ref, watchEffect } from 'vue'
-import { useGettext } from 'vue3-gettext'
+import { useI18n } from 'vue-i18n'
import { useStore } from '~/store'
import axios from 'axios'
@@ -30,14 +30,14 @@ const props = withDefaults(defineProps(), {
signupApprovalEnabled: undefined
})
-const { $pgettext } = useGettext()
+const { t } = useI18n()
const logger = useLogger()
const store = useStore()
const labels = computed(() => ({
- placeholder: $pgettext('Content/Signup/Form/Placeholder', 'Enter your invitation code (case insensitive)'),
- usernamePlaceholder: $pgettext('Content/Signup/Form/Placeholder', 'Enter your username'),
- emailPlaceholder: $pgettext('Content/Signup/Form/Placeholder', 'Enter your e-mail address')
+ placeholder: t('Enter your invitation code (case insensitive)'),
+ usernamePlaceholder: t('Enter your username'),
+ emailPlaceholder: t('Enter your e-mail address')
}))
const signupRequiresApproval = computed(() => props.signupApprovalEnabled ?? store.state.instance.settings.moderation.signup_approval_enabled.value)
@@ -88,18 +88,18 @@ fetchInstanceSettings()
-
+
Your account request was successfully submitted. You will be notified by e-mail when our moderation team has reviewed your request.
-
+
Your account was successfully created. Please verify your e-mail address before trying to login.
-
+
Log in to your Funkwhale account
@@ -117,7 +117,7 @@ fetchInstanceSettings()
v-if="!$store.state.instance.settings.users.registration_enabled.value"
class="ui message"
>
-
+
Public registrations are not possible on this instance. You will need an invitation code to sign up.
@@ -125,7 +125,7 @@ fetchInstanceSettings()
v-else-if="signupRequiresApproval"
class="ui message"
>
-
+
Registrations on this pod are open, but reviewed by moderators before approval.
@@ -143,7 +143,7 @@ fetchInstanceSettings()
class="ui negative message"
>