diverse Übersetzungen
This commit is contained in:
@ -35,7 +35,7 @@ export function customAdapter(p: PrismaClient): Adapter {
|
|||||||
throw Error('New users are forbidden')
|
throw Error('New users are forbidden')
|
||||||
|
|
||||||
const newWorkspaceData = {
|
const newWorkspaceData = {
|
||||||
name: data.name ? `${data.name}'s workspace` : `Dein Worksapce`,
|
name: data.name ? `${data.name}'s Workspace` : `Dein Worksapce`,
|
||||||
plan: parseWorkspaceDefaultPlan(data.email),
|
plan: parseWorkspaceDefaultPlan(data.email),
|
||||||
}
|
}
|
||||||
const createdUser = await p.user.create({
|
const createdUser = await p.user.create({
|
||||||
|
@ -64,10 +64,12 @@ export const GoogleSheetConnectModalContent = ({
|
|||||||
rounded="md"
|
rounded="md"
|
||||||
/>
|
/>
|
||||||
<AlertInfo>
|
<AlertInfo>
|
||||||
Google does not provide more granular permissions than
|
{/* Google does not provide more granular permissions than
|
||||||
"read" or "write" access. That's why it
|
"read" or "write" access. That's why it
|
||||||
states that Typebot can also delete your spreadsheets which it
|
states that Typebot can also delete your spreadsheets which it
|
||||||
won't.
|
won't. */}
|
||||||
|
Wir arbeiten aktuell an dieser Integration.
|
||||||
|
Bitte hab' noch ein bisschen Geduld 🧡
|
||||||
</AlertInfo>
|
</AlertInfo>
|
||||||
<Flex>
|
<Flex>
|
||||||
{workspace?.id && (
|
{workspace?.id && (
|
||||||
@ -85,7 +87,7 @@ export const GoogleSheetConnectModalContent = ({
|
|||||||
)}
|
)}
|
||||||
mx="auto"
|
mx="auto"
|
||||||
>
|
>
|
||||||
Continue with Google
|
Anmelden mit Google
|
||||||
</Button>
|
</Button>
|
||||||
)}
|
)}
|
||||||
</Flex>
|
</Flex>
|
||||||
|
@ -71,7 +71,7 @@ export const TypebotLinkForm = ({ options, onOptionsChange }: Props) => {
|
|||||||
{!isCurrentTypebotSelected && (
|
{!isCurrentTypebotSelected && (
|
||||||
<SwitchWithLabel
|
<SwitchWithLabel
|
||||||
label="Merge answers"
|
label="Merge answers"
|
||||||
moreInfoContent="If enabled, the answers collected in the linked typebot will be merged with the results of the current typebot."
|
moreInfoContent="If enabled, the answers collected in the linked typebot will be merged with the results of the current BLS bot."
|
||||||
initialValue={
|
initialValue={
|
||||||
options?.mergeResults ?? defaultTypebotLinkOptions.mergeResults
|
options?.mergeResults ?? defaultTypebotLinkOptions.mergeResults
|
||||||
}
|
}
|
||||||
|
@ -54,7 +54,7 @@ export const TypebotsDropdown = ({
|
|||||||
})),
|
})),
|
||||||
]}
|
]}
|
||||||
onSelect={onSelect}
|
onSelect={onSelect}
|
||||||
placeholder={'Select a typebot'}
|
placeholder={'Wähle einen BLS bot'}
|
||||||
/>
|
/>
|
||||||
{typebotId && typebotId !== 'current' && (
|
{typebotId && typebotId !== 'current' && (
|
||||||
<IconButton
|
<IconButton
|
||||||
|
@ -17,7 +17,7 @@ test('should be configurable', async ({ page }) => {
|
|||||||
|
|
||||||
await page.goto(`/typebots/${typebotId}/edit`)
|
await page.goto(`/typebots/${typebotId}/edit`)
|
||||||
await page.click('text=Configure...')
|
await page.click('text=Configure...')
|
||||||
await page.click('input[placeholder="Select a typebot"]')
|
await page.click('input[placeholder="Wähle einen BLS bot"]')
|
||||||
await page.click('text=My link typebot 2')
|
await page.click('text=My link typebot 2')
|
||||||
await expect(page.locator('input[value="My link typebot 2"]')).toBeVisible()
|
await expect(page.locator('input[value="My link typebot 2"]')).toBeVisible()
|
||||||
await expect(page.getByText('Jump in My link typebot 2')).toBeVisible()
|
await expect(page.getByText('Jump in My link typebot 2')).toBeVisible()
|
||||||
@ -56,7 +56,7 @@ test('should be configurable', async ({ page }) => {
|
|||||||
await page.click('text=Jump in My link typebot 2')
|
await page.click('text=Jump in My link typebot 2')
|
||||||
await page.waitForTimeout(1000)
|
await page.waitForTimeout(1000)
|
||||||
await page.getByTestId('selected-item-label').first().click({ force: true })
|
await page.getByTestId('selected-item-label').first().click({ force: true })
|
||||||
await page.click('button >> text=Current typebot')
|
await page.click('button >> text=Dieser BLS bot')
|
||||||
await page.getByRole('textbox').nth(2).click()
|
await page.getByRole('textbox').nth(2).click()
|
||||||
await page.click('button >> text=Hello')
|
await page.click('button >> text=Hello')
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ export const TypebotNotFoundPage = () => {
|
|||||||
<VStack spacing={6}>
|
<VStack spacing={6}>
|
||||||
<VStack>
|
<VStack>
|
||||||
<Heading>404</Heading>
|
<Heading>404</Heading>
|
||||||
<Text fontSize="xl">Typebot not found.</Text>
|
<Text fontSize="xl">BLS bot nicht gefunden.</Text>
|
||||||
</VStack>
|
</VStack>
|
||||||
<Button
|
<Button
|
||||||
as={Link}
|
as={Link}
|
||||||
|
@ -38,7 +38,7 @@ export const createTypebot = authenticatedProcedure
|
|||||||
method: 'POST',
|
method: 'POST',
|
||||||
path: '/v1/typebots',
|
path: '/v1/typebots',
|
||||||
protect: true,
|
protect: true,
|
||||||
summary: 'Create a typebot',
|
summary: 'Create a BLS bot',
|
||||||
tags: ['Typebot'],
|
tags: ['Typebot'],
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
240
apps/builder/src/i18n/backup-de.json
Normal file
240
apps/builder/src/i18n/backup-de.json
Normal file
@ -0,0 +1,240 @@
|
|||||||
|
{
|
||||||
|
"account.apiTokens.createButton.label": "Erstellen",
|
||||||
|
"account.apiTokens.createModal.copyInstruction": "Bitte kopiere deinen Token und bewahre ihn an einem sicheren Ort auf.",
|
||||||
|
"account.apiTokens.createModal.createButton.label": "Token erstellen",
|
||||||
|
"account.apiTokens.createModal.createdHeading": "Token erstellt",
|
||||||
|
"account.apiTokens.createModal.createHeading": "Token erstellen",
|
||||||
|
"account.apiTokens.createModal.doneButton.label": "Fertig",
|
||||||
|
"account.apiTokens.createModal.nameInput.label": "Gib einen eindeutigen Namen für deinen Token ein, um ihn von anderen Token zu unterscheiden.",
|
||||||
|
"account.apiTokens.createModal.nameInput.placeholder": "Z.B. Zapier, Github, Make.com",
|
||||||
|
"account.apiTokens.createModal.securityWarning": "Aus Sicherheitsgründen können wir ihn nicht erneut anzeigen.",
|
||||||
|
"account.apiTokens.deleteButton.label": "Löschen",
|
||||||
|
"account.apiTokens.deleteConfirmationMessage": "Der Token <strong>tokenName</strong> wird dauerhaft widerrufen, bist du sicher, dass du fortfahren möchtest?",
|
||||||
|
"account.apiTokens.description": "Diese Token ermöglichen es anderen Apps, dein gesamtes Konto und BLS bots zu steuern. Sei vorsichtig!",
|
||||||
|
"account.apiTokens.heading": "API-Token",
|
||||||
|
"account.apiTokens.table.createdHeader": "Erstellt",
|
||||||
|
"account.apiTokens.table.nameHeader": "Name",
|
||||||
|
"account.myAccount.changePhotoButton.label": "Foto ändern",
|
||||||
|
"account.myAccount.changePhotoButton.specification": ".jpg oder .png, max 1MB",
|
||||||
|
"account.myAccount.emailInput.disabledTooltip": "Aus sicherheitsgründen kannst du deine E-Mail nicht selber ändern. Kontaktiere BLS media, wir helfen dir!",
|
||||||
|
"account.myAccount.emailInput.label": "E-Mail-Adresse:",
|
||||||
|
"account.myAccount.nameInput.label": "Name:",
|
||||||
|
"account.preferences.appearance.darkLabel": "Dunkel",
|
||||||
|
"account.preferences.appearance.heading": "Erscheinungsbild",
|
||||||
|
"account.preferences.appearance.lightLabel": "Hell",
|
||||||
|
"account.preferences.appearance.systemLabel": "System",
|
||||||
|
"account.preferences.graphNavigation.heading": "Editor-Navigation",
|
||||||
|
"account.preferences.graphNavigation.mouse.description": "Bewege dich, indem du das Board ziehst und zoome rein/raus mit dem Mausrad",
|
||||||
|
"account.preferences.graphNavigation.mouse.label": "Maus",
|
||||||
|
"account.preferences.graphNavigation.trackpad.description": "Bewege das Board mit 2 Fingern und zoome rein/raus",
|
||||||
|
"account.preferences.graphNavigation.trackpad.label": "Trackpad",
|
||||||
|
"account.preferences.language.heading": "Sprache",
|
||||||
|
"account.preferences.language.tooltip": "Wir arbeiten an verschiedenen Übersetzungen. Wenn dir eine Sprache fehlt, schreib und bitte.",
|
||||||
|
"analytics.completionRateLabel": "Abschlussrate",
|
||||||
|
"analytics.notAvailableLabel": "Nicht verfügbar",
|
||||||
|
"analytics.startsLabel": "Starts",
|
||||||
|
"analytics.viewsLabel": "Ansichten",
|
||||||
|
"auth.emailSubmitButton.label": "Absenden",
|
||||||
|
"auth.error.default": "Versuche, dich mit einem anderen Konto anzumelden.",
|
||||||
|
"auth.error.email": "E-Mail nicht gefunden. Versuche, dich mit einem anderen Anbieter anzumelden.",
|
||||||
|
"auth.error.oauthNotLinked": "Um deine Identität zu bestätigen, melde dich mit demselben Konto an, das du ursprünglich verwendet hast.",
|
||||||
|
"auth.error.unknown": "Ein Fehler ist aufgetreten. Bitte versuche es erneut.",
|
||||||
|
"auth.magicLink.description": "Vergiss nicht, deinen Spam-Ordner zu überprüfen.",
|
||||||
|
"auth.magicLink.title": "Eine E-Mail mit magischem Link wurde gesendet.",
|
||||||
|
"auth.noProvider.link": "mindestens einen Authentifizierungsanbieter konfigurieren (E-Mail, Google, GitHub, Facebook oder Azure AD).",
|
||||||
|
"auth.noProvider.preLink": "Du musst",
|
||||||
|
"auth.orEmailLabel": "Oder mit deiner E-Mail",
|
||||||
|
"auth.register.aggreeToTerms": "Durch die Registrierung stimmst du unseren <terms>Nutzungsbedingungen</terms> und <privacy>Datenschutzrichtlinie</privacy> zu.",
|
||||||
|
"auth.register.alreadyHaveAccountLabel.link": "Anmelden",
|
||||||
|
"auth.register.alreadyHaveAccountLabel.preLink": "Bereits ein Konto vorhanden?",
|
||||||
|
"auth.register.heading": "Konto erstellen",
|
||||||
|
"auth.signinErrorToast.description": "Anmeldungen sind deaktiviert.",
|
||||||
|
"auth.signinErrorToast.title": "Nicht autorisiert",
|
||||||
|
"auth.signinErrorToast.tooManyRequests": "Zu viele Anfragen. Versuche es später erneut.",
|
||||||
|
"auth.signin.heading": "Anmelden",
|
||||||
|
"auth.signin.noAccountLabel.link": "Kostenlos anmelden",
|
||||||
|
"auth.signin.noAccountLabel.preLink": "Noch kein Konto?",
|
||||||
|
"auth.socialLogin.azureButton.label": "Mit {azureProviderName} fortfahren",
|
||||||
|
"auth.socialLogin.customButton.label": "Mit {customProviderName} fortfahren",
|
||||||
|
"auth.socialLogin.facebookButton.label": "Mit Facebook fortfahren",
|
||||||
|
"auth.socialLogin.githubButton.label": "Mit GitHub fortfahren",
|
||||||
|
"auth.socialLogin.gitlabButton.label": "Mit {gitlabProviderName} fortfahren",
|
||||||
|
"auth.socialLogin.googleButton.label": "Mit Google fortfahren",
|
||||||
|
"auth.socialLogin.keycloakButton.label": "Weiter mit Keycloak",
|
||||||
|
"back": "Zurück",
|
||||||
|
"billing.billingPortalButton.label": "Abrechnungsportal",
|
||||||
|
"billing.contribution.link": "Erfahre mehr.",
|
||||||
|
"billing.contribution.preLink": "BLS bot trägt 1% deines Abonnements dazu bei, CO₂ aus der Atmosphäre zu entfernen.",
|
||||||
|
"billing.currentSubscription.cancelDate": "Wird storniert am",
|
||||||
|
"billing.currentSubscription.heading": "Abonnement",
|
||||||
|
"billing.currentSubscription.pastDueAlert": "Die letzte Zahlung ist fehlgeschlagen. Gehen Sie zum Abrechnungsportal, um fortzufahren und eine Kündigung Ihres Abonnements zu vermeiden.",
|
||||||
|
"billing.currentSubscription.subheading": "Aktuelles BLS bot-Abo:",
|
||||||
|
"billing.customLimit.link": "Lass uns darüber sprechen!",
|
||||||
|
"billing.customLimit.preLink": "Brauchst du individuelle Limits? Spezielle Funktionen?",
|
||||||
|
"billing.invoices.empty": "Keine Rechnungen für diesen Workspace gefunden.",
|
||||||
|
"billing.invoices.heading": "Rechnungen",
|
||||||
|
"billing.invoices.paidAt": "Bezahlt am",
|
||||||
|
"billing.invoices.subtotal": "Zwischensumme",
|
||||||
|
"billing.limitMessage.analytics": "Detaillierte Analysen freischalten",
|
||||||
|
"billing.limitMessage.brand": "Branding entfernen",
|
||||||
|
"billing.limitMessage.customDomain": "Eigene Domains hinzufügen",
|
||||||
|
"billing.limitMessage.fileInput": "Datei-Eingabefelder verwenden",
|
||||||
|
"billing.limitMessage.folder": "Ordner erstellen",
|
||||||
|
"billing.preCheckoutModal.companyInput.label": "Firmenname:",
|
||||||
|
"billing.preCheckoutModal.emailInput.label": "E-Mail:",
|
||||||
|
"billing.preCheckoutModal.submitButton.label": "Zur Kasse gehen",
|
||||||
|
"billing.preCheckoutModal.taxId.label": "Steuernummer:",
|
||||||
|
"billing.preCheckoutModal.taxId.placeholder": "ID-Typ",
|
||||||
|
"billing.pricingCard.chatsPerMonth": "Chats/Monat",
|
||||||
|
"billing.pricingCard.chatsTooltip": "Ein Chat wird gezählt, wenn ein Benutzer eine Diskussion startet. Es ist unabhängig von der Anzahl der gesendeten und empfangenen Nachrichten.",
|
||||||
|
"billing.pricingCard.heading": "Upgrade auf <strong>plan</strong>",
|
||||||
|
"billing.pricingCard.perMonth": "/ Monat",
|
||||||
|
"billing.pricingCard.plus": ", plus:",
|
||||||
|
"billing.pricingCard.pro.analytics": "Detaillierte Analysen",
|
||||||
|
"billing.pricingCard.pro.customDomains": "Eigene Domains",
|
||||||
|
"billing.pricingCard.pro.description": "Für Agenturen & wachsende Start-ups.",
|
||||||
|
"billing.pricingCard.pro.everythingFromStarter": "Alles in Starter",
|
||||||
|
"billing.pricingCard.pro.includedSeats": "5 Plätze inklusive",
|
||||||
|
"billing.pricingCard.pro.mostPopularLabel": "Am beliebtesten",
|
||||||
|
"billing.pricingCard.pro.whatsAppIntegration": "WhatsApp-Integration",
|
||||||
|
"billing.pricingCard.starter.brandingRemoved": "Branding entfernt",
|
||||||
|
"billing.pricingCard.starter.createFolders": "Ordner erstellen",
|
||||||
|
"billing.pricingCard.starter.description": "Für Einzelpersonen & kleine Unternehmen.",
|
||||||
|
"billing.pricingCard.starter.fileUploadBlock": "Datei-Upload Eingabefeld",
|
||||||
|
"billing.pricingCard.starter.includedSeats": "2 Plätze inklusive",
|
||||||
|
"billing.pricingCard.upgradeButton.current": "Dein aktueller Tarif",
|
||||||
|
"billing.updateSuccessToast.description": "Workspace {plan} Plan erfolgreich aktualisiert",
|
||||||
|
"billing.upgradeAlert.buttonDefaultLabel": "Mehr Informationen",
|
||||||
|
"billing.upgradeLimitLabel": "Für die Funktion '{type}' hinzuzufügen, musst du deinen Tarif aktualisieren",
|
||||||
|
"billing.usage.chats.alert.soonReach": "Deine BLS bots sind beliebt! Du wirst bald das Chat-Limit deines Tarifs erreichen.",
|
||||||
|
"billing.usage.chats.alert.updatePlan": "Vergewissere dich, dass du deinen Tarif aktualisierst, um dieses Limit zu erhöhen und weiterhin mit deinen Benutzern zu chatten.",
|
||||||
|
"billing.usage.chats.heading": "Chats",
|
||||||
|
"billing.usage.heading": "Nutzung",
|
||||||
|
"billing.usage.unlimited": "Unbegrenzt",
|
||||||
|
"blocks.bubbles.embed.blockCard.tooltip": "Ein PDF, ein iframe, eine Website einbetten...",
|
||||||
|
"blocks.inputs.fileUpload.blockCard.tooltip": "Dateien hochladen",
|
||||||
|
"blocks.integrations.googleAnalytics.blockCard.tooltip": "Google Analytics",
|
||||||
|
"blocks.integrations.googleSheets.blockCard.tooltip": "Google Tabellen",
|
||||||
|
"cancel": "Abbrechen",
|
||||||
|
"clickToEdit": "Zum Bearbeiten klicken...",
|
||||||
|
"confirmModal.defaultTitle": "Bist du sicher?",
|
||||||
|
"dashboard.header.settingsButton.label": "Einstellungen & Mitglieder",
|
||||||
|
"dashboard.redirectionMessage": "Du wirst weitergeleitet...",
|
||||||
|
"dashboard.title": "Meine BLS bots",
|
||||||
|
"delete": "Löschen",
|
||||||
|
"downgrade": "Downgrade",
|
||||||
|
"editor.blockCard.logicBlock.tooltip.code.label": "JavaScript-Code ausführen",
|
||||||
|
"editor.blockCard.logicBlock.tooltip.jump.label": "Ablauf zu einer anderen Gruppe beschleunigen",
|
||||||
|
"editor.blockCard.logicBlock.tooltip.typebotLink.label": "Verlinkung zu einem anderen BLS bot",
|
||||||
|
"editor.blocks.bubbles.audio.settings.autoplay.label": "Autoplay aktivieren",
|
||||||
|
"editor.blocks.bubbles.audio.settings.chooseFile.label": "Datei auswählen",
|
||||||
|
"editor.blocks.bubbles.audio.settings.embedLink.label": "Link einbetten",
|
||||||
|
"editor.blocks.bubbles.audio.settings.upload.label": "Hochladen",
|
||||||
|
"editor.blocks.bubbles.audio.settings.worksWith.placeholder": "Füge den Audio-Dateilink ein...",
|
||||||
|
"editor.blocks.bubbles.audio.settings.worksWith.text": "Funktioniert mit .MP3- und .WAV-Dateien",
|
||||||
|
"editor.blocks.bubbles.embed.node.show.text": "Einbetten anzeigen",
|
||||||
|
"editor.blocks.bubbles.embed.settings.numberInput.unit": "px",
|
||||||
|
"editor.blocks.bubbles.embed.settings.worksWith.placeholder": "Füge den Link oder Code ein...",
|
||||||
|
"editor.blocks.bubbles.embed.settings.worksWith.text": "Funktioniert mit PDFs, iframes, Websites...",
|
||||||
|
"editor.blocks.bubbles.image.switchWithLabel.onClick.label": "Beim Klicken Link",
|
||||||
|
"editor.blocks.bubbles.image.switchWithLabel.onClick.placeholder": "Link Alternativtext (Beschreibung)",
|
||||||
|
"editor.blocks.bubbles.textEditor.searchVariable.placeholder": "Nach einer Variable suchen",
|
||||||
|
"editor.blocks.start.text": "Start",
|
||||||
|
"editor.header.flowButton.label": "Ablauf",
|
||||||
|
"editor.header.helpButton.label": "Hilfe",
|
||||||
|
"editor.header.previewButton.label": "Vorschau",
|
||||||
|
"editor.header.resultsButton.label": "Ergebnisse",
|
||||||
|
"editor.header.savingSpinner.label": "Speichern...",
|
||||||
|
"editor.header.settingsButton.label": "Einstellungen",
|
||||||
|
"editor.header.themeButton.label": "Design",
|
||||||
|
"editor.sidebarBlock.abTest.label": "AB-Test",
|
||||||
|
"editor.sidebarBlock.analytics.label": "Analytics",
|
||||||
|
"editor.sidebarBlock.audio.label": "Audio",
|
||||||
|
"editor.sidebarBlock.button.label": "Buttons",
|
||||||
|
"editor.sidebarBlock.chatwoot.label": "Chatwoot",
|
||||||
|
"editor.sidebarBlock.condition.label": "Bedingung",
|
||||||
|
"editor.sidebarBlock.date.label": "Datum",
|
||||||
|
"editor.sidebarBlock.email.label": "E-Mail",
|
||||||
|
"editor.sidebarBlock.embed.label": "Einbetten",
|
||||||
|
"editor.sidebarBlock.file.label": "Datei",
|
||||||
|
"editor.sidebarBlock.image.label": "Bild",
|
||||||
|
"editor.sidebarBlock.jump.label": "Springen",
|
||||||
|
"editor.sidebarBlock.makecom.label": "Make.com",
|
||||||
|
"editor.sidebarBlock.number.label": "Nummer",
|
||||||
|
"editor.sidebarBlock.openai.label": "OpenAI",
|
||||||
|
"editor.sidebarBlock.pabbly.label": "Pabbly",
|
||||||
|
"editor.sidebarBlock.payment.label": "Zahlung",
|
||||||
|
"editor.sidebarBlock.phone.label": "Telefon",
|
||||||
|
"editor.sidebarBlock.picChoice.label": "Bildauswahl",
|
||||||
|
"editor.sidebarBlock.pixel.label": "Pixel",
|
||||||
|
"editor.sidebarBlock.rating.label": "Bewertung",
|
||||||
|
"editor.sidebarBlock.redirect.label": "Weiterleitung",
|
||||||
|
"editor.sidebarBlocks.blockType.bubbles.heading": "Blasen",
|
||||||
|
"editor.sidebarBlocks.blockType.inputs.heading": "Eingaben",
|
||||||
|
"editor.sidebarBlocks.blockType.integrations.heading": "Integrationen",
|
||||||
|
"editor.sidebarBlocks.blockType.logic.heading": "Logik",
|
||||||
|
"editor.sidebarBlock.script.label": "Skript",
|
||||||
|
"editor.sidebarBlock.setVariable.label": "Variable setzen",
|
||||||
|
"editor.sidebarBlock.sheets.label": "Tabellen",
|
||||||
|
"editor.sidebarBlocks.sidebar.icon.lock.label": "Sperren",
|
||||||
|
"editor.sidebarBlocks.sidebar.icon.unlock.label": "Entsperren",
|
||||||
|
"editor.sidebarBlocks.sidebar.lock.label": "Seitenleiste sperren",
|
||||||
|
"editor.sidebarBlocks.sidebar.unlock.label": "Seitenleiste entsperren",
|
||||||
|
"editor.sidebarBlock.start.label": "Start",
|
||||||
|
"editor.sidebarBlock.text.label": "Text",
|
||||||
|
"editor.sidebarBlock.typebot.label": "BLS bot",
|
||||||
|
"editor.sidebarBlock.video.label": "Video",
|
||||||
|
"editor.sidebarBlock.wait.label": "Warten",
|
||||||
|
"editor.sidebarBlock.website.label": "Website",
|
||||||
|
"editor.sidebarBlock.zapier.label": "Zapier",
|
||||||
|
"editor.sidebarBlock.zemanticAi.label": "Zemantic AI",
|
||||||
|
"errorMessage": "Ein Fehler ist aufgetreten",
|
||||||
|
"folders.createFolderButton.label": "Ordner erstellen",
|
||||||
|
"folders.createTypebotButton.label": "BLS bot erstellen",
|
||||||
|
"folders.folderButton.deleteConfirmationMessage": "Möchtest du den Ordner <strong>folderName</strong> wirklich löschen? (Alles im Inneren wird in dein Dashboard verschoben)",
|
||||||
|
"folders.typebotButton.delete": "Löschen",
|
||||||
|
"folders.typebotButton.deleteConfirmationMessage": "Möchtest du deinen BLS bot <strong>typebotName</strong> wirklich löschen?",
|
||||||
|
"folders.typebotButton.deleteConfirmationMessageWarning": "Alle zugehörigen Daten werden gelöscht und können nicht wiederhergestellt werden.",
|
||||||
|
"folders.typebotButton.duplicate": "Duplizieren",
|
||||||
|
"folders.typebotButton.live": "Online",
|
||||||
|
"folders.typebotButton.showMoreOptions": "Mehr Optionen anzeigen",
|
||||||
|
"folders.typebotButton.unpublish": "Veröffentlichung aufheben",
|
||||||
|
"pending": "Ausstehend",
|
||||||
|
"publishButton.label": "Veröffentlichen",
|
||||||
|
"publishButton.published.label": "Veröffentlicht",
|
||||||
|
"remove": "Entfernen",
|
||||||
|
"rename": "Umbenennen",
|
||||||
|
"share.button.label": "Teilen",
|
||||||
|
"skip": "Überspringen",
|
||||||
|
"templates.buttons.fromScratchButton.label": "Von Grund auf starten",
|
||||||
|
"templates.buttons.fromTemplateButton.label": "Von einer Vorlage starten",
|
||||||
|
"templates.buttons.heading": "Erstelle einen neuen BLS bot",
|
||||||
|
"templates.buttons.importFileButton.label": "Datei importieren",
|
||||||
|
"templates.importFromFileButon.toastError.description": "Konnte die Datei nicht verarbeiten. Bist du sicher, dass es sich um einen BLS bot handelt?",
|
||||||
|
"templates.modal.menuHeading.marketing": "Marketing",
|
||||||
|
"templates.modal.menuHeading.new.tag": "Neu",
|
||||||
|
"templates.modal.menuHeading.other": "Andere",
|
||||||
|
"templates.modal.menuHeading.product": "Produkt",
|
||||||
|
"templates.modal.useTemplateButton.label": "Diese Vorlage verwenden",
|
||||||
|
"typebots.defaultName": "Dein BLS bot",
|
||||||
|
"upgrade": "Upgrade",
|
||||||
|
"video.urlInput.helperText": "Funktioniert mit YouTube, Vimeo, Gumlet, TikTok und anderen",
|
||||||
|
"video.urlInput.placeholder": "Füge den Videolink ein...",
|
||||||
|
"workspace.dropdown.logoutButton.label": "Abmelden",
|
||||||
|
"workspace.dropdown.newButton.label": "Neuer Workspace",
|
||||||
|
"workspace.membersList.inviteButton.label": "Einladen",
|
||||||
|
"workspace.membersList.inviteInput.placeholder": "name@unternehmen.de",
|
||||||
|
"workspace.membersList.title": "Mitglieder",
|
||||||
|
"workspace.membersList.unlockBanner.label": "Aktualisiere deinen Plan, um mit mehr Teammitgliedern zu arbeiten und neue Limits freizuschalten",
|
||||||
|
"workspace.settings.deleteButton.confirmMessage": "Sind Sie sicher, dass Sie den Workspace {workspaceName} löschen möchten? Alle seine Ordner, BLS bots und Ergebnisse werden dauerhaft gelöscht.",
|
||||||
|
"workspace.settings.deleteButton.label": "Workspace löschen",
|
||||||
|
"workspace.settings.icon.title": "Symbol",
|
||||||
|
"workspace.settings.modal.menu.billingAndUsage.label": "Abo & Nutzung",
|
||||||
|
"workspace.settings.modal.menu.members.label": "Mitglieder",
|
||||||
|
"workspace.settings.modal.menu.myAccount.label": "Mein Konto",
|
||||||
|
"workspace.settings.modal.menu.preferences.label": "Einstellungen",
|
||||||
|
"workspace.settings.modal.menu.settings.label": "Übersicht",
|
||||||
|
"workspace.settings.modal.menu.version.label": "Version: {version}",
|
||||||
|
"workspace.settings.modal.menu.workspace.label": "Workspace",
|
||||||
|
"workspace.settings.name.label": "Name:"
|
||||||
|
}
|
@ -64,9 +64,9 @@
|
|||||||
"back": "Zurück",
|
"back": "Zurück",
|
||||||
"billing.billingPortalButton.label": "Abrechnungsportal",
|
"billing.billingPortalButton.label": "Abrechnungsportal",
|
||||||
"billing.contribution.link": "Erfahre mehr.",
|
"billing.contribution.link": "Erfahre mehr.",
|
||||||
"billing.contribution.preLink": "BLS bot trägt 1% deines Abonnements dazu bei, CO₂ aus der Atmosphäre zu entfernen.",
|
"billing.contribution.preLink": "BLS media hostet alle Dienste klimaneutral.",
|
||||||
"billing.currentSubscription.cancelDate": "Wird storniert am",
|
"billing.currentSubscription.cancelDate": "Wird storniert am",
|
||||||
"billing.currentSubscription.heading": "Abonnement",
|
"billing.currentSubscription.heading": "Dein Abo",
|
||||||
"billing.currentSubscription.pastDueAlert": "Die letzte Zahlung ist fehlgeschlagen. Gehen Sie zum Abrechnungsportal, um fortzufahren und eine Kündigung Ihres Abonnements zu vermeiden.",
|
"billing.currentSubscription.pastDueAlert": "Die letzte Zahlung ist fehlgeschlagen. Gehen Sie zum Abrechnungsportal, um fortzufahren und eine Kündigung Ihres Abonnements zu vermeiden.",
|
||||||
"billing.currentSubscription.subheading": "Aktuelles BLS bot-Abo:",
|
"billing.currentSubscription.subheading": "Aktuelles BLS bot-Abo:",
|
||||||
"billing.customLimit.link": "Lass uns darüber sprechen!",
|
"billing.customLimit.link": "Lass uns darüber sprechen!",
|
||||||
@ -223,10 +223,10 @@
|
|||||||
"workspace.dropdown.logoutButton.label": "Abmelden",
|
"workspace.dropdown.logoutButton.label": "Abmelden",
|
||||||
"workspace.dropdown.newButton.label": "Neuer Workspace",
|
"workspace.dropdown.newButton.label": "Neuer Workspace",
|
||||||
"workspace.membersList.inviteButton.label": "Einladen",
|
"workspace.membersList.inviteButton.label": "Einladen",
|
||||||
"workspace.membersList.inviteInput.placeholder": "name@unternehmen.de",
|
"workspace.membersList.inviteInput.placeholder": "name@email.de",
|
||||||
"workspace.membersList.title": "Mitglieder",
|
"workspace.membersList.title": "Mitglieder",
|
||||||
"workspace.membersList.unlockBanner.label": "Aktualisiere deinen Plan, um mit mehr Teammitgliedern zu arbeiten und neue Limits freizuschalten",
|
"workspace.membersList.unlockBanner.label": "Aktualisiere deinen Plan, um mit mehr Teammitgliedern zu arbeiten und neue Limits freizuschalten",
|
||||||
"workspace.settings.deleteButton.confirmMessage": "Sind Sie sicher, dass Sie den Workspace {workspaceName} löschen möchten? Alle seine Ordner, BLS bots und Ergebnisse werden dauerhaft gelöscht.",
|
"workspace.settings.deleteButton.confirmMessage": "Bist du sicher, dass du den Workspace {workspaceName} löschen möchtest? Alle deine Ordner, BLS bots und Ergebnisse werden dauerhaft gelöscht.",
|
||||||
"workspace.settings.deleteButton.label": "Workspace löschen",
|
"workspace.settings.deleteButton.label": "Workspace löschen",
|
||||||
"workspace.settings.icon.title": "Symbol",
|
"workspace.settings.icon.title": "Symbol",
|
||||||
"workspace.settings.modal.menu.billingAndUsage.label": "Abo & Nutzung",
|
"workspace.settings.modal.menu.billingAndUsage.label": "Abo & Nutzung",
|
||||||
@ -236,5 +236,239 @@
|
|||||||
"workspace.settings.modal.menu.settings.label": "Übersicht",
|
"workspace.settings.modal.menu.settings.label": "Übersicht",
|
||||||
"workspace.settings.modal.menu.version.label": "Version: {version}",
|
"workspace.settings.modal.menu.version.label": "Version: {version}",
|
||||||
"workspace.settings.modal.menu.workspace.label": "Workspace",
|
"workspace.settings.modal.menu.workspace.label": "Workspace",
|
||||||
"workspace.settings.name.label": "Name:"
|
"workspace.settings.name.label": "Name:",
|
||||||
|
"add": "hinzufügen",
|
||||||
|
"billing.tiersModal.heading": "Chats Preistabelle",
|
||||||
|
"blocks.inputs.button.addItem.ariaLabel": "Artikel hinzufügen",
|
||||||
|
"blocks.inputs.button.buttonSettings.addComparisonButton.label": "Vergleich hinzufügen",
|
||||||
|
"blocks.inputs.button.buttonSettings.displayCondition.infoText.label": "Zeige dieses Element nur an, wenn eine Bedingung erfüllt ist.",
|
||||||
|
"blocks.inputs.button.buttonSettings.displayCondition.selectOperator.label": "Wähle einen Betreiber",
|
||||||
|
"blocks.inputs.button.clickToEdit.label": "Zum Bearbeiten klicken",
|
||||||
|
"blocks.inputs.button.conditionContent.if.label": "WENN",
|
||||||
|
"blocks.inputs.button.default.label": "Standard",
|
||||||
|
"blocks.inputs.button.else.label": "DANN",
|
||||||
|
"blocks.inputs.button.openSettings.ariaLabel": "Einstellungen öffnen",
|
||||||
|
"blocks.inputs.button.settings.dynamicData.infoText.label": "Wenn definiert, werden die Schaltflächen dynamisch angezeigt, je nachdem, was die Variable enthält.",
|
||||||
|
"blocks.inputs.button.settings.dynamicData.label": "Dynamische Daten:",
|
||||||
|
"blocks.inputs.button.variables.buttons.label": "Tasten",
|
||||||
|
"blocks.inputs.button.variables.display.label": "Anzeige",
|
||||||
|
"blocks.inputs.date.settings.format.example.label": "z.B.",
|
||||||
|
"blocks.inputs.date.settings.format.label": "Format:",
|
||||||
|
"blocks.inputs.date.settings.from.label": "Vom Label:",
|
||||||
|
"blocks.inputs.date.settings.isRange.label": "Ist zwischen?",
|
||||||
|
"blocks.inputs.date.settings.toInputValue.label": "An:",
|
||||||
|
"blocks.inputs.date.settings.to.label": "An Label:",
|
||||||
|
"blocks.inputs.date.settings.withTime.label": "Mit Uhrzeit?",
|
||||||
|
"blocks.inputs.file.collectMultiple.label": "Dateien sammeln",
|
||||||
|
"blocks.inputs.file.collectSingle.label": "Datei sammeln",
|
||||||
|
"blocks.inputs.file.settings.allowMultiple.label": "Mehrere Dateien zulassen?",
|
||||||
|
"blocks.inputs.file.settings.clear.label": "Beschriftung der Schaltfläche löschen:",
|
||||||
|
"blocks.inputs.file.settings.required.label": "Erforderlich?",
|
||||||
|
"blocks.inputs.file.settings.saveMultipleUpload.label": "Speichere Upload-URLs in einer Variablen:",
|
||||||
|
"blocks.inputs.file.settings.saveSingleUpload.label": "Speichere die Upload-URL in einer Variablen:",
|
||||||
|
"blocks.inputs.file.settings.skip.label": "Beschriftung 'Überspringen':",
|
||||||
|
"blocks.inputs.number.settings.step.label": "Schritt:",
|
||||||
|
"blocks.inputs.payment.collect.label": "Coletar",
|
||||||
|
"blocks.inputs.payment.placeholder.label": "Konfigurieren...",
|
||||||
|
"blocks.inputs.payment.settings.account.label": "Konto:",
|
||||||
|
"blocks.inputs.payment.settings.accountText.label": "{provider} Konto",
|
||||||
|
"blocks.inputs.payment.settings.additionalInformation.description.placeholder.label": "Ein digitales Produkt",
|
||||||
|
"blocks.inputs.payment.settings.additionalInformation.email.label": "E-Mail:",
|
||||||
|
"blocks.inputs.payment.settings.additionalInformation.label": "Zusätzliche Informationen",
|
||||||
|
"blocks.inputs.payment.settings.additionalInformation.name.label": "Name:",
|
||||||
|
"blocks.inputs.payment.settings.additionalInformation.phone.label": "Telefon:",
|
||||||
|
"blocks.inputs.payment.settings.address.city.label": "Stadt:",
|
||||||
|
"blocks.inputs.payment.settings.address.country.label": "Land:",
|
||||||
|
"blocks.inputs.payment.settings.address.label": "Adresse",
|
||||||
|
"blocks.inputs.payment.settings.address.line.label": "Zeile {line}:",
|
||||||
|
"blocks.inputs.payment.settings.address.postalCode.label": "Postleitzahl:",
|
||||||
|
"blocks.inputs.payment.settings.address.state.label": "Region:",
|
||||||
|
"blocks.inputs.payment.settings.credentials.connectNew.label": "Neu verbinden",
|
||||||
|
"blocks.inputs.payment.settings.credentials.removeCredentials.label": "Anmeldeinformationen entfernen",
|
||||||
|
"blocks.inputs.payment.settings.currency.label": "Währung:",
|
||||||
|
"blocks.inputs.payment.settings.priceAmount.label": "Preisbetrag:",
|
||||||
|
"blocks.inputs.payment.settings.provider.label": "Anbieter:",
|
||||||
|
"blocks.inputs.payment.settings.stripeConfig.accountName.label": "Kontoname:",
|
||||||
|
"blocks.inputs.payment.settings.stripeConfig.findKeys.here.label": "hier",
|
||||||
|
"blocks.inputs.payment.settings.stripeConfig.findKeys.label": "Du kannst deine Keys finden",
|
||||||
|
"blocks.inputs.payment.settings.stripeConfig.liveKeys.label": "Live-Keys:",
|
||||||
|
"blocks.inputs.payment.settings.stripeConfig.testKeys.infoText.label": "Wird bei der Vorschau des Bots verwendet.",
|
||||||
|
"blocks.inputs.payment.settings.stripeConfig.testKeys.label": "Test Keys:",
|
||||||
|
"blocks.inputs.payment.settings.stripeConfig.title.label": "Stripe-Konto verbinden",
|
||||||
|
"blocks.inputs.payment.settings.successMessage.label": "Erfolgsmeldung:",
|
||||||
|
"blocks.inputs.phone.settings.defaultCountry.label": "Standardland:",
|
||||||
|
"blocks.inputs.phone.settings.international.placeholder.label": "International",
|
||||||
|
"blocks.inputs.picture.itemSettings.image.change.label": "Bild ändern",
|
||||||
|
"blocks.inputs.picture.itemSettings.image.label": "Bild:",
|
||||||
|
"blocks.inputs.picture.itemSettings.image.pick.label": "Wähle ein Bild",
|
||||||
|
"blocks.inputs.picture.itemSettings.title.label": "Titel:",
|
||||||
|
"blocks.inputs.picture.settings.dynamicItems.descriptions.label": "Beschreibungen:",
|
||||||
|
"blocks.inputs.picture.settings.dynamicItems.images.label": "Bilder:",
|
||||||
|
"blocks.inputs.picture.settings.dynamicItems.label": "Dynamische Gegenstände?",
|
||||||
|
"blocks.inputs.picture.settings.dynamicItems.titles.label": "Titel:",
|
||||||
|
"blocks.inputs.picture.settings.dynamicVariables.display.label": "Anzeige",
|
||||||
|
"blocks.inputs.picture.settings.dynamicVariables.pictures.label": "Bilder",
|
||||||
|
"blocks.inputs.rating.from.label": "Rate von",
|
||||||
|
"blocks.inputs.rating.settings.customIcon.label": "Eigenes Symbol?",
|
||||||
|
"blocks.inputs.rating.settings.extremelyLikely.placeholder.label": "Sehr wahrscheinlich",
|
||||||
|
"blocks.inputs.rating.settings.iconSVG.label": "Icon SVG:",
|
||||||
|
"blocks.inputs.rating.settings.maximum.label": "Maximum:",
|
||||||
|
"blocks.inputs.rating.settings.notLikely.placeholder.label": "Überhaupt nicht wahrscheinlich",
|
||||||
|
"blocks.inputs.rating.settings.oneClickSubmit.infoText.label": "Wenn diese Option aktiviert ist, wird die Antwort abgeschickt, sobald der:die Nutzer:in auf eine Bewertung klickt, anstatt die Schaltfläche \"Send\" anzuzeigen.",
|
||||||
|
"blocks.inputs.rating.settings.oneClickSubmit.label": "Mit einem Klick abschicken",
|
||||||
|
"blocks.inputs.rating.settings.rateLabel.label": "Label für {rate}",
|
||||||
|
"blocks.inputs.rating.settings.type.label": "Typ:",
|
||||||
|
"blocks.inputs.rating.to.label": "zu",
|
||||||
|
"blocks.inputs.settings.button.label": "Button-Label:",
|
||||||
|
"blocks.inputs.settings.buttonText.label": "Senden",
|
||||||
|
"blocks.inputs.settings.description.label": "Beschreibung:",
|
||||||
|
"blocks.inputs.settings.displayCondition.label": "Bedingung anzeigen",
|
||||||
|
"blocks.inputs.settings.input.filterOptions.label": "Filtere die Optionen...",
|
||||||
|
"blocks.inputs.settings.input.placeholder.label": "Platzhalter für die Eingabe:",
|
||||||
|
"blocks.inputs.settings.isSearchable.label": "Ist suchbar?",
|
||||||
|
"blocks.inputs.settings.max.label": "Max.:",
|
||||||
|
"blocks.inputs.settings.min.label": "Min.:",
|
||||||
|
"blocks.inputs.settings.multipleChoice.label": "Multiple Choice?",
|
||||||
|
"blocks.inputs.settings.placeholder.label": "Platzhalter:",
|
||||||
|
"blocks.inputs.settings.retryMessage.label": "Fehlermeldung:",
|
||||||
|
"blocks.inputs.settings.saveAnswer.label": "Speichere die Antwort in einer Variablen:",
|
||||||
|
"blocks.inputs.settings.submitButton.label": "Schaltfläche 'Senden':",
|
||||||
|
"blocks.inputs.text.settings.longText.label": "Langer Text?",
|
||||||
|
"collaboration.roles.edit.label": "Kann bearbeiten",
|
||||||
|
"collaboration.roles.full.label": "Voller Zugang",
|
||||||
|
"collaboration.roles.view.label": "Kann anzeigen",
|
||||||
|
"colorPicker.advancedColors": "Erweiterte Farben",
|
||||||
|
"colorPicker.colorValue.ariaLabel": "Farbwert",
|
||||||
|
"colorPicker.pickColor.ariaLabel": "Wähle eine Farbe",
|
||||||
|
"connect": "Verbinde",
|
||||||
|
"copied": "Kopiert",
|
||||||
|
"copy": "Kopiere",
|
||||||
|
"create": "Erstellen",
|
||||||
|
"duplicate": "Duplizieren",
|
||||||
|
"editor.graph.menu.documentationItem.label": "Dokumentation",
|
||||||
|
"editor.graph.menu.editorSettingsItem.label": "Editor-Einstellungen",
|
||||||
|
"editor.graph.menu.exportFlowItem.label": "Fluss exportieren",
|
||||||
|
"editor.header.linkTab.searchInputPlaceholder.label": "Füge den Bildlink ein...",
|
||||||
|
"editor.header.redoButton.label": "wiederherstellen",
|
||||||
|
"editor.header.tooltip.changeIcon.label": "Symbol ändern",
|
||||||
|
"editor.header.undoButton.label": "rückgängig",
|
||||||
|
"editor.header.undo.tooltip.label": "Änderungen rückgängig gemacht!",
|
||||||
|
"editor.header.unpublishTypebot.error.label": "Fehler beim offline schalten deines BLS bots",
|
||||||
|
"editor.header.uploadTab.uploadButton.label": "Wähle ein Bild",
|
||||||
|
"emojiList.categories.activities.label": "AKTIVITÄTEN",
|
||||||
|
"emojiList.categories.animalsAndNature.label": "TIERE & NATUR",
|
||||||
|
"emojiList.categories.flags.label": "FLAGGEN",
|
||||||
|
"emojiList.categories.foodAndDrink.label": "ESSEN & TRINKEN",
|
||||||
|
"emojiList.categories.objects.label": "OBJEKTE",
|
||||||
|
"emojiList.categories.people.label": "MENSCHEN",
|
||||||
|
"emojiList.categories.recent.label": "KÜRZLICH",
|
||||||
|
"emojiList.categories.symbols.label": "SYMBOLE",
|
||||||
|
"emojiList.categories.travelAndPlaces.label": "REISEN & ORTE",
|
||||||
|
"emojiList.searchInput.placeholder": "Suche...",
|
||||||
|
"help": "Hilfe",
|
||||||
|
"preview.restartButton.label": "Neustart",
|
||||||
|
"publishButton.closed.label": "Geschlossen",
|
||||||
|
"publishButton.dropdown.close.label": "Diesen BLS bot für neue Antworten schließen",
|
||||||
|
"publishButton.dropdown.reopen.label": "Diesen BLS bot wieder für neue Antworten öffnen",
|
||||||
|
"publishButton.dropdown.restoreVersion.label": "Veröffentlichte Version wiederherstellen",
|
||||||
|
"publishButton.dropdown.showMenu.label": "Veröffentlichtes BLS bot-Menü anzeigen",
|
||||||
|
"publishButton.dropdown.unpublish.label": "BLS bot offline schalten",
|
||||||
|
"publishButton.tooltip.nonPublishedChanges.label": "Es gibt nicht veröffentlichte Änderungen.",
|
||||||
|
"publishButton.tooltip.publishedVersion.from.label": "Veröffentlichte Version von {timeSince}.",
|
||||||
|
"publish.error.label": "Fehler beim online schalten deines BLS bots",
|
||||||
|
"publish.versionWarning.checkBreakingChanges": "Schau dir unbedingt alle <link>verbundenen Änderungen</link> an",
|
||||||
|
"publish.versionWarning.message.aboutToDeploy.label": "Du bist dabei, eine neue Version deines Bots mit einer aktualisierten Engine zu entwickeln. (BLS Bot V6).",
|
||||||
|
"publish.versionWarning.message.testInPreviewMode.label": "Teste den Bot dann gründlich im Vorschaumodus, bevor du ihn veröffentlichst.",
|
||||||
|
"publish.versionWarning.title.label": "⚠️ Neue Serverversion",
|
||||||
|
"save": "Speichern",
|
||||||
|
"select": "Wähle",
|
||||||
|
"share.button.popover.ariaLabel": "Freigabe-Popover öffnen",
|
||||||
|
"share.button.popover.collaboratorsFetch.error.label": "Konnte keine Mitarbeiter abrufen",
|
||||||
|
"share.button.popover.invitationSent.successToast.label": "Einladung gesendet!",
|
||||||
|
"share.button.popover.invitationsFetch.error.label": "Konnte keine Einladungen laden",
|
||||||
|
"share.button.popover.inviteButton.label": "Einladen",
|
||||||
|
"share.button.popover.inviteInput.placeholder": "name@email.de",
|
||||||
|
"share.button.popover.publicFlow.label": "Mach den Flow öffentlich zugänglich",
|
||||||
|
"templates.modal.marketing.insuranceOffer.description": "Du bist eine Hundeversicherungsgesellschaft. Mit diesem Bot kannst du Informationen über den Hund sammeln und ein Angebot erstellen.",
|
||||||
|
"templates.modal.marketing.insuranceOffer.name": "Versicherung Angebot",
|
||||||
|
"templates.modal.marketing.leadGeneration.description": "Du bist eine Marketingagentur und mit diesem Bot kannst du neue Leads generieren, die an deinen Dienstleistungen interessiert sind.",
|
||||||
|
"templates.modal.marketing.leadGeneration.name": "Lead Generation",
|
||||||
|
"templates.modal.marketing.leadGenWithAi.description": "Du bist eine Marketingagentur und dieser Bot ermöglicht es dir, neue Leads zu generieren, die an deinen Dienstleistungen interessiert sind. Ein KI-Block wird verwendet, um die Bedürfnisse der Nutzer zu ergründen.",
|
||||||
|
"templates.modal.marketing.leadGenWithAi.name": "Lead Gen mit KI",
|
||||||
|
"templates.modal.marketing.leadMagnet.description": "Biete deinen potenziellen Kunden im Tausch gegen ihre Kontaktinformationen kostenlose Inhalte an.",
|
||||||
|
"templates.modal.marketing.leadMagnet.name": "Bleimagnet",
|
||||||
|
"templates.modal.marketing.leadScoring.description": "Berechne neben den Fragen zur Lead-Qualifizierung eine Punktzahl, um deine neuen Interessenten einzustufen.",
|
||||||
|
"templates.modal.marketing.leadScoring.name": "Lead Scoring",
|
||||||
|
"templates.modal.marketing.productRecommendation.description": "Näak ist ein Unternehmen, das Energieriegel, Hydratationsmischungen und Erholungsprodukte verkauft. Dieser Bot hilft einem Besucher bei der Auswahl des richtigen Produkts. Er hilft dir dabei, deinen Lead zu qualifizieren und eine personalisierte Empfehlung zu geben.",
|
||||||
|
"templates.modal.marketing.productRecommendation.name": "Produktempfehlung",
|
||||||
|
"templates.modal.marketing.quiz.description": "Ein lustiges Quiz, um mit deinen Nutzern in Kontakt zu treten und ihre E-Mails zu sammeln.",
|
||||||
|
"templates.modal.marketing.quiz.name": "Quiz",
|
||||||
|
"templates.modal.other.audioChatGpt.description": "Ein Audio-KI-Bot, der den OpenAI-Block verwendet, um Antworten auf der Grundlage der Benutzereingaben zu generieren.",
|
||||||
|
"templates.modal.other.audioChatGpt.name": "Audio ChatGPT",
|
||||||
|
"templates.modal.other.basicChatGpt.description": "Ein Bot, der das ChatGPT-Modell verwendet, um Antworten auf der Grundlage der Benutzereingaben zu generieren.",
|
||||||
|
"templates.modal.other.basicChatGpt.name": "Basic ChatGPT",
|
||||||
|
"templates.modal.other.chatGptPersonas.description": "Ein Bot, der das ChatGPT-Modell verwendet, um Antworten auf der Grundlage der Benutzereingaben und der ausgewählten Persona zu generieren.",
|
||||||
|
"templates.modal.other.chatGptPersonas.name": "ChatGPT Menschen",
|
||||||
|
"templates.modal.other.digitalProductPayment.description": "Ein Bot, der es dir ermöglicht, digitale Produkte (Ebooks, Kurse usw.) zu verkaufen und den Inhalt erst nach Bestätigung der Zahlung bereitzustellen.",
|
||||||
|
"templates.modal.other.digitalProductPayment.name": "Zahlung für digitale Produkte",
|
||||||
|
"templates.modal.other.movieRecommendation.description": "Ein Bot, der Filme basierend auf den Vorlieben der Nutzer empfiehlt.",
|
||||||
|
"templates.modal.other.movieRecommendation.name": "Filmempfehlung",
|
||||||
|
"templates.modal.other.openAiConditions.description": "Dies ist ein Beispiel dafür, wie du den OpenAI-Block nutzen kannst, um intelligente Entscheidungen auf der Grundlage der Nutzereingaben zu treffen und die Konversation auf den richtigen Weg zu lenken.",
|
||||||
|
"templates.modal.other.openAiConditions.name": "OpenAI Bedingungen",
|
||||||
|
"templates.modal.product.customerSupport.description": "Ein Bot, dessen Aufgabe es ist, Nutzerfeedback zu sammeln: Fragen, Bugs und Feature Requests.",
|
||||||
|
"templates.modal.product.customerSupport.name": "Kundenbetreuung",
|
||||||
|
"templates.modal.product.faq.description": "Ein Bot, der häufig gestellte Fragen zu deinem Produkt oder deiner Dienstleistung beantwortet.",
|
||||||
|
"templates.modal.product.faq.name": "FAQ",
|
||||||
|
"templates.modal.product.npsSurvey.description": "Eine einfache NPS-Umfrage, um deine Kundenzufriedenheit zu messen und dein Produkt zu verbessern.",
|
||||||
|
"templates.modal.product.npsSurvey.name": "NPS-Umfrage",
|
||||||
|
"templates.modal.product.userOnboarding.description": "Ein Bot, der neue Benutzerinformationen abfragt, bevor sie dein Produkt benutzen.",
|
||||||
|
"templates.modal.product.userOnboarding.name": "Nutzer-Onboarding",
|
||||||
|
"theme.sideMenu.chat": "Chat",
|
||||||
|
"theme.sideMenu.chat.botAvatar": "Bot Avatar",
|
||||||
|
"theme.sideMenu.chat.botBubbles": "Bot-Blasen",
|
||||||
|
"theme.sideMenu.chat.buttons": "Buttons",
|
||||||
|
"theme.sideMenu.chat.inputs": "Eingänge",
|
||||||
|
"theme.sideMenu.chat.theme.background": "Hintergrund:",
|
||||||
|
"theme.sideMenu.chat.theme.placeholder": "Platzhaltertext:",
|
||||||
|
"theme.sideMenu.chat.theme.text": "Text:",
|
||||||
|
"theme.sideMenu.chat.userAvatar": "Benutzer-Avatar",
|
||||||
|
"theme.sideMenu.chat.userBubbles": "Benutzerblasen",
|
||||||
|
"theme.sideMenu.customCSS": "Benutzerdefiniertes CSS",
|
||||||
|
"theme.sideMenu.global": "Global",
|
||||||
|
"theme.sideMenu.global.background": "Hintergrund",
|
||||||
|
"theme.sideMenu.global.background.color": "Hintergrundfarbe:",
|
||||||
|
"theme.sideMenu.global.background.color.select": "Farbe",
|
||||||
|
"theme.sideMenu.global.background.image.alt": "Hintergrundbild",
|
||||||
|
"theme.sideMenu.global.background.image.button": "Ein Bild auswählen",
|
||||||
|
"theme.sideMenu.global.background.image.select": "Bild",
|
||||||
|
"theme.sideMenu.global.background.none.select": "Keine",
|
||||||
|
"theme.sideMenu.global.font": "Schriftart",
|
||||||
|
"theme.sideMenu.global.typebotBrand": "'Powered by BLS Bot' anzeigen",
|
||||||
|
"theme.sideMenu.template": "Schablonen",
|
||||||
|
"theme.sideMenu.template.gallery": "Galerie",
|
||||||
|
"theme.sideMenu.template.gallery.avatarPreview.alt": "Avatar-Vorschau in der Themenvorlagenkarte",
|
||||||
|
"theme.sideMenu.template.myTemplates": "Meine Vorlagen",
|
||||||
|
"theme.sideMenu.template.myTemplates.menu.ariaLabel": "Menü Vorlage öffnen",
|
||||||
|
"theme.sideMenu.template.myTemplates.saveTheme": "Aktuelles Theme speichern",
|
||||||
|
"theme.sideMenu.template.myTemplates.saveTheme.myTemplate": "Meine Vorlage",
|
||||||
|
"theme.sideMenu.template.myTemplates.saveTheme.name": "Name:",
|
||||||
|
"theme.sideMenu.template.myTemplates.saveTheme.saveAsNew": "Als neue Vorlage speichern",
|
||||||
|
"theme.sideMenu.template.myTemplates.saveTheme.title": "Theme speichern",
|
||||||
|
"theme.sideMenu.title": "Anpassen des Themes",
|
||||||
|
"timeSince.days": "vor {count}d",
|
||||||
|
"timeSince.hours": "vor {count}h",
|
||||||
|
"timeSince.minutes": "vor {count}m",
|
||||||
|
"timeSince.months": "vor {count} Monaten",
|
||||||
|
"timeSince.seconds": "vor {count}s",
|
||||||
|
"timeSince.years": "vor {count} Jahren",
|
||||||
|
"update": "Update",
|
||||||
|
"variables.button.searchInput.placeholder": "Suche nach einer Variable",
|
||||||
|
"variables.button.tooltip": "Eine Variable einfügen",
|
||||||
|
"variables.remove": "Variable entfernen",
|
||||||
|
"variables.rename": "Variable umbenennen",
|
||||||
|
"variables.search": "Suche nach einer Variable",
|
||||||
|
"variables.select": "Wähle eine Variable",
|
||||||
|
"variables.set": "Set",
|
||||||
|
"video.aspectRatioInput.label": "Seitenverhältnis",
|
||||||
|
"video.maxWidthInput.label": "Maximale Breite"
|
||||||
}
|
}
|
@ -318,7 +318,7 @@
|
|||||||
"emojiList.searchInput.placeholder": "Search...",
|
"emojiList.searchInput.placeholder": "Search...",
|
||||||
"errorMessage": "An error occured",
|
"errorMessage": "An error occured",
|
||||||
"folders.createFolderButton.label": "Create a folder",
|
"folders.createFolderButton.label": "Create a folder",
|
||||||
"folders.createTypebotButton.label": "Create a typebot",
|
"folders.createTypebotButton.label": "Create a BLS bot",
|
||||||
"folders.folderButton.deleteConfirmationMessage": "Are you sure you want to delete <strong>folderName</strong> folder? (Everything inside will be move to your dashboard)",
|
"folders.folderButton.deleteConfirmationMessage": "Are you sure you want to delete <strong>folderName</strong> folder? (Everything inside will be move to your dashboard)",
|
||||||
"folders.typebotButton.delete": "Delete",
|
"folders.typebotButton.delete": "Delete",
|
||||||
"folders.typebotButton.deleteConfirmationMessage": "Are you sure you want to delete your typebot <strong>typebotName</strong>?",
|
"folders.typebotButton.deleteConfirmationMessage": "Are you sure you want to delete your typebot <strong>typebotName</strong>?",
|
||||||
|
@ -3713,7 +3713,7 @@
|
|||||||
"/v1/typebots": {
|
"/v1/typebots": {
|
||||||
"post": {
|
"post": {
|
||||||
"operationId": "typebot-createTypebot",
|
"operationId": "typebot-createTypebot",
|
||||||
"summary": "Create a typebot",
|
"summary": "Create a BLS bot",
|
||||||
"tags": [
|
"tags": [
|
||||||
"Typebot"
|
"Typebot"
|
||||||
],
|
],
|
||||||
|
@ -56,7 +56,7 @@ export const EndCta = ({ heading, polygonsBaseTop, ...props }: Props) => {
|
|||||||
data-aos="fade-up"
|
data-aos="fade-up"
|
||||||
data-aos-delay="300"
|
data-aos-delay="300"
|
||||||
>
|
>
|
||||||
Create a typebot
|
Create a BLS bot
|
||||||
</Button>
|
</Button>
|
||||||
</Flex>
|
</Flex>
|
||||||
|
|
||||||
|
@ -59,7 +59,7 @@ export const Hero = () => {
|
|||||||
height="4rem"
|
height="4rem"
|
||||||
px="2rem"
|
px="2rem"
|
||||||
>
|
>
|
||||||
Create a typebot for free
|
Create a BLS bot for free
|
||||||
</Button>
|
</Button>
|
||||||
</Stack>
|
</Stack>
|
||||||
</VStack>
|
</VStack>
|
||||||
|
@ -12,7 +12,7 @@ export const ArticleCallToAction = () => (
|
|||||||
as="a"
|
as="a"
|
||||||
href="https://app.typebot.io/register"
|
href="https://app.typebot.io/register"
|
||||||
>
|
>
|
||||||
Create a typebot
|
Create a BLS bot
|
||||||
</Button>
|
</Button>
|
||||||
<Text fontSize="sm" fontStyle="italic" color="gray.600">
|
<Text fontSize="sm" fontStyle="italic" color="gray.600">
|
||||||
It's free!
|
It's free!
|
||||||
|
@ -102,7 +102,7 @@ export const Header = () => {
|
|||||||
colorScheme="orange"
|
colorScheme="orange"
|
||||||
fontWeight={700}
|
fontWeight={700}
|
||||||
>
|
>
|
||||||
Create a typebot
|
Create a BLS bot
|
||||||
</Button>
|
</Button>
|
||||||
</HStack>
|
</HStack>
|
||||||
</HStack>
|
</HStack>
|
||||||
|
@ -29,7 +29,7 @@ export const MobileMenu = ({ isOpen }: Props) => (
|
|||||||
colorScheme="orange"
|
colorScheme="orange"
|
||||||
fontWeight={700}
|
fontWeight={700}
|
||||||
>
|
>
|
||||||
Create a typebot
|
Create a BLS bot
|
||||||
</Button>
|
</Button>
|
||||||
<Button
|
<Button
|
||||||
as={Link}
|
as={Link}
|
||||||
|
@ -218,7 +218,7 @@ module.exports = {
|
|||||||
|
|
||||||
### Setting Up Typebot API
|
### Setting Up Typebot API
|
||||||
|
|
||||||
1. Create a Typebot account and design your chatbot flow.
|
1. Create a BLS bot account and design your chatbot flow.
|
||||||
2. Generate an API token in Typebot settings.
|
2. Generate an API token in Typebot settings.
|
||||||
3. Note your Typebot's public ID.
|
3. Note your Typebot's public ID.
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user