This commit is contained in:
einhornimmond 2025-04-22 10:24:36 +02:00
parent d3a335c75f
commit 4dad461f72
4 changed files with 3 additions and 13 deletions

View File

@ -52,11 +52,6 @@
"text": "Finde Mitglieder aller Communities auf einer Landkarte? Dann musst du selbst erst deinen Standort festlegen."
}
},
"circles": {
"button": "Kreise starten...",
"headline": "Gemeinsam unterstützen wir einander achtsam in Kreiskultur.",
"text": "Mit Klick auf den Button öffnest Du die Kooperationsplattform in einem neuen Browser-Fenster."
},
"community": {
"admins": "Administratoren",
"choose-another-community": "Eine andere Gemeinschaft auswählen",

View File

@ -52,11 +52,6 @@
"text": "Find Members of all Communities on a Map? Then you have to capture your Location first."
}
},
"circles": {
"button": "Start Circles...",
"headline": "Together we support each other - mindful in circle culture.",
"text": "Click on the button to open the cooperation platform in a new browser window."
},
"community": {
"admins": "Administrators",
"choose-another-community": "Choose another community",

View File

@ -61,7 +61,7 @@
import InputPassword from '@/components/Inputs/InputPassword'
import InputEmail from '@/components/Inputs/InputEmail'
import Message from '@/components/Message/Message'
import { login, authenticateHumhubAutoLoginProject } from '@/graphql/mutations '
import { login, authenticateHumhubAutoLoginProject } from '@/graphql/mutations'
import { ref, computed } from 'vue'
import { useStore } from 'vuex'
import { useI18n } from 'vue-i18n'

View File

@ -70,8 +70,8 @@ describe('router', () => {
expect(defaultRoute.redirect()).toEqual({ path: '/login' })
})
it('has 21 routes defined', () => {
expect(routes).toHaveLength(21)
it('has 20 routes defined', () => {
expect(routes).toHaveLength(20)
})
const testRoute = (path, expectedName, requiresAuth = true) => {