Changeset 3484591
- Timestamp:
- 03/17/2026 09:13:57 AM (2 weeks ago)
- Location:
- recras
- Files:
-
- 54 edited
- 1 copied
-
tags/6.5.3 (copied) (copied from recras/trunk)
-
tags/6.5.3/changelog.md (modified) (1 diff)
-
tags/6.5.3/css/gutenberg.css (modified) (1 diff)
-
tags/6.5.3/editor/plugin.js (modified) (1 diff)
-
tags/6.5.3/js/gutenberg-availability.js (modified) (1 diff)
-
tags/6.5.3/js/gutenberg-bookprocess.js (modified) (1 diff)
-
tags/6.5.3/js/gutenberg-contactform.js (modified) (2 diffs)
-
tags/6.5.3/js/gutenberg-onlinebooking.js (modified) (2 diffs)
-
tags/6.5.3/js/gutenberg-package.js (modified) (1 diff)
-
tags/6.5.3/js/gutenberg-product.js (modified) (1 diff)
-
tags/6.5.3/js/gutenberg-voucher-info.js (modified) (1 diff)
-
tags/6.5.3/js/gutenberg-voucher-sales.js (modified) (2 diffs)
-
tags/6.5.3/lang/recras-de_DE-recras-gutenberg-global.json (modified) (1 diff)
-
tags/6.5.3/lang/recras-de_DE.mo (modified) (previous)
-
tags/6.5.3/lang/recras-de_DE.po (modified) (17 diffs)
-
tags/6.5.3/lang/recras-en_GB.mo (modified) (previous)
-
tags/6.5.3/lang/recras-en_GB.po (modified) (16 diffs)
-
tags/6.5.3/lang/recras-nl_NL-recras-gutenberg-global.json (modified) (1 diff)
-
tags/6.5.3/lang/recras-nl_NL.mo (modified) (previous)
-
tags/6.5.3/lang/recras-nl_NL.po (modified) (17 diffs)
-
tags/6.5.3/readme.txt (modified) (3 diffs)
-
tags/6.5.3/recras-wordpress-plugin.php (modified) (1 diff)
-
tags/6.5.3/src/ContactForm.php (modified) (1 diff)
-
tags/6.5.3/src/Gutenberg.php (modified) (2 diffs)
-
tags/6.5.3/src/Plugin.php (modified) (3 diffs)
-
tags/6.5.3/src/Settings.php (modified) (2 diffs)
-
tags/6.5.3/src/admin/documentation.php (modified) (5 diffs)
-
tags/6.5.3/src/admin/shortcodes.php (modified) (1 diff)
-
trunk/changelog.md (modified) (1 diff)
-
trunk/css/gutenberg.css (modified) (1 diff)
-
trunk/editor/plugin.js (modified) (1 diff)
-
trunk/js/gutenberg-availability.js (modified) (1 diff)
-
trunk/js/gutenberg-bookprocess.js (modified) (1 diff)
-
trunk/js/gutenberg-contactform.js (modified) (2 diffs)
-
trunk/js/gutenberg-onlinebooking.js (modified) (2 diffs)
-
trunk/js/gutenberg-package.js (modified) (1 diff)
-
trunk/js/gutenberg-product.js (modified) (1 diff)
-
trunk/js/gutenberg-voucher-info.js (modified) (1 diff)
-
trunk/js/gutenberg-voucher-sales.js (modified) (2 diffs)
-
trunk/lang/recras-de_DE-recras-gutenberg-global.json (modified) (1 diff)
-
trunk/lang/recras-de_DE.mo (modified) (previous)
-
trunk/lang/recras-de_DE.po (modified) (17 diffs)
-
trunk/lang/recras-en_GB.mo (modified) (previous)
-
trunk/lang/recras-en_GB.po (modified) (16 diffs)
-
trunk/lang/recras-nl_NL-recras-gutenberg-global.json (modified) (1 diff)
-
trunk/lang/recras-nl_NL.mo (modified) (previous)
-
trunk/lang/recras-nl_NL.po (modified) (17 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/recras-wordpress-plugin.php (modified) (1 diff)
-
trunk/src/ContactForm.php (modified) (1 diff)
-
trunk/src/Gutenberg.php (modified) (2 diffs)
-
trunk/src/Plugin.php (modified) (3 diffs)
-
trunk/src/Settings.php (modified) (2 diffs)
-
trunk/src/admin/documentation.php (modified) (5 diffs)
-
trunk/src/admin/shortcodes.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
recras/tags/6.5.3/changelog.md
r3457781 r3484591 1 1 # Changelog 2 3 ## 6.5.3 (2026-03-17) 4 * Styling fix for Gutenberg info texts 5 * Only show contact form widget when your recras allows it 2 6 3 7 ## 6.5.2 (2026-02-10) -
recras/tags/6.5.3/css/gutenberg.css
r2489312 r3484591 2 2 align-items: center; /* Fix default alignment */ 3 3 } 4 .block-editorp.recrasInfoText {4 p.recrasInfoText { 5 5 background: #f3f4f5; 6 6 border-left: 5px solid hsl(199, 73%, 43%); -
recras/tags/6.5.3/editor/plugin.js
r3235419 r3484591 34 34 }); 35 35 36 editor.addButton('recras-contact', { 37 title: recras_l10n.contact_form, 38 image: url + '/contact.svg', 39 onclick: function() { 40 tb_show(recras_l10n.contact_form, 'admin.php?page=form-contact'); 41 } 42 }); 36 if (recras_l10n.showContactForms) { 37 editor.addButton('recras-contact', { 38 title: recras_l10n.contact_form, 39 image: url + '/contact.svg', 40 onclick: function() { 41 tb_show(recras_l10n.contact_form, 'admin.php?page=form-contact'); 42 } 43 }); 44 } 43 45 44 46 editor.addButton('recras-product', { -
recras/tags/6.5.3/js/gutenberg-availability.js
r3369571 r3484591 1 1 registerGutenbergBlock('recras/availability', { 2 2 title: wp.i18n.__('Availability calendar', TEXT_DOMAIN), 3 apiVersion: 3, 3 4 icon: 'calendar-alt', 4 5 category: 'recras', -
recras/tags/6.5.3/js/gutenberg-bookprocess.js
r3447037 r3484591 1 1 registerGutenbergBlock('recras/bookprocess', { 2 2 title: wp.i18n.__('Book process', TEXT_DOMAIN), 3 apiVersion: 3, 3 4 icon: 'editor-ul', 4 5 category: 'recras', -
recras/tags/6.5.3/js/gutenberg-contactform.js
r3447037 r3484591 1 1 registerGutenbergBlock('recras/contactform', { 2 title: wp.i18n.__('Contact form', TEXT_DOMAIN), 2 title: wp.i18n.__('Contact form (deprecated)', TEXT_DOMAIN), 3 apiVersion: 3, 3 4 icon: 'email', 4 5 category: 'recras', … … 191 192 }; 192 193 193 retval.push(recrasHelper.elementText('Recras - ' + wp.i18n.__('Contact form ', TEXT_DOMAIN)));194 retval.push(recrasHelper.elementText('Recras - ' + wp.i18n.__('Contact form (deprecated)', TEXT_DOMAIN))); 194 195 195 196 retval.push(createEl(compSelectControl, optionsIDControl)); -
recras/tags/6.5.3/js/gutenberg-onlinebooking.js
r3369571 r3484591 1 1 registerGutenbergBlock('recras/onlinebooking', { 2 title: wp.i18n.__('Online booking of packages', TEXT_DOMAIN), 2 title: wp.i18n.__('Online booking of packages (deprecated)', TEXT_DOMAIN), 3 apiVersion: 3, 3 4 icon: 'admin-site', 4 5 category: 'recras', … … 297 298 } 298 299 299 retval.push(recrasHelper.elementText('Recras - ' + wp.i18n.__('Online booking of packages ', TEXT_DOMAIN)));300 retval.push(recrasHelper.elementText('Recras - ' + wp.i18n.__('Online booking of packages (deprecated)', TEXT_DOMAIN))); 300 301 retval.push(createEl(compRadioControl, optionsNewLibraryControl)); 301 302 retval.push(recrasHelper.elementInfo( -
recras/tags/6.5.3/js/gutenberg-package.js
r3447037 r3484591 1 1 registerGutenbergBlock('recras/package', { 2 2 title: wp.i18n.__('Package', TEXT_DOMAIN), 3 apiVersion: 3, 3 4 icon: 'clipboard', 4 5 category: 'recras', -
recras/tags/6.5.3/js/gutenberg-product.js
r3447037 r3484591 1 1 registerGutenbergBlock('recras/product', { 2 2 title: wp.i18n.__('Product', TEXT_DOMAIN), 3 apiVersion: 3, 3 4 icon: 'cart', 4 5 category: 'recras', -
recras/tags/6.5.3/js/gutenberg-voucher-info.js
r3447037 r3484591 1 1 registerGutenbergBlock('recras/voucher-info', { 2 2 title: wp.i18n.__('Voucher info', TEXT_DOMAIN), 3 apiVersion: 3, 3 4 icon: 'money', 4 5 category: 'recras', -
recras/tags/6.5.3/js/gutenberg-voucher-sales.js
r3447037 r3484591 1 1 registerGutenbergBlock('recras/voucher-sales', { 2 title: wp.i18n.__('Voucher sales', TEXT_DOMAIN), 2 title: wp.i18n.__('Voucher sales (deprecated)', TEXT_DOMAIN), 3 apiVersion: 3, 3 4 icon: 'money', 4 5 category: 'recras', … … 87 88 }; 88 89 89 retval.push(recrasHelper.elementText('Recras - ' + wp.i18n.__('Voucher sales ', TEXT_DOMAIN)));90 retval.push(recrasHelper.elementText('Recras - ' + wp.i18n.__('Voucher sales (deprecated)', TEXT_DOMAIN))); 90 91 retval.push(createEl(compSelectControl, optionsIDControl)); 91 92 retval.push(createEl(compSelectControl, optionsRedirectControl)); -
recras/tags/6.5.3/lang/recras-de_DE-recras-gutenberg-global.json
r3369571 r3484591 1 {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"de_DE"}," Package":["Arrangement"],"If you are not seeing certain packages, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Extra settings\" of the package.":["Wenn Sie bestimmte Pakete nicht sehen, stellen Sie sicher, dass in Recras \"Kann auf einer Website (über API)\" auf der Registerkarte \"Extra-Einstellungen\" des Pakets angezeigt werden."],"Show what?":["Zeigen Sie was?"],"Title":["Titel"],"Description":["Beschreibung"],"Duration":["Dauer"],"Starting location":["Empfangsort"],"Minimum number of persons":[""],"Price p.p. excl. VAT":[""],"Price p.p. incl. VAT":[""],"Total price excl. VAT":[""],"Total price incl. VAT":[""],"Programme":["Programm"],"Image tag":[""],"Relative image URL":[""],"Start time":[""],"hh:mm":["UU:MM"],"Show header?":[""],"Yes":["Ja"],"No":["Nein"],"Insert shortcode":[""],"Integration method":[""],"Seamless (recommended)":[""],"iframe (uses setting in your Recras)":[""],"Seamless integration uses the styling of your website. At Recras → Settings in the menu on the left, you can set an optional theme.":[""],"iframe integration uses the styling set in your Recras. You can change the styling in Recras via Settings → Other settings → Custom CSS.":[""],"Package selection":[""],"To (de)select multiple packages, hold Ctrl and click (Cmd on Mac)":[""],"No pre-filled package":[""],"Preview times in programme":[""],"Pre-fill amounts (requires pre-filled package)":[""],"Sorry, this is only available using the Gutenberg editor.":[""],"Pre-fill date (requires exactly 1 package selected)":[""],"yyyy-mm-dd":["JJJJ-MM-TT"],"Pre-fill time (requires exactly 1 package selected)":[""],"Thank-you page":[""],"Don't redirect":[""],"Pages":["Seiten"],"Posts":["Nachrichten"],"Show discount fields":[""],"Automatic resize?":[""],"Book process":["Buchungsprozess"],"Initial value for first widget":[""],"Please note that no validation on this value is performed. Invalid values may be ignored or may stop the book process from working properly.":[""],"Hide first widget?":[""],"Contact form":["Kontaktformular"],"Show title?":[""],"Show labels?":[""],"Show placeholders?":[""],"Some packages may not be available for all contact forms. You can change this by editing your contact forms in Recras.":[""],"If you are still missing packages, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Extra settings\" of the package.":[""],"HTML element":[""],"Definition list":[""],"Ordered list":[""],"Table":["Tabelle"],"Element for single choices":[""],"Drop-down list (Select)":[""],"Radio buttons":[""],"This relates to: customer type, package selection, gender, and single choice":[""],"Submit button text":[""],"Send":["Senden"],"Product":["Produkt"],"Description (short)":[""],"Description (long)":[""],"Image URL":[""],"Minimum amount":[""],"Price (incl. VAT)":[""],"Template":[""],"Name":[""],"Price":["Preis"],"Validity":["Gültigkeit"],"No pre-filled template":[""],"Show quantity input (will be set to 1 if not shown)":[""],"Availability calendar":[""],"No suitable packages found":[""],"Auto resize iframe":[""],"Enter package ID. Leave empty to not prefill.":[""],"Enter date in YYYY-MM-DD format. Leave empty to not prefill.":[""],"Prefill value for first widget? (optional)":[""],"Loading data...":[""],"Package (optional)":[""],"i.e. https://www.recras.com/thanks/":[""],"Thank-you page (optional, leave empty to not redirect)":[""],"Recras → Settings menu":[""],"Please enter your Recras domain in the %s before adding widgets.":[""],"Online booking of packages":[""],"Pre-fill amounts (requires exactly 1 package selected)":[""],"e.g. 14:00":["z.B. 14:00"],"Pre-filled package":[""],"Pre-filled package (optional)":[""],"If you select a single package, it will be pre-filled and will skip the package selection step.":[""],"Property to show":[""],"If you are not seeing certain products, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Presentation\" of the product.":[""],"Could not find any products. Make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Presentation\" of the product.":[""],"Voucher info":[""],"Voucher template":[""],"Voucher sales":[""],"Error: no ID set":[""],"Error: ID is not a number":[""],"Error: %s":["Fehlermeldung: %s"],"Error: Package %d does not exist or may not be presented on a website":[""],"Error: programme is empty":[""],"Error: unknown option":[""],"From":["Von"],"Until":["Bis"],"Activity":["Aktivität"],"Day %d":["Tag %d"],"No duration specified":[""],"No location specified":[""],"Error: book process does not exist":[""],"Contact form might be deleted":[""],"Error: package is set, but contact form does not support packages":[""],"Error: redirect is set, but is an invalid URL":[""],"Unknown":["Unbekannt"],"Male":["Mann"],"Female":["Frau"],"(required)":["(erforderlich)"],"Clear choice":["Wahl löschen"],"No book process has been chosen yet. Click on this text to select a book process.":[""],"Book process %s cannot be found. It was either deleted from Recras, or made private.":[""],"Book process \"%s\" is integrated here.":[""],"The first widget is hidden for the booker, and has an initial value of \"%s\".":[""],"It has an initial value for the first widget of \"%s\".":[""],"Error: could not retrieve data from Recras. The error message received was: %s":[""],"Error: could not parse data from Recras. The error message was: %s":[""],"Error: \"prefill_date\" is not a valid ISO 8601 string":[""],"Error: \"prefill_date\" is a date in the past":[""],"Error: \"prefill_time\" is not a valid time string (e.g. 14:30)":[""],"Error: \"product_amounts\" is invalid":[""],"Settings":["Einstellungen"],"Cache":[""],"Documentation":["Dokumentation"],"Shortcodes":[""],"Error: you have not set your Recras domain yet":[""],"Error: your Recras domain has not been set yet, but you do not have the permission to set this. Please ask your site administrator to do this for you.":[""],"Could not connect to your Recras":[""],"Package availability":["Arrangement-Verfügbarkeit"],"At least one choice is required":[""],"Loading...":["Laden..."],"Your message was sent successfully":[""],"There was an error sending your message":[""],"Previous month":["Vorheriger Monat"],"Next month":["Nächsten Monat"],"January":["Januar"],"February":["Februar"],"March":["März"],"April":["April"],"May":["Mai"],"June":["Juni"],"July":["Juli"],"August":["August"],"September":["September"],"October":["Oktober"],"November":["November"],"December":["Dezember"],"Sunday":["Sonntag"],"Monday":["Montag"],"Tuesday":["Dienstag"],"Wednesday":["Mittwoch"],"Thursday":["Donnerstag"],"Friday":["Freitag"],"Saturday":["Samstag"],"Sun":["So"],"Mon":["Mo"],"Tue":["Di"],"Wed":["Mi"],"Thu":["Do"],"Fri":["Fr"],"Sat":["Sa"],"Error: product does not exist":[""],"This option is <strong>not needed when using book processes</strong>. GA is integrated automatically for them.":[""],"Use this setting if you want to be able to style the date picker in contact forms.":[""],"On some websites, the date picker in a book process has a tiny font. Enable this to fix this.":[""],"Used in prices, such as 100,00.":[""],"Instance not found!":[""],"Error fetching instance!":[""],"You do not have sufficient permissions to access this page.":[""],"No theme":["Kein Thema"],"Basic theme":["Grundthema"],"BP Green":["BP Grün"],"Reasonably Red":["Ganz Rot"],"Recras Blue":["Recras Blau"],"Recras settings":["Recras-Einstellungen"],"Currency symbol":[""],"Decimal separator":[""],"Use calendar widget for contact forms":[""],"Fix book process datepicker styling":[""],"Theme for Recras integrations":[""],"Enable Google Analytics integration? (deprecated)":[""],"For more information on these options, please see the %s page.":[""],"Error: template does not exist":[""],"The cache was cleared.":[""],"The selected cache could not be cleared. This could be an error, or there could be nothing to clear.":[""],"Clear Recras cache":[""],"Data coming from your Recras (contact forms, packages, products, voucher templates) is cached for up to 24 hours. If you make important changes (i.e. a price increase) it is recommended you clear the Recras cache.":[""],"Packages":["Arrangements"],"Book processes":["Buchungsprozesse"],"Contact forms":["Kontaktformulare"],"Products":["Produkte"],"Save":["Speichern"]}}}1 {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"de_DE"},"yyyy-mm-dd":["JJJJ-MM-TT"],"hh:mm":["UU:MM"],"Availability calendar":[""],"No suitable packages found":[""],"Package":["Arrangement"],"Auto resize iframe":[""],"Book process":["Buchungsprozess"],"Enter package ID. Leave empty to not prefill.":[""],"Enter date in YYYY-MM-DD format. Leave empty to not prefill.":[""],"Prefill value for first widget? (optional)":[""],"Hide first widget?":[""],"Send":["Senden"],"Loading data...":[""],"Contact form":["Kontaktformular"],"Show title?":[""],"Show labels?":["Zeigen Sie was?"],"Show placeholders?":[""],"Package (optional)":[""],"Definition list":[""],"Ordered list":[""],"Table":["Tabelle"],"HTML element":[""],"Drop-down list (Select)":[""],"Radio buttons":[""],"Element for single choices":[""],"Submit button text":[""],"i.e. https://www.recras.com/thanks/":[""],"Thank-you page (optional, leave empty to not redirect)":[""],"Some packages may not be available for all contact forms. You can change this by editing your contact forms in Recras.":[""],"If you are still missing packages, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Extra settings\" of the package.":[""],"Recras → Settings menu":[""],"Please enter your Recras domain in the %s before adding widgets.":[""],"Pages":["Seiten"],"Posts":["Nachrichten"],"Online booking of packages (deprecated)":[""],"Seamless (recommended)":[""],"iframe (uses setting in your Recras)":[""],"Integration method":[""],"Preview times in programme":[""],"Show discount fields":[""],"Pre-fill amounts (requires exactly 1 package selected)":[""],"Pre-fill time (requires exactly 1 package selected)":[""],"e.g. 14:00":["z.B. 14:00"],"Pre-filled package":[""],"Pre-filled package (optional)":[""],"Seamless integration uses the styling of your website. At Recras → Settings in the menu on the left, you can set an optional theme.":[""],"iframe integration uses the styling set in your Recras. You can change the styling in Recras via Settings → Other settings → Custom CSS.":[""],"Package selection":[""],"If you are not seeing certain packages, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Extra settings\" of the package.":["Wenn Sie bestimmte Pakete nicht sehen, stellen Sie sicher, dass in Recras \"Kann auf einer Website (über API)\" auf der Registerkarte \"Extra-Einstellungen\" des Pakets angezeigt werden."],"If you select a single package, it will be pre-filled and will skip the package selection step.":[""],"Pre-fill date (requires exactly 1 package selected)":[""],"Description":["Beschreibung"],"Duration":["Dauer"],"Image tag":[""],"Minimum number of persons":[""],"Price p.p. excl. VAT":[""],"Price p.p. incl. VAT":[""],"Programme":["Programm"],"Starting location":["Empfangsort"],"Title":["Titel"],"Total price excl. VAT":[""],"Total price incl. VAT":[""],"Relative image URL":[""],"Property to show":[""],"Start time":[""],"Show header?":[""],"Product":["Produkt"],"Description (long)":[""],"Description (short)":[""],"Image URL":[""],"Minimum amount":[""],"Price (incl. VAT)":[""],"If you are not seeing certain products, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Presentation\" of the product.":[""],"Could not find any products. Make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Presentation\" of the product.":[""],"Voucher info":[""],"Voucher template":[""],"Name":[""],"Price":["Preis"],"Validity":["Gültigkeit"],"Voucher sales (deprecated)":[""],"Show quantity input (will be set to 1 if not shown)":[""],"Error: no ID set":[""],"Error: ID is not a number":[""],"Error: %s":["Fehlermeldung: %s"],"Error: Package %d does not exist or may not be presented on a website":[""],"Error: programme is empty":[""],"Error: unknown option":[""],"From":["Von"],"Until":["Bis"],"Activity":["Aktivität"],"Day %d":["Tag %d"],"No duration specified":[""],"No location specified":[""],"Error: book process does not exist":[""],"Contact form might be deleted":[""],"Error: package is set, but contact form does not support packages":[""],"Error: redirect is set, but is an invalid URL":[""],"Unknown":["Unbekannt"],"Male":["Mann"],"Female":["Frau"],"(required)":["(erforderlich)"],"Clear choice":["Wahl löschen"],"No book process has been chosen yet. Click on this text to select a book process.":[""],"Book process %s cannot be found. It was either deleted from Recras, or made private.":[""],"Book process \"%s\" is integrated here.":[""],"The first widget is hidden for the booker, and has an initial value of \"%s\".":[""],"It has an initial value for the first widget of \"%s\".":[""],"Error: could not retrieve data from Recras. The error message received was: %s":[""],"Error: could not parse data from Recras. The error message was: %s":[""],"Error: \"prefill_date\" is not a valid ISO 8601 string":[""],"Error: \"prefill_date\" is a date in the past":[""],"Error: \"prefill_time\" is not a valid time string (e.g. 14:30)":[""],"Error: \"product_amounts\" is invalid":[""],"Settings":["Einstellungen"],"Cache":[""],"Documentation":["Dokumentation"],"Shortcodes":[""],"Online booking of packages":[""],"Voucher sales":[""],"Error: you have not set your Recras domain yet":[""],"Error: your Recras domain has not been set yet, but you do not have the permission to set this. Please ask your site administrator to do this for you.":[""],"Could not connect to your Recras":[""],"Package availability":["Arrangement-Verfügbarkeit"],"At least one choice is required":[""],"Loading...":["Laden..."],"Your message was sent successfully":[""],"There was an error sending your message":[""],"Previous month":["Vorheriger Monat"],"Next month":["Nächsten Monat"],"January":["Januar"],"February":["Februar"],"March":["März"],"April":["April"],"May":["Mai"],"June":["Juni"],"July":["Juli"],"August":["August"],"September":["September"],"October":["Oktober"],"November":["November"],"December":["Dezember"],"Sunday":["Sonntag"],"Monday":["Montag"],"Tuesday":["Dienstag"],"Wednesday":["Mittwoch"],"Thursday":["Donnerstag"],"Friday":["Freitag"],"Saturday":["Samstag"],"Sun":["So"],"Mon":["Mo"],"Tue":["Di"],"Wed":["Mi"],"Thu":["Do"],"Fri":["Fr"],"Sat":["Sa"],"Error: product does not exist":[""],"This option is <strong>not needed when using book processes</strong>. GA is integrated automatically for them.":[""],"Use this setting if you want to be able to style the date picker in contact forms.":[""],"On some websites, the date picker in a book process has a tiny font. Enable this to fix this.":[""],"Used in prices, such as 100,00.":[""],"Instance not found!":[""],"Error fetching instance!":[""],"You do not have sufficient permissions to access this page.":[""],"No theme":["Kein Thema"],"Basic theme":["Grundthema"],"BP Green":["BP Grün"],"Reasonably Red":["Ganz Rot"],"Recras Blue":["Recras Blau"],"Recras settings":["Recras-Einstellungen"],"Currency symbol":[""],"Decimal separator":[""],"Fix book process datepicker styling":[""],"Theme for Recras integrations":[""],"Enable Google Analytics integration? (deprecated)":[""],"For more information on these options, please see the %s page.":[""],"Error: template does not exist":[""],"Save":["Speichern"]}}} -
recras/tags/6.5.3/lang/recras-de_DE.po
r3434941 r3484591 2 2 msgstr "" 3 3 "Project-Id-Version: Recras\n" 4 "POT-Creation-Date: 2026-0 1-06 14:51+0100\n"5 "PO-Revision-Date: 2026-0 1-06 14:51+0100\n"4 "POT-Creation-Date: 2026-03-17 09:26+0100\n" 5 "PO-Revision-Date: 2026-03-17 09:26+0100\n" 6 6 "Last-Translator: Sander de Jong <sander@recras.nl>\n" 7 7 "Language-Team: Recras\n" … … 20 20 "X-Poedit-SearchPathExcluded-2: node_modules\n" 21 21 22 #: editor/form-booking.php:73 src/ContactForm.php:2 68 src/ContactForm.php:31022 #: editor/form-booking.php:73 src/ContactForm.php:273 src/ContactForm.php:315 23 23 msgid "yyyy-mm-dd" 24 24 msgstr "JJJJ-MM-TT" 25 25 26 #: editor/form-booking.php:82 js/gutenberg-package.js:1 2727 #: src/ContactForm.php:2 8526 #: editor/form-booking.php:82 js/gutenberg-package.js:131 27 #: src/ContactForm.php:290 28 28 msgid "hh:mm" 29 29 msgstr "UU:MM" 30 30 31 #: js/gutenberg-availability.js:2 js/gutenberg-availability.js:3 531 #: js/gutenberg-availability.js:2 js/gutenberg-availability.js:36 32 32 msgid "Availability calendar" 33 33 msgstr "" 34 34 35 #: js/gutenberg-availability.js:3 835 #: js/gutenberg-availability.js:39 36 36 msgid "No suitable packages found" 37 37 msgstr "" 38 38 39 #: js/gutenberg-availability.js:5 0js/gutenberg-package.js:240 #: js/gutenberg-package.js:5 0 js/gutenberg-package.js:142src/Plugin.php:11441 #: src/Plugin.php:2 1639 #: js/gutenberg-availability.js:51 js/gutenberg-package.js:2 40 #: js/gutenberg-package.js:54 js/gutenberg-package.js:146 src/Plugin.php:114 41 #: src/Plugin.php:228 42 42 msgid "Package" 43 43 msgstr "Arrangement" 44 44 45 #: js/gutenberg-availability.js: 59 js/gutenberg-onlinebooking.js:29545 #: js/gutenberg-availability.js:60 js/gutenberg-onlinebooking.js:296 46 46 msgid "Auto resize iframe" 47 47 msgstr "" 48 48 49 #: js/gutenberg-bookprocess.js:2 js/gutenberg-bookprocess.js:4 550 #: js/gutenberg-bookprocess.js: 59src/Elementor/Bookprocess.php:1749 #: js/gutenberg-bookprocess.js:2 js/gutenberg-bookprocess.js:49 50 #: js/gutenberg-bookprocess.js:65 src/Elementor/Bookprocess.php:17 51 51 #: src/Elementor/Bookprocess.php:35 src/Elementor/Bookprocess.php:45 52 #: src/Plugin.php:115 src/Plugin.php:2 1552 #: src/Plugin.php:115 src/Plugin.php:227 53 53 msgid "Book process" 54 54 msgstr "Buchungsprozess" 55 55 56 #: js/gutenberg-bookprocess.js: 7656 #: js/gutenberg-bookprocess.js:82 57 57 msgid "Enter package ID. Leave empty to not prefill." 58 58 msgstr "" 59 59 60 #: js/gutenberg-bookprocess.js: 7760 #: js/gutenberg-bookprocess.js:83 61 61 msgid "Enter date in YYYY-MM-DD format. Leave empty to not prefill." 62 62 msgstr "" 63 63 64 #: js/gutenberg-bookprocess.js: 87src/Elementor/Bookprocess.php:6164 #: js/gutenberg-bookprocess.js:93 src/Elementor/Bookprocess.php:61 65 65 msgid "Prefill value for first widget? (optional)" 66 66 msgstr "" 67 67 68 #: js/gutenberg-bookprocess.js: 99src/Elementor/Bookprocess.php:7468 #: js/gutenberg-bookprocess.js:105 src/Elementor/Bookprocess.php:74 69 69 msgid "Hide first widget?" 70 70 msgstr "" 71 71 72 #: js/gutenberg-contactform.js:2 js/gutenberg-contactform.js:76 73 #: js/gutenberg-contactform.js:193 src/Plugin.php:116 src/Plugin.php:212 72 #: js/gutenberg-contactform.js:2 js/gutenberg-contactform.js:194 73 #: src/Plugin.php:224 74 #, fuzzy 75 #| msgid "Contact form" 76 msgid "Contact form (deprecated)" 77 msgstr "Kontaktformular" 78 79 #: js/gutenberg-contactform.js:15 js/gutenberg-contactform.js:28 80 #: src/ContactForm.php:122 81 msgid "Send" 82 msgstr "Senden" 83 84 #: js/gutenberg-contactform.js:61 js/gutenberg-onlinebooking.js:63 85 #: js/gutenberg-voucher-sales.js:46 86 msgid "Loading data..." 87 msgstr "" 88 89 #: js/gutenberg-contactform.js:77 src/Plugin.php:116 74 90 msgid "Contact form" 75 91 msgstr "Kontaktformular" 76 92 77 #: js/gutenberg-contactform.js:14 js/gutenberg-contactform.js:27 78 #: src/ContactForm.php:117 79 msgid "Send" 80 msgstr "Senden" 81 82 #: js/gutenberg-contactform.js:60 js/gutenberg-onlinebooking.js:62 83 #: js/gutenberg-voucher-sales.js:41 84 msgid "Loading data..." 85 msgstr "" 86 87 #: js/gutenberg-contactform.js:98 93 #: js/gutenberg-contactform.js:99 88 94 msgid "Show title?" 89 95 msgstr "" 90 96 91 #: js/gutenberg-contactform.js:10 797 #: js/gutenberg-contactform.js:108 92 98 msgid "Show labels?" 93 msgstr " "94 95 #: js/gutenberg-contactform.js:11 699 msgstr "Zeigen Sie was?" 100 101 #: js/gutenberg-contactform.js:117 96 102 msgid "Show placeholders?" 97 103 msgstr "" 98 104 99 #: js/gutenberg-contactform.js:12 6105 #: js/gutenberg-contactform.js:127 100 106 msgid "Package (optional)" 101 107 msgstr "" 102 108 103 #: js/gutenberg-contactform.js:13 8109 #: js/gutenberg-contactform.js:139 104 110 msgid "Definition list" 105 111 msgstr "" 106 112 107 #: js/gutenberg-contactform.js:14 2113 #: js/gutenberg-contactform.js:143 108 114 msgid "Ordered list" 109 115 msgstr "" 110 116 111 #: js/gutenberg-contactform.js:14 6117 #: js/gutenberg-contactform.js:147 112 118 msgid "Table" 113 119 msgstr "Tabelle" 114 120 115 #: js/gutenberg-contactform.js:1 49121 #: js/gutenberg-contactform.js:150 116 122 msgid "HTML element" 117 123 msgstr "" 118 124 119 #: js/gutenberg-contactform.js:16 1125 #: js/gutenberg-contactform.js:162 120 126 msgid "Drop-down list (Select)" 121 127 msgstr "" 122 128 123 #: js/gutenberg-contactform.js:16 5129 #: js/gutenberg-contactform.js:166 124 130 msgid "Radio buttons" 125 131 msgstr "" 126 132 127 #: js/gutenberg-contactform.js:16 8133 #: js/gutenberg-contactform.js:169 128 134 msgid "Element for single choices" 129 135 msgstr "" 130 136 131 #: js/gutenberg-contactform.js:17 7 js/gutenberg-contactform.js:178137 #: js/gutenberg-contactform.js:178 js/gutenberg-contactform.js:179 132 138 msgid "Submit button text" 133 139 msgstr "" 134 140 135 #: js/gutenberg-contactform.js:18 8 js/gutenberg-onlinebooking.js:232136 #: js/gutenberg-voucher-sales.js:7 1141 #: js/gutenberg-contactform.js:189 js/gutenberg-onlinebooking.js:233 142 #: js/gutenberg-voucher-sales.js:76 137 143 msgid "i.e. https://www.recras.com/thanks/" 138 144 msgstr "" 139 145 140 #: js/gutenberg-contactform.js:1 89 js/gutenberg-onlinebooking.js:233141 #: js/gutenberg-voucher-sales.js:7 2146 #: js/gutenberg-contactform.js:190 js/gutenberg-onlinebooking.js:234 147 #: js/gutenberg-voucher-sales.js:77 142 148 msgid "Thank-you page (optional, leave empty to not redirect)" 143 149 msgstr "" 144 150 145 #: js/gutenberg-contactform.js:20 2151 #: js/gutenberg-contactform.js:203 146 152 msgid "" 147 153 "Some packages may not be available for all contact forms. You can change " … … 149 155 msgstr "" 150 156 151 #: js/gutenberg-contactform.js:20 3157 #: js/gutenberg-contactform.js:204 152 158 msgid "" 153 159 "If you are still missing packages, make sure in Recras \"May be presented on " … … 156 162 msgstr "" 157 163 158 #: js/gutenberg-global.js:46 src/Settings.php:2 11164 #: js/gutenberg-global.js:46 src/Settings.php:223 159 165 msgid "Recras → Settings menu" 160 166 msgstr "" 161 167 162 #: js/gutenberg-global.js:48 src/Settings.php:2 10168 #: js/gutenberg-global.js:48 src/Settings.php:222 163 169 #, javascript-format, php-format 164 170 msgid "Please enter your Recras domain in the %s before adding widgets." 165 171 msgstr "" 166 172 167 #: js/gutenberg-global.js:3 11173 #: js/gutenberg-global.js:323 168 174 msgid "Pages" 169 175 msgstr "Seiten" 170 176 171 #: js/gutenberg-global.js:3 35177 #: js/gutenberg-global.js:347 172 178 msgid "Posts" 173 179 msgstr "Nachrichten" 174 180 175 #: js/gutenberg-onlinebooking.js:2 js/gutenberg-onlinebooking.js: 299176 #: src/Plugin.php: 117 src/Plugin.php:214177 msgid "Online booking of packages "178 msgstr "" 179 180 #: js/gutenberg-onlinebooking.js:9 7181 #: js/gutenberg-onlinebooking.js:2 js/gutenberg-onlinebooking.js:300 182 #: src/Plugin.php:226 183 msgid "Online booking of packages (deprecated)" 184 msgstr "" 185 186 #: js/gutenberg-onlinebooking.js:98 181 187 msgid "Seamless (recommended)" 182 188 msgstr "" 183 189 184 #: js/gutenberg-onlinebooking.js:10 1190 #: js/gutenberg-onlinebooking.js:102 185 191 msgid "iframe (uses setting in your Recras)" 186 192 msgstr "" 187 193 188 #: js/gutenberg-onlinebooking.js:12 0194 #: js/gutenberg-onlinebooking.js:121 189 195 msgid "Integration method" 190 196 msgstr "" 191 197 192 #: js/gutenberg-onlinebooking.js:16 8198 #: js/gutenberg-onlinebooking.js:169 193 199 msgid "Preview times in programme" 194 200 msgstr "" 195 201 196 #: js/gutenberg-onlinebooking.js:17 7202 #: js/gutenberg-onlinebooking.js:178 197 203 msgid "Show discount fields" 198 204 msgstr "" 199 205 200 #: js/gutenberg-onlinebooking.js:19 0206 #: js/gutenberg-onlinebooking.js:191 201 207 msgid "Pre-fill amounts (requires exactly 1 package selected)" 202 208 msgstr "" 203 209 204 #: js/gutenberg-onlinebooking.js:22 1210 #: js/gutenberg-onlinebooking.js:222 205 211 msgid "Pre-fill time (requires exactly 1 package selected)" 206 212 msgstr "" 207 213 208 #: js/gutenberg-onlinebooking.js:22 2214 #: js/gutenberg-onlinebooking.js:223 209 215 msgid "e.g. 14:00" 210 216 msgstr "z.B. 14:00" 211 217 212 #: js/gutenberg-onlinebooking.js:28 5218 #: js/gutenberg-onlinebooking.js:286 213 219 msgid "Pre-filled package" 214 220 msgstr "" 215 221 216 #: js/gutenberg-onlinebooking.js:28 6222 #: js/gutenberg-onlinebooking.js:287 217 223 msgid "Pre-filled package (optional)" 218 224 msgstr "" 219 225 220 #: js/gutenberg-onlinebooking.js:30 2226 #: js/gutenberg-onlinebooking.js:303 221 227 msgid "" 222 228 "Seamless integration uses the styling of your website. At Recras → Settings " … … 224 230 msgstr "" 225 231 226 #: js/gutenberg-onlinebooking.js:30 3232 #: js/gutenberg-onlinebooking.js:304 227 233 msgid "" 228 234 "iframe integration uses the styling set in your Recras. You can change the " … … 230 236 msgstr "" 231 237 232 #: js/gutenberg-onlinebooking.js:30 6238 #: js/gutenberg-onlinebooking.js:307 233 239 msgid "Package selection" 234 240 msgstr "" 235 241 236 #: js/gutenberg-onlinebooking.js:31 1 js/gutenberg-onlinebooking.js:331237 #: js/gutenberg-package.js:14 5242 #: js/gutenberg-onlinebooking.js:312 js/gutenberg-onlinebooking.js:332 243 #: js/gutenberg-package.js:149 238 244 msgid "" 239 245 "If you are not seeing certain packages, make sure in Recras \"May be " … … 245 251 "Einstellungen\" des Pakets angezeigt werden." 246 252 247 #: js/gutenberg-onlinebooking.js:31 2253 #: js/gutenberg-onlinebooking.js:313 248 254 msgid "" 249 255 "If you select a single package, it will be pre-filled and will skip the " … … 251 257 msgstr "" 252 258 253 #: js/gutenberg-onlinebooking.js:32 3259 #: js/gutenberg-onlinebooking.js:324 254 260 msgid "Pre-fill date (requires exactly 1 package selected)" 255 261 msgstr "" 256 262 257 #: js/gutenberg-package.js: 67263 #: js/gutenberg-package.js:71 258 264 msgid "Description" 259 265 msgstr "Beschreibung" 260 266 261 #: js/gutenberg-package.js:7 1 js/gutenberg-product.js:76267 #: js/gutenberg-package.js:75 js/gutenberg-product.js:79 262 268 msgid "Duration" 263 269 msgstr "Dauer" 264 270 265 #: js/gutenberg-package.js:7 5 js/gutenberg-product.js:80271 #: js/gutenberg-package.js:79 js/gutenberg-product.js:83 266 272 msgid "Image tag" 267 273 msgstr "" 268 274 269 #: js/gutenberg-package.js: 79275 #: js/gutenberg-package.js:83 270 276 msgid "Minimum number of persons" 271 277 msgstr "" 272 278 273 #: js/gutenberg-package.js:8 3279 #: js/gutenberg-package.js:87 274 280 msgid "Price p.p. excl. VAT" 275 281 msgstr "" 276 282 277 #: js/gutenberg-package.js: 87283 #: js/gutenberg-package.js:91 278 284 msgid "Price p.p. incl. VAT" 279 285 msgstr "" 280 286 281 #: js/gutenberg-package.js:9 1287 #: js/gutenberg-package.js:95 282 288 msgid "Programme" 283 289 msgstr "Programm" 284 290 285 #: js/gutenberg-package.js:9 5291 #: js/gutenberg-package.js:99 286 292 msgid "Starting location" 287 293 msgstr "Empfangsort" 288 294 289 #: js/gutenberg-package.js: 99 js/gutenberg-product.js:96295 #: js/gutenberg-package.js:103 js/gutenberg-product.js:99 290 296 msgid "Title" 291 297 msgstr "Titel" 292 298 293 #: js/gutenberg-package.js:10 3299 #: js/gutenberg-package.js:107 294 300 msgid "Total price excl. VAT" 295 301 msgstr "" 296 302 297 #: js/gutenberg-package.js:1 07303 #: js/gutenberg-package.js:111 298 304 msgid "Total price incl. VAT" 299 305 msgstr "" 300 306 301 #: js/gutenberg-package.js:11 1307 #: js/gutenberg-package.js:115 302 308 msgid "Relative image URL" 303 309 msgstr "" 304 310 305 #: js/gutenberg-package.js:11 4 js/gutenberg-product.js:99306 #: js/gutenberg-voucher-info.js:7 3311 #: js/gutenberg-package.js:118 js/gutenberg-product.js:102 312 #: js/gutenberg-voucher-info.js:78 307 313 msgid "Property to show" 308 314 msgstr "" 309 315 310 #: js/gutenberg-package.js:1 28316 #: js/gutenberg-package.js:132 311 317 msgid "Start time" 312 318 msgstr "" 313 319 314 #: js/gutenberg-package.js:1 38320 #: js/gutenberg-package.js:142 315 321 msgid "Show header?" 316 322 msgstr "" 317 323 318 #: js/gutenberg-product.js:2 js/gutenberg-product.js: 48319 #: js/gutenberg-product.js:10 2 src/Plugin.php:118 src/Plugin.php:218324 #: js/gutenberg-product.js:2 js/gutenberg-product.js:51 325 #: js/gutenberg-product.js:105 src/Plugin.php:118 src/Plugin.php:230 320 326 msgid "Product" 321 327 msgstr "Produkt" 322 328 323 #: js/gutenberg-product.js: 68329 #: js/gutenberg-product.js:71 324 330 msgid "Description (long)" 325 331 msgstr "" 326 332 327 #: js/gutenberg-product.js:7 2333 #: js/gutenberg-product.js:75 328 334 msgid "Description (short)" 329 335 msgstr "" 330 336 331 #: js/gutenberg-product.js:8 4337 #: js/gutenberg-product.js:87 332 338 msgid "Image URL" 333 339 msgstr "" 334 340 335 #: js/gutenberg-product.js: 88341 #: js/gutenberg-product.js:91 336 342 msgid "Minimum amount" 337 343 msgstr "" 338 344 339 #: js/gutenberg-product.js:9 2345 #: js/gutenberg-product.js:95 340 346 msgid "Price (incl. VAT)" 341 347 msgstr "" 342 348 343 #: js/gutenberg-product.js:10 6349 #: js/gutenberg-product.js:109 344 350 msgid "" 345 351 "If you are not seeing certain products, make sure in Recras \"May be " … … 348 354 msgstr "" 349 355 350 #: js/gutenberg-product.js:1 09356 #: js/gutenberg-product.js:112 351 357 msgid "" 352 358 "Could not find any products. Make sure in Recras \"May be presented on a " … … 354 360 msgstr "" 355 361 356 #: js/gutenberg-voucher-info.js:2 js/gutenberg-voucher-info.js: 76357 #: src/Plugin.php:120 src/Plugin.php:2 21362 #: js/gutenberg-voucher-info.js:2 js/gutenberg-voucher-info.js:81 363 #: src/Plugin.php:120 src/Plugin.php:234 358 364 msgid "Voucher info" 359 365 msgstr "" 360 366 361 #: js/gutenberg-voucher-info.js:4 4 js/gutenberg-voucher-sales.js:55367 #: js/gutenberg-voucher-info.js:49 js/gutenberg-voucher-sales.js:60 362 368 msgid "Voucher template" 363 369 msgstr "" 364 370 365 #: js/gutenberg-voucher-info.js:6 2371 #: js/gutenberg-voucher-info.js:67 366 372 msgid "Name" 367 373 msgstr "" 368 374 369 #: js/gutenberg-voucher-info.js: 66375 #: js/gutenberg-voucher-info.js:71 370 376 msgid "Price" 371 377 msgstr "Preis" 372 378 373 #: js/gutenberg-voucher-info.js:7 0379 #: js/gutenberg-voucher-info.js:75 374 380 msgid "Validity" 375 381 msgstr "Gültigkeit" 376 382 377 #: js/gutenberg-voucher-sales.js:2 js/gutenberg-voucher-sales.js: 85378 #: src/Plugin.php: 119 src/Plugin.php:222379 msgid "Voucher sales "380 msgstr "" 381 382 #: js/gutenberg-voucher-sales.js:8 2383 #: js/gutenberg-voucher-sales.js:2 js/gutenberg-voucher-sales.js:90 384 #: src/Plugin.php:235 385 msgid "Voucher sales (deprecated)" 386 msgstr "" 387 388 #: js/gutenberg-voucher-sales.js:87 383 389 msgid "Show quantity input (will be set to 1 if not shown)" 384 390 msgstr "" 385 391 386 392 #: src/Arrangement.php:21 src/Availability.php:20 src/Bookprocess.php:87 387 #: src/ContactForm.php: 55src/Products.php:21 src/Vouchers.php:22393 #: src/ContactForm.php:60 src/Products.php:21 src/Vouchers.php:22 388 394 msgid "Error: no ID set" 389 395 msgstr "" 390 396 391 397 #: src/Arrangement.php:24 src/Availability.php:23 src/Bookprocess.php:91 392 #: src/ContactForm.php: 58src/OnlineBooking.php:25 src/Products.php:24398 #: src/ContactForm.php:63 src/OnlineBooking.php:25 src/Products.php:24 393 399 #: src/Vouchers.php:25 src/Vouchers.php:78 394 400 msgid "Error: ID is not a number" … … 396 402 397 403 #: src/Arrangement.php:39 src/Arrangement.php:279 src/Bookprocess.php:98 398 #: src/ContactForm.php:7 1 src/ContactForm.php:76404 #: src/ContactForm.php:76 src/ContactForm.php:81 399 405 #, php-format 400 406 msgid "Error: %s" … … 443 449 msgstr "" 444 450 445 #: src/ContactForm.php: 76451 #: src/ContactForm.php:81 446 452 msgid "Contact form might be deleted" 447 453 msgstr "" 448 454 449 #: src/ContactForm.php:11 3455 #: src/ContactForm.php:118 450 456 msgid "Error: package is set, but contact form does not support packages" 451 457 msgstr "" 452 458 453 #: src/ContactForm.php:1 25src/OnlineBooking.php:70 src/Vouchers.php:93459 #: src/ContactForm.php:130 src/OnlineBooking.php:70 src/Vouchers.php:93 454 460 msgid "Error: redirect is set, but is an invalid URL" 455 461 msgstr "" 456 462 457 #: src/ContactForm.php:3 76463 #: src/ContactForm.php:381 458 464 msgid "Unknown" 459 465 msgstr "Unbekannt" 460 466 461 #: src/ContactForm.php:3 77467 #: src/ContactForm.php:382 462 468 msgid "Male" 463 469 msgstr "Mann" 464 470 465 #: src/ContactForm.php:3 78471 #: src/ContactForm.php:383 466 472 msgid "Female" 467 473 msgstr "Frau" 468 474 469 #: src/ContactForm.php:5 14475 #: src/ContactForm.php:536 470 476 msgid "(required)" 471 477 msgstr "(erforderlich)" 472 478 473 #: src/ContactForm.php:5 39479 #: src/ContactForm.php:561 474 480 msgid "Clear choice" 475 481 msgstr "Wahl löschen" … … 541 547 msgstr "" 542 548 543 #: src/Plugin.php:99 src/Plugin.php:100 src/Settings.php:4 07549 #: src/Plugin.php:99 src/Plugin.php:100 src/Settings.php:419 544 550 msgid "Documentation" 545 551 msgstr "Dokumentation" … … 549 555 msgstr "" 550 556 551 #: src/Plugin.php:195 557 #: src/Plugin.php:117 558 msgid "Online booking of packages" 559 msgstr "" 560 561 #: src/Plugin.php:119 562 msgid "Voucher sales" 563 msgstr "" 564 565 #: src/Plugin.php:207 552 566 msgid "Error: you have not set your Recras domain yet" 553 567 msgstr "" 554 568 555 #: src/Plugin.php: 197569 #: src/Plugin.php:209 556 570 msgid "" 557 571 "Error: your Recras domain has not been set yet, but you do not have the " … … 560 574 msgstr "" 561 575 562 #: src/Plugin.php:2 13576 #: src/Plugin.php:225 563 577 msgid "Could not connect to your Recras" 564 578 msgstr "" 565 579 566 #: src/Plugin.php:2 17580 #: src/Plugin.php:229 567 581 msgid "Package availability" 568 582 msgstr "Arrangement-Verfügbarkeit" 569 583 570 #: src/Plugin.php:2 45584 #: src/Plugin.php:261 571 585 msgid "At least one choice is required" 572 586 msgstr "" 573 587 574 #: src/Plugin.php:2 46588 #: src/Plugin.php:262 575 589 msgid "Loading..." 576 590 msgstr "Laden..." 577 591 578 #: src/Plugin.php:2 47592 #: src/Plugin.php:263 579 593 msgid "Your message was sent successfully" 580 594 msgstr "" 581 595 582 #: src/Plugin.php:2 48596 #: src/Plugin.php:264 583 597 msgid "There was an error sending your message" 584 598 msgstr "" 585 599 586 #: src/Plugin.php:2 57600 #: src/Plugin.php:273 587 601 msgid "Previous month" 588 602 msgstr "Vorheriger Monat" 589 603 590 #: src/Plugin.php:2 58604 #: src/Plugin.php:274 591 605 msgid "Next month" 592 606 msgstr "Nächsten Monat" 593 607 594 #: src/Plugin.php:2 60608 #: src/Plugin.php:276 595 609 msgid "January" 596 610 msgstr "Januar" 597 611 598 #: src/Plugin.php:2 61612 #: src/Plugin.php:277 599 613 msgid "February" 600 614 msgstr "Februar" 601 615 602 #: src/Plugin.php:2 62616 #: src/Plugin.php:278 603 617 msgid "March" 604 618 msgstr "März" 605 619 606 #: src/Plugin.php:2 63620 #: src/Plugin.php:279 607 621 msgid "April" 608 622 msgstr "April" 609 623 610 #: src/Plugin.php:2 64624 #: src/Plugin.php:280 611 625 msgid "May" 612 626 msgstr "Mai" 613 627 614 #: src/Plugin.php:2 65628 #: src/Plugin.php:281 615 629 msgid "June" 616 630 msgstr "Juni" 617 631 618 #: src/Plugin.php:2 66632 #: src/Plugin.php:282 619 633 msgid "July" 620 634 msgstr "Juli" 621 635 622 #: src/Plugin.php:2 67636 #: src/Plugin.php:283 623 637 msgid "August" 624 638 msgstr "August" 625 639 626 #: src/Plugin.php:2 68640 #: src/Plugin.php:284 627 641 msgid "September" 628 642 msgstr "September" 629 643 630 #: src/Plugin.php:2 69644 #: src/Plugin.php:285 631 645 msgid "October" 632 646 msgstr "Oktober" 633 647 634 #: src/Plugin.php:2 70648 #: src/Plugin.php:286 635 649 msgid "November" 636 650 msgstr "November" 637 651 638 #: src/Plugin.php:2 71652 #: src/Plugin.php:287 639 653 msgid "December" 640 654 msgstr "Dezember" 641 655 642 #: src/Plugin.php:2 74656 #: src/Plugin.php:290 643 657 msgid "Sunday" 644 658 msgstr "Sonntag" 645 659 646 #: src/Plugin.php:2 75660 #: src/Plugin.php:291 647 661 msgid "Monday" 648 662 msgstr "Montag" 649 663 650 #: src/Plugin.php:2 76664 #: src/Plugin.php:292 651 665 msgid "Tuesday" 652 666 msgstr "Dienstag" 653 667 654 #: src/Plugin.php:2 77668 #: src/Plugin.php:293 655 669 msgid "Wednesday" 656 670 msgstr "Mittwoch" 657 671 658 #: src/Plugin.php:2 78672 #: src/Plugin.php:294 659 673 msgid "Thursday" 660 674 msgstr "Donnerstag" 661 675 662 #: src/Plugin.php:2 79676 #: src/Plugin.php:295 663 677 msgid "Friday" 664 678 msgstr "Freitag" 665 679 666 #: src/Plugin.php:2 80680 #: src/Plugin.php:296 667 681 msgid "Saturday" 668 682 msgstr "Samstag" 669 683 670 #: src/Plugin.php:2 83684 #: src/Plugin.php:299 671 685 msgid "Sun" 672 686 msgstr "So" 673 687 674 #: src/Plugin.php: 284688 #: src/Plugin.php:300 675 689 msgid "Mon" 676 690 msgstr "Mo" 677 691 678 #: src/Plugin.php: 285692 #: src/Plugin.php:301 679 693 msgid "Tue" 680 694 msgstr "Di" 681 695 682 #: src/Plugin.php: 286696 #: src/Plugin.php:302 683 697 msgid "Wed" 684 698 msgstr "Mi" 685 699 686 #: src/Plugin.php: 287700 #: src/Plugin.php:303 687 701 msgid "Thu" 688 702 msgstr "Do" 689 703 690 #: src/Plugin.php: 288704 #: src/Plugin.php:304 691 705 msgid "Fri" 692 706 msgstr "Fr" 693 707 694 #: src/Plugin.php: 289708 #: src/Plugin.php:305 695 709 msgid "Sat" 696 710 msgstr "Sa" … … 730 744 msgstr "" 731 745 732 #: src/Settings.php:1 68 src/Settings.php:177 src/Settings.php:186733 #: src/Settings.php: 198746 #: src/Settings.php:180 src/Settings.php:189 src/Settings.php:198 747 #: src/Settings.php:210 734 748 msgid "You do not have sufficient permissions to access this page." 735 749 msgstr "" 736 750 737 #: src/Settings.php:2 68751 #: src/Settings.php:280 738 752 msgid "No theme" 739 753 msgstr "Kein Thema" 740 754 741 #: src/Settings.php:2 72755 #: src/Settings.php:284 742 756 msgid "Basic theme" 743 757 msgstr "Grundthema" 744 758 745 #: src/Settings.php:2 76759 #: src/Settings.php:288 746 760 msgid "BP Green" 747 761 msgstr "BP Grün" 748 762 749 #: src/Settings.php:2 80763 #: src/Settings.php:292 750 764 msgid "Reasonably Red" 751 765 msgstr "Ganz Rot" 752 766 753 #: src/Settings.php:2 84767 #: src/Settings.php:296 754 768 msgid "Recras Blue" 755 769 msgstr "Recras Blau" 756 770 757 #: src/Settings.php:3 66771 #: src/Settings.php:378 758 772 msgid "Recras settings" 759 773 msgstr "Recras-Einstellungen" 760 774 761 #: src/Settings.php:3 72775 #: src/Settings.php:384 762 776 #, fuzzy 763 777 #| msgid "Recras name" … … 765 779 msgstr "Recras-Name" 766 780 767 #: src/Settings.php:3 73781 #: src/Settings.php:385 768 782 msgid "Currency symbol" 769 783 msgstr "" 770 784 771 #: src/Settings.php:3 74785 #: src/Settings.php:386 772 786 msgid "Decimal separator" 773 787 msgstr "" 774 788 775 #: src/Settings.php:375 776 msgid "Use calendar widget for contact forms" 777 msgstr "" 778 779 #: src/Settings.php:376 789 #: src/Settings.php:387 790 #, fuzzy 791 #| msgid "Contact form" 792 msgid "Use calendar widget for contact forms (deprecated)" 793 msgstr "Kontaktformular" 794 795 #: src/Settings.php:388 780 796 msgid "Fix book process datepicker styling" 781 797 msgstr "" 782 798 783 #: src/Settings.php:3 77799 #: src/Settings.php:389 784 800 msgid "Theme for Recras integrations" 785 801 msgstr "" 786 802 787 #: src/Settings.php:3 78803 #: src/Settings.php:390 788 804 msgid "Enable Google Analytics integration? (deprecated)" 789 805 msgstr "" 790 806 791 #: src/Settings.php:4 06807 #: src/Settings.php:418 792 808 #, php-format 793 809 msgid "For more information on these options, please see the %s page." -
recras/tags/6.5.3/lang/recras-en_GB.po
r3434941 r3484591 2 2 msgstr "" 3 3 "Project-Id-Version: Recras\n" 4 "POT-Creation-Date: 2026-0 1-06 14:51+0100\n"5 "PO-Revision-Date: 2026-0 1-06 14:51+0100\n"4 "POT-Creation-Date: 2026-03-17 09:26+0100\n" 5 "PO-Revision-Date: 2026-03-17 09:26+0100\n" 6 6 "Last-Translator: Sander de Jong <sander@recras.nl>\n" 7 7 "Language-Team: Recras\n" … … 20 20 "X-Poedit-SearchPathExcluded-2: node_modules\n" 21 21 22 #: editor/form-booking.php:73 src/ContactForm.php:2 68 src/ContactForm.php:31022 #: editor/form-booking.php:73 src/ContactForm.php:273 src/ContactForm.php:315 23 23 msgid "yyyy-mm-dd" 24 24 msgstr "" 25 25 26 #: editor/form-booking.php:82 js/gutenberg-package.js:1 2727 #: src/ContactForm.php:2 8526 #: editor/form-booking.php:82 js/gutenberg-package.js:131 27 #: src/ContactForm.php:290 28 28 msgid "hh:mm" 29 29 msgstr "" 30 30 31 #: js/gutenberg-availability.js:2 js/gutenberg-availability.js:3 531 #: js/gutenberg-availability.js:2 js/gutenberg-availability.js:36 32 32 msgid "Availability calendar" 33 33 msgstr "" 34 34 35 #: js/gutenberg-availability.js:3 835 #: js/gutenberg-availability.js:39 36 36 msgid "No suitable packages found" 37 37 msgstr "" 38 38 39 #: js/gutenberg-availability.js:5 0js/gutenberg-package.js:240 #: js/gutenberg-package.js:5 0 js/gutenberg-package.js:142src/Plugin.php:11441 #: src/Plugin.php:2 1639 #: js/gutenberg-availability.js:51 js/gutenberg-package.js:2 40 #: js/gutenberg-package.js:54 js/gutenberg-package.js:146 src/Plugin.php:114 41 #: src/Plugin.php:228 42 42 msgid "Package" 43 43 msgstr "" 44 44 45 #: js/gutenberg-availability.js: 59 js/gutenberg-onlinebooking.js:29545 #: js/gutenberg-availability.js:60 js/gutenberg-onlinebooking.js:296 46 46 msgid "Auto resize iframe" 47 47 msgstr "" 48 48 49 #: js/gutenberg-bookprocess.js:2 js/gutenberg-bookprocess.js:4 550 #: js/gutenberg-bookprocess.js: 59src/Elementor/Bookprocess.php:1749 #: js/gutenberg-bookprocess.js:2 js/gutenberg-bookprocess.js:49 50 #: js/gutenberg-bookprocess.js:65 src/Elementor/Bookprocess.php:17 51 51 #: src/Elementor/Bookprocess.php:35 src/Elementor/Bookprocess.php:45 52 #: src/Plugin.php:115 src/Plugin.php:2 1552 #: src/Plugin.php:115 src/Plugin.php:227 53 53 msgid "Book process" 54 54 msgstr "" 55 55 56 #: js/gutenberg-bookprocess.js: 7656 #: js/gutenberg-bookprocess.js:82 57 57 msgid "Enter package ID. Leave empty to not prefill." 58 58 msgstr "" 59 59 60 #: js/gutenberg-bookprocess.js: 7760 #: js/gutenberg-bookprocess.js:83 61 61 msgid "Enter date in YYYY-MM-DD format. Leave empty to not prefill." 62 62 msgstr "" 63 63 64 #: js/gutenberg-bookprocess.js: 87src/Elementor/Bookprocess.php:6164 #: js/gutenberg-bookprocess.js:93 src/Elementor/Bookprocess.php:61 65 65 msgid "Prefill value for first widget? (optional)" 66 66 msgstr "" 67 67 68 #: js/gutenberg-bookprocess.js: 99src/Elementor/Bookprocess.php:7468 #: js/gutenberg-bookprocess.js:105 src/Elementor/Bookprocess.php:74 69 69 msgid "Hide first widget?" 70 70 msgstr "" 71 71 72 #: js/gutenberg-contactform.js:2 js/gutenberg-contactform.js:76 73 #: js/gutenberg-contactform.js:193 src/Plugin.php:116 src/Plugin.php:212 72 #: js/gutenberg-contactform.js:2 js/gutenberg-contactform.js:194 73 #: src/Plugin.php:224 74 msgid "Contact form (deprecated)" 75 msgstr "" 76 77 #: js/gutenberg-contactform.js:15 js/gutenberg-contactform.js:28 78 #: src/ContactForm.php:122 79 msgid "Send" 80 msgstr "" 81 82 #: js/gutenberg-contactform.js:61 js/gutenberg-onlinebooking.js:63 83 #: js/gutenberg-voucher-sales.js:46 84 msgid "Loading data..." 85 msgstr "" 86 87 #: js/gutenberg-contactform.js:77 src/Plugin.php:116 74 88 msgid "Contact form" 75 89 msgstr "" 76 90 77 #: js/gutenberg-contactform.js:14 js/gutenberg-contactform.js:27 78 #: src/ContactForm.php:117 79 msgid "Send" 80 msgstr "" 81 82 #: js/gutenberg-contactform.js:60 js/gutenberg-onlinebooking.js:62 83 #: js/gutenberg-voucher-sales.js:41 84 msgid "Loading data..." 85 msgstr "" 86 87 #: js/gutenberg-contactform.js:98 91 #: js/gutenberg-contactform.js:99 88 92 msgid "Show title?" 89 93 msgstr "" 90 94 91 #: js/gutenberg-contactform.js:10 795 #: js/gutenberg-contactform.js:108 92 96 msgid "Show labels?" 93 97 msgstr "" 94 98 95 #: js/gutenberg-contactform.js:11 699 #: js/gutenberg-contactform.js:117 96 100 msgid "Show placeholders?" 97 101 msgstr "" 98 102 99 #: js/gutenberg-contactform.js:12 6103 #: js/gutenberg-contactform.js:127 100 104 msgid "Package (optional)" 101 105 msgstr "" 102 106 103 #: js/gutenberg-contactform.js:13 8107 #: js/gutenberg-contactform.js:139 104 108 msgid "Definition list" 105 109 msgstr "" 106 110 107 #: js/gutenberg-contactform.js:14 2111 #: js/gutenberg-contactform.js:143 108 112 msgid "Ordered list" 109 113 msgstr "" 110 114 111 #: js/gutenberg-contactform.js:14 6115 #: js/gutenberg-contactform.js:147 112 116 msgid "Table" 113 117 msgstr "" 114 118 115 #: js/gutenberg-contactform.js:1 49119 #: js/gutenberg-contactform.js:150 116 120 msgid "HTML element" 117 121 msgstr "" 118 122 119 #: js/gutenberg-contactform.js:16 1123 #: js/gutenberg-contactform.js:162 120 124 msgid "Drop-down list (Select)" 121 125 msgstr "" 122 126 123 #: js/gutenberg-contactform.js:16 5127 #: js/gutenberg-contactform.js:166 124 128 msgid "Radio buttons" 125 129 msgstr "" 126 130 127 #: js/gutenberg-contactform.js:16 8131 #: js/gutenberg-contactform.js:169 128 132 msgid "Element for single choices" 129 133 msgstr "" 130 134 131 #: js/gutenberg-contactform.js:17 7 js/gutenberg-contactform.js:178135 #: js/gutenberg-contactform.js:178 js/gutenberg-contactform.js:179 132 136 msgid "Submit button text" 133 137 msgstr "" 134 138 135 #: js/gutenberg-contactform.js:18 8 js/gutenberg-onlinebooking.js:232136 #: js/gutenberg-voucher-sales.js:7 1139 #: js/gutenberg-contactform.js:189 js/gutenberg-onlinebooking.js:233 140 #: js/gutenberg-voucher-sales.js:76 137 141 msgid "i.e. https://www.recras.com/thanks/" 138 142 msgstr "" 139 143 140 #: js/gutenberg-contactform.js:1 89 js/gutenberg-onlinebooking.js:233141 #: js/gutenberg-voucher-sales.js:7 2144 #: js/gutenberg-contactform.js:190 js/gutenberg-onlinebooking.js:234 145 #: js/gutenberg-voucher-sales.js:77 142 146 msgid "Thank-you page (optional, leave empty to not redirect)" 143 147 msgstr "" 144 148 145 #: js/gutenberg-contactform.js:20 2149 #: js/gutenberg-contactform.js:203 146 150 msgid "" 147 151 "Some packages may not be available for all contact forms. You can change " … … 149 153 msgstr "" 150 154 151 #: js/gutenberg-contactform.js:20 3155 #: js/gutenberg-contactform.js:204 152 156 msgid "" 153 157 "If you are still missing packages, make sure in Recras \"May be presented on " … … 156 160 msgstr "" 157 161 158 #: js/gutenberg-global.js:46 src/Settings.php:2 11162 #: js/gutenberg-global.js:46 src/Settings.php:223 159 163 msgid "Recras → Settings menu" 160 164 msgstr "" 161 165 162 #: js/gutenberg-global.js:48 src/Settings.php:2 10166 #: js/gutenberg-global.js:48 src/Settings.php:222 163 167 #, javascript-format, php-format 164 168 msgid "Please enter your Recras domain in the %s before adding widgets." 165 169 msgstr "" 166 170 167 #: js/gutenberg-global.js:3 11171 #: js/gutenberg-global.js:323 168 172 msgid "Pages" 169 173 msgstr "" 170 174 171 #: js/gutenberg-global.js:3 35175 #: js/gutenberg-global.js:347 172 176 msgid "Posts" 173 177 msgstr "" 174 178 175 #: js/gutenberg-onlinebooking.js:2 js/gutenberg-onlinebooking.js: 299176 #: src/Plugin.php: 117 src/Plugin.php:214177 msgid "Online booking of packages "178 msgstr "" 179 180 #: js/gutenberg-onlinebooking.js:9 7179 #: js/gutenberg-onlinebooking.js:2 js/gutenberg-onlinebooking.js:300 180 #: src/Plugin.php:226 181 msgid "Online booking of packages (deprecated)" 182 msgstr "" 183 184 #: js/gutenberg-onlinebooking.js:98 181 185 msgid "Seamless (recommended)" 182 186 msgstr "" 183 187 184 #: js/gutenberg-onlinebooking.js:10 1188 #: js/gutenberg-onlinebooking.js:102 185 189 msgid "iframe (uses setting in your Recras)" 186 190 msgstr "" 187 191 188 #: js/gutenberg-onlinebooking.js:12 0192 #: js/gutenberg-onlinebooking.js:121 189 193 msgid "Integration method" 190 194 msgstr "" 191 195 192 #: js/gutenberg-onlinebooking.js:16 8196 #: js/gutenberg-onlinebooking.js:169 193 197 msgid "Preview times in programme" 194 198 msgstr "" 195 199 196 #: js/gutenberg-onlinebooking.js:17 7200 #: js/gutenberg-onlinebooking.js:178 197 201 msgid "Show discount fields" 198 202 msgstr "" 199 203 200 #: js/gutenberg-onlinebooking.js:19 0204 #: js/gutenberg-onlinebooking.js:191 201 205 msgid "Pre-fill amounts (requires exactly 1 package selected)" 202 206 msgstr "" 203 207 204 #: js/gutenberg-onlinebooking.js:22 1208 #: js/gutenberg-onlinebooking.js:222 205 209 msgid "Pre-fill time (requires exactly 1 package selected)" 206 210 msgstr "" 207 211 208 #: js/gutenberg-onlinebooking.js:22 2212 #: js/gutenberg-onlinebooking.js:223 209 213 msgid "e.g. 14:00" 210 214 msgstr "" 211 215 212 #: js/gutenberg-onlinebooking.js:28 5216 #: js/gutenberg-onlinebooking.js:286 213 217 msgid "Pre-filled package" 214 218 msgstr "" 215 219 216 #: js/gutenberg-onlinebooking.js:28 6220 #: js/gutenberg-onlinebooking.js:287 217 221 msgid "Pre-filled package (optional)" 218 222 msgstr "" 219 223 220 #: js/gutenberg-onlinebooking.js:30 2224 #: js/gutenberg-onlinebooking.js:303 221 225 msgid "" 222 226 "Seamless integration uses the styling of your website. At Recras → Settings " … … 224 228 msgstr "" 225 229 226 #: js/gutenberg-onlinebooking.js:30 3230 #: js/gutenberg-onlinebooking.js:304 227 231 msgid "" 228 232 "iframe integration uses the styling set in your Recras. You can change the " … … 230 234 msgstr "" 231 235 232 #: js/gutenberg-onlinebooking.js:30 6236 #: js/gutenberg-onlinebooking.js:307 233 237 msgid "Package selection" 234 238 msgstr "" 235 239 236 #: js/gutenberg-onlinebooking.js:31 1 js/gutenberg-onlinebooking.js:331237 #: js/gutenberg-package.js:14 5240 #: js/gutenberg-onlinebooking.js:312 js/gutenberg-onlinebooking.js:332 241 #: js/gutenberg-package.js:149 238 242 msgid "" 239 243 "If you are not seeing certain packages, make sure in Recras \"May be " … … 242 246 msgstr "" 243 247 244 #: js/gutenberg-onlinebooking.js:31 2248 #: js/gutenberg-onlinebooking.js:313 245 249 msgid "" 246 250 "If you select a single package, it will be pre-filled and will skip the " … … 248 252 msgstr "" 249 253 250 #: js/gutenberg-onlinebooking.js:32 3254 #: js/gutenberg-onlinebooking.js:324 251 255 msgid "Pre-fill date (requires exactly 1 package selected)" 252 256 msgstr "" 253 257 254 #: js/gutenberg-package.js: 67258 #: js/gutenberg-package.js:71 255 259 msgid "Description" 256 260 msgstr "" 257 261 258 #: js/gutenberg-package.js:7 1 js/gutenberg-product.js:76262 #: js/gutenberg-package.js:75 js/gutenberg-product.js:79 259 263 msgid "Duration" 260 264 msgstr "" 261 265 262 #: js/gutenberg-package.js:7 5 js/gutenberg-product.js:80266 #: js/gutenberg-package.js:79 js/gutenberg-product.js:83 263 267 msgid "Image tag" 264 268 msgstr "" 265 269 266 #: js/gutenberg-package.js: 79270 #: js/gutenberg-package.js:83 267 271 msgid "Minimum number of persons" 268 272 msgstr "" 269 273 270 #: js/gutenberg-package.js:8 3274 #: js/gutenberg-package.js:87 271 275 msgid "Price p.p. excl. VAT" 272 276 msgstr "" 273 277 274 #: js/gutenberg-package.js: 87278 #: js/gutenberg-package.js:91 275 279 msgid "Price p.p. incl. VAT" 276 280 msgstr "" 277 281 278 #: js/gutenberg-package.js:9 1282 #: js/gutenberg-package.js:95 279 283 msgid "Programme" 280 284 msgstr "" 281 285 282 #: js/gutenberg-package.js:9 5286 #: js/gutenberg-package.js:99 283 287 msgid "Starting location" 284 288 msgstr "" 285 289 286 #: js/gutenberg-package.js: 99 js/gutenberg-product.js:96290 #: js/gutenberg-package.js:103 js/gutenberg-product.js:99 287 291 msgid "Title" 288 292 msgstr "" 289 293 290 #: js/gutenberg-package.js:10 3294 #: js/gutenberg-package.js:107 291 295 msgid "Total price excl. VAT" 292 296 msgstr "" 293 297 294 #: js/gutenberg-package.js:1 07298 #: js/gutenberg-package.js:111 295 299 msgid "Total price incl. VAT" 296 300 msgstr "" 297 301 298 #: js/gutenberg-package.js:11 1302 #: js/gutenberg-package.js:115 299 303 msgid "Relative image URL" 300 304 msgstr "" 301 305 302 #: js/gutenberg-package.js:11 4 js/gutenberg-product.js:99303 #: js/gutenberg-voucher-info.js:7 3306 #: js/gutenberg-package.js:118 js/gutenberg-product.js:102 307 #: js/gutenberg-voucher-info.js:78 304 308 msgid "Property to show" 305 309 msgstr "" 306 310 307 #: js/gutenberg-package.js:1 28311 #: js/gutenberg-package.js:132 308 312 msgid "Start time" 309 313 msgstr "" 310 314 311 #: js/gutenberg-package.js:1 38315 #: js/gutenberg-package.js:142 312 316 msgid "Show header?" 313 317 msgstr "" 314 318 315 #: js/gutenberg-product.js:2 js/gutenberg-product.js: 48316 #: js/gutenberg-product.js:10 2 src/Plugin.php:118 src/Plugin.php:218319 #: js/gutenberg-product.js:2 js/gutenberg-product.js:51 320 #: js/gutenberg-product.js:105 src/Plugin.php:118 src/Plugin.php:230 317 321 msgid "Product" 318 322 msgstr "" 319 323 320 #: js/gutenberg-product.js: 68324 #: js/gutenberg-product.js:71 321 325 msgid "Description (long)" 322 326 msgstr "" 323 327 324 #: js/gutenberg-product.js:7 2328 #: js/gutenberg-product.js:75 325 329 msgid "Description (short)" 326 330 msgstr "" 327 331 328 #: js/gutenberg-product.js:8 4332 #: js/gutenberg-product.js:87 329 333 msgid "Image URL" 330 334 msgstr "" 331 335 332 #: js/gutenberg-product.js: 88336 #: js/gutenberg-product.js:91 333 337 msgid "Minimum amount" 334 338 msgstr "" 335 339 336 #: js/gutenberg-product.js:9 2340 #: js/gutenberg-product.js:95 337 341 msgid "Price (incl. VAT)" 338 342 msgstr "" 339 343 340 #: js/gutenberg-product.js:10 6344 #: js/gutenberg-product.js:109 341 345 msgid "" 342 346 "If you are not seeing certain products, make sure in Recras \"May be " … … 345 349 msgstr "" 346 350 347 #: js/gutenberg-product.js:1 09351 #: js/gutenberg-product.js:112 348 352 msgid "" 349 353 "Could not find any products. Make sure in Recras \"May be presented on a " … … 351 355 msgstr "" 352 356 353 #: js/gutenberg-voucher-info.js:2 js/gutenberg-voucher-info.js: 76354 #: src/Plugin.php:120 src/Plugin.php:2 21357 #: js/gutenberg-voucher-info.js:2 js/gutenberg-voucher-info.js:81 358 #: src/Plugin.php:120 src/Plugin.php:234 355 359 msgid "Voucher info" 356 360 msgstr "" 357 361 358 #: js/gutenberg-voucher-info.js:4 4 js/gutenberg-voucher-sales.js:55362 #: js/gutenberg-voucher-info.js:49 js/gutenberg-voucher-sales.js:60 359 363 msgid "Voucher template" 360 364 msgstr "" 361 365 362 #: js/gutenberg-voucher-info.js:6 2366 #: js/gutenberg-voucher-info.js:67 363 367 msgid "Name" 364 368 msgstr "" 365 369 366 #: js/gutenberg-voucher-info.js: 66370 #: js/gutenberg-voucher-info.js:71 367 371 msgid "Price" 368 372 msgstr "" 369 373 370 #: js/gutenberg-voucher-info.js:7 0374 #: js/gutenberg-voucher-info.js:75 371 375 msgid "Validity" 372 376 msgstr "" 373 377 374 #: js/gutenberg-voucher-sales.js:2 js/gutenberg-voucher-sales.js: 85375 #: src/Plugin.php: 119 src/Plugin.php:222376 msgid "Voucher sales "377 msgstr "" 378 379 #: js/gutenberg-voucher-sales.js:8 2378 #: js/gutenberg-voucher-sales.js:2 js/gutenberg-voucher-sales.js:90 379 #: src/Plugin.php:235 380 msgid "Voucher sales (deprecated)" 381 msgstr "" 382 383 #: js/gutenberg-voucher-sales.js:87 380 384 msgid "Show quantity input (will be set to 1 if not shown)" 381 385 msgstr "" 382 386 383 387 #: src/Arrangement.php:21 src/Availability.php:20 src/Bookprocess.php:87 384 #: src/ContactForm.php: 55src/Products.php:21 src/Vouchers.php:22388 #: src/ContactForm.php:60 src/Products.php:21 src/Vouchers.php:22 385 389 msgid "Error: no ID set" 386 390 msgstr "" 387 391 388 392 #: src/Arrangement.php:24 src/Availability.php:23 src/Bookprocess.php:91 389 #: src/ContactForm.php: 58src/OnlineBooking.php:25 src/Products.php:24393 #: src/ContactForm.php:63 src/OnlineBooking.php:25 src/Products.php:24 390 394 #: src/Vouchers.php:25 src/Vouchers.php:78 391 395 msgid "Error: ID is not a number" … … 393 397 394 398 #: src/Arrangement.php:39 src/Arrangement.php:279 src/Bookprocess.php:98 395 #: src/ContactForm.php:7 1 src/ContactForm.php:76399 #: src/ContactForm.php:76 src/ContactForm.php:81 396 400 #, php-format 397 401 msgid "Error: %s" … … 440 444 msgstr "" 441 445 442 #: src/ContactForm.php: 76446 #: src/ContactForm.php:81 443 447 msgid "Contact form might be deleted" 444 448 msgstr "" 445 449 446 #: src/ContactForm.php:11 3450 #: src/ContactForm.php:118 447 451 msgid "Error: package is set, but contact form does not support packages" 448 452 msgstr "" 449 453 450 #: src/ContactForm.php:1 25src/OnlineBooking.php:70 src/Vouchers.php:93454 #: src/ContactForm.php:130 src/OnlineBooking.php:70 src/Vouchers.php:93 451 455 msgid "Error: redirect is set, but is an invalid URL" 452 456 msgstr "" 453 457 454 #: src/ContactForm.php:3 76458 #: src/ContactForm.php:381 455 459 msgid "Unknown" 456 460 msgstr "" 457 461 458 #: src/ContactForm.php:3 77462 #: src/ContactForm.php:382 459 463 msgid "Male" 460 464 msgstr "" 461 465 462 #: src/ContactForm.php:3 78466 #: src/ContactForm.php:383 463 467 msgid "Female" 464 468 msgstr "" 465 469 466 #: src/ContactForm.php:5 14470 #: src/ContactForm.php:536 467 471 msgid "(required)" 468 472 msgstr "" 469 473 470 #: src/ContactForm.php:5 39474 #: src/ContactForm.php:561 471 475 msgid "Clear choice" 472 476 msgstr "" … … 538 542 msgstr "" 539 543 540 #: src/Plugin.php:99 src/Plugin.php:100 src/Settings.php:4 07544 #: src/Plugin.php:99 src/Plugin.php:100 src/Settings.php:419 541 545 msgid "Documentation" 542 546 msgstr "" … … 546 550 msgstr "" 547 551 548 #: src/Plugin.php:195 552 #: src/Plugin.php:117 553 msgid "Online booking of packages" 554 msgstr "" 555 556 #: src/Plugin.php:119 557 msgid "Voucher sales" 558 msgstr "" 559 560 #: src/Plugin.php:207 549 561 msgid "Error: you have not set your Recras domain yet" 550 562 msgstr "" 551 563 552 #: src/Plugin.php: 197564 #: src/Plugin.php:209 553 565 msgid "" 554 566 "Error: your Recras domain has not been set yet, but you do not have the " … … 557 569 msgstr "" 558 570 559 #: src/Plugin.php:2 13571 #: src/Plugin.php:225 560 572 msgid "Could not connect to your Recras" 561 573 msgstr "" 562 574 563 #: src/Plugin.php:2 17575 #: src/Plugin.php:229 564 576 msgid "Package availability" 565 577 msgstr "" 566 578 567 #: src/Plugin.php:2 45579 #: src/Plugin.php:261 568 580 msgid "At least one choice is required" 569 581 msgstr "" 570 582 571 #: src/Plugin.php:2 46583 #: src/Plugin.php:262 572 584 msgid "Loading..." 573 585 msgstr "" 574 586 575 #: src/Plugin.php:2 47587 #: src/Plugin.php:263 576 588 msgid "Your message was sent successfully" 577 589 msgstr "" 578 590 579 #: src/Plugin.php:2 48591 #: src/Plugin.php:264 580 592 msgid "There was an error sending your message" 581 593 msgstr "" 582 594 583 #: src/Plugin.php:2 57595 #: src/Plugin.php:273 584 596 msgid "Previous month" 585 597 msgstr "" 586 598 587 #: src/Plugin.php:2 58599 #: src/Plugin.php:274 588 600 msgid "Next month" 589 601 msgstr "" 590 602 591 #: src/Plugin.php:2 60603 #: src/Plugin.php:276 592 604 msgid "January" 593 605 msgstr "" 594 606 595 #: src/Plugin.php:2 61607 #: src/Plugin.php:277 596 608 msgid "February" 597 609 msgstr "" 598 610 599 #: src/Plugin.php:2 62611 #: src/Plugin.php:278 600 612 msgid "March" 601 613 msgstr "" 602 614 603 #: src/Plugin.php:2 63615 #: src/Plugin.php:279 604 616 msgid "April" 605 617 msgstr "" 606 618 607 #: src/Plugin.php:2 64619 #: src/Plugin.php:280 608 620 msgid "May" 609 621 msgstr "" 610 622 611 #: src/Plugin.php:2 65623 #: src/Plugin.php:281 612 624 msgid "June" 613 625 msgstr "" 614 626 615 #: src/Plugin.php:2 66627 #: src/Plugin.php:282 616 628 msgid "July" 617 629 msgstr "" 618 630 619 #: src/Plugin.php:2 67631 #: src/Plugin.php:283 620 632 msgid "August" 621 633 msgstr "" 622 634 623 #: src/Plugin.php:2 68635 #: src/Plugin.php:284 624 636 msgid "September" 625 637 msgstr "" 626 638 627 #: src/Plugin.php:2 69639 #: src/Plugin.php:285 628 640 msgid "October" 629 641 msgstr "" 630 642 631 #: src/Plugin.php:2 70643 #: src/Plugin.php:286 632 644 msgid "November" 633 645 msgstr "" 634 646 635 #: src/Plugin.php:2 71647 #: src/Plugin.php:287 636 648 msgid "December" 637 649 msgstr "" 638 650 639 #: src/Plugin.php:2 74651 #: src/Plugin.php:290 640 652 msgid "Sunday" 641 653 msgstr "" 642 654 643 #: src/Plugin.php:2 75655 #: src/Plugin.php:291 644 656 msgid "Monday" 645 657 msgstr "" 646 658 647 #: src/Plugin.php:2 76659 #: src/Plugin.php:292 648 660 msgid "Tuesday" 649 661 msgstr "" 650 662 651 #: src/Plugin.php:2 77663 #: src/Plugin.php:293 652 664 msgid "Wednesday" 653 665 msgstr "" 654 666 655 #: src/Plugin.php:2 78667 #: src/Plugin.php:294 656 668 msgid "Thursday" 657 669 msgstr "" 658 670 659 #: src/Plugin.php:2 79671 #: src/Plugin.php:295 660 672 msgid "Friday" 661 673 msgstr "" 662 674 663 #: src/Plugin.php:2 80675 #: src/Plugin.php:296 664 676 msgid "Saturday" 665 677 msgstr "" 666 678 667 #: src/Plugin.php:2 83679 #: src/Plugin.php:299 668 680 msgid "Sun" 669 681 msgstr "" 670 682 671 #: src/Plugin.php: 284683 #: src/Plugin.php:300 672 684 msgid "Mon" 673 685 msgstr "" 674 686 675 #: src/Plugin.php: 285687 #: src/Plugin.php:301 676 688 msgid "Tue" 677 689 msgstr "" 678 690 679 #: src/Plugin.php: 286691 #: src/Plugin.php:302 680 692 msgid "Wed" 681 693 msgstr "" 682 694 683 #: src/Plugin.php: 287695 #: src/Plugin.php:303 684 696 msgid "Thu" 685 697 msgstr "" 686 698 687 #: src/Plugin.php: 288699 #: src/Plugin.php:304 688 700 msgid "Fri" 689 701 msgstr "" 690 702 691 #: src/Plugin.php: 289703 #: src/Plugin.php:305 692 704 msgid "Sat" 693 705 msgstr "" … … 727 739 msgstr "" 728 740 729 #: src/Settings.php:1 68 src/Settings.php:177 src/Settings.php:186730 #: src/Settings.php: 198741 #: src/Settings.php:180 src/Settings.php:189 src/Settings.php:198 742 #: src/Settings.php:210 731 743 msgid "You do not have sufficient permissions to access this page." 732 744 msgstr "" 733 745 734 #: src/Settings.php:2 68746 #: src/Settings.php:280 735 747 msgid "No theme" 736 748 msgstr "" 737 749 738 #: src/Settings.php:2 72750 #: src/Settings.php:284 739 751 msgid "Basic theme" 740 752 msgstr "" 741 753 742 #: src/Settings.php:2 76754 #: src/Settings.php:288 743 755 msgid "BP Green" 744 756 msgstr "" 745 757 746 #: src/Settings.php:2 80758 #: src/Settings.php:292 747 759 msgid "Reasonably Red" 748 760 msgstr "" 749 761 750 #: src/Settings.php:2 84762 #: src/Settings.php:296 751 763 msgid "Recras Blue" 752 764 msgstr "" 753 765 754 #: src/Settings.php:3 66766 #: src/Settings.php:378 755 767 msgid "Recras settings" 756 768 msgstr "" 757 769 758 #: src/Settings.php:3 72770 #: src/Settings.php:384 759 771 msgid "Recras domain" 760 772 msgstr "" 761 773 762 #: src/Settings.php:3 73774 #: src/Settings.php:385 763 775 msgid "Currency symbol" 764 776 msgstr "" 765 777 766 #: src/Settings.php:3 74778 #: src/Settings.php:386 767 779 msgid "Decimal separator" 768 780 msgstr "" 769 781 770 #: src/Settings.php:3 75771 msgid "Use calendar widget for contact forms "772 msgstr "" 773 774 #: src/Settings.php:3 76782 #: src/Settings.php:387 783 msgid "Use calendar widget for contact forms (deprecated)" 784 msgstr "" 785 786 #: src/Settings.php:388 775 787 msgid "Fix book process datepicker styling" 776 788 msgstr "" 777 789 778 #: src/Settings.php:3 77790 #: src/Settings.php:389 779 791 msgid "Theme for Recras integrations" 780 792 msgstr "" 781 793 782 #: src/Settings.php:3 78794 #: src/Settings.php:390 783 795 msgid "Enable Google Analytics integration? (deprecated)" 784 796 msgstr "" 785 797 786 #: src/Settings.php:4 06798 #: src/Settings.php:418 787 799 #, php-format 788 800 msgid "For more information on these options, please see the %s page." -
recras/tags/6.5.3/lang/recras-nl_NL-recras-gutenberg-global.json
r3369571 r3484591 1 {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"nl_NL"}," Package":["Arrangement"],"If you are not seeing certain packages, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Extra settings\" of the package.":["Als je bepaalde arrangementen niet ziet, zorg dan dat in Recras \"Mag op een website gepresenteerd worden (via API)\" is aangevinkt op het tabblad \"Extra instellingen\" van het arrangement."],"Show what?":["Toon wat?"],"Title":["Titel"],"Description":["Beschrijving"],"Duration":["Duur"],"Starting location":["Startlocatie"],"Minimum number of persons":["Minimum aantal personen"],"Price p.p. excl. VAT":["Prijs p.p. excl. btw"],"Price p.p. incl. VAT":["Prijs p.p. incl. btw"],"Total price excl. VAT":["Totaalprijs excl. btw"],"Total price incl. VAT":["Totaalprijs incl. btw"],"Programme":["Programma"],"Image tag":["Afbeelding-tag"],"Relative image URL":["Relatieve afbeelding-URL"],"Start time":["Starttijd"],"hh:mm":["uu:mm"],"Show header?":["Toon header?"],"Yes":["Ja"],"No":["Nee"],"Insert shortcode":["Voeg shortcode in"],"Integration method":["Integratiemethode"],"Seamless (recommended)":["Naadloos (aanbevolen)"],"iframe (uses setting in your Recras)":["iframe (gebruikt instelling uit jouw Recras)"],"Seamless integration uses the styling of your website. At Recras → Settings in the menu on the left, you can set an optional theme.":["Naadloze integratie gebruikt de styling van je website. Via Recras → Instellingen in het menu aan de linkerkant kun een optioneel thema instellen."],"iframe integration uses the styling set in your Recras. You can change the styling in Recras via Settings → Other settings → Custom CSS.":["iframe-integratie gebruikt de styling die is ingesteld in jouw Recras. Je kunt de styling in Recras aanpassen via Beheer → Overige instellingen → Eigen CSS."],"Package selection":["Arrangementselectie"],"To (de)select multiple packages, hold Ctrl and click (Cmd on Mac)":["Om meerdere arrangementen te (de)selecteren, houd Ctrl ingedrukt en klik (Cmd op Mac)"],"No pre-filled package":["Geen vooraf ingevuld arrangement"],"Preview times in programme":["Toon voorbeeldtijden in programma"],"Pre-fill amounts (requires pre-filled package)":["Aantallen vooraf invullen (vereist exact 1 geselecteerd arrangement)"],"Sorry, this is only available using the Gutenberg editor.":["Sorry, dit is alleen beschikbaar in de Gutenberg-editor."],"Pre-fill date (requires exactly 1 package selected)":["Datum vooraf invullen (vereist exact 1 geselecteerd arrangement)"],"yyyy-mm-dd":["jjjj-mm-dd"],"Pre-fill time (requires exactly 1 package selected)":["Tijd vooraf invullen (vereist exact 1 geselecteerd arrangement)"],"Thank-you page":["Bedanktpagina"],"Don't redirect":["Niet doorsturen"],"Pages":["Pagina's"],"Posts":["Berichten"],"Show discount fields":["Toon korting-velden"],"Automatic resize?":["Automatisch schalen?"],"Book process":["Boekproces"],"Initial value for first widget":["Initiële waarde voor eerste widget"],"Please note that no validation on this value is performed. Invalid values may be ignored or may stop the book process from working properly.":["Let op dat er geen validatie wordt gedaan op deze waarde. Ongeldige waardes worden mogelijk genegeerd of kunnen er voor zorgen dat het boekproces goed werkt."],"Hide first widget?":["Eerste widget verbergen?"],"Contact form":["Contactformulier"],"Show title?":["Toon titel?"],"Show labels?":["Toon labels?"],"Show placeholders?":["Toon placeholders?"],"Some packages may not be available for all contact forms. You can change this by editing your contact forms in Recras.":["Sommige arrangementen zijn mogelijk niet beschikbaar voor alle contactformulieren. Je kunt dit wijzigen door je contactformulieren in Recras te bewerken."],"If you are still missing packages, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Extra settings\" of the package.":["Als je nog steeds arrangementen mist, zorg dan dat in Recras \"Mag op een website gepresenteerd worden (via API)\" is aangevinkt op het tabblad \"Extra instellingen\" van het arrangement."],"HTML element":["HTML-element"],"Definition list":["Definitielijst"],"Ordered list":["Geordende lijst"],"Table":["Tabel"],"Element for single choices":["Element voor \"enkele keuze\""],"Drop-down list (Select)":["Dropdownlijst (select)"],"Radio buttons":["Keuzerondjes (radioknoppen)"],"This relates to: customer type, package selection, gender, and single choice":["Dit heeft betrekking op: klanttype, arrangementkeuze, geslacht en \"enkele keuze\""],"Submit button text":["Tekst op knop Versturen"],"Send":["Versturen"],"Product":["Product"],"Description (short)":["Beschrijving (kort)"],"Description (long)":["Beschrijving (lang)"],"Image URL":["Afbeelding-URL"],"Minimum amount":["Minimumaantal"],"Price (incl. VAT)":["Prijs (incl. btw)"],"Template":["Template"],"Name":["Naam"],"Price":["Prijs"],"Validity":["Geldigheid"],"No pre-filled template":["Geen vooraf ingevuld template"],"Show quantity input (will be set to 1 if not shown)":["Toon aantal-invoer (wordt op 1 gezet indien verborgen)"],"Availability calendar":["Beschikbaarheidskalender"],"No suitable packages found":["Geen geschikte arrangementen gevonden"],"Auto resize iframe":["iframe automatisch schalen"],"Enter package ID. Leave empty to not prefill.":["Vul arrangements-ID in. Laat leeg om niet vooraf in te vullen."],"Enter date in YYYY-MM-DD format. Leave empty to not prefill.":["Vul datum in formaat JJJJ-MM-DD in. Laat leeg om niet vooraf in te vullen."],"Prefill value for first widget? (optional)":["Waarde voor eerste widget vooraf invullen? (optioneel)"],"Loading data...":["Data aan het laden..."],"Package (optional)":["Arrangement (optioneel)"],"i.e. https://www.recras.com/thanks/":["bijv. https://www.recras.nl/bedankt/"],"Thank-you page (optional, leave empty to not redirect)":["Bedanktpagina (optioneel, laat leeg om niet door te sturen)"],"Recras → Settings menu":["menu Recras → Instellingen"],"Please enter your Recras domain in the %s before adding widgets.":["Vul je Recras-domein in in het %s voordat je widgets toevoegt."],"Online booking of packages":["Online boeking van arrangementen"],"Pre-fill amounts (requires exactly 1 package selected)":["Aantallen vooraf invullen (vereist exact 1 arrangement geselecteerd)"],"e.g. 14:00":["bijv. 14:00"],"Pre-filled package":["Vooraf ingevuld arrangement"],"Pre-filled package (optional)":["Vooraf ingevuld arrangement (optioneel)"],"If you select a single package, it will be pre-filled and will skip the package selection step.":["Als je een enkel arrangement selecteert wordt deze vooraf ingevuld en wordt de arrangement-selectie-stap overgeslagen."],"Property to show":["Eigenschap om te tonen"],"If you are not seeing certain products, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Presentation\" of the product.":["Als je bepaalde producten niet ziet, zorg dan dat in Recras \"Mag op een website gepresenteerd worden (via API)\" is aangevinkt op het tabblad \"Presentatie\" van het product."],"Could not find any products. Make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Presentation\" of the product.":["Kon geen producten vinden. Zorg dat in Recras \"Mag op een website gepresenteerd worden (via API)\" is aangevinkt op het tabblad \"Presentatie\" van het product."],"Voucher info":["Tegoedboninfo"],"Voucher template":["Tegoedbon-template"],"Voucher sales":["Tegoedbonverkoop"],"Error: no ID set":["Fout: geen ID ingesteld"],"Error: ID is not a number":["Fout: ID is geen getal"],"Error: %s":["Fout: %s"],"Error: Package %d does not exist or may not be presented on a website":["Fout: arrangement %d bestaat niet of mag niet op een website weergegeven worden"],"Error: programme is empty":["Fout: programma is leeg"],"Error: unknown option":["Fout: onbekende optie"],"From":["Van"],"Until":["Tot"],"Activity":["Activiteit"],"Day %d":["Dag %d"],"No duration specified":["Geen duur opgegeven"],"No location specified":["Geen locatie opgegeven"],"Error: book process does not exist":["Fout: boekproces bestaat niet"],"Contact form might be deleted":["Contactformulier is mogelijk verwijderd"],"Error: package is set, but contact form does not support packages":["Fout: arrangement is ingesteld, maar contactformulier ondersteunt geen arrangementen"],"Error: redirect is set, but is an invalid URL":["Fout: doorstuurpagina is ingesteld, maar is een ongeldige URL"],"Unknown":["Onbekend"],"Male":["Man"],"Female":["Vrouw"],"(required)":["(verplicht)"],"Clear choice":["Keuze wissen"],"No book process has been chosen yet. Click on this text to select a book process.":["Er is nog geen boekproces gekozen. Klik op deze tekst om een boekproces te selecteren."],"Book process %s cannot be found. It was either deleted from Recras, or made private.":["Boekproces %s kan niet worden gevonden. Het is verwijderd uit Recras of privé gemaakt."],"Book process \"%s\" is integrated here.":["Boekproces \"%s\" is hier geïntegreerd."],"The first widget is hidden for the booker, and has an initial value of \"%s\".":["De eerste widget is verborgen voor de boeker en heeft een initiële waarde van\"%s\"."],"It has an initial value for the first widget of \"%s\".":["Het heeft een initiële waarde voor de eerste widget van\"%s\"."],"Error: could not retrieve data from Recras. The error message received was: %s":["Fout: kon data niet ophalen uit Recras. De ontvangen foutmelding was: %s"],"Error: could not parse data from Recras. The error message was: %s":["Fout: kon data uit Recras niet verwerken. De foutmelding was: %s"],"Error: \"prefill_date\" is not a valid ISO 8601 string":["Fout: \"prefill_date\" is geen geldige ISO-8601-string"],"Error: \"prefill_date\" is a date in the past":["Fout: \"prefill_date\" is een datum in het verleden"],"Error: \"prefill_time\" is not a valid time string (e.g. 14:30)":["Fout: \"prefill_time\" is geen geldige tijd-string (bijv. 14:30)"],"Error: \"product_amounts\" is invalid":["Fout: \"product_amounts\" is ongeldig"],"Settings":["Instellingen"],"Cache":["Cache"],"Documentation":["Documentatie"],"Shortcodes":["Shortcodes"],"Error: you have not set your Recras domain yet":["Fout: je hebt je Recras-domein nog niet ingesteld"],"Error: your Recras domain has not been set yet, but you do not have the permission to set this. Please ask your site administrator to do this for you.":["Fout: je Recras-domein is nog niet ingesteld, maar je hebt niet de rechten om dit zelf in te stellen. Vraag aan je websitebeheerder om dit voor je te doen."],"Could not connect to your Recras":["Kon geen verbinding maken met je Recras"],"Package availability":["Arrangement-beschikbaarheid"],"At least one choice is required":["Ten minste één keuze is vereist"],"Loading...":["Laden..."],"Your message was sent successfully":["Uw bericht is succesvol verzonden"],"There was an error sending your message":["Er was een probleem met het verzenden van uw bericht"],"Previous month":["Vorige maand"],"Next month":["Volgende maand"],"January":["Januari"],"February":["Februari"],"March":["Maart"],"April":["April"],"May":["Mei"],"June":["Juni"],"July":["Juli"],"August":["Augustus"],"September":["September"],"October":["Oktober"],"November":["November"],"December":["December"],"Sunday":["Zondag"],"Monday":["Maandag"],"Tuesday":["Dinsdag"],"Wednesday":["Woensdag"],"Thursday":["Donderdag"],"Friday":["Vrijdag"],"Saturday":["Zaterdag"],"Sun":["Zo"],"Mon":["Ma"],"Tue":["Di"],"Wed":["Wo"],"Thu":["Do"],"Fri":["Vr"],"Sat":["Za"],"Error: product does not exist":["Fout: product bestaat niet"],"This option is <strong>not needed when using book processes</strong>. GA is integrated automatically for them.":["Deze optie is <strong>niet nodig bij het gebruik van boekprocessen</strong>. GA wordt daar automatisch geïntegreerd."],"Use this setting if you want to be able to style the date picker in contact forms.":["Gebruik deze instelling als je de datumselectie in contactformulieren wilt kunnen opmaken."],"On some websites, the date picker in a book process has a tiny font. Enable this to fix this.":["Op sommige websites heeft de datumselectie in een boekproces een klein lettertype. Zet deze optie aan om dit op te lossen."],"Used in prices, such as 100,00.":["Gebruikt in prijzen, zoals 100,00."],"Instance not found!":["Recras-domein niet gevonden!"],"Error fetching instance!":["Fout bij het ophalen van het Recras-domein!"],"You do not have sufficient permissions to access this page.":["Je hebt niet genoeg rechten om deze pagina te bekijken."],"No theme":["Geen thema"],"Basic theme":["Basisthema"],"BP Green":["BP Groen"],"Reasonably Red":["Redelijk Rood"],"Recras Blue":["Recras Blauw"],"Recras settings":["Recras-instellingen"],"Recras domain":["Recras-domein"],"Currency symbol":["Valutasymbool"],"Decimal separator":["Decimaalscheiding"],"Use calendar widget for contact forms":["Kalender-widget gebruiken voor contactformulieren"],"Fix book process datepicker styling":["Styling boekproces-datumselectie oplossen"],"Theme for Recras integrations":["Thema voor Recras-integraties"],"Enable Google Analytics integration? (deprecated)":["Google Analytics-integratie inschakelen? (verouderd)"],"For more information on these options, please see the %s page.":["Bekijk voor meer informatie over deze instellingen de %s-pagina."],"Error: template does not exist":["Fout: template bestaat niet"],"The cache was cleared.":["De cache is gewist."],"The selected cache could not be cleared. This could be an error, or there could be nothing to clear.":["De geselecteerde cache kon niet geleegd worden. Dit kan een fout zijn, of de cache is al leeg."],"Clear Recras cache":["Leeg Recras-cache"],"Data coming from your Recras (contact forms, packages, products, voucher templates) is cached for up to 24 hours. If you make important changes (i.e. a price increase) it is recommended you clear the Recras cache.":["Data die uit Recras komt (contactformulieren, arrangementen, producten, tegoedbontemplates) wordt tot 24 uur bewaard. Als je belangrijke wijzigingen maakt (bijv. een prijsverhoging) dan is het aan te raden om de Recras-cache te wissen."],"Packages":["Arrangementen"],"Book processes":["Boekprocessen"],"Contact forms":["Contactformulieren"],"Products":["Producten"],"Save":["Opslaan"]}}}1 {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"nl_NL"},"yyyy-mm-dd":["jjjj-mm-dd"],"hh:mm":["uu:mm"],"Availability calendar":["Beschikbaarheidskalender"],"No suitable packages found":["Geen geschikte arrangementen gevonden"],"Package":["Arrangement"],"Auto resize iframe":["iframe automatisch schalen"],"Book process":["Boekproces"],"Enter package ID. Leave empty to not prefill.":["Vul arrangements-ID in. Laat leeg om niet vooraf in te vullen."],"Enter date in YYYY-MM-DD format. Leave empty to not prefill.":["Vul datum in formaat JJJJ-MM-DD in. Laat leeg om niet vooraf in te vullen."],"Prefill value for first widget? (optional)":["Waarde voor eerste widget vooraf invullen? (optioneel)"],"Hide first widget?":["Eerste widget verbergen?"],"Contact form (deprecated)":["Contactformulier (verouderd)"],"Send":["Versturen"],"Loading data...":["Data aan het laden..."],"Contact form":["Contactformulier"],"Show title?":["Toon titel?"],"Show labels?":["Toon labels?"],"Show placeholders?":["Toon placeholders?"],"Package (optional)":["Arrangement (optioneel)"],"Definition list":["Definitielijst"],"Ordered list":["Geordende lijst"],"Table":["Tabel"],"HTML element":["HTML-element"],"Drop-down list (Select)":["Dropdownlijst (select)"],"Radio buttons":["Keuzerondjes (radioknoppen)"],"Element for single choices":["Element voor \"enkele keuze\""],"Submit button text":["Tekst op knop Versturen"],"i.e. https://www.recras.com/thanks/":["bijv. https://www.recras.nl/bedankt/"],"Thank-you page (optional, leave empty to not redirect)":["Bedanktpagina (optioneel, laat leeg om niet door te sturen)"],"Some packages may not be available for all contact forms. You can change this by editing your contact forms in Recras.":["Sommige arrangementen zijn mogelijk niet beschikbaar voor alle contactformulieren. Je kunt dit wijzigen door je contactformulieren in Recras te bewerken."],"If you are still missing packages, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Extra settings\" of the package.":["Als je nog steeds arrangementen mist, zorg dan dat in Recras \"Mag op een website gepresenteerd worden (via API)\" is aangevinkt op het tabblad \"Extra instellingen\" van het arrangement."],"Recras → Settings menu":["menu Recras → Instellingen"],"Please enter your Recras domain in the %s before adding widgets.":["Vul je Recras-domein in in het %s voordat je widgets toevoegt."],"Pages":["Pagina's"],"Posts":["Berichten"],"Online booking of packages (deprecated)":["Online boeking van arrangementen (verouderd)"],"Seamless (recommended)":["Naadloos (aanbevolen)"],"iframe (uses setting in your Recras)":["iframe (gebruikt instelling uit jouw Recras)"],"Integration method":["Integratiemethode"],"Preview times in programme":["Toon voorbeeldtijden in programma"],"Show discount fields":["Toon korting-velden"],"Pre-fill amounts (requires exactly 1 package selected)":["Aantallen vooraf invullen (vereist exact 1 arrangement geselecteerd)"],"Pre-fill time (requires exactly 1 package selected)":["Tijd vooraf invullen (vereist exact 1 geselecteerd arrangement)"],"e.g. 14:00":["bijv. 14:00"],"Pre-filled package":["Vooraf ingevuld arrangement"],"Pre-filled package (optional)":["Vooraf ingevuld arrangement (optioneel)"],"Seamless integration uses the styling of your website. At Recras → Settings in the menu on the left, you can set an optional theme.":["Naadloze integratie gebruikt de styling van je website. Via Recras → Instellingen in het menu aan de linkerkant kun een optioneel thema instellen."],"iframe integration uses the styling set in your Recras. You can change the styling in Recras via Settings → Other settings → Custom CSS.":["iframe-integratie gebruikt de styling die is ingesteld in jouw Recras. Je kunt de styling in Recras aanpassen via Beheer → Overige instellingen → Eigen CSS."],"Package selection":["Arrangementselectie"],"If you are not seeing certain packages, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Extra settings\" of the package.":["Als je bepaalde arrangementen niet ziet, zorg dan dat in Recras \"Mag op een website gepresenteerd worden (via API)\" is aangevinkt op het tabblad \"Extra instellingen\" van het arrangement."],"If you select a single package, it will be pre-filled and will skip the package selection step.":["Als je een enkel arrangement selecteert wordt deze vooraf ingevuld en wordt de arrangement-selectie-stap overgeslagen."],"Pre-fill date (requires exactly 1 package selected)":["Datum vooraf invullen (vereist exact 1 geselecteerd arrangement)"],"Description":["Beschrijving"],"Duration":["Duur"],"Image tag":["Afbeelding-tag"],"Minimum number of persons":["Minimum aantal personen"],"Price p.p. excl. VAT":["Prijs p.p. excl. btw"],"Price p.p. incl. VAT":["Prijs p.p. incl. btw"],"Programme":["Programma"],"Starting location":["Startlocatie"],"Title":["Titel"],"Total price excl. VAT":["Totaalprijs excl. btw"],"Total price incl. VAT":["Totaalprijs incl. btw"],"Relative image URL":["Relatieve afbeelding-URL"],"Property to show":["Eigenschap om te tonen"],"Start time":["Starttijd"],"Show header?":["Toon header?"],"Product":["Product"],"Description (long)":["Beschrijving (lang)"],"Description (short)":["Beschrijving (kort)"],"Image URL":["Afbeelding-URL"],"Minimum amount":["Minimumaantal"],"Price (incl. VAT)":["Prijs (incl. btw)"],"If you are not seeing certain products, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Presentation\" of the product.":["Als je bepaalde producten niet ziet, zorg dan dat in Recras \"Mag op een website gepresenteerd worden (via API)\" is aangevinkt op het tabblad \"Presentatie\" van het product."],"Could not find any products. Make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Presentation\" of the product.":["Kon geen producten vinden. Zorg dat in Recras \"Mag op een website gepresenteerd worden (via API)\" is aangevinkt op het tabblad \"Presentatie\" van het product."],"Voucher info":["Tegoedboninfo"],"Voucher template":["Tegoedbon-template"],"Name":["Naam"],"Price":["Prijs"],"Validity":["Geldigheid"],"Voucher sales (deprecated)":["Tegoedbonverkoop (verouderd)"],"Show quantity input (will be set to 1 if not shown)":["Toon aantal-invoer (wordt op 1 gezet indien verborgen)"],"Error: no ID set":["Fout: geen ID ingesteld"],"Error: ID is not a number":["Fout: ID is geen getal"],"Error: %s":["Fout: %s"],"Error: Package %d does not exist or may not be presented on a website":["Fout: arrangement %d bestaat niet of mag niet op een website weergegeven worden"],"Error: programme is empty":["Fout: programma is leeg"],"Error: unknown option":["Fout: onbekende optie"],"From":["Van"],"Until":["Tot"],"Activity":["Activiteit"],"Day %d":["Dag %d"],"No duration specified":["Geen duur opgegeven"],"No location specified":["Geen locatie opgegeven"],"Error: book process does not exist":["Fout: boekproces bestaat niet"],"Contact form might be deleted":["Contactformulier is mogelijk verwijderd"],"Error: package is set, but contact form does not support packages":["Fout: arrangement is ingesteld, maar contactformulier ondersteunt geen arrangementen"],"Error: redirect is set, but is an invalid URL":["Fout: doorstuurpagina is ingesteld, maar is een ongeldige URL"],"Unknown":["Onbekend"],"Male":["Man"],"Female":["Vrouw"],"(required)":["(verplicht)"],"Clear choice":["Keuze wissen"],"No book process has been chosen yet. Click on this text to select a book process.":["Er is nog geen boekproces gekozen. Klik op deze tekst om een boekproces te selecteren."],"Book process %s cannot be found. It was either deleted from Recras, or made private.":["Boekproces %s kan niet worden gevonden. Het is verwijderd uit Recras of privé gemaakt."],"Book process \"%s\" is integrated here.":["Boekproces \"%s\" is hier geïntegreerd."],"The first widget is hidden for the booker, and has an initial value of \"%s\".":["De eerste widget is verborgen voor de boeker en heeft een initiële waarde van\"%s\"."],"It has an initial value for the first widget of \"%s\".":["Het heeft een initiële waarde voor de eerste widget van\"%s\"."],"Error: could not retrieve data from Recras. The error message received was: %s":["Fout: kon data niet ophalen uit Recras. De ontvangen foutmelding was: %s"],"Error: could not parse data from Recras. The error message was: %s":["Fout: kon data uit Recras niet verwerken. De foutmelding was: %s"],"Error: \"prefill_date\" is not a valid ISO 8601 string":["Fout: \"prefill_date\" is geen geldige ISO-8601-string"],"Error: \"prefill_date\" is a date in the past":["Fout: \"prefill_date\" is een datum in het verleden"],"Error: \"prefill_time\" is not a valid time string (e.g. 14:30)":["Fout: \"prefill_time\" is geen geldige tijd-string (bijv. 14:30)"],"Error: \"product_amounts\" is invalid":["Fout: \"product_amounts\" is ongeldig"],"Settings":["Instellingen"],"Cache":["Cache"],"Documentation":["Documentatie"],"Shortcodes":["Shortcodes"],"Online booking of packages":["Online boeking van arrangementen"],"Voucher sales":["Tegoedbonverkoop"],"Error: you have not set your Recras domain yet":["Fout: je hebt je Recras-domein nog niet ingesteld"],"Error: your Recras domain has not been set yet, but you do not have the permission to set this. Please ask your site administrator to do this for you.":["Fout: je Recras-domein is nog niet ingesteld, maar je hebt niet de rechten om dit zelf in te stellen. Vraag aan je websitebeheerder om dit voor je te doen."],"Could not connect to your Recras":["Kon geen verbinding maken met je Recras"],"Package availability":["Arrangement-beschikbaarheid"],"At least one choice is required":["Ten minste één keuze is vereist"],"Loading...":["Laden..."],"Your message was sent successfully":["Uw bericht is succesvol verzonden"],"There was an error sending your message":["Er was een probleem met het verzenden van uw bericht"],"Previous month":["Vorige maand"],"Next month":["Volgende maand"],"January":["Januari"],"February":["Februari"],"March":["Maart"],"April":["April"],"May":["Mei"],"June":["Juni"],"July":["Juli"],"August":["Augustus"],"September":["September"],"October":["Oktober"],"November":["November"],"December":["December"],"Sunday":["Zondag"],"Monday":["Maandag"],"Tuesday":["Dinsdag"],"Wednesday":["Woensdag"],"Thursday":["Donderdag"],"Friday":["Vrijdag"],"Saturday":["Zaterdag"],"Sun":["Zo"],"Mon":["Ma"],"Tue":["Di"],"Wed":["Wo"],"Thu":["Do"],"Fri":["Vr"],"Sat":["Za"],"Error: product does not exist":["Fout: product bestaat niet"],"This option is <strong>not needed when using book processes</strong>. GA is integrated automatically for them.":["Deze optie is <strong>niet nodig bij het gebruik van boekprocessen</strong>. GA wordt daar automatisch geïntegreerd."],"Use this setting if you want to be able to style the date picker in contact forms.":["Gebruik deze instelling als je de datumselectie in contactformulieren wilt kunnen opmaken."],"On some websites, the date picker in a book process has a tiny font. Enable this to fix this.":["Op sommige websites heeft de datumselectie in een boekproces een klein lettertype. Zet deze optie aan om dit op te lossen."],"Used in prices, such as 100,00.":["Gebruikt in prijzen, zoals 100,00."],"Instance not found!":["Recras-domein niet gevonden!"],"Error fetching instance!":["Fout bij het ophalen van het Recras-domein!"],"You do not have sufficient permissions to access this page.":["Je hebt niet genoeg rechten om deze pagina te bekijken."],"No theme":["Geen thema"],"Basic theme":["Basisthema"],"BP Green":["BP Groen"],"Reasonably Red":["Redelijk Rood"],"Recras Blue":["Recras Blauw"],"Recras settings":["Recras-instellingen"],"Recras domain":["Recras-domein"],"Currency symbol":["Valutasymbool"],"Decimal separator":["Decimaalscheiding"],"Use calendar widget for contact forms (deprecated)":["Kalender-widget gebruiken voor contactformulieren (verouderd)"],"Fix book process datepicker styling":["Styling boekproces-datumselectie oplossen"],"Theme for Recras integrations":["Thema voor Recras-integraties"],"Enable Google Analytics integration? (deprecated)":["Google Analytics-integratie inschakelen? (verouderd)"],"For more information on these options, please see the %s page.":["Bekijk voor meer informatie over deze instellingen de %s-pagina."],"Error: template does not exist":["Fout: template bestaat niet"],"Save":["Opslaan"]}}} -
recras/tags/6.5.3/lang/recras-nl_NL.po
r3434941 r3484591 2 2 msgstr "" 3 3 "Project-Id-Version: Recras\n" 4 "POT-Creation-Date: 2026-0 1-06 14:52+0100\n"5 "PO-Revision-Date: 2026-0 1-06 14:52+0100\n"4 "POT-Creation-Date: 2026-03-17 09:26+0100\n" 5 "PO-Revision-Date: 2026-03-17 09:26+0100\n" 6 6 "Last-Translator: Sander de Jong <sander@recras.nl>\n" 7 7 "Language-Team: Recras\n" … … 20 20 "X-Poedit-SearchPathExcluded-2: node_modules\n" 21 21 22 #: editor/form-booking.php:73 src/ContactForm.php:2 68 src/ContactForm.php:31022 #: editor/form-booking.php:73 src/ContactForm.php:273 src/ContactForm.php:315 23 23 msgid "yyyy-mm-dd" 24 24 msgstr "jjjj-mm-dd" 25 25 26 #: editor/form-booking.php:82 js/gutenberg-package.js:1 2727 #: src/ContactForm.php:2 8526 #: editor/form-booking.php:82 js/gutenberg-package.js:131 27 #: src/ContactForm.php:290 28 28 msgid "hh:mm" 29 29 msgstr "uu:mm" 30 30 31 #: js/gutenberg-availability.js:2 js/gutenberg-availability.js:3 531 #: js/gutenberg-availability.js:2 js/gutenberg-availability.js:36 32 32 msgid "Availability calendar" 33 33 msgstr "Beschikbaarheidskalender" 34 34 35 #: js/gutenberg-availability.js:3 835 #: js/gutenberg-availability.js:39 36 36 msgid "No suitable packages found" 37 37 msgstr "Geen geschikte arrangementen gevonden" 38 38 39 #: js/gutenberg-availability.js:5 0js/gutenberg-package.js:240 #: js/gutenberg-package.js:5 0 js/gutenberg-package.js:142src/Plugin.php:11441 #: src/Plugin.php:2 1639 #: js/gutenberg-availability.js:51 js/gutenberg-package.js:2 40 #: js/gutenberg-package.js:54 js/gutenberg-package.js:146 src/Plugin.php:114 41 #: src/Plugin.php:228 42 42 msgid "Package" 43 43 msgstr "Arrangement" 44 44 45 #: js/gutenberg-availability.js: 59 js/gutenberg-onlinebooking.js:29545 #: js/gutenberg-availability.js:60 js/gutenberg-onlinebooking.js:296 46 46 msgid "Auto resize iframe" 47 47 msgstr "iframe automatisch schalen" 48 48 49 #: js/gutenberg-bookprocess.js:2 js/gutenberg-bookprocess.js:4 550 #: js/gutenberg-bookprocess.js: 59src/Elementor/Bookprocess.php:1749 #: js/gutenberg-bookprocess.js:2 js/gutenberg-bookprocess.js:49 50 #: js/gutenberg-bookprocess.js:65 src/Elementor/Bookprocess.php:17 51 51 #: src/Elementor/Bookprocess.php:35 src/Elementor/Bookprocess.php:45 52 #: src/Plugin.php:115 src/Plugin.php:2 1552 #: src/Plugin.php:115 src/Plugin.php:227 53 53 msgid "Book process" 54 54 msgstr "Boekproces" 55 55 56 #: js/gutenberg-bookprocess.js: 7656 #: js/gutenberg-bookprocess.js:82 57 57 msgid "Enter package ID. Leave empty to not prefill." 58 58 msgstr "Vul arrangements-ID in. Laat leeg om niet vooraf in te vullen." 59 59 60 #: js/gutenberg-bookprocess.js: 7760 #: js/gutenberg-bookprocess.js:83 61 61 msgid "Enter date in YYYY-MM-DD format. Leave empty to not prefill." 62 62 msgstr "" 63 63 "Vul datum in formaat JJJJ-MM-DD in. Laat leeg om niet vooraf in te vullen." 64 64 65 #: js/gutenberg-bookprocess.js: 87src/Elementor/Bookprocess.php:6165 #: js/gutenberg-bookprocess.js:93 src/Elementor/Bookprocess.php:61 66 66 msgid "Prefill value for first widget? (optional)" 67 67 msgstr "Waarde voor eerste widget vooraf invullen? (optioneel)" 68 68 69 #: js/gutenberg-bookprocess.js: 99src/Elementor/Bookprocess.php:7469 #: js/gutenberg-bookprocess.js:105 src/Elementor/Bookprocess.php:74 70 70 msgid "Hide first widget?" 71 71 msgstr "Eerste widget verbergen?" 72 72 73 #: js/gutenberg-contactform.js:2 js/gutenberg-contactform.js:76 74 #: js/gutenberg-contactform.js:193 src/Plugin.php:116 src/Plugin.php:212 73 #: js/gutenberg-contactform.js:2 js/gutenberg-contactform.js:194 74 #: src/Plugin.php:224 75 msgid "Contact form (deprecated)" 76 msgstr "Contactformulier (verouderd)" 77 78 #: js/gutenberg-contactform.js:15 js/gutenberg-contactform.js:28 79 #: src/ContactForm.php:122 80 msgid "Send" 81 msgstr "Versturen" 82 83 #: js/gutenberg-contactform.js:61 js/gutenberg-onlinebooking.js:63 84 #: js/gutenberg-voucher-sales.js:46 85 msgid "Loading data..." 86 msgstr "Data aan het laden..." 87 88 #: js/gutenberg-contactform.js:77 src/Plugin.php:116 75 89 msgid "Contact form" 76 90 msgstr "Contactformulier" 77 91 78 #: js/gutenberg-contactform.js:14 js/gutenberg-contactform.js:27 79 #: src/ContactForm.php:117 80 msgid "Send" 81 msgstr "Versturen" 82 83 #: js/gutenberg-contactform.js:60 js/gutenberg-onlinebooking.js:62 84 #: js/gutenberg-voucher-sales.js:41 85 msgid "Loading data..." 86 msgstr "Data aan het laden..." 87 88 #: js/gutenberg-contactform.js:98 92 #: js/gutenberg-contactform.js:99 89 93 msgid "Show title?" 90 94 msgstr "Toon titel?" 91 95 92 #: js/gutenberg-contactform.js:10 796 #: js/gutenberg-contactform.js:108 93 97 msgid "Show labels?" 94 98 msgstr "Toon labels?" 95 99 96 #: js/gutenberg-contactform.js:11 6100 #: js/gutenberg-contactform.js:117 97 101 msgid "Show placeholders?" 98 102 msgstr "Toon placeholders?" 99 103 100 #: js/gutenberg-contactform.js:12 6104 #: js/gutenberg-contactform.js:127 101 105 msgid "Package (optional)" 102 106 msgstr "Arrangement (optioneel)" 103 107 104 #: js/gutenberg-contactform.js:13 8108 #: js/gutenberg-contactform.js:139 105 109 msgid "Definition list" 106 110 msgstr "Definitielijst" 107 111 108 #: js/gutenberg-contactform.js:14 2112 #: js/gutenberg-contactform.js:143 109 113 msgid "Ordered list" 110 114 msgstr "Geordende lijst" 111 115 112 #: js/gutenberg-contactform.js:14 6116 #: js/gutenberg-contactform.js:147 113 117 msgid "Table" 114 118 msgstr "Tabel" 115 119 116 #: js/gutenberg-contactform.js:1 49120 #: js/gutenberg-contactform.js:150 117 121 msgid "HTML element" 118 122 msgstr "HTML-element" 119 123 120 #: js/gutenberg-contactform.js:16 1124 #: js/gutenberg-contactform.js:162 121 125 msgid "Drop-down list (Select)" 122 126 msgstr "Dropdownlijst (select)" 123 127 124 #: js/gutenberg-contactform.js:16 5128 #: js/gutenberg-contactform.js:166 125 129 msgid "Radio buttons" 126 130 msgstr "Keuzerondjes (radioknoppen)" 127 131 128 #: js/gutenberg-contactform.js:16 8132 #: js/gutenberg-contactform.js:169 129 133 msgid "Element for single choices" 130 134 msgstr "Element voor \"enkele keuze\"" 131 135 132 #: js/gutenberg-contactform.js:17 7 js/gutenberg-contactform.js:178136 #: js/gutenberg-contactform.js:178 js/gutenberg-contactform.js:179 133 137 msgid "Submit button text" 134 138 msgstr "Tekst op knop Versturen" 135 139 136 #: js/gutenberg-contactform.js:18 8 js/gutenberg-onlinebooking.js:232137 #: js/gutenberg-voucher-sales.js:7 1140 #: js/gutenberg-contactform.js:189 js/gutenberg-onlinebooking.js:233 141 #: js/gutenberg-voucher-sales.js:76 138 142 msgid "i.e. https://www.recras.com/thanks/" 139 143 msgstr "bijv. https://www.recras.nl/bedankt/" 140 144 141 #: js/gutenberg-contactform.js:1 89 js/gutenberg-onlinebooking.js:233142 #: js/gutenberg-voucher-sales.js:7 2145 #: js/gutenberg-contactform.js:190 js/gutenberg-onlinebooking.js:234 146 #: js/gutenberg-voucher-sales.js:77 143 147 msgid "Thank-you page (optional, leave empty to not redirect)" 144 148 msgstr "Bedanktpagina (optioneel, laat leeg om niet door te sturen)" 145 149 146 #: js/gutenberg-contactform.js:20 2150 #: js/gutenberg-contactform.js:203 147 151 msgid "" 148 152 "Some packages may not be available for all contact forms. You can change " … … 153 157 "Recras te bewerken." 154 158 155 #: js/gutenberg-contactform.js:20 3159 #: js/gutenberg-contactform.js:204 156 160 msgid "" 157 161 "If you are still missing packages, make sure in Recras \"May be presented on " … … 163 167 "\"Extra instellingen\" van het arrangement." 164 168 165 #: js/gutenberg-global.js:46 src/Settings.php:2 11169 #: js/gutenberg-global.js:46 src/Settings.php:223 166 170 msgid "Recras → Settings menu" 167 171 msgstr "menu Recras → Instellingen" 168 172 169 #: js/gutenberg-global.js:48 src/Settings.php:2 10173 #: js/gutenberg-global.js:48 src/Settings.php:222 170 174 #, javascript-format, php-format 171 175 msgid "Please enter your Recras domain in the %s before adding widgets." 172 176 msgstr "Vul je Recras-domein in in het %s voordat je widgets toevoegt." 173 177 174 #: js/gutenberg-global.js:3 11178 #: js/gutenberg-global.js:323 175 179 msgid "Pages" 176 180 msgstr "Pagina's" 177 181 178 #: js/gutenberg-global.js:3 35182 #: js/gutenberg-global.js:347 179 183 msgid "Posts" 180 184 msgstr "Berichten" 181 185 182 #: js/gutenberg-onlinebooking.js:2 js/gutenberg-onlinebooking.js: 299183 #: src/Plugin.php: 117 src/Plugin.php:214184 msgid "Online booking of packages "185 msgstr "Online boeking van arrangementen "186 187 #: js/gutenberg-onlinebooking.js:9 7186 #: js/gutenberg-onlinebooking.js:2 js/gutenberg-onlinebooking.js:300 187 #: src/Plugin.php:226 188 msgid "Online booking of packages (deprecated)" 189 msgstr "Online boeking van arrangementen (verouderd)" 190 191 #: js/gutenberg-onlinebooking.js:98 188 192 msgid "Seamless (recommended)" 189 193 msgstr "Naadloos (aanbevolen)" 190 194 191 #: js/gutenberg-onlinebooking.js:10 1195 #: js/gutenberg-onlinebooking.js:102 192 196 msgid "iframe (uses setting in your Recras)" 193 197 msgstr "iframe (gebruikt instelling uit jouw Recras)" 194 198 195 #: js/gutenberg-onlinebooking.js:12 0199 #: js/gutenberg-onlinebooking.js:121 196 200 msgid "Integration method" 197 201 msgstr "Integratiemethode" 198 202 199 #: js/gutenberg-onlinebooking.js:16 8203 #: js/gutenberg-onlinebooking.js:169 200 204 msgid "Preview times in programme" 201 205 msgstr "Toon voorbeeldtijden in programma" 202 206 203 #: js/gutenberg-onlinebooking.js:17 7207 #: js/gutenberg-onlinebooking.js:178 204 208 msgid "Show discount fields" 205 209 msgstr "Toon korting-velden" 206 210 207 #: js/gutenberg-onlinebooking.js:19 0211 #: js/gutenberg-onlinebooking.js:191 208 212 msgid "Pre-fill amounts (requires exactly 1 package selected)" 209 213 msgstr "Aantallen vooraf invullen (vereist exact 1 arrangement geselecteerd)" 210 214 211 #: js/gutenberg-onlinebooking.js:22 1215 #: js/gutenberg-onlinebooking.js:222 212 216 msgid "Pre-fill time (requires exactly 1 package selected)" 213 217 msgstr "Tijd vooraf invullen (vereist exact 1 geselecteerd arrangement)" 214 218 215 #: js/gutenberg-onlinebooking.js:22 2219 #: js/gutenberg-onlinebooking.js:223 216 220 msgid "e.g. 14:00" 217 221 msgstr "bijv. 14:00" 218 222 219 #: js/gutenberg-onlinebooking.js:28 5223 #: js/gutenberg-onlinebooking.js:286 220 224 msgid "Pre-filled package" 221 225 msgstr "Vooraf ingevuld arrangement" 222 226 223 #: js/gutenberg-onlinebooking.js:28 6227 #: js/gutenberg-onlinebooking.js:287 224 228 msgid "Pre-filled package (optional)" 225 229 msgstr "Vooraf ingevuld arrangement (optioneel)" 226 230 227 #: js/gutenberg-onlinebooking.js:30 2231 #: js/gutenberg-onlinebooking.js:303 228 232 msgid "" 229 233 "Seamless integration uses the styling of your website. At Recras → Settings " … … 233 237 "Instellingen in het menu aan de linkerkant kun een optioneel thema instellen." 234 238 235 #: js/gutenberg-onlinebooking.js:30 3239 #: js/gutenberg-onlinebooking.js:304 236 240 msgid "" 237 241 "iframe integration uses the styling set in your Recras. You can change the " … … 242 246 "Eigen CSS." 243 247 244 #: js/gutenberg-onlinebooking.js:30 6248 #: js/gutenberg-onlinebooking.js:307 245 249 msgid "Package selection" 246 250 msgstr "Arrangementselectie" 247 251 248 #: js/gutenberg-onlinebooking.js:31 1 js/gutenberg-onlinebooking.js:331249 #: js/gutenberg-package.js:14 5252 #: js/gutenberg-onlinebooking.js:312 js/gutenberg-onlinebooking.js:332 253 #: js/gutenberg-package.js:149 250 254 msgid "" 251 255 "If you are not seeing certain packages, make sure in Recras \"May be " … … 257 261 "\"Extra instellingen\" van het arrangement." 258 262 259 #: js/gutenberg-onlinebooking.js:31 2263 #: js/gutenberg-onlinebooking.js:313 260 264 msgid "" 261 265 "If you select a single package, it will be pre-filled and will skip the " … … 265 269 "de arrangement-selectie-stap overgeslagen." 266 270 267 #: js/gutenberg-onlinebooking.js:32 3271 #: js/gutenberg-onlinebooking.js:324 268 272 msgid "Pre-fill date (requires exactly 1 package selected)" 269 273 msgstr "Datum vooraf invullen (vereist exact 1 geselecteerd arrangement)" 270 274 271 #: js/gutenberg-package.js: 67275 #: js/gutenberg-package.js:71 272 276 msgid "Description" 273 277 msgstr "Beschrijving" 274 278 275 #: js/gutenberg-package.js:7 1 js/gutenberg-product.js:76279 #: js/gutenberg-package.js:75 js/gutenberg-product.js:79 276 280 msgid "Duration" 277 281 msgstr "Duur" 278 282 279 #: js/gutenberg-package.js:7 5 js/gutenberg-product.js:80283 #: js/gutenberg-package.js:79 js/gutenberg-product.js:83 280 284 msgid "Image tag" 281 285 msgstr "Afbeelding-tag" 282 286 283 #: js/gutenberg-package.js: 79287 #: js/gutenberg-package.js:83 284 288 msgid "Minimum number of persons" 285 289 msgstr "Minimum aantal personen" 286 290 287 #: js/gutenberg-package.js:8 3291 #: js/gutenberg-package.js:87 288 292 msgid "Price p.p. excl. VAT" 289 293 msgstr "Prijs p.p. excl. btw" 290 294 291 #: js/gutenberg-package.js: 87295 #: js/gutenberg-package.js:91 292 296 msgid "Price p.p. incl. VAT" 293 297 msgstr "Prijs p.p. incl. btw" 294 298 295 #: js/gutenberg-package.js:9 1299 #: js/gutenberg-package.js:95 296 300 msgid "Programme" 297 301 msgstr "Programma" 298 302 299 #: js/gutenberg-package.js:9 5303 #: js/gutenberg-package.js:99 300 304 msgid "Starting location" 301 305 msgstr "Startlocatie" 302 306 303 #: js/gutenberg-package.js: 99 js/gutenberg-product.js:96307 #: js/gutenberg-package.js:103 js/gutenberg-product.js:99 304 308 msgid "Title" 305 309 msgstr "Titel" 306 310 307 #: js/gutenberg-package.js:10 3311 #: js/gutenberg-package.js:107 308 312 msgid "Total price excl. VAT" 309 313 msgstr "Totaalprijs excl. btw" 310 314 311 #: js/gutenberg-package.js:1 07315 #: js/gutenberg-package.js:111 312 316 msgid "Total price incl. VAT" 313 317 msgstr "Totaalprijs incl. btw" 314 318 315 #: js/gutenberg-package.js:11 1319 #: js/gutenberg-package.js:115 316 320 msgid "Relative image URL" 317 321 msgstr "Relatieve afbeelding-URL" 318 322 319 #: js/gutenberg-package.js:11 4 js/gutenberg-product.js:99320 #: js/gutenberg-voucher-info.js:7 3323 #: js/gutenberg-package.js:118 js/gutenberg-product.js:102 324 #: js/gutenberg-voucher-info.js:78 321 325 msgid "Property to show" 322 326 msgstr "Eigenschap om te tonen" 323 327 324 #: js/gutenberg-package.js:1 28328 #: js/gutenberg-package.js:132 325 329 msgid "Start time" 326 330 msgstr "Starttijd" 327 331 328 #: js/gutenberg-package.js:1 38332 #: js/gutenberg-package.js:142 329 333 msgid "Show header?" 330 334 msgstr "Toon header?" 331 335 332 #: js/gutenberg-product.js:2 js/gutenberg-product.js: 48333 #: js/gutenberg-product.js:10 2 src/Plugin.php:118 src/Plugin.php:218336 #: js/gutenberg-product.js:2 js/gutenberg-product.js:51 337 #: js/gutenberg-product.js:105 src/Plugin.php:118 src/Plugin.php:230 334 338 msgid "Product" 335 339 msgstr "Product" 336 340 337 #: js/gutenberg-product.js: 68341 #: js/gutenberg-product.js:71 338 342 msgid "Description (long)" 339 343 msgstr "Beschrijving (lang)" 340 344 341 #: js/gutenberg-product.js:7 2345 #: js/gutenberg-product.js:75 342 346 msgid "Description (short)" 343 347 msgstr "Beschrijving (kort)" 344 348 345 #: js/gutenberg-product.js:8 4349 #: js/gutenberg-product.js:87 346 350 msgid "Image URL" 347 351 msgstr "Afbeelding-URL" 348 352 349 #: js/gutenberg-product.js: 88353 #: js/gutenberg-product.js:91 350 354 msgid "Minimum amount" 351 355 msgstr "Minimumaantal" 352 356 353 #: js/gutenberg-product.js:9 2357 #: js/gutenberg-product.js:95 354 358 msgid "Price (incl. VAT)" 355 359 msgstr "Prijs (incl. btw)" 356 360 357 #: js/gutenberg-product.js:10 6361 #: js/gutenberg-product.js:109 358 362 msgid "" 359 363 "If you are not seeing certain products, make sure in Recras \"May be " … … 365 369 "\"Presentatie\" van het product." 366 370 367 #: js/gutenberg-product.js:1 09371 #: js/gutenberg-product.js:112 368 372 msgid "" 369 373 "Could not find any products. Make sure in Recras \"May be presented on a " … … 374 378 "\"Presentatie\" van het product." 375 379 376 #: js/gutenberg-voucher-info.js:2 js/gutenberg-voucher-info.js: 76377 #: src/Plugin.php:120 src/Plugin.php:2 21380 #: js/gutenberg-voucher-info.js:2 js/gutenberg-voucher-info.js:81 381 #: src/Plugin.php:120 src/Plugin.php:234 378 382 msgid "Voucher info" 379 383 msgstr "Tegoedboninfo" 380 384 381 #: js/gutenberg-voucher-info.js:4 4 js/gutenberg-voucher-sales.js:55385 #: js/gutenberg-voucher-info.js:49 js/gutenberg-voucher-sales.js:60 382 386 msgid "Voucher template" 383 387 msgstr "Tegoedbon-template" 384 388 385 #: js/gutenberg-voucher-info.js:6 2389 #: js/gutenberg-voucher-info.js:67 386 390 msgid "Name" 387 391 msgstr "Naam" 388 392 389 #: js/gutenberg-voucher-info.js: 66393 #: js/gutenberg-voucher-info.js:71 390 394 msgid "Price" 391 395 msgstr "Prijs" 392 396 393 #: js/gutenberg-voucher-info.js:7 0397 #: js/gutenberg-voucher-info.js:75 394 398 msgid "Validity" 395 399 msgstr "Geldigheid" 396 400 397 #: js/gutenberg-voucher-sales.js:2 js/gutenberg-voucher-sales.js: 85398 #: src/Plugin.php: 119 src/Plugin.php:222399 msgid "Voucher sales "400 msgstr "Tegoedbonverkoop "401 402 #: js/gutenberg-voucher-sales.js:8 2401 #: js/gutenberg-voucher-sales.js:2 js/gutenberg-voucher-sales.js:90 402 #: src/Plugin.php:235 403 msgid "Voucher sales (deprecated)" 404 msgstr "Tegoedbonverkoop (verouderd)" 405 406 #: js/gutenberg-voucher-sales.js:87 403 407 msgid "Show quantity input (will be set to 1 if not shown)" 404 408 msgstr "Toon aantal-invoer (wordt op 1 gezet indien verborgen)" 405 409 406 410 #: src/Arrangement.php:21 src/Availability.php:20 src/Bookprocess.php:87 407 #: src/ContactForm.php: 55src/Products.php:21 src/Vouchers.php:22411 #: src/ContactForm.php:60 src/Products.php:21 src/Vouchers.php:22 408 412 msgid "Error: no ID set" 409 413 msgstr "Fout: geen ID ingesteld" 410 414 411 415 #: src/Arrangement.php:24 src/Availability.php:23 src/Bookprocess.php:91 412 #: src/ContactForm.php: 58src/OnlineBooking.php:25 src/Products.php:24416 #: src/ContactForm.php:63 src/OnlineBooking.php:25 src/Products.php:24 413 417 #: src/Vouchers.php:25 src/Vouchers.php:78 414 418 msgid "Error: ID is not a number" … … 416 420 417 421 #: src/Arrangement.php:39 src/Arrangement.php:279 src/Bookprocess.php:98 418 #: src/ContactForm.php:7 1 src/ContactForm.php:76422 #: src/ContactForm.php:76 src/ContactForm.php:81 419 423 #, php-format 420 424 msgid "Error: %s" … … 465 469 msgstr "Fout: boekproces bestaat niet" 466 470 467 #: src/ContactForm.php: 76471 #: src/ContactForm.php:81 468 472 msgid "Contact form might be deleted" 469 473 msgstr "Contactformulier is mogelijk verwijderd" 470 474 471 #: src/ContactForm.php:11 3475 #: src/ContactForm.php:118 472 476 msgid "Error: package is set, but contact form does not support packages" 473 477 msgstr "" … … 475 479 "arrangementen" 476 480 477 #: src/ContactForm.php:1 25src/OnlineBooking.php:70 src/Vouchers.php:93481 #: src/ContactForm.php:130 src/OnlineBooking.php:70 src/Vouchers.php:93 478 482 msgid "Error: redirect is set, but is an invalid URL" 479 483 msgstr "Fout: doorstuurpagina is ingesteld, maar is een ongeldige URL" 480 484 481 #: src/ContactForm.php:3 76485 #: src/ContactForm.php:381 482 486 msgid "Unknown" 483 487 msgstr "Onbekend" 484 488 485 #: src/ContactForm.php:3 77489 #: src/ContactForm.php:382 486 490 msgid "Male" 487 491 msgstr "Man" 488 492 489 #: src/ContactForm.php:3 78493 #: src/ContactForm.php:383 490 494 msgid "Female" 491 495 msgstr "Vrouw" 492 496 493 #: src/ContactForm.php:5 14497 #: src/ContactForm.php:536 494 498 msgid "(required)" 495 499 msgstr "(verplicht)" 496 500 497 #: src/ContactForm.php:5 39501 #: src/ContactForm.php:561 498 502 msgid "Clear choice" 499 503 msgstr "Keuze wissen" … … 572 576 msgstr "Cache" 573 577 574 #: src/Plugin.php:99 src/Plugin.php:100 src/Settings.php:4 07578 #: src/Plugin.php:99 src/Plugin.php:100 src/Settings.php:419 575 579 msgid "Documentation" 576 580 msgstr "Documentatie" … … 580 584 msgstr "Shortcodes" 581 585 582 #: src/Plugin.php:195 586 #: src/Plugin.php:117 587 msgid "Online booking of packages" 588 msgstr "Online boeking van arrangementen" 589 590 #: src/Plugin.php:119 591 msgid "Voucher sales" 592 msgstr "Tegoedbonverkoop" 593 594 #: src/Plugin.php:207 583 595 msgid "Error: you have not set your Recras domain yet" 584 596 msgstr "Fout: je hebt je Recras-domein nog niet ingesteld" 585 597 586 #: src/Plugin.php: 197598 #: src/Plugin.php:209 587 599 msgid "" 588 600 "Error: your Recras domain has not been set yet, but you do not have the " … … 594 606 "doen." 595 607 596 #: src/Plugin.php:2 13608 #: src/Plugin.php:225 597 609 msgid "Could not connect to your Recras" 598 610 msgstr "Kon geen verbinding maken met je Recras" 599 611 600 #: src/Plugin.php:2 17612 #: src/Plugin.php:229 601 613 msgid "Package availability" 602 614 msgstr "Arrangement-beschikbaarheid" 603 615 604 #: src/Plugin.php:2 45616 #: src/Plugin.php:261 605 617 msgid "At least one choice is required" 606 618 msgstr "Ten minste één keuze is vereist" 607 619 608 #: src/Plugin.php:2 46620 #: src/Plugin.php:262 609 621 msgid "Loading..." 610 622 msgstr "Laden..." 611 623 612 #: src/Plugin.php:2 47624 #: src/Plugin.php:263 613 625 msgid "Your message was sent successfully" 614 626 msgstr "Uw bericht is succesvol verzonden" 615 627 616 #: src/Plugin.php:2 48628 #: src/Plugin.php:264 617 629 msgid "There was an error sending your message" 618 630 msgstr "Er was een probleem met het verzenden van uw bericht" 619 631 620 #: src/Plugin.php:2 57632 #: src/Plugin.php:273 621 633 msgid "Previous month" 622 634 msgstr "Vorige maand" 623 635 624 #: src/Plugin.php:2 58636 #: src/Plugin.php:274 625 637 msgid "Next month" 626 638 msgstr "Volgende maand" 627 639 628 #: src/Plugin.php:2 60640 #: src/Plugin.php:276 629 641 msgid "January" 630 642 msgstr "Januari" 631 643 632 #: src/Plugin.php:2 61644 #: src/Plugin.php:277 633 645 msgid "February" 634 646 msgstr "Februari" 635 647 636 #: src/Plugin.php:2 62648 #: src/Plugin.php:278 637 649 msgid "March" 638 650 msgstr "Maart" 639 651 640 #: src/Plugin.php:2 63652 #: src/Plugin.php:279 641 653 msgid "April" 642 654 msgstr "April" 643 655 644 #: src/Plugin.php:2 64656 #: src/Plugin.php:280 645 657 msgid "May" 646 658 msgstr "Mei" 647 659 648 #: src/Plugin.php:2 65660 #: src/Plugin.php:281 649 661 msgid "June" 650 662 msgstr "Juni" 651 663 652 #: src/Plugin.php:2 66664 #: src/Plugin.php:282 653 665 msgid "July" 654 666 msgstr "Juli" 655 667 656 #: src/Plugin.php:2 67668 #: src/Plugin.php:283 657 669 msgid "August" 658 670 msgstr "Augustus" 659 671 660 #: src/Plugin.php:2 68672 #: src/Plugin.php:284 661 673 msgid "September" 662 674 msgstr "September" 663 675 664 #: src/Plugin.php:2 69676 #: src/Plugin.php:285 665 677 msgid "October" 666 678 msgstr "Oktober" 667 679 668 #: src/Plugin.php:2 70680 #: src/Plugin.php:286 669 681 msgid "November" 670 682 msgstr "November" 671 683 672 #: src/Plugin.php:2 71684 #: src/Plugin.php:287 673 685 msgid "December" 674 686 msgstr "December" 675 687 676 #: src/Plugin.php:2 74688 #: src/Plugin.php:290 677 689 msgid "Sunday" 678 690 msgstr "Zondag" 679 691 680 #: src/Plugin.php:2 75692 #: src/Plugin.php:291 681 693 msgid "Monday" 682 694 msgstr "Maandag" 683 695 684 #: src/Plugin.php:2 76696 #: src/Plugin.php:292 685 697 msgid "Tuesday" 686 698 msgstr "Dinsdag" 687 699 688 #: src/Plugin.php:2 77700 #: src/Plugin.php:293 689 701 msgid "Wednesday" 690 702 msgstr "Woensdag" 691 703 692 #: src/Plugin.php:2 78704 #: src/Plugin.php:294 693 705 msgid "Thursday" 694 706 msgstr "Donderdag" 695 707 696 #: src/Plugin.php:2 79708 #: src/Plugin.php:295 697 709 msgid "Friday" 698 710 msgstr "Vrijdag" 699 711 700 #: src/Plugin.php:2 80712 #: src/Plugin.php:296 701 713 msgid "Saturday" 702 714 msgstr "Zaterdag" 703 715 704 #: src/Plugin.php:2 83716 #: src/Plugin.php:299 705 717 msgid "Sun" 706 718 msgstr "Zo" 707 719 708 #: src/Plugin.php: 284720 #: src/Plugin.php:300 709 721 msgid "Mon" 710 722 msgstr "Ma" 711 723 712 #: src/Plugin.php: 285724 #: src/Plugin.php:301 713 725 msgid "Tue" 714 726 msgstr "Di" 715 727 716 #: src/Plugin.php: 286728 #: src/Plugin.php:302 717 729 msgid "Wed" 718 730 msgstr "Wo" 719 731 720 #: src/Plugin.php: 287732 #: src/Plugin.php:303 721 733 msgid "Thu" 722 734 msgstr "Do" 723 735 724 #: src/Plugin.php: 288736 #: src/Plugin.php:304 725 737 msgid "Fri" 726 738 msgstr "Vr" 727 739 728 #: src/Plugin.php: 289740 #: src/Plugin.php:305 729 741 msgid "Sat" 730 742 msgstr "Za" … … 770 782 msgstr "Fout bij het ophalen van het Recras-domein!" 771 783 772 #: src/Settings.php:1 68 src/Settings.php:177 src/Settings.php:186773 #: src/Settings.php: 198784 #: src/Settings.php:180 src/Settings.php:189 src/Settings.php:198 785 #: src/Settings.php:210 774 786 msgid "You do not have sufficient permissions to access this page." 775 787 msgstr "Je hebt niet genoeg rechten om deze pagina te bekijken." 776 788 777 #: src/Settings.php:2 68789 #: src/Settings.php:280 778 790 msgid "No theme" 779 791 msgstr "Geen thema" 780 792 781 #: src/Settings.php:2 72793 #: src/Settings.php:284 782 794 msgid "Basic theme" 783 795 msgstr "Basisthema" 784 796 785 #: src/Settings.php:2 76797 #: src/Settings.php:288 786 798 msgid "BP Green" 787 799 msgstr "BP Groen" 788 800 789 #: src/Settings.php:2 80801 #: src/Settings.php:292 790 802 msgid "Reasonably Red" 791 803 msgstr "Redelijk Rood" 792 804 793 #: src/Settings.php:2 84805 #: src/Settings.php:296 794 806 msgid "Recras Blue" 795 807 msgstr "Recras Blauw" 796 808 797 #: src/Settings.php:3 66809 #: src/Settings.php:378 798 810 msgid "Recras settings" 799 811 msgstr "Recras-instellingen" 800 812 801 #: src/Settings.php:3 72813 #: src/Settings.php:384 802 814 msgid "Recras domain" 803 815 msgstr "Recras-domein" 804 816 805 #: src/Settings.php:3 73817 #: src/Settings.php:385 806 818 msgid "Currency symbol" 807 819 msgstr "Valutasymbool" 808 820 809 #: src/Settings.php:3 74821 #: src/Settings.php:386 810 822 msgid "Decimal separator" 811 823 msgstr "Decimaalscheiding" 812 824 813 #: src/Settings.php:3 75814 msgid "Use calendar widget for contact forms "815 msgstr "Kalender-widget gebruiken voor contactformulieren "816 817 #: src/Settings.php:3 76825 #: src/Settings.php:387 826 msgid "Use calendar widget for contact forms (deprecated)" 827 msgstr "Kalender-widget gebruiken voor contactformulieren (verouderd)" 828 829 #: src/Settings.php:388 818 830 msgid "Fix book process datepicker styling" 819 831 msgstr "Styling boekproces-datumselectie oplossen" 820 832 821 #: src/Settings.php:3 77833 #: src/Settings.php:389 822 834 msgid "Theme for Recras integrations" 823 835 msgstr "Thema voor Recras-integraties" 824 836 825 #: src/Settings.php:3 78837 #: src/Settings.php:390 826 838 msgid "Enable Google Analytics integration? (deprecated)" 827 839 msgstr "Google Analytics-integratie inschakelen? (verouderd)" 828 840 829 #: src/Settings.php:4 06841 #: src/Settings.php:418 830 842 #, php-format 831 843 msgid "For more information on these options, please see the %s page." -
recras/tags/6.5.3/readme.txt
r3457781 r3484591 3 3 Tags: recras, recreation, reservation, booking, voucher 4 4 Tested up to: 6.9 5 Stable tag: 6.5. 25 Stable tag: 6.5.3 6 6 License: GPLv2 or later 7 7 License URI: http://www.gnu.org/licenses/gpl-2.0.html 8 8 9 Easily integrate data from your Recras instance, such as packages and contact forms, into your own website.9 Easily integrate data from your Recras instance, such as book processes, into your own website. 10 10 11 11 == Description == 12 With this plugin, you can easily integrate data from your [Recras](https://recras.nl/) instance, such as packages and contact forms, into your own website.12 With this plugin, you can easily integrate data from your [Recras](https://recras.nl/) instance, such as book processes, into your own website. 13 13 14 14 To get started, go to the Recras → Settings page and enter your Recras domain. For example, if you log in to Recras at `https://mycompany.recras.com/` then enter `mycompany.recras.com`. That's all there is to it! You can now use widgets to retrieve data. All data is retrieved via a secured connection (HTTPS) to ensure data integrity. Other than the request parameters, no data is sent to the Recras servers. … … 16 16 This plugin consists of the following "widgets". To use them, you first need to set your Recras domain (see paragraph above). 17 17 * Book processes 18 * Contact forms 18 * Contact forms (deprecated) 19 19 * Packages 20 20 * Products … … 75 75 == Changelog == 76 76 77 = 6.5.3 = 78 * Styling fix for Gutenberg info texts 79 * Only show contact form widget when your recras allows it 80 77 81 = 6.5.2 = 78 82 * Fix for some contact forms not submitting when loaded in a popup -
recras/tags/6.5.3/recras-wordpress-plugin.php
r3457781 r3484591 3 3 Plugin Name: Recras 4 4 Plugin URI: https://www.recras.com/ 5 Version: 6.5. 25 Version: 6.5.3 6 6 Description: Easily integrate your Recras data into your own site 7 7 Requires at least: 6.7 -
recras/tags/6.5.3/src/ContactForm.php
r3457781 r3484591 48 48 public static function renderContactForm($attributes): string 49 49 { 50 if (!Settings::allowOldContactForms()) { 51 error_log('Old contact forms is integrated on your website, but is disabled in your Recras'); 52 return ''; 53 } 54 50 55 if (is_string($attributes)) { 51 56 $attributes = []; -
recras/tags/6.5.3/src/Gutenberg.php
r3447037 r3484591 32 32 plugins_url('css/gutenberg.css', __DIR__), 33 33 ['wp-edit-blocks'], 34 ' 3.6.3'34 '6.5.3' 35 35 ); 36 36 … … 38 38 'availability' => [ 39 39 'callback' => [Availability::class, 'renderAvailability'], 40 'version' => '6. 4.0',40 'version' => '6.5.3', 41 41 ], 42 42 'bookprocess' => [ 43 43 'callback' => [Bookprocess::class, 'renderBookprocess'], 44 'version' => '6.5. 1',44 'version' => '6.5.3', 45 45 ], 46 46 'contactform' => [ 47 47 'callback' => [ContactForm::class, 'renderContactForm'], 48 'version' => '6.5. 1',48 'version' => '6.5.3', 49 49 ], 50 50 'onlinebooking' => [ 51 51 'callback' => [OnlineBooking::class, 'renderOnlineBooking'], 52 'version' => '6. 4.0',52 'version' => '6.5.3', 53 53 ], 54 54 'package' => [ 55 55 'callback' => [Arrangement::class, 'renderPackage'], 56 'version' => '6.5. 1',56 'version' => '6.5.3', 57 57 ], 58 58 'product' => [ 59 59 'callback' => [Products::class, 'renderProduct'], 60 'version' => '6.5. 1',60 'version' => '6.5.3', 61 61 ], 62 62 'voucher-info' => [ 63 63 'callback' => [Vouchers::class, 'renderVoucherInfo'], 64 'version' => '6.5. 1',64 'version' => '6.5.3', 65 65 ], 66 66 'voucher-sales' => [ 67 67 'callback' => [Vouchers::class, 'renderVoucherSales'], 68 'version' => '6.5. 1',68 'version' => '6.5.3', 69 69 ], 70 70 ]; 71 71 72 if (!Settings::allowOldContactForms()) { 73 unset($gutenbergBlocks['contactform']); 74 } 72 75 if (!Settings::allowOnlinePackageBooking()) { 73 76 unset($gutenbergBlocks['availability']); -
recras/tags/6.5.3/src/Plugin.php
r3435083 r3484591 139 139 private function checkOldSettings(): void 140 140 { 141 $instance = \Recras\Settings::getInstance();141 $instance = Settings::getInstance(); 142 142 if (!$instance) { 143 143 return; … … 165 165 if (is_object($setting) && property_exists($setting, 'waarde')) { 166 166 Transient::set($instance . '_show_old_voucher_sales', $setting->waarde, DAY_IN_SECONDS); 167 } 168 } 169 170 $setting = Transient::get($instance . '_show_old_contact_forms'); 171 if ($setting === false) { 172 try { 173 $setting = Http::get($instance, 'instellingen/allow_old_contact_forms'); 174 } catch (\Exception $e) { 175 return; 176 } 177 if (is_object($setting) && property_exists($setting, 'waarde')) { 178 Transient::set($instance . '_show_old_contact_forms', $setting->waarde, DAY_IN_SECONDS); 167 179 } 168 180 } … … 210 222 { 211 223 $l10n = [ 212 'contact_form' => __('Contact form ', 'recras'),224 'contact_form' => __('Contact form (deprecated)', 'recras'), 213 225 'no_connection' => __('Could not connect to your Recras', 'recras'), 214 'online_booking' => __('Online booking of packages ', 'recras'),226 'online_booking' => __('Online booking of packages (deprecated)', 'recras'), 215 227 'bookprocess' => __('Book process', 'recras'), 216 228 'package' => __('Package', 'recras'), 217 229 'package_availability' => __('Package availability', 'recras'), 218 230 'product' => __('Product', 'recras'), 231 'showContactForms' => 'yes', 219 232 'showOnlineBooking' => 'yes', 220 233 'showVoucherSales' => 'yes', 221 234 'voucherInfo' => __('Voucher info', 'recras'), 222 'voucherSales' => __('Voucher sales ', 'recras'),235 'voucherSales' => __('Voucher sales (deprecated)', 'recras'), 223 236 ]; 224 237 238 if (!Settings::allowOldContactForms()) { 239 $l10n['showContactForms'] = 'no'; 240 } 225 241 if (!Settings::allowOnlinePackageBooking()) { 226 242 $l10n['showOnlineBooking'] = 'no'; -
recras/tags/6.5.3/src/Settings.php
r3432851 r3484591 117 117 $html .= '</select>'; 118 118 echo $html; 119 } 120 121 122 public static function allowOldContactForms(): bool 123 { 124 $instance = Settings::getInstance(); 125 if (!$instance) { 126 return true; 127 } 128 $setting = Transient::get($instance . '_show_old_contact_forms'); 129 // if getting the transient fails, we want to show the button to be sure, so comparing with 'no' is safest 130 return ($setting === 'no') ? false : true; 119 131 } 120 132 … … 371 383 372 384 self::addField('recras_domain', __('Recras domain', 'recras'), [__CLASS__, 'addInputDomain']); 385 self::addField('recras_theme', __('Theme for Recras integrations', 'recras'), [__CLASS__, 'addInputTheme']); 386 self::addField('recras_fix_react_datepicker', __('Fix book process datepicker styling', 'recras'), [__CLASS__, 'addInputFixDatepicker']); 373 387 self::addField('recras_currency', __('Currency symbol', 'recras'), [__CLASS__, 'addInputCurrency']); 374 388 self::addField('recras_decimal', __('Decimal separator', 'recras'), [__CLASS__, 'addInputDecimal']); 375 self::addField('recras_datetimepicker', __('Use calendar widget for contact forms', 'recras'), [__CLASS__, 'addInputDatepicker']); 376 self::addField('recras_fix_react_datepicker', __('Fix book process datepicker styling', 'recras'), [__CLASS__, 'addInputFixDatepicker']); 377 self::addField('recras_theme', __('Theme for Recras integrations', 'recras'), [__CLASS__, 'addInputTheme']); 389 self::addField('recras_datetimepicker', __('Use calendar widget for contact forms (deprecated)', 'recras'), [__CLASS__, 'addInputDatepicker']); 378 390 self::addField('recras_enable_analytics', __('Enable Google Analytics integration? (deprecated)', 'recras'), [__CLASS__, 'addInputAnalytics']); 379 391 } -
recras/tags/6.5.3/src/admin/documentation.php
r3432851 r3484591 6 6 <dt><?php esc_html_e('Recras domain', 'recras');?></dt> 7 7 <dd>If you log in to Recras at <code>https://mycompany.recras.com/</code> then your Recras domain is <code>mycompany.recras.com</code>.</dd> 8 <dt><?php esc_html_e('Currency symbol', 'recras');?></dt>9 <dd>Used in prices such as € 100,00. Set to € (Euro) by default.</dd>10 <dt><?php esc_html_e('Decimal separator', 'recras');?></dt>11 <dd>Used in prices such as € 100,00. Set to , (comma) by default.</dd>12 <dt><?php esc_html_e('Use calendar widget for contact forms', 'recras');?></dt>13 <dd>By default, date pickers in contact forms use whatever the browser has available. If you want to be able to style the date picker, we recommend to enable the date picker we have included with the plugin.<br>14 <strong>Note:</strong> this setting only applies to standalone contact forms, not to contact forms used in book processes.15 </dd>16 8 <dt><?php esc_html_e('Theme for Recras integrations', 'recras');?></dt> 17 9 <dd>Which theme is used for book processes. … … 23 15 <li>Reasonably Red - is a theme with red accents 24 16 </ol> 17 </dd> 18 <dt><?php esc_html_e('Currency symbol', 'recras');?></dt> 19 <dd>Used in prices such as € 100,00. Set to € (Euro) by default.</dd> 20 <dt><?php esc_html_e('Decimal separator', 'recras');?></dt> 21 <dd>Used in prices such as € 100,00. Set to , (comma) by default.</dd> 22 <dt><?php esc_html_e('Use calendar widget for contact forms', 'recras');?></dt> 23 <dd>By default, date pickers in contact forms use whatever the browser has available. If you want to be able to style the date picker, we recommend to enable the date picker we have included with the plugin.<br> 24 <strong>Note:</strong> this setting only applies to standalone contact forms, which are deprecated. This does not apply to contact forms used in book processes. 25 25 </dd> 26 26 </dl> … … 63 63 <hr> 64 64 <h2><?php esc_html_e('Contact forms', 'recras'); ?></h2> 65 <p>Contact forms can be added using the Recras/Contact form block (Gutenberg) or using the <span class="rDocsIcon dashicons dashicons-email"></span> icon in the Classic Editor.</p> 66 <p>The following options are available:</p> 67 <ol class="recrasOptionsList"> 68 <li>Contact form - <strong>required</strong> what form to use 69 <li>Show title? - show the title of the contact form or not. Enabled by default 70 <li>Show labels? - show the label for each element. Enabled by default. <strong>Note:</strong> showing labels is highly recommended. It is good for accessibility, and when they are not used it can lead to confusing results with radio buttons. 71 <li>Show placeholders? - show the placeholder for each element. Enabled by default 72 <li>Package - for forms where the user can select a package, setting this parameter will select the package automatically and hide the field for the user. 73 <li>HTML element - show the contact form as definition list (default), ordered list, or table (not recommended for accessibility reasons). 74 <li>Element for single choices - show fields where a single choice is made (i.e. Customer type) as drop-down list (default) or radio buttons. 75 <li>Submit button text - the text for the form submission button. Defaults to "Send" 76 <li>Thank-you page - a page/post that the user is redirected to, after submitting the form successfully. 77 </ol> 65 <p>Contact forms can be integrated using a book process.</p> 78 66 79 67 <hr> … … 96 84 97 85 <hr> 98 <h2><?php esc_html_e('Voucher sales', 'recras'); ?></h2>99 <p>Voucher sales can be integrated using a book process.</p>100 101 <hr>102 86 <h2><?php esc_html_e('Voucher info', 'recras'); ?></h2> 103 87 <p>Voucher info can be integrated using the Recras/Voucher info block (Gutenberg) or using the <span class="rDocsIcon dashicons dashicons-money"></span> icon in the Classic Editor.</p> … … 111 95 </ol> 112 96 </ol> 97 98 <hr> 99 <h2><?php esc_html_e('Voucher sales', 'recras'); ?></h2> 100 <p>Voucher sales can be integrated using a book process.</p> -
recras/tags/6.5.3/src/admin/shortcodes.php
r3432851 r3484591 40 40 41 41 <hr> 42 <h2><?php esc_html_e('Contact forms', 'recras'); ?></h2>43 <p>Contact forms can be added using the <kbd>[recras-contact]</kbd> shortcode.</p>44 <p>The following options are available:</p>45 <ol class="recrasOptionsList">46 <li>Contact form - <kbd>id</kbd>47 <li>Show title? - <kbd>showtitle</kbd>48 <li>Show labels? - <kbd>showlabels</kbd>49 <li>Show placeholders? - <kbd>showplaceholders</kbd>50 <li>Package - <kbd>arrangement</kbd>51 <li>HTML element - <kbd>element</kbd>, value is one of <kbd>dl</kbd> (recommended), <kbd>ol</kbd>, <kbd>table</kbd> (discouraged)52 <li>Element for single choices - <kbd>single_choice_element</kbd>, value is one of <kbd>select</kbd>, <kbd>radio</kbd>53 <li>Submit button text - <kbd>submitText</kbd>54 <li>Thank-you page - <kbd>redirect</kbd>55 </ol>56 <p>Example: <kbd>[recras-contact id="17" showtitle="0" showlabels="1" showplaceholders="1" submitText="Go!"]</kbd></p>57 58 59 <hr>60 42 <h2><?php esc_html_e('Products', 'recras'); ?></h2> 61 43 <p>Products can be added using the <kbd>recras-product</kbd> shortcode.</p> -
recras/trunk/changelog.md
r3457781 r3484591 1 1 # Changelog 2 3 ## 6.5.3 (2026-03-17) 4 * Styling fix for Gutenberg info texts 5 * Only show contact form widget when your recras allows it 2 6 3 7 ## 6.5.2 (2026-02-10) -
recras/trunk/css/gutenberg.css
r2489312 r3484591 2 2 align-items: center; /* Fix default alignment */ 3 3 } 4 .block-editorp.recrasInfoText {4 p.recrasInfoText { 5 5 background: #f3f4f5; 6 6 border-left: 5px solid hsl(199, 73%, 43%); -
recras/trunk/editor/plugin.js
r3235419 r3484591 34 34 }); 35 35 36 editor.addButton('recras-contact', { 37 title: recras_l10n.contact_form, 38 image: url + '/contact.svg', 39 onclick: function() { 40 tb_show(recras_l10n.contact_form, 'admin.php?page=form-contact'); 41 } 42 }); 36 if (recras_l10n.showContactForms) { 37 editor.addButton('recras-contact', { 38 title: recras_l10n.contact_form, 39 image: url + '/contact.svg', 40 onclick: function() { 41 tb_show(recras_l10n.contact_form, 'admin.php?page=form-contact'); 42 } 43 }); 44 } 43 45 44 46 editor.addButton('recras-product', { -
recras/trunk/js/gutenberg-availability.js
r3369571 r3484591 1 1 registerGutenbergBlock('recras/availability', { 2 2 title: wp.i18n.__('Availability calendar', TEXT_DOMAIN), 3 apiVersion: 3, 3 4 icon: 'calendar-alt', 4 5 category: 'recras', -
recras/trunk/js/gutenberg-bookprocess.js
r3447037 r3484591 1 1 registerGutenbergBlock('recras/bookprocess', { 2 2 title: wp.i18n.__('Book process', TEXT_DOMAIN), 3 apiVersion: 3, 3 4 icon: 'editor-ul', 4 5 category: 'recras', -
recras/trunk/js/gutenberg-contactform.js
r3447037 r3484591 1 1 registerGutenbergBlock('recras/contactform', { 2 title: wp.i18n.__('Contact form', TEXT_DOMAIN), 2 title: wp.i18n.__('Contact form (deprecated)', TEXT_DOMAIN), 3 apiVersion: 3, 3 4 icon: 'email', 4 5 category: 'recras', … … 191 192 }; 192 193 193 retval.push(recrasHelper.elementText('Recras - ' + wp.i18n.__('Contact form ', TEXT_DOMAIN)));194 retval.push(recrasHelper.elementText('Recras - ' + wp.i18n.__('Contact form (deprecated)', TEXT_DOMAIN))); 194 195 195 196 retval.push(createEl(compSelectControl, optionsIDControl)); -
recras/trunk/js/gutenberg-onlinebooking.js
r3369571 r3484591 1 1 registerGutenbergBlock('recras/onlinebooking', { 2 title: wp.i18n.__('Online booking of packages', TEXT_DOMAIN), 2 title: wp.i18n.__('Online booking of packages (deprecated)', TEXT_DOMAIN), 3 apiVersion: 3, 3 4 icon: 'admin-site', 4 5 category: 'recras', … … 297 298 } 298 299 299 retval.push(recrasHelper.elementText('Recras - ' + wp.i18n.__('Online booking of packages ', TEXT_DOMAIN)));300 retval.push(recrasHelper.elementText('Recras - ' + wp.i18n.__('Online booking of packages (deprecated)', TEXT_DOMAIN))); 300 301 retval.push(createEl(compRadioControl, optionsNewLibraryControl)); 301 302 retval.push(recrasHelper.elementInfo( -
recras/trunk/js/gutenberg-package.js
r3447037 r3484591 1 1 registerGutenbergBlock('recras/package', { 2 2 title: wp.i18n.__('Package', TEXT_DOMAIN), 3 apiVersion: 3, 3 4 icon: 'clipboard', 4 5 category: 'recras', -
recras/trunk/js/gutenberg-product.js
r3447037 r3484591 1 1 registerGutenbergBlock('recras/product', { 2 2 title: wp.i18n.__('Product', TEXT_DOMAIN), 3 apiVersion: 3, 3 4 icon: 'cart', 4 5 category: 'recras', -
recras/trunk/js/gutenberg-voucher-info.js
r3447037 r3484591 1 1 registerGutenbergBlock('recras/voucher-info', { 2 2 title: wp.i18n.__('Voucher info', TEXT_DOMAIN), 3 apiVersion: 3, 3 4 icon: 'money', 4 5 category: 'recras', -
recras/trunk/js/gutenberg-voucher-sales.js
r3447037 r3484591 1 1 registerGutenbergBlock('recras/voucher-sales', { 2 title: wp.i18n.__('Voucher sales', TEXT_DOMAIN), 2 title: wp.i18n.__('Voucher sales (deprecated)', TEXT_DOMAIN), 3 apiVersion: 3, 3 4 icon: 'money', 4 5 category: 'recras', … … 87 88 }; 88 89 89 retval.push(recrasHelper.elementText('Recras - ' + wp.i18n.__('Voucher sales ', TEXT_DOMAIN)));90 retval.push(recrasHelper.elementText('Recras - ' + wp.i18n.__('Voucher sales (deprecated)', TEXT_DOMAIN))); 90 91 retval.push(createEl(compSelectControl, optionsIDControl)); 91 92 retval.push(createEl(compSelectControl, optionsRedirectControl)); -
recras/trunk/lang/recras-de_DE-recras-gutenberg-global.json
r3369571 r3484591 1 {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"de_DE"}," Package":["Arrangement"],"If you are not seeing certain packages, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Extra settings\" of the package.":["Wenn Sie bestimmte Pakete nicht sehen, stellen Sie sicher, dass in Recras \"Kann auf einer Website (über API)\" auf der Registerkarte \"Extra-Einstellungen\" des Pakets angezeigt werden."],"Show what?":["Zeigen Sie was?"],"Title":["Titel"],"Description":["Beschreibung"],"Duration":["Dauer"],"Starting location":["Empfangsort"],"Minimum number of persons":[""],"Price p.p. excl. VAT":[""],"Price p.p. incl. VAT":[""],"Total price excl. VAT":[""],"Total price incl. VAT":[""],"Programme":["Programm"],"Image tag":[""],"Relative image URL":[""],"Start time":[""],"hh:mm":["UU:MM"],"Show header?":[""],"Yes":["Ja"],"No":["Nein"],"Insert shortcode":[""],"Integration method":[""],"Seamless (recommended)":[""],"iframe (uses setting in your Recras)":[""],"Seamless integration uses the styling of your website. At Recras → Settings in the menu on the left, you can set an optional theme.":[""],"iframe integration uses the styling set in your Recras. You can change the styling in Recras via Settings → Other settings → Custom CSS.":[""],"Package selection":[""],"To (de)select multiple packages, hold Ctrl and click (Cmd on Mac)":[""],"No pre-filled package":[""],"Preview times in programme":[""],"Pre-fill amounts (requires pre-filled package)":[""],"Sorry, this is only available using the Gutenberg editor.":[""],"Pre-fill date (requires exactly 1 package selected)":[""],"yyyy-mm-dd":["JJJJ-MM-TT"],"Pre-fill time (requires exactly 1 package selected)":[""],"Thank-you page":[""],"Don't redirect":[""],"Pages":["Seiten"],"Posts":["Nachrichten"],"Show discount fields":[""],"Automatic resize?":[""],"Book process":["Buchungsprozess"],"Initial value for first widget":[""],"Please note that no validation on this value is performed. Invalid values may be ignored or may stop the book process from working properly.":[""],"Hide first widget?":[""],"Contact form":["Kontaktformular"],"Show title?":[""],"Show labels?":[""],"Show placeholders?":[""],"Some packages may not be available for all contact forms. You can change this by editing your contact forms in Recras.":[""],"If you are still missing packages, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Extra settings\" of the package.":[""],"HTML element":[""],"Definition list":[""],"Ordered list":[""],"Table":["Tabelle"],"Element for single choices":[""],"Drop-down list (Select)":[""],"Radio buttons":[""],"This relates to: customer type, package selection, gender, and single choice":[""],"Submit button text":[""],"Send":["Senden"],"Product":["Produkt"],"Description (short)":[""],"Description (long)":[""],"Image URL":[""],"Minimum amount":[""],"Price (incl. VAT)":[""],"Template":[""],"Name":[""],"Price":["Preis"],"Validity":["Gültigkeit"],"No pre-filled template":[""],"Show quantity input (will be set to 1 if not shown)":[""],"Availability calendar":[""],"No suitable packages found":[""],"Auto resize iframe":[""],"Enter package ID. Leave empty to not prefill.":[""],"Enter date in YYYY-MM-DD format. Leave empty to not prefill.":[""],"Prefill value for first widget? (optional)":[""],"Loading data...":[""],"Package (optional)":[""],"i.e. https://www.recras.com/thanks/":[""],"Thank-you page (optional, leave empty to not redirect)":[""],"Recras → Settings menu":[""],"Please enter your Recras domain in the %s before adding widgets.":[""],"Online booking of packages":[""],"Pre-fill amounts (requires exactly 1 package selected)":[""],"e.g. 14:00":["z.B. 14:00"],"Pre-filled package":[""],"Pre-filled package (optional)":[""],"If you select a single package, it will be pre-filled and will skip the package selection step.":[""],"Property to show":[""],"If you are not seeing certain products, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Presentation\" of the product.":[""],"Could not find any products. Make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Presentation\" of the product.":[""],"Voucher info":[""],"Voucher template":[""],"Voucher sales":[""],"Error: no ID set":[""],"Error: ID is not a number":[""],"Error: %s":["Fehlermeldung: %s"],"Error: Package %d does not exist or may not be presented on a website":[""],"Error: programme is empty":[""],"Error: unknown option":[""],"From":["Von"],"Until":["Bis"],"Activity":["Aktivität"],"Day %d":["Tag %d"],"No duration specified":[""],"No location specified":[""],"Error: book process does not exist":[""],"Contact form might be deleted":[""],"Error: package is set, but contact form does not support packages":[""],"Error: redirect is set, but is an invalid URL":[""],"Unknown":["Unbekannt"],"Male":["Mann"],"Female":["Frau"],"(required)":["(erforderlich)"],"Clear choice":["Wahl löschen"],"No book process has been chosen yet. Click on this text to select a book process.":[""],"Book process %s cannot be found. It was either deleted from Recras, or made private.":[""],"Book process \"%s\" is integrated here.":[""],"The first widget is hidden for the booker, and has an initial value of \"%s\".":[""],"It has an initial value for the first widget of \"%s\".":[""],"Error: could not retrieve data from Recras. The error message received was: %s":[""],"Error: could not parse data from Recras. The error message was: %s":[""],"Error: \"prefill_date\" is not a valid ISO 8601 string":[""],"Error: \"prefill_date\" is a date in the past":[""],"Error: \"prefill_time\" is not a valid time string (e.g. 14:30)":[""],"Error: \"product_amounts\" is invalid":[""],"Settings":["Einstellungen"],"Cache":[""],"Documentation":["Dokumentation"],"Shortcodes":[""],"Error: you have not set your Recras domain yet":[""],"Error: your Recras domain has not been set yet, but you do not have the permission to set this. Please ask your site administrator to do this for you.":[""],"Could not connect to your Recras":[""],"Package availability":["Arrangement-Verfügbarkeit"],"At least one choice is required":[""],"Loading...":["Laden..."],"Your message was sent successfully":[""],"There was an error sending your message":[""],"Previous month":["Vorheriger Monat"],"Next month":["Nächsten Monat"],"January":["Januar"],"February":["Februar"],"March":["März"],"April":["April"],"May":["Mai"],"June":["Juni"],"July":["Juli"],"August":["August"],"September":["September"],"October":["Oktober"],"November":["November"],"December":["Dezember"],"Sunday":["Sonntag"],"Monday":["Montag"],"Tuesday":["Dienstag"],"Wednesday":["Mittwoch"],"Thursday":["Donnerstag"],"Friday":["Freitag"],"Saturday":["Samstag"],"Sun":["So"],"Mon":["Mo"],"Tue":["Di"],"Wed":["Mi"],"Thu":["Do"],"Fri":["Fr"],"Sat":["Sa"],"Error: product does not exist":[""],"This option is <strong>not needed when using book processes</strong>. GA is integrated automatically for them.":[""],"Use this setting if you want to be able to style the date picker in contact forms.":[""],"On some websites, the date picker in a book process has a tiny font. Enable this to fix this.":[""],"Used in prices, such as 100,00.":[""],"Instance not found!":[""],"Error fetching instance!":[""],"You do not have sufficient permissions to access this page.":[""],"No theme":["Kein Thema"],"Basic theme":["Grundthema"],"BP Green":["BP Grün"],"Reasonably Red":["Ganz Rot"],"Recras Blue":["Recras Blau"],"Recras settings":["Recras-Einstellungen"],"Currency symbol":[""],"Decimal separator":[""],"Use calendar widget for contact forms":[""],"Fix book process datepicker styling":[""],"Theme for Recras integrations":[""],"Enable Google Analytics integration? (deprecated)":[""],"For more information on these options, please see the %s page.":[""],"Error: template does not exist":[""],"The cache was cleared.":[""],"The selected cache could not be cleared. This could be an error, or there could be nothing to clear.":[""],"Clear Recras cache":[""],"Data coming from your Recras (contact forms, packages, products, voucher templates) is cached for up to 24 hours. If you make important changes (i.e. a price increase) it is recommended you clear the Recras cache.":[""],"Packages":["Arrangements"],"Book processes":["Buchungsprozesse"],"Contact forms":["Kontaktformulare"],"Products":["Produkte"],"Save":["Speichern"]}}}1 {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"de_DE"},"yyyy-mm-dd":["JJJJ-MM-TT"],"hh:mm":["UU:MM"],"Availability calendar":[""],"No suitable packages found":[""],"Package":["Arrangement"],"Auto resize iframe":[""],"Book process":["Buchungsprozess"],"Enter package ID. Leave empty to not prefill.":[""],"Enter date in YYYY-MM-DD format. Leave empty to not prefill.":[""],"Prefill value for first widget? (optional)":[""],"Hide first widget?":[""],"Send":["Senden"],"Loading data...":[""],"Contact form":["Kontaktformular"],"Show title?":[""],"Show labels?":["Zeigen Sie was?"],"Show placeholders?":[""],"Package (optional)":[""],"Definition list":[""],"Ordered list":[""],"Table":["Tabelle"],"HTML element":[""],"Drop-down list (Select)":[""],"Radio buttons":[""],"Element for single choices":[""],"Submit button text":[""],"i.e. https://www.recras.com/thanks/":[""],"Thank-you page (optional, leave empty to not redirect)":[""],"Some packages may not be available for all contact forms. You can change this by editing your contact forms in Recras.":[""],"If you are still missing packages, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Extra settings\" of the package.":[""],"Recras → Settings menu":[""],"Please enter your Recras domain in the %s before adding widgets.":[""],"Pages":["Seiten"],"Posts":["Nachrichten"],"Online booking of packages (deprecated)":[""],"Seamless (recommended)":[""],"iframe (uses setting in your Recras)":[""],"Integration method":[""],"Preview times in programme":[""],"Show discount fields":[""],"Pre-fill amounts (requires exactly 1 package selected)":[""],"Pre-fill time (requires exactly 1 package selected)":[""],"e.g. 14:00":["z.B. 14:00"],"Pre-filled package":[""],"Pre-filled package (optional)":[""],"Seamless integration uses the styling of your website. At Recras → Settings in the menu on the left, you can set an optional theme.":[""],"iframe integration uses the styling set in your Recras. You can change the styling in Recras via Settings → Other settings → Custom CSS.":[""],"Package selection":[""],"If you are not seeing certain packages, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Extra settings\" of the package.":["Wenn Sie bestimmte Pakete nicht sehen, stellen Sie sicher, dass in Recras \"Kann auf einer Website (über API)\" auf der Registerkarte \"Extra-Einstellungen\" des Pakets angezeigt werden."],"If you select a single package, it will be pre-filled and will skip the package selection step.":[""],"Pre-fill date (requires exactly 1 package selected)":[""],"Description":["Beschreibung"],"Duration":["Dauer"],"Image tag":[""],"Minimum number of persons":[""],"Price p.p. excl. VAT":[""],"Price p.p. incl. VAT":[""],"Programme":["Programm"],"Starting location":["Empfangsort"],"Title":["Titel"],"Total price excl. VAT":[""],"Total price incl. VAT":[""],"Relative image URL":[""],"Property to show":[""],"Start time":[""],"Show header?":[""],"Product":["Produkt"],"Description (long)":[""],"Description (short)":[""],"Image URL":[""],"Minimum amount":[""],"Price (incl. VAT)":[""],"If you are not seeing certain products, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Presentation\" of the product.":[""],"Could not find any products. Make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Presentation\" of the product.":[""],"Voucher info":[""],"Voucher template":[""],"Name":[""],"Price":["Preis"],"Validity":["Gültigkeit"],"Voucher sales (deprecated)":[""],"Show quantity input (will be set to 1 if not shown)":[""],"Error: no ID set":[""],"Error: ID is not a number":[""],"Error: %s":["Fehlermeldung: %s"],"Error: Package %d does not exist or may not be presented on a website":[""],"Error: programme is empty":[""],"Error: unknown option":[""],"From":["Von"],"Until":["Bis"],"Activity":["Aktivität"],"Day %d":["Tag %d"],"No duration specified":[""],"No location specified":[""],"Error: book process does not exist":[""],"Contact form might be deleted":[""],"Error: package is set, but contact form does not support packages":[""],"Error: redirect is set, but is an invalid URL":[""],"Unknown":["Unbekannt"],"Male":["Mann"],"Female":["Frau"],"(required)":["(erforderlich)"],"Clear choice":["Wahl löschen"],"No book process has been chosen yet. Click on this text to select a book process.":[""],"Book process %s cannot be found. It was either deleted from Recras, or made private.":[""],"Book process \"%s\" is integrated here.":[""],"The first widget is hidden for the booker, and has an initial value of \"%s\".":[""],"It has an initial value for the first widget of \"%s\".":[""],"Error: could not retrieve data from Recras. The error message received was: %s":[""],"Error: could not parse data from Recras. The error message was: %s":[""],"Error: \"prefill_date\" is not a valid ISO 8601 string":[""],"Error: \"prefill_date\" is a date in the past":[""],"Error: \"prefill_time\" is not a valid time string (e.g. 14:30)":[""],"Error: \"product_amounts\" is invalid":[""],"Settings":["Einstellungen"],"Cache":[""],"Documentation":["Dokumentation"],"Shortcodes":[""],"Online booking of packages":[""],"Voucher sales":[""],"Error: you have not set your Recras domain yet":[""],"Error: your Recras domain has not been set yet, but you do not have the permission to set this. Please ask your site administrator to do this for you.":[""],"Could not connect to your Recras":[""],"Package availability":["Arrangement-Verfügbarkeit"],"At least one choice is required":[""],"Loading...":["Laden..."],"Your message was sent successfully":[""],"There was an error sending your message":[""],"Previous month":["Vorheriger Monat"],"Next month":["Nächsten Monat"],"January":["Januar"],"February":["Februar"],"March":["März"],"April":["April"],"May":["Mai"],"June":["Juni"],"July":["Juli"],"August":["August"],"September":["September"],"October":["Oktober"],"November":["November"],"December":["Dezember"],"Sunday":["Sonntag"],"Monday":["Montag"],"Tuesday":["Dienstag"],"Wednesday":["Mittwoch"],"Thursday":["Donnerstag"],"Friday":["Freitag"],"Saturday":["Samstag"],"Sun":["So"],"Mon":["Mo"],"Tue":["Di"],"Wed":["Mi"],"Thu":["Do"],"Fri":["Fr"],"Sat":["Sa"],"Error: product does not exist":[""],"This option is <strong>not needed when using book processes</strong>. GA is integrated automatically for them.":[""],"Use this setting if you want to be able to style the date picker in contact forms.":[""],"On some websites, the date picker in a book process has a tiny font. Enable this to fix this.":[""],"Used in prices, such as 100,00.":[""],"Instance not found!":[""],"Error fetching instance!":[""],"You do not have sufficient permissions to access this page.":[""],"No theme":["Kein Thema"],"Basic theme":["Grundthema"],"BP Green":["BP Grün"],"Reasonably Red":["Ganz Rot"],"Recras Blue":["Recras Blau"],"Recras settings":["Recras-Einstellungen"],"Currency symbol":[""],"Decimal separator":[""],"Fix book process datepicker styling":[""],"Theme for Recras integrations":[""],"Enable Google Analytics integration? (deprecated)":[""],"For more information on these options, please see the %s page.":[""],"Error: template does not exist":[""],"Save":["Speichern"]}}} -
recras/trunk/lang/recras-de_DE.po
r3434941 r3484591 2 2 msgstr "" 3 3 "Project-Id-Version: Recras\n" 4 "POT-Creation-Date: 2026-0 1-06 14:51+0100\n"5 "PO-Revision-Date: 2026-0 1-06 14:51+0100\n"4 "POT-Creation-Date: 2026-03-17 09:26+0100\n" 5 "PO-Revision-Date: 2026-03-17 09:26+0100\n" 6 6 "Last-Translator: Sander de Jong <sander@recras.nl>\n" 7 7 "Language-Team: Recras\n" … … 20 20 "X-Poedit-SearchPathExcluded-2: node_modules\n" 21 21 22 #: editor/form-booking.php:73 src/ContactForm.php:2 68 src/ContactForm.php:31022 #: editor/form-booking.php:73 src/ContactForm.php:273 src/ContactForm.php:315 23 23 msgid "yyyy-mm-dd" 24 24 msgstr "JJJJ-MM-TT" 25 25 26 #: editor/form-booking.php:82 js/gutenberg-package.js:1 2727 #: src/ContactForm.php:2 8526 #: editor/form-booking.php:82 js/gutenberg-package.js:131 27 #: src/ContactForm.php:290 28 28 msgid "hh:mm" 29 29 msgstr "UU:MM" 30 30 31 #: js/gutenberg-availability.js:2 js/gutenberg-availability.js:3 531 #: js/gutenberg-availability.js:2 js/gutenberg-availability.js:36 32 32 msgid "Availability calendar" 33 33 msgstr "" 34 34 35 #: js/gutenberg-availability.js:3 835 #: js/gutenberg-availability.js:39 36 36 msgid "No suitable packages found" 37 37 msgstr "" 38 38 39 #: js/gutenberg-availability.js:5 0js/gutenberg-package.js:240 #: js/gutenberg-package.js:5 0 js/gutenberg-package.js:142src/Plugin.php:11441 #: src/Plugin.php:2 1639 #: js/gutenberg-availability.js:51 js/gutenberg-package.js:2 40 #: js/gutenberg-package.js:54 js/gutenberg-package.js:146 src/Plugin.php:114 41 #: src/Plugin.php:228 42 42 msgid "Package" 43 43 msgstr "Arrangement" 44 44 45 #: js/gutenberg-availability.js: 59 js/gutenberg-onlinebooking.js:29545 #: js/gutenberg-availability.js:60 js/gutenberg-onlinebooking.js:296 46 46 msgid "Auto resize iframe" 47 47 msgstr "" 48 48 49 #: js/gutenberg-bookprocess.js:2 js/gutenberg-bookprocess.js:4 550 #: js/gutenberg-bookprocess.js: 59src/Elementor/Bookprocess.php:1749 #: js/gutenberg-bookprocess.js:2 js/gutenberg-bookprocess.js:49 50 #: js/gutenberg-bookprocess.js:65 src/Elementor/Bookprocess.php:17 51 51 #: src/Elementor/Bookprocess.php:35 src/Elementor/Bookprocess.php:45 52 #: src/Plugin.php:115 src/Plugin.php:2 1552 #: src/Plugin.php:115 src/Plugin.php:227 53 53 msgid "Book process" 54 54 msgstr "Buchungsprozess" 55 55 56 #: js/gutenberg-bookprocess.js: 7656 #: js/gutenberg-bookprocess.js:82 57 57 msgid "Enter package ID. Leave empty to not prefill." 58 58 msgstr "" 59 59 60 #: js/gutenberg-bookprocess.js: 7760 #: js/gutenberg-bookprocess.js:83 61 61 msgid "Enter date in YYYY-MM-DD format. Leave empty to not prefill." 62 62 msgstr "" 63 63 64 #: js/gutenberg-bookprocess.js: 87src/Elementor/Bookprocess.php:6164 #: js/gutenberg-bookprocess.js:93 src/Elementor/Bookprocess.php:61 65 65 msgid "Prefill value for first widget? (optional)" 66 66 msgstr "" 67 67 68 #: js/gutenberg-bookprocess.js: 99src/Elementor/Bookprocess.php:7468 #: js/gutenberg-bookprocess.js:105 src/Elementor/Bookprocess.php:74 69 69 msgid "Hide first widget?" 70 70 msgstr "" 71 71 72 #: js/gutenberg-contactform.js:2 js/gutenberg-contactform.js:76 73 #: js/gutenberg-contactform.js:193 src/Plugin.php:116 src/Plugin.php:212 72 #: js/gutenberg-contactform.js:2 js/gutenberg-contactform.js:194 73 #: src/Plugin.php:224 74 #, fuzzy 75 #| msgid "Contact form" 76 msgid "Contact form (deprecated)" 77 msgstr "Kontaktformular" 78 79 #: js/gutenberg-contactform.js:15 js/gutenberg-contactform.js:28 80 #: src/ContactForm.php:122 81 msgid "Send" 82 msgstr "Senden" 83 84 #: js/gutenberg-contactform.js:61 js/gutenberg-onlinebooking.js:63 85 #: js/gutenberg-voucher-sales.js:46 86 msgid "Loading data..." 87 msgstr "" 88 89 #: js/gutenberg-contactform.js:77 src/Plugin.php:116 74 90 msgid "Contact form" 75 91 msgstr "Kontaktformular" 76 92 77 #: js/gutenberg-contactform.js:14 js/gutenberg-contactform.js:27 78 #: src/ContactForm.php:117 79 msgid "Send" 80 msgstr "Senden" 81 82 #: js/gutenberg-contactform.js:60 js/gutenberg-onlinebooking.js:62 83 #: js/gutenberg-voucher-sales.js:41 84 msgid "Loading data..." 85 msgstr "" 86 87 #: js/gutenberg-contactform.js:98 93 #: js/gutenberg-contactform.js:99 88 94 msgid "Show title?" 89 95 msgstr "" 90 96 91 #: js/gutenberg-contactform.js:10 797 #: js/gutenberg-contactform.js:108 92 98 msgid "Show labels?" 93 msgstr " "94 95 #: js/gutenberg-contactform.js:11 699 msgstr "Zeigen Sie was?" 100 101 #: js/gutenberg-contactform.js:117 96 102 msgid "Show placeholders?" 97 103 msgstr "" 98 104 99 #: js/gutenberg-contactform.js:12 6105 #: js/gutenberg-contactform.js:127 100 106 msgid "Package (optional)" 101 107 msgstr "" 102 108 103 #: js/gutenberg-contactform.js:13 8109 #: js/gutenberg-contactform.js:139 104 110 msgid "Definition list" 105 111 msgstr "" 106 112 107 #: js/gutenberg-contactform.js:14 2113 #: js/gutenberg-contactform.js:143 108 114 msgid "Ordered list" 109 115 msgstr "" 110 116 111 #: js/gutenberg-contactform.js:14 6117 #: js/gutenberg-contactform.js:147 112 118 msgid "Table" 113 119 msgstr "Tabelle" 114 120 115 #: js/gutenberg-contactform.js:1 49121 #: js/gutenberg-contactform.js:150 116 122 msgid "HTML element" 117 123 msgstr "" 118 124 119 #: js/gutenberg-contactform.js:16 1125 #: js/gutenberg-contactform.js:162 120 126 msgid "Drop-down list (Select)" 121 127 msgstr "" 122 128 123 #: js/gutenberg-contactform.js:16 5129 #: js/gutenberg-contactform.js:166 124 130 msgid "Radio buttons" 125 131 msgstr "" 126 132 127 #: js/gutenberg-contactform.js:16 8133 #: js/gutenberg-contactform.js:169 128 134 msgid "Element for single choices" 129 135 msgstr "" 130 136 131 #: js/gutenberg-contactform.js:17 7 js/gutenberg-contactform.js:178137 #: js/gutenberg-contactform.js:178 js/gutenberg-contactform.js:179 132 138 msgid "Submit button text" 133 139 msgstr "" 134 140 135 #: js/gutenberg-contactform.js:18 8 js/gutenberg-onlinebooking.js:232136 #: js/gutenberg-voucher-sales.js:7 1141 #: js/gutenberg-contactform.js:189 js/gutenberg-onlinebooking.js:233 142 #: js/gutenberg-voucher-sales.js:76 137 143 msgid "i.e. https://www.recras.com/thanks/" 138 144 msgstr "" 139 145 140 #: js/gutenberg-contactform.js:1 89 js/gutenberg-onlinebooking.js:233141 #: js/gutenberg-voucher-sales.js:7 2146 #: js/gutenberg-contactform.js:190 js/gutenberg-onlinebooking.js:234 147 #: js/gutenberg-voucher-sales.js:77 142 148 msgid "Thank-you page (optional, leave empty to not redirect)" 143 149 msgstr "" 144 150 145 #: js/gutenberg-contactform.js:20 2151 #: js/gutenberg-contactform.js:203 146 152 msgid "" 147 153 "Some packages may not be available for all contact forms. You can change " … … 149 155 msgstr "" 150 156 151 #: js/gutenberg-contactform.js:20 3157 #: js/gutenberg-contactform.js:204 152 158 msgid "" 153 159 "If you are still missing packages, make sure in Recras \"May be presented on " … … 156 162 msgstr "" 157 163 158 #: js/gutenberg-global.js:46 src/Settings.php:2 11164 #: js/gutenberg-global.js:46 src/Settings.php:223 159 165 msgid "Recras → Settings menu" 160 166 msgstr "" 161 167 162 #: js/gutenberg-global.js:48 src/Settings.php:2 10168 #: js/gutenberg-global.js:48 src/Settings.php:222 163 169 #, javascript-format, php-format 164 170 msgid "Please enter your Recras domain in the %s before adding widgets." 165 171 msgstr "" 166 172 167 #: js/gutenberg-global.js:3 11173 #: js/gutenberg-global.js:323 168 174 msgid "Pages" 169 175 msgstr "Seiten" 170 176 171 #: js/gutenberg-global.js:3 35177 #: js/gutenberg-global.js:347 172 178 msgid "Posts" 173 179 msgstr "Nachrichten" 174 180 175 #: js/gutenberg-onlinebooking.js:2 js/gutenberg-onlinebooking.js: 299176 #: src/Plugin.php: 117 src/Plugin.php:214177 msgid "Online booking of packages "178 msgstr "" 179 180 #: js/gutenberg-onlinebooking.js:9 7181 #: js/gutenberg-onlinebooking.js:2 js/gutenberg-onlinebooking.js:300 182 #: src/Plugin.php:226 183 msgid "Online booking of packages (deprecated)" 184 msgstr "" 185 186 #: js/gutenberg-onlinebooking.js:98 181 187 msgid "Seamless (recommended)" 182 188 msgstr "" 183 189 184 #: js/gutenberg-onlinebooking.js:10 1190 #: js/gutenberg-onlinebooking.js:102 185 191 msgid "iframe (uses setting in your Recras)" 186 192 msgstr "" 187 193 188 #: js/gutenberg-onlinebooking.js:12 0194 #: js/gutenberg-onlinebooking.js:121 189 195 msgid "Integration method" 190 196 msgstr "" 191 197 192 #: js/gutenberg-onlinebooking.js:16 8198 #: js/gutenberg-onlinebooking.js:169 193 199 msgid "Preview times in programme" 194 200 msgstr "" 195 201 196 #: js/gutenberg-onlinebooking.js:17 7202 #: js/gutenberg-onlinebooking.js:178 197 203 msgid "Show discount fields" 198 204 msgstr "" 199 205 200 #: js/gutenberg-onlinebooking.js:19 0206 #: js/gutenberg-onlinebooking.js:191 201 207 msgid "Pre-fill amounts (requires exactly 1 package selected)" 202 208 msgstr "" 203 209 204 #: js/gutenberg-onlinebooking.js:22 1210 #: js/gutenberg-onlinebooking.js:222 205 211 msgid "Pre-fill time (requires exactly 1 package selected)" 206 212 msgstr "" 207 213 208 #: js/gutenberg-onlinebooking.js:22 2214 #: js/gutenberg-onlinebooking.js:223 209 215 msgid "e.g. 14:00" 210 216 msgstr "z.B. 14:00" 211 217 212 #: js/gutenberg-onlinebooking.js:28 5218 #: js/gutenberg-onlinebooking.js:286 213 219 msgid "Pre-filled package" 214 220 msgstr "" 215 221 216 #: js/gutenberg-onlinebooking.js:28 6222 #: js/gutenberg-onlinebooking.js:287 217 223 msgid "Pre-filled package (optional)" 218 224 msgstr "" 219 225 220 #: js/gutenberg-onlinebooking.js:30 2226 #: js/gutenberg-onlinebooking.js:303 221 227 msgid "" 222 228 "Seamless integration uses the styling of your website. At Recras → Settings " … … 224 230 msgstr "" 225 231 226 #: js/gutenberg-onlinebooking.js:30 3232 #: js/gutenberg-onlinebooking.js:304 227 233 msgid "" 228 234 "iframe integration uses the styling set in your Recras. You can change the " … … 230 236 msgstr "" 231 237 232 #: js/gutenberg-onlinebooking.js:30 6238 #: js/gutenberg-onlinebooking.js:307 233 239 msgid "Package selection" 234 240 msgstr "" 235 241 236 #: js/gutenberg-onlinebooking.js:31 1 js/gutenberg-onlinebooking.js:331237 #: js/gutenberg-package.js:14 5242 #: js/gutenberg-onlinebooking.js:312 js/gutenberg-onlinebooking.js:332 243 #: js/gutenberg-package.js:149 238 244 msgid "" 239 245 "If you are not seeing certain packages, make sure in Recras \"May be " … … 245 251 "Einstellungen\" des Pakets angezeigt werden." 246 252 247 #: js/gutenberg-onlinebooking.js:31 2253 #: js/gutenberg-onlinebooking.js:313 248 254 msgid "" 249 255 "If you select a single package, it will be pre-filled and will skip the " … … 251 257 msgstr "" 252 258 253 #: js/gutenberg-onlinebooking.js:32 3259 #: js/gutenberg-onlinebooking.js:324 254 260 msgid "Pre-fill date (requires exactly 1 package selected)" 255 261 msgstr "" 256 262 257 #: js/gutenberg-package.js: 67263 #: js/gutenberg-package.js:71 258 264 msgid "Description" 259 265 msgstr "Beschreibung" 260 266 261 #: js/gutenberg-package.js:7 1 js/gutenberg-product.js:76267 #: js/gutenberg-package.js:75 js/gutenberg-product.js:79 262 268 msgid "Duration" 263 269 msgstr "Dauer" 264 270 265 #: js/gutenberg-package.js:7 5 js/gutenberg-product.js:80271 #: js/gutenberg-package.js:79 js/gutenberg-product.js:83 266 272 msgid "Image tag" 267 273 msgstr "" 268 274 269 #: js/gutenberg-package.js: 79275 #: js/gutenberg-package.js:83 270 276 msgid "Minimum number of persons" 271 277 msgstr "" 272 278 273 #: js/gutenberg-package.js:8 3279 #: js/gutenberg-package.js:87 274 280 msgid "Price p.p. excl. VAT" 275 281 msgstr "" 276 282 277 #: js/gutenberg-package.js: 87283 #: js/gutenberg-package.js:91 278 284 msgid "Price p.p. incl. VAT" 279 285 msgstr "" 280 286 281 #: js/gutenberg-package.js:9 1287 #: js/gutenberg-package.js:95 282 288 msgid "Programme" 283 289 msgstr "Programm" 284 290 285 #: js/gutenberg-package.js:9 5291 #: js/gutenberg-package.js:99 286 292 msgid "Starting location" 287 293 msgstr "Empfangsort" 288 294 289 #: js/gutenberg-package.js: 99 js/gutenberg-product.js:96295 #: js/gutenberg-package.js:103 js/gutenberg-product.js:99 290 296 msgid "Title" 291 297 msgstr "Titel" 292 298 293 #: js/gutenberg-package.js:10 3299 #: js/gutenberg-package.js:107 294 300 msgid "Total price excl. VAT" 295 301 msgstr "" 296 302 297 #: js/gutenberg-package.js:1 07303 #: js/gutenberg-package.js:111 298 304 msgid "Total price incl. VAT" 299 305 msgstr "" 300 306 301 #: js/gutenberg-package.js:11 1307 #: js/gutenberg-package.js:115 302 308 msgid "Relative image URL" 303 309 msgstr "" 304 310 305 #: js/gutenberg-package.js:11 4 js/gutenberg-product.js:99306 #: js/gutenberg-voucher-info.js:7 3311 #: js/gutenberg-package.js:118 js/gutenberg-product.js:102 312 #: js/gutenberg-voucher-info.js:78 307 313 msgid "Property to show" 308 314 msgstr "" 309 315 310 #: js/gutenberg-package.js:1 28316 #: js/gutenberg-package.js:132 311 317 msgid "Start time" 312 318 msgstr "" 313 319 314 #: js/gutenberg-package.js:1 38320 #: js/gutenberg-package.js:142 315 321 msgid "Show header?" 316 322 msgstr "" 317 323 318 #: js/gutenberg-product.js:2 js/gutenberg-product.js: 48319 #: js/gutenberg-product.js:10 2 src/Plugin.php:118 src/Plugin.php:218324 #: js/gutenberg-product.js:2 js/gutenberg-product.js:51 325 #: js/gutenberg-product.js:105 src/Plugin.php:118 src/Plugin.php:230 320 326 msgid "Product" 321 327 msgstr "Produkt" 322 328 323 #: js/gutenberg-product.js: 68329 #: js/gutenberg-product.js:71 324 330 msgid "Description (long)" 325 331 msgstr "" 326 332 327 #: js/gutenberg-product.js:7 2333 #: js/gutenberg-product.js:75 328 334 msgid "Description (short)" 329 335 msgstr "" 330 336 331 #: js/gutenberg-product.js:8 4337 #: js/gutenberg-product.js:87 332 338 msgid "Image URL" 333 339 msgstr "" 334 340 335 #: js/gutenberg-product.js: 88341 #: js/gutenberg-product.js:91 336 342 msgid "Minimum amount" 337 343 msgstr "" 338 344 339 #: js/gutenberg-product.js:9 2345 #: js/gutenberg-product.js:95 340 346 msgid "Price (incl. VAT)" 341 347 msgstr "" 342 348 343 #: js/gutenberg-product.js:10 6349 #: js/gutenberg-product.js:109 344 350 msgid "" 345 351 "If you are not seeing certain products, make sure in Recras \"May be " … … 348 354 msgstr "" 349 355 350 #: js/gutenberg-product.js:1 09356 #: js/gutenberg-product.js:112 351 357 msgid "" 352 358 "Could not find any products. Make sure in Recras \"May be presented on a " … … 354 360 msgstr "" 355 361 356 #: js/gutenberg-voucher-info.js:2 js/gutenberg-voucher-info.js: 76357 #: src/Plugin.php:120 src/Plugin.php:2 21362 #: js/gutenberg-voucher-info.js:2 js/gutenberg-voucher-info.js:81 363 #: src/Plugin.php:120 src/Plugin.php:234 358 364 msgid "Voucher info" 359 365 msgstr "" 360 366 361 #: js/gutenberg-voucher-info.js:4 4 js/gutenberg-voucher-sales.js:55367 #: js/gutenberg-voucher-info.js:49 js/gutenberg-voucher-sales.js:60 362 368 msgid "Voucher template" 363 369 msgstr "" 364 370 365 #: js/gutenberg-voucher-info.js:6 2371 #: js/gutenberg-voucher-info.js:67 366 372 msgid "Name" 367 373 msgstr "" 368 374 369 #: js/gutenberg-voucher-info.js: 66375 #: js/gutenberg-voucher-info.js:71 370 376 msgid "Price" 371 377 msgstr "Preis" 372 378 373 #: js/gutenberg-voucher-info.js:7 0379 #: js/gutenberg-voucher-info.js:75 374 380 msgid "Validity" 375 381 msgstr "Gültigkeit" 376 382 377 #: js/gutenberg-voucher-sales.js:2 js/gutenberg-voucher-sales.js: 85378 #: src/Plugin.php: 119 src/Plugin.php:222379 msgid "Voucher sales "380 msgstr "" 381 382 #: js/gutenberg-voucher-sales.js:8 2383 #: js/gutenberg-voucher-sales.js:2 js/gutenberg-voucher-sales.js:90 384 #: src/Plugin.php:235 385 msgid "Voucher sales (deprecated)" 386 msgstr "" 387 388 #: js/gutenberg-voucher-sales.js:87 383 389 msgid "Show quantity input (will be set to 1 if not shown)" 384 390 msgstr "" 385 391 386 392 #: src/Arrangement.php:21 src/Availability.php:20 src/Bookprocess.php:87 387 #: src/ContactForm.php: 55src/Products.php:21 src/Vouchers.php:22393 #: src/ContactForm.php:60 src/Products.php:21 src/Vouchers.php:22 388 394 msgid "Error: no ID set" 389 395 msgstr "" 390 396 391 397 #: src/Arrangement.php:24 src/Availability.php:23 src/Bookprocess.php:91 392 #: src/ContactForm.php: 58src/OnlineBooking.php:25 src/Products.php:24398 #: src/ContactForm.php:63 src/OnlineBooking.php:25 src/Products.php:24 393 399 #: src/Vouchers.php:25 src/Vouchers.php:78 394 400 msgid "Error: ID is not a number" … … 396 402 397 403 #: src/Arrangement.php:39 src/Arrangement.php:279 src/Bookprocess.php:98 398 #: src/ContactForm.php:7 1 src/ContactForm.php:76404 #: src/ContactForm.php:76 src/ContactForm.php:81 399 405 #, php-format 400 406 msgid "Error: %s" … … 443 449 msgstr "" 444 450 445 #: src/ContactForm.php: 76451 #: src/ContactForm.php:81 446 452 msgid "Contact form might be deleted" 447 453 msgstr "" 448 454 449 #: src/ContactForm.php:11 3455 #: src/ContactForm.php:118 450 456 msgid "Error: package is set, but contact form does not support packages" 451 457 msgstr "" 452 458 453 #: src/ContactForm.php:1 25src/OnlineBooking.php:70 src/Vouchers.php:93459 #: src/ContactForm.php:130 src/OnlineBooking.php:70 src/Vouchers.php:93 454 460 msgid "Error: redirect is set, but is an invalid URL" 455 461 msgstr "" 456 462 457 #: src/ContactForm.php:3 76463 #: src/ContactForm.php:381 458 464 msgid "Unknown" 459 465 msgstr "Unbekannt" 460 466 461 #: src/ContactForm.php:3 77467 #: src/ContactForm.php:382 462 468 msgid "Male" 463 469 msgstr "Mann" 464 470 465 #: src/ContactForm.php:3 78471 #: src/ContactForm.php:383 466 472 msgid "Female" 467 473 msgstr "Frau" 468 474 469 #: src/ContactForm.php:5 14475 #: src/ContactForm.php:536 470 476 msgid "(required)" 471 477 msgstr "(erforderlich)" 472 478 473 #: src/ContactForm.php:5 39479 #: src/ContactForm.php:561 474 480 msgid "Clear choice" 475 481 msgstr "Wahl löschen" … … 541 547 msgstr "" 542 548 543 #: src/Plugin.php:99 src/Plugin.php:100 src/Settings.php:4 07549 #: src/Plugin.php:99 src/Plugin.php:100 src/Settings.php:419 544 550 msgid "Documentation" 545 551 msgstr "Dokumentation" … … 549 555 msgstr "" 550 556 551 #: src/Plugin.php:195 557 #: src/Plugin.php:117 558 msgid "Online booking of packages" 559 msgstr "" 560 561 #: src/Plugin.php:119 562 msgid "Voucher sales" 563 msgstr "" 564 565 #: src/Plugin.php:207 552 566 msgid "Error: you have not set your Recras domain yet" 553 567 msgstr "" 554 568 555 #: src/Plugin.php: 197569 #: src/Plugin.php:209 556 570 msgid "" 557 571 "Error: your Recras domain has not been set yet, but you do not have the " … … 560 574 msgstr "" 561 575 562 #: src/Plugin.php:2 13576 #: src/Plugin.php:225 563 577 msgid "Could not connect to your Recras" 564 578 msgstr "" 565 579 566 #: src/Plugin.php:2 17580 #: src/Plugin.php:229 567 581 msgid "Package availability" 568 582 msgstr "Arrangement-Verfügbarkeit" 569 583 570 #: src/Plugin.php:2 45584 #: src/Plugin.php:261 571 585 msgid "At least one choice is required" 572 586 msgstr "" 573 587 574 #: src/Plugin.php:2 46588 #: src/Plugin.php:262 575 589 msgid "Loading..." 576 590 msgstr "Laden..." 577 591 578 #: src/Plugin.php:2 47592 #: src/Plugin.php:263 579 593 msgid "Your message was sent successfully" 580 594 msgstr "" 581 595 582 #: src/Plugin.php:2 48596 #: src/Plugin.php:264 583 597 msgid "There was an error sending your message" 584 598 msgstr "" 585 599 586 #: src/Plugin.php:2 57600 #: src/Plugin.php:273 587 601 msgid "Previous month" 588 602 msgstr "Vorheriger Monat" 589 603 590 #: src/Plugin.php:2 58604 #: src/Plugin.php:274 591 605 msgid "Next month" 592 606 msgstr "Nächsten Monat" 593 607 594 #: src/Plugin.php:2 60608 #: src/Plugin.php:276 595 609 msgid "January" 596 610 msgstr "Januar" 597 611 598 #: src/Plugin.php:2 61612 #: src/Plugin.php:277 599 613 msgid "February" 600 614 msgstr "Februar" 601 615 602 #: src/Plugin.php:2 62616 #: src/Plugin.php:278 603 617 msgid "March" 604 618 msgstr "März" 605 619 606 #: src/Plugin.php:2 63620 #: src/Plugin.php:279 607 621 msgid "April" 608 622 msgstr "April" 609 623 610 #: src/Plugin.php:2 64624 #: src/Plugin.php:280 611 625 msgid "May" 612 626 msgstr "Mai" 613 627 614 #: src/Plugin.php:2 65628 #: src/Plugin.php:281 615 629 msgid "June" 616 630 msgstr "Juni" 617 631 618 #: src/Plugin.php:2 66632 #: src/Plugin.php:282 619 633 msgid "July" 620 634 msgstr "Juli" 621 635 622 #: src/Plugin.php:2 67636 #: src/Plugin.php:283 623 637 msgid "August" 624 638 msgstr "August" 625 639 626 #: src/Plugin.php:2 68640 #: src/Plugin.php:284 627 641 msgid "September" 628 642 msgstr "September" 629 643 630 #: src/Plugin.php:2 69644 #: src/Plugin.php:285 631 645 msgid "October" 632 646 msgstr "Oktober" 633 647 634 #: src/Plugin.php:2 70648 #: src/Plugin.php:286 635 649 msgid "November" 636 650 msgstr "November" 637 651 638 #: src/Plugin.php:2 71652 #: src/Plugin.php:287 639 653 msgid "December" 640 654 msgstr "Dezember" 641 655 642 #: src/Plugin.php:2 74656 #: src/Plugin.php:290 643 657 msgid "Sunday" 644 658 msgstr "Sonntag" 645 659 646 #: src/Plugin.php:2 75660 #: src/Plugin.php:291 647 661 msgid "Monday" 648 662 msgstr "Montag" 649 663 650 #: src/Plugin.php:2 76664 #: src/Plugin.php:292 651 665 msgid "Tuesday" 652 666 msgstr "Dienstag" 653 667 654 #: src/Plugin.php:2 77668 #: src/Plugin.php:293 655 669 msgid "Wednesday" 656 670 msgstr "Mittwoch" 657 671 658 #: src/Plugin.php:2 78672 #: src/Plugin.php:294 659 673 msgid "Thursday" 660 674 msgstr "Donnerstag" 661 675 662 #: src/Plugin.php:2 79676 #: src/Plugin.php:295 663 677 msgid "Friday" 664 678 msgstr "Freitag" 665 679 666 #: src/Plugin.php:2 80680 #: src/Plugin.php:296 667 681 msgid "Saturday" 668 682 msgstr "Samstag" 669 683 670 #: src/Plugin.php:2 83684 #: src/Plugin.php:299 671 685 msgid "Sun" 672 686 msgstr "So" 673 687 674 #: src/Plugin.php: 284688 #: src/Plugin.php:300 675 689 msgid "Mon" 676 690 msgstr "Mo" 677 691 678 #: src/Plugin.php: 285692 #: src/Plugin.php:301 679 693 msgid "Tue" 680 694 msgstr "Di" 681 695 682 #: src/Plugin.php: 286696 #: src/Plugin.php:302 683 697 msgid "Wed" 684 698 msgstr "Mi" 685 699 686 #: src/Plugin.php: 287700 #: src/Plugin.php:303 687 701 msgid "Thu" 688 702 msgstr "Do" 689 703 690 #: src/Plugin.php: 288704 #: src/Plugin.php:304 691 705 msgid "Fri" 692 706 msgstr "Fr" 693 707 694 #: src/Plugin.php: 289708 #: src/Plugin.php:305 695 709 msgid "Sat" 696 710 msgstr "Sa" … … 730 744 msgstr "" 731 745 732 #: src/Settings.php:1 68 src/Settings.php:177 src/Settings.php:186733 #: src/Settings.php: 198746 #: src/Settings.php:180 src/Settings.php:189 src/Settings.php:198 747 #: src/Settings.php:210 734 748 msgid "You do not have sufficient permissions to access this page." 735 749 msgstr "" 736 750 737 #: src/Settings.php:2 68751 #: src/Settings.php:280 738 752 msgid "No theme" 739 753 msgstr "Kein Thema" 740 754 741 #: src/Settings.php:2 72755 #: src/Settings.php:284 742 756 msgid "Basic theme" 743 757 msgstr "Grundthema" 744 758 745 #: src/Settings.php:2 76759 #: src/Settings.php:288 746 760 msgid "BP Green" 747 761 msgstr "BP Grün" 748 762 749 #: src/Settings.php:2 80763 #: src/Settings.php:292 750 764 msgid "Reasonably Red" 751 765 msgstr "Ganz Rot" 752 766 753 #: src/Settings.php:2 84767 #: src/Settings.php:296 754 768 msgid "Recras Blue" 755 769 msgstr "Recras Blau" 756 770 757 #: src/Settings.php:3 66771 #: src/Settings.php:378 758 772 msgid "Recras settings" 759 773 msgstr "Recras-Einstellungen" 760 774 761 #: src/Settings.php:3 72775 #: src/Settings.php:384 762 776 #, fuzzy 763 777 #| msgid "Recras name" … … 765 779 msgstr "Recras-Name" 766 780 767 #: src/Settings.php:3 73781 #: src/Settings.php:385 768 782 msgid "Currency symbol" 769 783 msgstr "" 770 784 771 #: src/Settings.php:3 74785 #: src/Settings.php:386 772 786 msgid "Decimal separator" 773 787 msgstr "" 774 788 775 #: src/Settings.php:375 776 msgid "Use calendar widget for contact forms" 777 msgstr "" 778 779 #: src/Settings.php:376 789 #: src/Settings.php:387 790 #, fuzzy 791 #| msgid "Contact form" 792 msgid "Use calendar widget for contact forms (deprecated)" 793 msgstr "Kontaktformular" 794 795 #: src/Settings.php:388 780 796 msgid "Fix book process datepicker styling" 781 797 msgstr "" 782 798 783 #: src/Settings.php:3 77799 #: src/Settings.php:389 784 800 msgid "Theme for Recras integrations" 785 801 msgstr "" 786 802 787 #: src/Settings.php:3 78803 #: src/Settings.php:390 788 804 msgid "Enable Google Analytics integration? (deprecated)" 789 805 msgstr "" 790 806 791 #: src/Settings.php:4 06807 #: src/Settings.php:418 792 808 #, php-format 793 809 msgid "For more information on these options, please see the %s page." -
recras/trunk/lang/recras-en_GB.po
r3434941 r3484591 2 2 msgstr "" 3 3 "Project-Id-Version: Recras\n" 4 "POT-Creation-Date: 2026-0 1-06 14:51+0100\n"5 "PO-Revision-Date: 2026-0 1-06 14:51+0100\n"4 "POT-Creation-Date: 2026-03-17 09:26+0100\n" 5 "PO-Revision-Date: 2026-03-17 09:26+0100\n" 6 6 "Last-Translator: Sander de Jong <sander@recras.nl>\n" 7 7 "Language-Team: Recras\n" … … 20 20 "X-Poedit-SearchPathExcluded-2: node_modules\n" 21 21 22 #: editor/form-booking.php:73 src/ContactForm.php:2 68 src/ContactForm.php:31022 #: editor/form-booking.php:73 src/ContactForm.php:273 src/ContactForm.php:315 23 23 msgid "yyyy-mm-dd" 24 24 msgstr "" 25 25 26 #: editor/form-booking.php:82 js/gutenberg-package.js:1 2727 #: src/ContactForm.php:2 8526 #: editor/form-booking.php:82 js/gutenberg-package.js:131 27 #: src/ContactForm.php:290 28 28 msgid "hh:mm" 29 29 msgstr "" 30 30 31 #: js/gutenberg-availability.js:2 js/gutenberg-availability.js:3 531 #: js/gutenberg-availability.js:2 js/gutenberg-availability.js:36 32 32 msgid "Availability calendar" 33 33 msgstr "" 34 34 35 #: js/gutenberg-availability.js:3 835 #: js/gutenberg-availability.js:39 36 36 msgid "No suitable packages found" 37 37 msgstr "" 38 38 39 #: js/gutenberg-availability.js:5 0js/gutenberg-package.js:240 #: js/gutenberg-package.js:5 0 js/gutenberg-package.js:142src/Plugin.php:11441 #: src/Plugin.php:2 1639 #: js/gutenberg-availability.js:51 js/gutenberg-package.js:2 40 #: js/gutenberg-package.js:54 js/gutenberg-package.js:146 src/Plugin.php:114 41 #: src/Plugin.php:228 42 42 msgid "Package" 43 43 msgstr "" 44 44 45 #: js/gutenberg-availability.js: 59 js/gutenberg-onlinebooking.js:29545 #: js/gutenberg-availability.js:60 js/gutenberg-onlinebooking.js:296 46 46 msgid "Auto resize iframe" 47 47 msgstr "" 48 48 49 #: js/gutenberg-bookprocess.js:2 js/gutenberg-bookprocess.js:4 550 #: js/gutenberg-bookprocess.js: 59src/Elementor/Bookprocess.php:1749 #: js/gutenberg-bookprocess.js:2 js/gutenberg-bookprocess.js:49 50 #: js/gutenberg-bookprocess.js:65 src/Elementor/Bookprocess.php:17 51 51 #: src/Elementor/Bookprocess.php:35 src/Elementor/Bookprocess.php:45 52 #: src/Plugin.php:115 src/Plugin.php:2 1552 #: src/Plugin.php:115 src/Plugin.php:227 53 53 msgid "Book process" 54 54 msgstr "" 55 55 56 #: js/gutenberg-bookprocess.js: 7656 #: js/gutenberg-bookprocess.js:82 57 57 msgid "Enter package ID. Leave empty to not prefill." 58 58 msgstr "" 59 59 60 #: js/gutenberg-bookprocess.js: 7760 #: js/gutenberg-bookprocess.js:83 61 61 msgid "Enter date in YYYY-MM-DD format. Leave empty to not prefill." 62 62 msgstr "" 63 63 64 #: js/gutenberg-bookprocess.js: 87src/Elementor/Bookprocess.php:6164 #: js/gutenberg-bookprocess.js:93 src/Elementor/Bookprocess.php:61 65 65 msgid "Prefill value for first widget? (optional)" 66 66 msgstr "" 67 67 68 #: js/gutenberg-bookprocess.js: 99src/Elementor/Bookprocess.php:7468 #: js/gutenberg-bookprocess.js:105 src/Elementor/Bookprocess.php:74 69 69 msgid "Hide first widget?" 70 70 msgstr "" 71 71 72 #: js/gutenberg-contactform.js:2 js/gutenberg-contactform.js:76 73 #: js/gutenberg-contactform.js:193 src/Plugin.php:116 src/Plugin.php:212 72 #: js/gutenberg-contactform.js:2 js/gutenberg-contactform.js:194 73 #: src/Plugin.php:224 74 msgid "Contact form (deprecated)" 75 msgstr "" 76 77 #: js/gutenberg-contactform.js:15 js/gutenberg-contactform.js:28 78 #: src/ContactForm.php:122 79 msgid "Send" 80 msgstr "" 81 82 #: js/gutenberg-contactform.js:61 js/gutenberg-onlinebooking.js:63 83 #: js/gutenberg-voucher-sales.js:46 84 msgid "Loading data..." 85 msgstr "" 86 87 #: js/gutenberg-contactform.js:77 src/Plugin.php:116 74 88 msgid "Contact form" 75 89 msgstr "" 76 90 77 #: js/gutenberg-contactform.js:14 js/gutenberg-contactform.js:27 78 #: src/ContactForm.php:117 79 msgid "Send" 80 msgstr "" 81 82 #: js/gutenberg-contactform.js:60 js/gutenberg-onlinebooking.js:62 83 #: js/gutenberg-voucher-sales.js:41 84 msgid "Loading data..." 85 msgstr "" 86 87 #: js/gutenberg-contactform.js:98 91 #: js/gutenberg-contactform.js:99 88 92 msgid "Show title?" 89 93 msgstr "" 90 94 91 #: js/gutenberg-contactform.js:10 795 #: js/gutenberg-contactform.js:108 92 96 msgid "Show labels?" 93 97 msgstr "" 94 98 95 #: js/gutenberg-contactform.js:11 699 #: js/gutenberg-contactform.js:117 96 100 msgid "Show placeholders?" 97 101 msgstr "" 98 102 99 #: js/gutenberg-contactform.js:12 6103 #: js/gutenberg-contactform.js:127 100 104 msgid "Package (optional)" 101 105 msgstr "" 102 106 103 #: js/gutenberg-contactform.js:13 8107 #: js/gutenberg-contactform.js:139 104 108 msgid "Definition list" 105 109 msgstr "" 106 110 107 #: js/gutenberg-contactform.js:14 2111 #: js/gutenberg-contactform.js:143 108 112 msgid "Ordered list" 109 113 msgstr "" 110 114 111 #: js/gutenberg-contactform.js:14 6115 #: js/gutenberg-contactform.js:147 112 116 msgid "Table" 113 117 msgstr "" 114 118 115 #: js/gutenberg-contactform.js:1 49119 #: js/gutenberg-contactform.js:150 116 120 msgid "HTML element" 117 121 msgstr "" 118 122 119 #: js/gutenberg-contactform.js:16 1123 #: js/gutenberg-contactform.js:162 120 124 msgid "Drop-down list (Select)" 121 125 msgstr "" 122 126 123 #: js/gutenberg-contactform.js:16 5127 #: js/gutenberg-contactform.js:166 124 128 msgid "Radio buttons" 125 129 msgstr "" 126 130 127 #: js/gutenberg-contactform.js:16 8131 #: js/gutenberg-contactform.js:169 128 132 msgid "Element for single choices" 129 133 msgstr "" 130 134 131 #: js/gutenberg-contactform.js:17 7 js/gutenberg-contactform.js:178135 #: js/gutenberg-contactform.js:178 js/gutenberg-contactform.js:179 132 136 msgid "Submit button text" 133 137 msgstr "" 134 138 135 #: js/gutenberg-contactform.js:18 8 js/gutenberg-onlinebooking.js:232136 #: js/gutenberg-voucher-sales.js:7 1139 #: js/gutenberg-contactform.js:189 js/gutenberg-onlinebooking.js:233 140 #: js/gutenberg-voucher-sales.js:76 137 141 msgid "i.e. https://www.recras.com/thanks/" 138 142 msgstr "" 139 143 140 #: js/gutenberg-contactform.js:1 89 js/gutenberg-onlinebooking.js:233141 #: js/gutenberg-voucher-sales.js:7 2144 #: js/gutenberg-contactform.js:190 js/gutenberg-onlinebooking.js:234 145 #: js/gutenberg-voucher-sales.js:77 142 146 msgid "Thank-you page (optional, leave empty to not redirect)" 143 147 msgstr "" 144 148 145 #: js/gutenberg-contactform.js:20 2149 #: js/gutenberg-contactform.js:203 146 150 msgid "" 147 151 "Some packages may not be available for all contact forms. You can change " … … 149 153 msgstr "" 150 154 151 #: js/gutenberg-contactform.js:20 3155 #: js/gutenberg-contactform.js:204 152 156 msgid "" 153 157 "If you are still missing packages, make sure in Recras \"May be presented on " … … 156 160 msgstr "" 157 161 158 #: js/gutenberg-global.js:46 src/Settings.php:2 11162 #: js/gutenberg-global.js:46 src/Settings.php:223 159 163 msgid "Recras → Settings menu" 160 164 msgstr "" 161 165 162 #: js/gutenberg-global.js:48 src/Settings.php:2 10166 #: js/gutenberg-global.js:48 src/Settings.php:222 163 167 #, javascript-format, php-format 164 168 msgid "Please enter your Recras domain in the %s before adding widgets." 165 169 msgstr "" 166 170 167 #: js/gutenberg-global.js:3 11171 #: js/gutenberg-global.js:323 168 172 msgid "Pages" 169 173 msgstr "" 170 174 171 #: js/gutenberg-global.js:3 35175 #: js/gutenberg-global.js:347 172 176 msgid "Posts" 173 177 msgstr "" 174 178 175 #: js/gutenberg-onlinebooking.js:2 js/gutenberg-onlinebooking.js: 299176 #: src/Plugin.php: 117 src/Plugin.php:214177 msgid "Online booking of packages "178 msgstr "" 179 180 #: js/gutenberg-onlinebooking.js:9 7179 #: js/gutenberg-onlinebooking.js:2 js/gutenberg-onlinebooking.js:300 180 #: src/Plugin.php:226 181 msgid "Online booking of packages (deprecated)" 182 msgstr "" 183 184 #: js/gutenberg-onlinebooking.js:98 181 185 msgid "Seamless (recommended)" 182 186 msgstr "" 183 187 184 #: js/gutenberg-onlinebooking.js:10 1188 #: js/gutenberg-onlinebooking.js:102 185 189 msgid "iframe (uses setting in your Recras)" 186 190 msgstr "" 187 191 188 #: js/gutenberg-onlinebooking.js:12 0192 #: js/gutenberg-onlinebooking.js:121 189 193 msgid "Integration method" 190 194 msgstr "" 191 195 192 #: js/gutenberg-onlinebooking.js:16 8196 #: js/gutenberg-onlinebooking.js:169 193 197 msgid "Preview times in programme" 194 198 msgstr "" 195 199 196 #: js/gutenberg-onlinebooking.js:17 7200 #: js/gutenberg-onlinebooking.js:178 197 201 msgid "Show discount fields" 198 202 msgstr "" 199 203 200 #: js/gutenberg-onlinebooking.js:19 0204 #: js/gutenberg-onlinebooking.js:191 201 205 msgid "Pre-fill amounts (requires exactly 1 package selected)" 202 206 msgstr "" 203 207 204 #: js/gutenberg-onlinebooking.js:22 1208 #: js/gutenberg-onlinebooking.js:222 205 209 msgid "Pre-fill time (requires exactly 1 package selected)" 206 210 msgstr "" 207 211 208 #: js/gutenberg-onlinebooking.js:22 2212 #: js/gutenberg-onlinebooking.js:223 209 213 msgid "e.g. 14:00" 210 214 msgstr "" 211 215 212 #: js/gutenberg-onlinebooking.js:28 5216 #: js/gutenberg-onlinebooking.js:286 213 217 msgid "Pre-filled package" 214 218 msgstr "" 215 219 216 #: js/gutenberg-onlinebooking.js:28 6220 #: js/gutenberg-onlinebooking.js:287 217 221 msgid "Pre-filled package (optional)" 218 222 msgstr "" 219 223 220 #: js/gutenberg-onlinebooking.js:30 2224 #: js/gutenberg-onlinebooking.js:303 221 225 msgid "" 222 226 "Seamless integration uses the styling of your website. At Recras → Settings " … … 224 228 msgstr "" 225 229 226 #: js/gutenberg-onlinebooking.js:30 3230 #: js/gutenberg-onlinebooking.js:304 227 231 msgid "" 228 232 "iframe integration uses the styling set in your Recras. You can change the " … … 230 234 msgstr "" 231 235 232 #: js/gutenberg-onlinebooking.js:30 6236 #: js/gutenberg-onlinebooking.js:307 233 237 msgid "Package selection" 234 238 msgstr "" 235 239 236 #: js/gutenberg-onlinebooking.js:31 1 js/gutenberg-onlinebooking.js:331237 #: js/gutenberg-package.js:14 5240 #: js/gutenberg-onlinebooking.js:312 js/gutenberg-onlinebooking.js:332 241 #: js/gutenberg-package.js:149 238 242 msgid "" 239 243 "If you are not seeing certain packages, make sure in Recras \"May be " … … 242 246 msgstr "" 243 247 244 #: js/gutenberg-onlinebooking.js:31 2248 #: js/gutenberg-onlinebooking.js:313 245 249 msgid "" 246 250 "If you select a single package, it will be pre-filled and will skip the " … … 248 252 msgstr "" 249 253 250 #: js/gutenberg-onlinebooking.js:32 3254 #: js/gutenberg-onlinebooking.js:324 251 255 msgid "Pre-fill date (requires exactly 1 package selected)" 252 256 msgstr "" 253 257 254 #: js/gutenberg-package.js: 67258 #: js/gutenberg-package.js:71 255 259 msgid "Description" 256 260 msgstr "" 257 261 258 #: js/gutenberg-package.js:7 1 js/gutenberg-product.js:76262 #: js/gutenberg-package.js:75 js/gutenberg-product.js:79 259 263 msgid "Duration" 260 264 msgstr "" 261 265 262 #: js/gutenberg-package.js:7 5 js/gutenberg-product.js:80266 #: js/gutenberg-package.js:79 js/gutenberg-product.js:83 263 267 msgid "Image tag" 264 268 msgstr "" 265 269 266 #: js/gutenberg-package.js: 79270 #: js/gutenberg-package.js:83 267 271 msgid "Minimum number of persons" 268 272 msgstr "" 269 273 270 #: js/gutenberg-package.js:8 3274 #: js/gutenberg-package.js:87 271 275 msgid "Price p.p. excl. VAT" 272 276 msgstr "" 273 277 274 #: js/gutenberg-package.js: 87278 #: js/gutenberg-package.js:91 275 279 msgid "Price p.p. incl. VAT" 276 280 msgstr "" 277 281 278 #: js/gutenberg-package.js:9 1282 #: js/gutenberg-package.js:95 279 283 msgid "Programme" 280 284 msgstr "" 281 285 282 #: js/gutenberg-package.js:9 5286 #: js/gutenberg-package.js:99 283 287 msgid "Starting location" 284 288 msgstr "" 285 289 286 #: js/gutenberg-package.js: 99 js/gutenberg-product.js:96290 #: js/gutenberg-package.js:103 js/gutenberg-product.js:99 287 291 msgid "Title" 288 292 msgstr "" 289 293 290 #: js/gutenberg-package.js:10 3294 #: js/gutenberg-package.js:107 291 295 msgid "Total price excl. VAT" 292 296 msgstr "" 293 297 294 #: js/gutenberg-package.js:1 07298 #: js/gutenberg-package.js:111 295 299 msgid "Total price incl. VAT" 296 300 msgstr "" 297 301 298 #: js/gutenberg-package.js:11 1302 #: js/gutenberg-package.js:115 299 303 msgid "Relative image URL" 300 304 msgstr "" 301 305 302 #: js/gutenberg-package.js:11 4 js/gutenberg-product.js:99303 #: js/gutenberg-voucher-info.js:7 3306 #: js/gutenberg-package.js:118 js/gutenberg-product.js:102 307 #: js/gutenberg-voucher-info.js:78 304 308 msgid "Property to show" 305 309 msgstr "" 306 310 307 #: js/gutenberg-package.js:1 28311 #: js/gutenberg-package.js:132 308 312 msgid "Start time" 309 313 msgstr "" 310 314 311 #: js/gutenberg-package.js:1 38315 #: js/gutenberg-package.js:142 312 316 msgid "Show header?" 313 317 msgstr "" 314 318 315 #: js/gutenberg-product.js:2 js/gutenberg-product.js: 48316 #: js/gutenberg-product.js:10 2 src/Plugin.php:118 src/Plugin.php:218319 #: js/gutenberg-product.js:2 js/gutenberg-product.js:51 320 #: js/gutenberg-product.js:105 src/Plugin.php:118 src/Plugin.php:230 317 321 msgid "Product" 318 322 msgstr "" 319 323 320 #: js/gutenberg-product.js: 68324 #: js/gutenberg-product.js:71 321 325 msgid "Description (long)" 322 326 msgstr "" 323 327 324 #: js/gutenberg-product.js:7 2328 #: js/gutenberg-product.js:75 325 329 msgid "Description (short)" 326 330 msgstr "" 327 331 328 #: js/gutenberg-product.js:8 4332 #: js/gutenberg-product.js:87 329 333 msgid "Image URL" 330 334 msgstr "" 331 335 332 #: js/gutenberg-product.js: 88336 #: js/gutenberg-product.js:91 333 337 msgid "Minimum amount" 334 338 msgstr "" 335 339 336 #: js/gutenberg-product.js:9 2340 #: js/gutenberg-product.js:95 337 341 msgid "Price (incl. VAT)" 338 342 msgstr "" 339 343 340 #: js/gutenberg-product.js:10 6344 #: js/gutenberg-product.js:109 341 345 msgid "" 342 346 "If you are not seeing certain products, make sure in Recras \"May be " … … 345 349 msgstr "" 346 350 347 #: js/gutenberg-product.js:1 09351 #: js/gutenberg-product.js:112 348 352 msgid "" 349 353 "Could not find any products. Make sure in Recras \"May be presented on a " … … 351 355 msgstr "" 352 356 353 #: js/gutenberg-voucher-info.js:2 js/gutenberg-voucher-info.js: 76354 #: src/Plugin.php:120 src/Plugin.php:2 21357 #: js/gutenberg-voucher-info.js:2 js/gutenberg-voucher-info.js:81 358 #: src/Plugin.php:120 src/Plugin.php:234 355 359 msgid "Voucher info" 356 360 msgstr "" 357 361 358 #: js/gutenberg-voucher-info.js:4 4 js/gutenberg-voucher-sales.js:55362 #: js/gutenberg-voucher-info.js:49 js/gutenberg-voucher-sales.js:60 359 363 msgid "Voucher template" 360 364 msgstr "" 361 365 362 #: js/gutenberg-voucher-info.js:6 2366 #: js/gutenberg-voucher-info.js:67 363 367 msgid "Name" 364 368 msgstr "" 365 369 366 #: js/gutenberg-voucher-info.js: 66370 #: js/gutenberg-voucher-info.js:71 367 371 msgid "Price" 368 372 msgstr "" 369 373 370 #: js/gutenberg-voucher-info.js:7 0374 #: js/gutenberg-voucher-info.js:75 371 375 msgid "Validity" 372 376 msgstr "" 373 377 374 #: js/gutenberg-voucher-sales.js:2 js/gutenberg-voucher-sales.js: 85375 #: src/Plugin.php: 119 src/Plugin.php:222376 msgid "Voucher sales "377 msgstr "" 378 379 #: js/gutenberg-voucher-sales.js:8 2378 #: js/gutenberg-voucher-sales.js:2 js/gutenberg-voucher-sales.js:90 379 #: src/Plugin.php:235 380 msgid "Voucher sales (deprecated)" 381 msgstr "" 382 383 #: js/gutenberg-voucher-sales.js:87 380 384 msgid "Show quantity input (will be set to 1 if not shown)" 381 385 msgstr "" 382 386 383 387 #: src/Arrangement.php:21 src/Availability.php:20 src/Bookprocess.php:87 384 #: src/ContactForm.php: 55src/Products.php:21 src/Vouchers.php:22388 #: src/ContactForm.php:60 src/Products.php:21 src/Vouchers.php:22 385 389 msgid "Error: no ID set" 386 390 msgstr "" 387 391 388 392 #: src/Arrangement.php:24 src/Availability.php:23 src/Bookprocess.php:91 389 #: src/ContactForm.php: 58src/OnlineBooking.php:25 src/Products.php:24393 #: src/ContactForm.php:63 src/OnlineBooking.php:25 src/Products.php:24 390 394 #: src/Vouchers.php:25 src/Vouchers.php:78 391 395 msgid "Error: ID is not a number" … … 393 397 394 398 #: src/Arrangement.php:39 src/Arrangement.php:279 src/Bookprocess.php:98 395 #: src/ContactForm.php:7 1 src/ContactForm.php:76399 #: src/ContactForm.php:76 src/ContactForm.php:81 396 400 #, php-format 397 401 msgid "Error: %s" … … 440 444 msgstr "" 441 445 442 #: src/ContactForm.php: 76446 #: src/ContactForm.php:81 443 447 msgid "Contact form might be deleted" 444 448 msgstr "" 445 449 446 #: src/ContactForm.php:11 3450 #: src/ContactForm.php:118 447 451 msgid "Error: package is set, but contact form does not support packages" 448 452 msgstr "" 449 453 450 #: src/ContactForm.php:1 25src/OnlineBooking.php:70 src/Vouchers.php:93454 #: src/ContactForm.php:130 src/OnlineBooking.php:70 src/Vouchers.php:93 451 455 msgid "Error: redirect is set, but is an invalid URL" 452 456 msgstr "" 453 457 454 #: src/ContactForm.php:3 76458 #: src/ContactForm.php:381 455 459 msgid "Unknown" 456 460 msgstr "" 457 461 458 #: src/ContactForm.php:3 77462 #: src/ContactForm.php:382 459 463 msgid "Male" 460 464 msgstr "" 461 465 462 #: src/ContactForm.php:3 78466 #: src/ContactForm.php:383 463 467 msgid "Female" 464 468 msgstr "" 465 469 466 #: src/ContactForm.php:5 14470 #: src/ContactForm.php:536 467 471 msgid "(required)" 468 472 msgstr "" 469 473 470 #: src/ContactForm.php:5 39474 #: src/ContactForm.php:561 471 475 msgid "Clear choice" 472 476 msgstr "" … … 538 542 msgstr "" 539 543 540 #: src/Plugin.php:99 src/Plugin.php:100 src/Settings.php:4 07544 #: src/Plugin.php:99 src/Plugin.php:100 src/Settings.php:419 541 545 msgid "Documentation" 542 546 msgstr "" … … 546 550 msgstr "" 547 551 548 #: src/Plugin.php:195 552 #: src/Plugin.php:117 553 msgid "Online booking of packages" 554 msgstr "" 555 556 #: src/Plugin.php:119 557 msgid "Voucher sales" 558 msgstr "" 559 560 #: src/Plugin.php:207 549 561 msgid "Error: you have not set your Recras domain yet" 550 562 msgstr "" 551 563 552 #: src/Plugin.php: 197564 #: src/Plugin.php:209 553 565 msgid "" 554 566 "Error: your Recras domain has not been set yet, but you do not have the " … … 557 569 msgstr "" 558 570 559 #: src/Plugin.php:2 13571 #: src/Plugin.php:225 560 572 msgid "Could not connect to your Recras" 561 573 msgstr "" 562 574 563 #: src/Plugin.php:2 17575 #: src/Plugin.php:229 564 576 msgid "Package availability" 565 577 msgstr "" 566 578 567 #: src/Plugin.php:2 45579 #: src/Plugin.php:261 568 580 msgid "At least one choice is required" 569 581 msgstr "" 570 582 571 #: src/Plugin.php:2 46583 #: src/Plugin.php:262 572 584 msgid "Loading..." 573 585 msgstr "" 574 586 575 #: src/Plugin.php:2 47587 #: src/Plugin.php:263 576 588 msgid "Your message was sent successfully" 577 589 msgstr "" 578 590 579 #: src/Plugin.php:2 48591 #: src/Plugin.php:264 580 592 msgid "There was an error sending your message" 581 593 msgstr "" 582 594 583 #: src/Plugin.php:2 57595 #: src/Plugin.php:273 584 596 msgid "Previous month" 585 597 msgstr "" 586 598 587 #: src/Plugin.php:2 58599 #: src/Plugin.php:274 588 600 msgid "Next month" 589 601 msgstr "" 590 602 591 #: src/Plugin.php:2 60603 #: src/Plugin.php:276 592 604 msgid "January" 593 605 msgstr "" 594 606 595 #: src/Plugin.php:2 61607 #: src/Plugin.php:277 596 608 msgid "February" 597 609 msgstr "" 598 610 599 #: src/Plugin.php:2 62611 #: src/Plugin.php:278 600 612 msgid "March" 601 613 msgstr "" 602 614 603 #: src/Plugin.php:2 63615 #: src/Plugin.php:279 604 616 msgid "April" 605 617 msgstr "" 606 618 607 #: src/Plugin.php:2 64619 #: src/Plugin.php:280 608 620 msgid "May" 609 621 msgstr "" 610 622 611 #: src/Plugin.php:2 65623 #: src/Plugin.php:281 612 624 msgid "June" 613 625 msgstr "" 614 626 615 #: src/Plugin.php:2 66627 #: src/Plugin.php:282 616 628 msgid "July" 617 629 msgstr "" 618 630 619 #: src/Plugin.php:2 67631 #: src/Plugin.php:283 620 632 msgid "August" 621 633 msgstr "" 622 634 623 #: src/Plugin.php:2 68635 #: src/Plugin.php:284 624 636 msgid "September" 625 637 msgstr "" 626 638 627 #: src/Plugin.php:2 69639 #: src/Plugin.php:285 628 640 msgid "October" 629 641 msgstr "" 630 642 631 #: src/Plugin.php:2 70643 #: src/Plugin.php:286 632 644 msgid "November" 633 645 msgstr "" 634 646 635 #: src/Plugin.php:2 71647 #: src/Plugin.php:287 636 648 msgid "December" 637 649 msgstr "" 638 650 639 #: src/Plugin.php:2 74651 #: src/Plugin.php:290 640 652 msgid "Sunday" 641 653 msgstr "" 642 654 643 #: src/Plugin.php:2 75655 #: src/Plugin.php:291 644 656 msgid "Monday" 645 657 msgstr "" 646 658 647 #: src/Plugin.php:2 76659 #: src/Plugin.php:292 648 660 msgid "Tuesday" 649 661 msgstr "" 650 662 651 #: src/Plugin.php:2 77663 #: src/Plugin.php:293 652 664 msgid "Wednesday" 653 665 msgstr "" 654 666 655 #: src/Plugin.php:2 78667 #: src/Plugin.php:294 656 668 msgid "Thursday" 657 669 msgstr "" 658 670 659 #: src/Plugin.php:2 79671 #: src/Plugin.php:295 660 672 msgid "Friday" 661 673 msgstr "" 662 674 663 #: src/Plugin.php:2 80675 #: src/Plugin.php:296 664 676 msgid "Saturday" 665 677 msgstr "" 666 678 667 #: src/Plugin.php:2 83679 #: src/Plugin.php:299 668 680 msgid "Sun" 669 681 msgstr "" 670 682 671 #: src/Plugin.php: 284683 #: src/Plugin.php:300 672 684 msgid "Mon" 673 685 msgstr "" 674 686 675 #: src/Plugin.php: 285687 #: src/Plugin.php:301 676 688 msgid "Tue" 677 689 msgstr "" 678 690 679 #: src/Plugin.php: 286691 #: src/Plugin.php:302 680 692 msgid "Wed" 681 693 msgstr "" 682 694 683 #: src/Plugin.php: 287695 #: src/Plugin.php:303 684 696 msgid "Thu" 685 697 msgstr "" 686 698 687 #: src/Plugin.php: 288699 #: src/Plugin.php:304 688 700 msgid "Fri" 689 701 msgstr "" 690 702 691 #: src/Plugin.php: 289703 #: src/Plugin.php:305 692 704 msgid "Sat" 693 705 msgstr "" … … 727 739 msgstr "" 728 740 729 #: src/Settings.php:1 68 src/Settings.php:177 src/Settings.php:186730 #: src/Settings.php: 198741 #: src/Settings.php:180 src/Settings.php:189 src/Settings.php:198 742 #: src/Settings.php:210 731 743 msgid "You do not have sufficient permissions to access this page." 732 744 msgstr "" 733 745 734 #: src/Settings.php:2 68746 #: src/Settings.php:280 735 747 msgid "No theme" 736 748 msgstr "" 737 749 738 #: src/Settings.php:2 72750 #: src/Settings.php:284 739 751 msgid "Basic theme" 740 752 msgstr "" 741 753 742 #: src/Settings.php:2 76754 #: src/Settings.php:288 743 755 msgid "BP Green" 744 756 msgstr "" 745 757 746 #: src/Settings.php:2 80758 #: src/Settings.php:292 747 759 msgid "Reasonably Red" 748 760 msgstr "" 749 761 750 #: src/Settings.php:2 84762 #: src/Settings.php:296 751 763 msgid "Recras Blue" 752 764 msgstr "" 753 765 754 #: src/Settings.php:3 66766 #: src/Settings.php:378 755 767 msgid "Recras settings" 756 768 msgstr "" 757 769 758 #: src/Settings.php:3 72770 #: src/Settings.php:384 759 771 msgid "Recras domain" 760 772 msgstr "" 761 773 762 #: src/Settings.php:3 73774 #: src/Settings.php:385 763 775 msgid "Currency symbol" 764 776 msgstr "" 765 777 766 #: src/Settings.php:3 74778 #: src/Settings.php:386 767 779 msgid "Decimal separator" 768 780 msgstr "" 769 781 770 #: src/Settings.php:3 75771 msgid "Use calendar widget for contact forms "772 msgstr "" 773 774 #: src/Settings.php:3 76782 #: src/Settings.php:387 783 msgid "Use calendar widget for contact forms (deprecated)" 784 msgstr "" 785 786 #: src/Settings.php:388 775 787 msgid "Fix book process datepicker styling" 776 788 msgstr "" 777 789 778 #: src/Settings.php:3 77790 #: src/Settings.php:389 779 791 msgid "Theme for Recras integrations" 780 792 msgstr "" 781 793 782 #: src/Settings.php:3 78794 #: src/Settings.php:390 783 795 msgid "Enable Google Analytics integration? (deprecated)" 784 796 msgstr "" 785 797 786 #: src/Settings.php:4 06798 #: src/Settings.php:418 787 799 #, php-format 788 800 msgid "For more information on these options, please see the %s page." -
recras/trunk/lang/recras-nl_NL-recras-gutenberg-global.json
r3369571 r3484591 1 {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"nl_NL"}," Package":["Arrangement"],"If you are not seeing certain packages, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Extra settings\" of the package.":["Als je bepaalde arrangementen niet ziet, zorg dan dat in Recras \"Mag op een website gepresenteerd worden (via API)\" is aangevinkt op het tabblad \"Extra instellingen\" van het arrangement."],"Show what?":["Toon wat?"],"Title":["Titel"],"Description":["Beschrijving"],"Duration":["Duur"],"Starting location":["Startlocatie"],"Minimum number of persons":["Minimum aantal personen"],"Price p.p. excl. VAT":["Prijs p.p. excl. btw"],"Price p.p. incl. VAT":["Prijs p.p. incl. btw"],"Total price excl. VAT":["Totaalprijs excl. btw"],"Total price incl. VAT":["Totaalprijs incl. btw"],"Programme":["Programma"],"Image tag":["Afbeelding-tag"],"Relative image URL":["Relatieve afbeelding-URL"],"Start time":["Starttijd"],"hh:mm":["uu:mm"],"Show header?":["Toon header?"],"Yes":["Ja"],"No":["Nee"],"Insert shortcode":["Voeg shortcode in"],"Integration method":["Integratiemethode"],"Seamless (recommended)":["Naadloos (aanbevolen)"],"iframe (uses setting in your Recras)":["iframe (gebruikt instelling uit jouw Recras)"],"Seamless integration uses the styling of your website. At Recras → Settings in the menu on the left, you can set an optional theme.":["Naadloze integratie gebruikt de styling van je website. Via Recras → Instellingen in het menu aan de linkerkant kun een optioneel thema instellen."],"iframe integration uses the styling set in your Recras. You can change the styling in Recras via Settings → Other settings → Custom CSS.":["iframe-integratie gebruikt de styling die is ingesteld in jouw Recras. Je kunt de styling in Recras aanpassen via Beheer → Overige instellingen → Eigen CSS."],"Package selection":["Arrangementselectie"],"To (de)select multiple packages, hold Ctrl and click (Cmd on Mac)":["Om meerdere arrangementen te (de)selecteren, houd Ctrl ingedrukt en klik (Cmd op Mac)"],"No pre-filled package":["Geen vooraf ingevuld arrangement"],"Preview times in programme":["Toon voorbeeldtijden in programma"],"Pre-fill amounts (requires pre-filled package)":["Aantallen vooraf invullen (vereist exact 1 geselecteerd arrangement)"],"Sorry, this is only available using the Gutenberg editor.":["Sorry, dit is alleen beschikbaar in de Gutenberg-editor."],"Pre-fill date (requires exactly 1 package selected)":["Datum vooraf invullen (vereist exact 1 geselecteerd arrangement)"],"yyyy-mm-dd":["jjjj-mm-dd"],"Pre-fill time (requires exactly 1 package selected)":["Tijd vooraf invullen (vereist exact 1 geselecteerd arrangement)"],"Thank-you page":["Bedanktpagina"],"Don't redirect":["Niet doorsturen"],"Pages":["Pagina's"],"Posts":["Berichten"],"Show discount fields":["Toon korting-velden"],"Automatic resize?":["Automatisch schalen?"],"Book process":["Boekproces"],"Initial value for first widget":["Initiële waarde voor eerste widget"],"Please note that no validation on this value is performed. Invalid values may be ignored or may stop the book process from working properly.":["Let op dat er geen validatie wordt gedaan op deze waarde. Ongeldige waardes worden mogelijk genegeerd of kunnen er voor zorgen dat het boekproces goed werkt."],"Hide first widget?":["Eerste widget verbergen?"],"Contact form":["Contactformulier"],"Show title?":["Toon titel?"],"Show labels?":["Toon labels?"],"Show placeholders?":["Toon placeholders?"],"Some packages may not be available for all contact forms. You can change this by editing your contact forms in Recras.":["Sommige arrangementen zijn mogelijk niet beschikbaar voor alle contactformulieren. Je kunt dit wijzigen door je contactformulieren in Recras te bewerken."],"If you are still missing packages, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Extra settings\" of the package.":["Als je nog steeds arrangementen mist, zorg dan dat in Recras \"Mag op een website gepresenteerd worden (via API)\" is aangevinkt op het tabblad \"Extra instellingen\" van het arrangement."],"HTML element":["HTML-element"],"Definition list":["Definitielijst"],"Ordered list":["Geordende lijst"],"Table":["Tabel"],"Element for single choices":["Element voor \"enkele keuze\""],"Drop-down list (Select)":["Dropdownlijst (select)"],"Radio buttons":["Keuzerondjes (radioknoppen)"],"This relates to: customer type, package selection, gender, and single choice":["Dit heeft betrekking op: klanttype, arrangementkeuze, geslacht en \"enkele keuze\""],"Submit button text":["Tekst op knop Versturen"],"Send":["Versturen"],"Product":["Product"],"Description (short)":["Beschrijving (kort)"],"Description (long)":["Beschrijving (lang)"],"Image URL":["Afbeelding-URL"],"Minimum amount":["Minimumaantal"],"Price (incl. VAT)":["Prijs (incl. btw)"],"Template":["Template"],"Name":["Naam"],"Price":["Prijs"],"Validity":["Geldigheid"],"No pre-filled template":["Geen vooraf ingevuld template"],"Show quantity input (will be set to 1 if not shown)":["Toon aantal-invoer (wordt op 1 gezet indien verborgen)"],"Availability calendar":["Beschikbaarheidskalender"],"No suitable packages found":["Geen geschikte arrangementen gevonden"],"Auto resize iframe":["iframe automatisch schalen"],"Enter package ID. Leave empty to not prefill.":["Vul arrangements-ID in. Laat leeg om niet vooraf in te vullen."],"Enter date in YYYY-MM-DD format. Leave empty to not prefill.":["Vul datum in formaat JJJJ-MM-DD in. Laat leeg om niet vooraf in te vullen."],"Prefill value for first widget? (optional)":["Waarde voor eerste widget vooraf invullen? (optioneel)"],"Loading data...":["Data aan het laden..."],"Package (optional)":["Arrangement (optioneel)"],"i.e. https://www.recras.com/thanks/":["bijv. https://www.recras.nl/bedankt/"],"Thank-you page (optional, leave empty to not redirect)":["Bedanktpagina (optioneel, laat leeg om niet door te sturen)"],"Recras → Settings menu":["menu Recras → Instellingen"],"Please enter your Recras domain in the %s before adding widgets.":["Vul je Recras-domein in in het %s voordat je widgets toevoegt."],"Online booking of packages":["Online boeking van arrangementen"],"Pre-fill amounts (requires exactly 1 package selected)":["Aantallen vooraf invullen (vereist exact 1 arrangement geselecteerd)"],"e.g. 14:00":["bijv. 14:00"],"Pre-filled package":["Vooraf ingevuld arrangement"],"Pre-filled package (optional)":["Vooraf ingevuld arrangement (optioneel)"],"If you select a single package, it will be pre-filled and will skip the package selection step.":["Als je een enkel arrangement selecteert wordt deze vooraf ingevuld en wordt de arrangement-selectie-stap overgeslagen."],"Property to show":["Eigenschap om te tonen"],"If you are not seeing certain products, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Presentation\" of the product.":["Als je bepaalde producten niet ziet, zorg dan dat in Recras \"Mag op een website gepresenteerd worden (via API)\" is aangevinkt op het tabblad \"Presentatie\" van het product."],"Could not find any products. Make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Presentation\" of the product.":["Kon geen producten vinden. Zorg dat in Recras \"Mag op een website gepresenteerd worden (via API)\" is aangevinkt op het tabblad \"Presentatie\" van het product."],"Voucher info":["Tegoedboninfo"],"Voucher template":["Tegoedbon-template"],"Voucher sales":["Tegoedbonverkoop"],"Error: no ID set":["Fout: geen ID ingesteld"],"Error: ID is not a number":["Fout: ID is geen getal"],"Error: %s":["Fout: %s"],"Error: Package %d does not exist or may not be presented on a website":["Fout: arrangement %d bestaat niet of mag niet op een website weergegeven worden"],"Error: programme is empty":["Fout: programma is leeg"],"Error: unknown option":["Fout: onbekende optie"],"From":["Van"],"Until":["Tot"],"Activity":["Activiteit"],"Day %d":["Dag %d"],"No duration specified":["Geen duur opgegeven"],"No location specified":["Geen locatie opgegeven"],"Error: book process does not exist":["Fout: boekproces bestaat niet"],"Contact form might be deleted":["Contactformulier is mogelijk verwijderd"],"Error: package is set, but contact form does not support packages":["Fout: arrangement is ingesteld, maar contactformulier ondersteunt geen arrangementen"],"Error: redirect is set, but is an invalid URL":["Fout: doorstuurpagina is ingesteld, maar is een ongeldige URL"],"Unknown":["Onbekend"],"Male":["Man"],"Female":["Vrouw"],"(required)":["(verplicht)"],"Clear choice":["Keuze wissen"],"No book process has been chosen yet. Click on this text to select a book process.":["Er is nog geen boekproces gekozen. Klik op deze tekst om een boekproces te selecteren."],"Book process %s cannot be found. It was either deleted from Recras, or made private.":["Boekproces %s kan niet worden gevonden. Het is verwijderd uit Recras of privé gemaakt."],"Book process \"%s\" is integrated here.":["Boekproces \"%s\" is hier geïntegreerd."],"The first widget is hidden for the booker, and has an initial value of \"%s\".":["De eerste widget is verborgen voor de boeker en heeft een initiële waarde van\"%s\"."],"It has an initial value for the first widget of \"%s\".":["Het heeft een initiële waarde voor de eerste widget van\"%s\"."],"Error: could not retrieve data from Recras. The error message received was: %s":["Fout: kon data niet ophalen uit Recras. De ontvangen foutmelding was: %s"],"Error: could not parse data from Recras. The error message was: %s":["Fout: kon data uit Recras niet verwerken. De foutmelding was: %s"],"Error: \"prefill_date\" is not a valid ISO 8601 string":["Fout: \"prefill_date\" is geen geldige ISO-8601-string"],"Error: \"prefill_date\" is a date in the past":["Fout: \"prefill_date\" is een datum in het verleden"],"Error: \"prefill_time\" is not a valid time string (e.g. 14:30)":["Fout: \"prefill_time\" is geen geldige tijd-string (bijv. 14:30)"],"Error: \"product_amounts\" is invalid":["Fout: \"product_amounts\" is ongeldig"],"Settings":["Instellingen"],"Cache":["Cache"],"Documentation":["Documentatie"],"Shortcodes":["Shortcodes"],"Error: you have not set your Recras domain yet":["Fout: je hebt je Recras-domein nog niet ingesteld"],"Error: your Recras domain has not been set yet, but you do not have the permission to set this. Please ask your site administrator to do this for you.":["Fout: je Recras-domein is nog niet ingesteld, maar je hebt niet de rechten om dit zelf in te stellen. Vraag aan je websitebeheerder om dit voor je te doen."],"Could not connect to your Recras":["Kon geen verbinding maken met je Recras"],"Package availability":["Arrangement-beschikbaarheid"],"At least one choice is required":["Ten minste één keuze is vereist"],"Loading...":["Laden..."],"Your message was sent successfully":["Uw bericht is succesvol verzonden"],"There was an error sending your message":["Er was een probleem met het verzenden van uw bericht"],"Previous month":["Vorige maand"],"Next month":["Volgende maand"],"January":["Januari"],"February":["Februari"],"March":["Maart"],"April":["April"],"May":["Mei"],"June":["Juni"],"July":["Juli"],"August":["Augustus"],"September":["September"],"October":["Oktober"],"November":["November"],"December":["December"],"Sunday":["Zondag"],"Monday":["Maandag"],"Tuesday":["Dinsdag"],"Wednesday":["Woensdag"],"Thursday":["Donderdag"],"Friday":["Vrijdag"],"Saturday":["Zaterdag"],"Sun":["Zo"],"Mon":["Ma"],"Tue":["Di"],"Wed":["Wo"],"Thu":["Do"],"Fri":["Vr"],"Sat":["Za"],"Error: product does not exist":["Fout: product bestaat niet"],"This option is <strong>not needed when using book processes</strong>. GA is integrated automatically for them.":["Deze optie is <strong>niet nodig bij het gebruik van boekprocessen</strong>. GA wordt daar automatisch geïntegreerd."],"Use this setting if you want to be able to style the date picker in contact forms.":["Gebruik deze instelling als je de datumselectie in contactformulieren wilt kunnen opmaken."],"On some websites, the date picker in a book process has a tiny font. Enable this to fix this.":["Op sommige websites heeft de datumselectie in een boekproces een klein lettertype. Zet deze optie aan om dit op te lossen."],"Used in prices, such as 100,00.":["Gebruikt in prijzen, zoals 100,00."],"Instance not found!":["Recras-domein niet gevonden!"],"Error fetching instance!":["Fout bij het ophalen van het Recras-domein!"],"You do not have sufficient permissions to access this page.":["Je hebt niet genoeg rechten om deze pagina te bekijken."],"No theme":["Geen thema"],"Basic theme":["Basisthema"],"BP Green":["BP Groen"],"Reasonably Red":["Redelijk Rood"],"Recras Blue":["Recras Blauw"],"Recras settings":["Recras-instellingen"],"Recras domain":["Recras-domein"],"Currency symbol":["Valutasymbool"],"Decimal separator":["Decimaalscheiding"],"Use calendar widget for contact forms":["Kalender-widget gebruiken voor contactformulieren"],"Fix book process datepicker styling":["Styling boekproces-datumselectie oplossen"],"Theme for Recras integrations":["Thema voor Recras-integraties"],"Enable Google Analytics integration? (deprecated)":["Google Analytics-integratie inschakelen? (verouderd)"],"For more information on these options, please see the %s page.":["Bekijk voor meer informatie over deze instellingen de %s-pagina."],"Error: template does not exist":["Fout: template bestaat niet"],"The cache was cleared.":["De cache is gewist."],"The selected cache could not be cleared. This could be an error, or there could be nothing to clear.":["De geselecteerde cache kon niet geleegd worden. Dit kan een fout zijn, of de cache is al leeg."],"Clear Recras cache":["Leeg Recras-cache"],"Data coming from your Recras (contact forms, packages, products, voucher templates) is cached for up to 24 hours. If you make important changes (i.e. a price increase) it is recommended you clear the Recras cache.":["Data die uit Recras komt (contactformulieren, arrangementen, producten, tegoedbontemplates) wordt tot 24 uur bewaard. Als je belangrijke wijzigingen maakt (bijv. een prijsverhoging) dan is het aan te raden om de Recras-cache te wissen."],"Packages":["Arrangementen"],"Book processes":["Boekprocessen"],"Contact forms":["Contactformulieren"],"Products":["Producten"],"Save":["Opslaan"]}}}1 {"domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural_forms":"nplurals=2; plural=(n != 1);","lang":"nl_NL"},"yyyy-mm-dd":["jjjj-mm-dd"],"hh:mm":["uu:mm"],"Availability calendar":["Beschikbaarheidskalender"],"No suitable packages found":["Geen geschikte arrangementen gevonden"],"Package":["Arrangement"],"Auto resize iframe":["iframe automatisch schalen"],"Book process":["Boekproces"],"Enter package ID. Leave empty to not prefill.":["Vul arrangements-ID in. Laat leeg om niet vooraf in te vullen."],"Enter date in YYYY-MM-DD format. Leave empty to not prefill.":["Vul datum in formaat JJJJ-MM-DD in. Laat leeg om niet vooraf in te vullen."],"Prefill value for first widget? (optional)":["Waarde voor eerste widget vooraf invullen? (optioneel)"],"Hide first widget?":["Eerste widget verbergen?"],"Contact form (deprecated)":["Contactformulier (verouderd)"],"Send":["Versturen"],"Loading data...":["Data aan het laden..."],"Contact form":["Contactformulier"],"Show title?":["Toon titel?"],"Show labels?":["Toon labels?"],"Show placeholders?":["Toon placeholders?"],"Package (optional)":["Arrangement (optioneel)"],"Definition list":["Definitielijst"],"Ordered list":["Geordende lijst"],"Table":["Tabel"],"HTML element":["HTML-element"],"Drop-down list (Select)":["Dropdownlijst (select)"],"Radio buttons":["Keuzerondjes (radioknoppen)"],"Element for single choices":["Element voor \"enkele keuze\""],"Submit button text":["Tekst op knop Versturen"],"i.e. https://www.recras.com/thanks/":["bijv. https://www.recras.nl/bedankt/"],"Thank-you page (optional, leave empty to not redirect)":["Bedanktpagina (optioneel, laat leeg om niet door te sturen)"],"Some packages may not be available for all contact forms. You can change this by editing your contact forms in Recras.":["Sommige arrangementen zijn mogelijk niet beschikbaar voor alle contactformulieren. Je kunt dit wijzigen door je contactformulieren in Recras te bewerken."],"If you are still missing packages, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Extra settings\" of the package.":["Als je nog steeds arrangementen mist, zorg dan dat in Recras \"Mag op een website gepresenteerd worden (via API)\" is aangevinkt op het tabblad \"Extra instellingen\" van het arrangement."],"Recras → Settings menu":["menu Recras → Instellingen"],"Please enter your Recras domain in the %s before adding widgets.":["Vul je Recras-domein in in het %s voordat je widgets toevoegt."],"Pages":["Pagina's"],"Posts":["Berichten"],"Online booking of packages (deprecated)":["Online boeking van arrangementen (verouderd)"],"Seamless (recommended)":["Naadloos (aanbevolen)"],"iframe (uses setting in your Recras)":["iframe (gebruikt instelling uit jouw Recras)"],"Integration method":["Integratiemethode"],"Preview times in programme":["Toon voorbeeldtijden in programma"],"Show discount fields":["Toon korting-velden"],"Pre-fill amounts (requires exactly 1 package selected)":["Aantallen vooraf invullen (vereist exact 1 arrangement geselecteerd)"],"Pre-fill time (requires exactly 1 package selected)":["Tijd vooraf invullen (vereist exact 1 geselecteerd arrangement)"],"e.g. 14:00":["bijv. 14:00"],"Pre-filled package":["Vooraf ingevuld arrangement"],"Pre-filled package (optional)":["Vooraf ingevuld arrangement (optioneel)"],"Seamless integration uses the styling of your website. At Recras → Settings in the menu on the left, you can set an optional theme.":["Naadloze integratie gebruikt de styling van je website. Via Recras → Instellingen in het menu aan de linkerkant kun een optioneel thema instellen."],"iframe integration uses the styling set in your Recras. You can change the styling in Recras via Settings → Other settings → Custom CSS.":["iframe-integratie gebruikt de styling die is ingesteld in jouw Recras. Je kunt de styling in Recras aanpassen via Beheer → Overige instellingen → Eigen CSS."],"Package selection":["Arrangementselectie"],"If you are not seeing certain packages, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Extra settings\" of the package.":["Als je bepaalde arrangementen niet ziet, zorg dan dat in Recras \"Mag op een website gepresenteerd worden (via API)\" is aangevinkt op het tabblad \"Extra instellingen\" van het arrangement."],"If you select a single package, it will be pre-filled and will skip the package selection step.":["Als je een enkel arrangement selecteert wordt deze vooraf ingevuld en wordt de arrangement-selectie-stap overgeslagen."],"Pre-fill date (requires exactly 1 package selected)":["Datum vooraf invullen (vereist exact 1 geselecteerd arrangement)"],"Description":["Beschrijving"],"Duration":["Duur"],"Image tag":["Afbeelding-tag"],"Minimum number of persons":["Minimum aantal personen"],"Price p.p. excl. VAT":["Prijs p.p. excl. btw"],"Price p.p. incl. VAT":["Prijs p.p. incl. btw"],"Programme":["Programma"],"Starting location":["Startlocatie"],"Title":["Titel"],"Total price excl. VAT":["Totaalprijs excl. btw"],"Total price incl. VAT":["Totaalprijs incl. btw"],"Relative image URL":["Relatieve afbeelding-URL"],"Property to show":["Eigenschap om te tonen"],"Start time":["Starttijd"],"Show header?":["Toon header?"],"Product":["Product"],"Description (long)":["Beschrijving (lang)"],"Description (short)":["Beschrijving (kort)"],"Image URL":["Afbeelding-URL"],"Minimum amount":["Minimumaantal"],"Price (incl. VAT)":["Prijs (incl. btw)"],"If you are not seeing certain products, make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Presentation\" of the product.":["Als je bepaalde producten niet ziet, zorg dan dat in Recras \"Mag op een website gepresenteerd worden (via API)\" is aangevinkt op het tabblad \"Presentatie\" van het product."],"Could not find any products. Make sure in Recras \"May be presented on a website (via API)\" is enabled on the tab \"Presentation\" of the product.":["Kon geen producten vinden. Zorg dat in Recras \"Mag op een website gepresenteerd worden (via API)\" is aangevinkt op het tabblad \"Presentatie\" van het product."],"Voucher info":["Tegoedboninfo"],"Voucher template":["Tegoedbon-template"],"Name":["Naam"],"Price":["Prijs"],"Validity":["Geldigheid"],"Voucher sales (deprecated)":["Tegoedbonverkoop (verouderd)"],"Show quantity input (will be set to 1 if not shown)":["Toon aantal-invoer (wordt op 1 gezet indien verborgen)"],"Error: no ID set":["Fout: geen ID ingesteld"],"Error: ID is not a number":["Fout: ID is geen getal"],"Error: %s":["Fout: %s"],"Error: Package %d does not exist or may not be presented on a website":["Fout: arrangement %d bestaat niet of mag niet op een website weergegeven worden"],"Error: programme is empty":["Fout: programma is leeg"],"Error: unknown option":["Fout: onbekende optie"],"From":["Van"],"Until":["Tot"],"Activity":["Activiteit"],"Day %d":["Dag %d"],"No duration specified":["Geen duur opgegeven"],"No location specified":["Geen locatie opgegeven"],"Error: book process does not exist":["Fout: boekproces bestaat niet"],"Contact form might be deleted":["Contactformulier is mogelijk verwijderd"],"Error: package is set, but contact form does not support packages":["Fout: arrangement is ingesteld, maar contactformulier ondersteunt geen arrangementen"],"Error: redirect is set, but is an invalid URL":["Fout: doorstuurpagina is ingesteld, maar is een ongeldige URL"],"Unknown":["Onbekend"],"Male":["Man"],"Female":["Vrouw"],"(required)":["(verplicht)"],"Clear choice":["Keuze wissen"],"No book process has been chosen yet. Click on this text to select a book process.":["Er is nog geen boekproces gekozen. Klik op deze tekst om een boekproces te selecteren."],"Book process %s cannot be found. It was either deleted from Recras, or made private.":["Boekproces %s kan niet worden gevonden. Het is verwijderd uit Recras of privé gemaakt."],"Book process \"%s\" is integrated here.":["Boekproces \"%s\" is hier geïntegreerd."],"The first widget is hidden for the booker, and has an initial value of \"%s\".":["De eerste widget is verborgen voor de boeker en heeft een initiële waarde van\"%s\"."],"It has an initial value for the first widget of \"%s\".":["Het heeft een initiële waarde voor de eerste widget van\"%s\"."],"Error: could not retrieve data from Recras. The error message received was: %s":["Fout: kon data niet ophalen uit Recras. De ontvangen foutmelding was: %s"],"Error: could not parse data from Recras. The error message was: %s":["Fout: kon data uit Recras niet verwerken. De foutmelding was: %s"],"Error: \"prefill_date\" is not a valid ISO 8601 string":["Fout: \"prefill_date\" is geen geldige ISO-8601-string"],"Error: \"prefill_date\" is a date in the past":["Fout: \"prefill_date\" is een datum in het verleden"],"Error: \"prefill_time\" is not a valid time string (e.g. 14:30)":["Fout: \"prefill_time\" is geen geldige tijd-string (bijv. 14:30)"],"Error: \"product_amounts\" is invalid":["Fout: \"product_amounts\" is ongeldig"],"Settings":["Instellingen"],"Cache":["Cache"],"Documentation":["Documentatie"],"Shortcodes":["Shortcodes"],"Online booking of packages":["Online boeking van arrangementen"],"Voucher sales":["Tegoedbonverkoop"],"Error: you have not set your Recras domain yet":["Fout: je hebt je Recras-domein nog niet ingesteld"],"Error: your Recras domain has not been set yet, but you do not have the permission to set this. Please ask your site administrator to do this for you.":["Fout: je Recras-domein is nog niet ingesteld, maar je hebt niet de rechten om dit zelf in te stellen. Vraag aan je websitebeheerder om dit voor je te doen."],"Could not connect to your Recras":["Kon geen verbinding maken met je Recras"],"Package availability":["Arrangement-beschikbaarheid"],"At least one choice is required":["Ten minste één keuze is vereist"],"Loading...":["Laden..."],"Your message was sent successfully":["Uw bericht is succesvol verzonden"],"There was an error sending your message":["Er was een probleem met het verzenden van uw bericht"],"Previous month":["Vorige maand"],"Next month":["Volgende maand"],"January":["Januari"],"February":["Februari"],"March":["Maart"],"April":["April"],"May":["Mei"],"June":["Juni"],"July":["Juli"],"August":["Augustus"],"September":["September"],"October":["Oktober"],"November":["November"],"December":["December"],"Sunday":["Zondag"],"Monday":["Maandag"],"Tuesday":["Dinsdag"],"Wednesday":["Woensdag"],"Thursday":["Donderdag"],"Friday":["Vrijdag"],"Saturday":["Zaterdag"],"Sun":["Zo"],"Mon":["Ma"],"Tue":["Di"],"Wed":["Wo"],"Thu":["Do"],"Fri":["Vr"],"Sat":["Za"],"Error: product does not exist":["Fout: product bestaat niet"],"This option is <strong>not needed when using book processes</strong>. GA is integrated automatically for them.":["Deze optie is <strong>niet nodig bij het gebruik van boekprocessen</strong>. GA wordt daar automatisch geïntegreerd."],"Use this setting if you want to be able to style the date picker in contact forms.":["Gebruik deze instelling als je de datumselectie in contactformulieren wilt kunnen opmaken."],"On some websites, the date picker in a book process has a tiny font. Enable this to fix this.":["Op sommige websites heeft de datumselectie in een boekproces een klein lettertype. Zet deze optie aan om dit op te lossen."],"Used in prices, such as 100,00.":["Gebruikt in prijzen, zoals 100,00."],"Instance not found!":["Recras-domein niet gevonden!"],"Error fetching instance!":["Fout bij het ophalen van het Recras-domein!"],"You do not have sufficient permissions to access this page.":["Je hebt niet genoeg rechten om deze pagina te bekijken."],"No theme":["Geen thema"],"Basic theme":["Basisthema"],"BP Green":["BP Groen"],"Reasonably Red":["Redelijk Rood"],"Recras Blue":["Recras Blauw"],"Recras settings":["Recras-instellingen"],"Recras domain":["Recras-domein"],"Currency symbol":["Valutasymbool"],"Decimal separator":["Decimaalscheiding"],"Use calendar widget for contact forms (deprecated)":["Kalender-widget gebruiken voor contactformulieren (verouderd)"],"Fix book process datepicker styling":["Styling boekproces-datumselectie oplossen"],"Theme for Recras integrations":["Thema voor Recras-integraties"],"Enable Google Analytics integration? (deprecated)":["Google Analytics-integratie inschakelen? (verouderd)"],"For more information on these options, please see the %s page.":["Bekijk voor meer informatie over deze instellingen de %s-pagina."],"Error: template does not exist":["Fout: template bestaat niet"],"Save":["Opslaan"]}}} -
recras/trunk/lang/recras-nl_NL.po
r3434941 r3484591 2 2 msgstr "" 3 3 "Project-Id-Version: Recras\n" 4 "POT-Creation-Date: 2026-0 1-06 14:52+0100\n"5 "PO-Revision-Date: 2026-0 1-06 14:52+0100\n"4 "POT-Creation-Date: 2026-03-17 09:26+0100\n" 5 "PO-Revision-Date: 2026-03-17 09:26+0100\n" 6 6 "Last-Translator: Sander de Jong <sander@recras.nl>\n" 7 7 "Language-Team: Recras\n" … … 20 20 "X-Poedit-SearchPathExcluded-2: node_modules\n" 21 21 22 #: editor/form-booking.php:73 src/ContactForm.php:2 68 src/ContactForm.php:31022 #: editor/form-booking.php:73 src/ContactForm.php:273 src/ContactForm.php:315 23 23 msgid "yyyy-mm-dd" 24 24 msgstr "jjjj-mm-dd" 25 25 26 #: editor/form-booking.php:82 js/gutenberg-package.js:1 2727 #: src/ContactForm.php:2 8526 #: editor/form-booking.php:82 js/gutenberg-package.js:131 27 #: src/ContactForm.php:290 28 28 msgid "hh:mm" 29 29 msgstr "uu:mm" 30 30 31 #: js/gutenberg-availability.js:2 js/gutenberg-availability.js:3 531 #: js/gutenberg-availability.js:2 js/gutenberg-availability.js:36 32 32 msgid "Availability calendar" 33 33 msgstr "Beschikbaarheidskalender" 34 34 35 #: js/gutenberg-availability.js:3 835 #: js/gutenberg-availability.js:39 36 36 msgid "No suitable packages found" 37 37 msgstr "Geen geschikte arrangementen gevonden" 38 38 39 #: js/gutenberg-availability.js:5 0js/gutenberg-package.js:240 #: js/gutenberg-package.js:5 0 js/gutenberg-package.js:142src/Plugin.php:11441 #: src/Plugin.php:2 1639 #: js/gutenberg-availability.js:51 js/gutenberg-package.js:2 40 #: js/gutenberg-package.js:54 js/gutenberg-package.js:146 src/Plugin.php:114 41 #: src/Plugin.php:228 42 42 msgid "Package" 43 43 msgstr "Arrangement" 44 44 45 #: js/gutenberg-availability.js: 59 js/gutenberg-onlinebooking.js:29545 #: js/gutenberg-availability.js:60 js/gutenberg-onlinebooking.js:296 46 46 msgid "Auto resize iframe" 47 47 msgstr "iframe automatisch schalen" 48 48 49 #: js/gutenberg-bookprocess.js:2 js/gutenberg-bookprocess.js:4 550 #: js/gutenberg-bookprocess.js: 59src/Elementor/Bookprocess.php:1749 #: js/gutenberg-bookprocess.js:2 js/gutenberg-bookprocess.js:49 50 #: js/gutenberg-bookprocess.js:65 src/Elementor/Bookprocess.php:17 51 51 #: src/Elementor/Bookprocess.php:35 src/Elementor/Bookprocess.php:45 52 #: src/Plugin.php:115 src/Plugin.php:2 1552 #: src/Plugin.php:115 src/Plugin.php:227 53 53 msgid "Book process" 54 54 msgstr "Boekproces" 55 55 56 #: js/gutenberg-bookprocess.js: 7656 #: js/gutenberg-bookprocess.js:82 57 57 msgid "Enter package ID. Leave empty to not prefill." 58 58 msgstr "Vul arrangements-ID in. Laat leeg om niet vooraf in te vullen." 59 59 60 #: js/gutenberg-bookprocess.js: 7760 #: js/gutenberg-bookprocess.js:83 61 61 msgid "Enter date in YYYY-MM-DD format. Leave empty to not prefill." 62 62 msgstr "" 63 63 "Vul datum in formaat JJJJ-MM-DD in. Laat leeg om niet vooraf in te vullen." 64 64 65 #: js/gutenberg-bookprocess.js: 87src/Elementor/Bookprocess.php:6165 #: js/gutenberg-bookprocess.js:93 src/Elementor/Bookprocess.php:61 66 66 msgid "Prefill value for first widget? (optional)" 67 67 msgstr "Waarde voor eerste widget vooraf invullen? (optioneel)" 68 68 69 #: js/gutenberg-bookprocess.js: 99src/Elementor/Bookprocess.php:7469 #: js/gutenberg-bookprocess.js:105 src/Elementor/Bookprocess.php:74 70 70 msgid "Hide first widget?" 71 71 msgstr "Eerste widget verbergen?" 72 72 73 #: js/gutenberg-contactform.js:2 js/gutenberg-contactform.js:76 74 #: js/gutenberg-contactform.js:193 src/Plugin.php:116 src/Plugin.php:212 73 #: js/gutenberg-contactform.js:2 js/gutenberg-contactform.js:194 74 #: src/Plugin.php:224 75 msgid "Contact form (deprecated)" 76 msgstr "Contactformulier (verouderd)" 77 78 #: js/gutenberg-contactform.js:15 js/gutenberg-contactform.js:28 79 #: src/ContactForm.php:122 80 msgid "Send" 81 msgstr "Versturen" 82 83 #: js/gutenberg-contactform.js:61 js/gutenberg-onlinebooking.js:63 84 #: js/gutenberg-voucher-sales.js:46 85 msgid "Loading data..." 86 msgstr "Data aan het laden..." 87 88 #: js/gutenberg-contactform.js:77 src/Plugin.php:116 75 89 msgid "Contact form" 76 90 msgstr "Contactformulier" 77 91 78 #: js/gutenberg-contactform.js:14 js/gutenberg-contactform.js:27 79 #: src/ContactForm.php:117 80 msgid "Send" 81 msgstr "Versturen" 82 83 #: js/gutenberg-contactform.js:60 js/gutenberg-onlinebooking.js:62 84 #: js/gutenberg-voucher-sales.js:41 85 msgid "Loading data..." 86 msgstr "Data aan het laden..." 87 88 #: js/gutenberg-contactform.js:98 92 #: js/gutenberg-contactform.js:99 89 93 msgid "Show title?" 90 94 msgstr "Toon titel?" 91 95 92 #: js/gutenberg-contactform.js:10 796 #: js/gutenberg-contactform.js:108 93 97 msgid "Show labels?" 94 98 msgstr "Toon labels?" 95 99 96 #: js/gutenberg-contactform.js:11 6100 #: js/gutenberg-contactform.js:117 97 101 msgid "Show placeholders?" 98 102 msgstr "Toon placeholders?" 99 103 100 #: js/gutenberg-contactform.js:12 6104 #: js/gutenberg-contactform.js:127 101 105 msgid "Package (optional)" 102 106 msgstr "Arrangement (optioneel)" 103 107 104 #: js/gutenberg-contactform.js:13 8108 #: js/gutenberg-contactform.js:139 105 109 msgid "Definition list" 106 110 msgstr "Definitielijst" 107 111 108 #: js/gutenberg-contactform.js:14 2112 #: js/gutenberg-contactform.js:143 109 113 msgid "Ordered list" 110 114 msgstr "Geordende lijst" 111 115 112 #: js/gutenberg-contactform.js:14 6116 #: js/gutenberg-contactform.js:147 113 117 msgid "Table" 114 118 msgstr "Tabel" 115 119 116 #: js/gutenberg-contactform.js:1 49120 #: js/gutenberg-contactform.js:150 117 121 msgid "HTML element" 118 122 msgstr "HTML-element" 119 123 120 #: js/gutenberg-contactform.js:16 1124 #: js/gutenberg-contactform.js:162 121 125 msgid "Drop-down list (Select)" 122 126 msgstr "Dropdownlijst (select)" 123 127 124 #: js/gutenberg-contactform.js:16 5128 #: js/gutenberg-contactform.js:166 125 129 msgid "Radio buttons" 126 130 msgstr "Keuzerondjes (radioknoppen)" 127 131 128 #: js/gutenberg-contactform.js:16 8132 #: js/gutenberg-contactform.js:169 129 133 msgid "Element for single choices" 130 134 msgstr "Element voor \"enkele keuze\"" 131 135 132 #: js/gutenberg-contactform.js:17 7 js/gutenberg-contactform.js:178136 #: js/gutenberg-contactform.js:178 js/gutenberg-contactform.js:179 133 137 msgid "Submit button text" 134 138 msgstr "Tekst op knop Versturen" 135 139 136 #: js/gutenberg-contactform.js:18 8 js/gutenberg-onlinebooking.js:232137 #: js/gutenberg-voucher-sales.js:7 1140 #: js/gutenberg-contactform.js:189 js/gutenberg-onlinebooking.js:233 141 #: js/gutenberg-voucher-sales.js:76 138 142 msgid "i.e. https://www.recras.com/thanks/" 139 143 msgstr "bijv. https://www.recras.nl/bedankt/" 140 144 141 #: js/gutenberg-contactform.js:1 89 js/gutenberg-onlinebooking.js:233142 #: js/gutenberg-voucher-sales.js:7 2145 #: js/gutenberg-contactform.js:190 js/gutenberg-onlinebooking.js:234 146 #: js/gutenberg-voucher-sales.js:77 143 147 msgid "Thank-you page (optional, leave empty to not redirect)" 144 148 msgstr "Bedanktpagina (optioneel, laat leeg om niet door te sturen)" 145 149 146 #: js/gutenberg-contactform.js:20 2150 #: js/gutenberg-contactform.js:203 147 151 msgid "" 148 152 "Some packages may not be available for all contact forms. You can change " … … 153 157 "Recras te bewerken." 154 158 155 #: js/gutenberg-contactform.js:20 3159 #: js/gutenberg-contactform.js:204 156 160 msgid "" 157 161 "If you are still missing packages, make sure in Recras \"May be presented on " … … 163 167 "\"Extra instellingen\" van het arrangement." 164 168 165 #: js/gutenberg-global.js:46 src/Settings.php:2 11169 #: js/gutenberg-global.js:46 src/Settings.php:223 166 170 msgid "Recras → Settings menu" 167 171 msgstr "menu Recras → Instellingen" 168 172 169 #: js/gutenberg-global.js:48 src/Settings.php:2 10173 #: js/gutenberg-global.js:48 src/Settings.php:222 170 174 #, javascript-format, php-format 171 175 msgid "Please enter your Recras domain in the %s before adding widgets." 172 176 msgstr "Vul je Recras-domein in in het %s voordat je widgets toevoegt." 173 177 174 #: js/gutenberg-global.js:3 11178 #: js/gutenberg-global.js:323 175 179 msgid "Pages" 176 180 msgstr "Pagina's" 177 181 178 #: js/gutenberg-global.js:3 35182 #: js/gutenberg-global.js:347 179 183 msgid "Posts" 180 184 msgstr "Berichten" 181 185 182 #: js/gutenberg-onlinebooking.js:2 js/gutenberg-onlinebooking.js: 299183 #: src/Plugin.php: 117 src/Plugin.php:214184 msgid "Online booking of packages "185 msgstr "Online boeking van arrangementen "186 187 #: js/gutenberg-onlinebooking.js:9 7186 #: js/gutenberg-onlinebooking.js:2 js/gutenberg-onlinebooking.js:300 187 #: src/Plugin.php:226 188 msgid "Online booking of packages (deprecated)" 189 msgstr "Online boeking van arrangementen (verouderd)" 190 191 #: js/gutenberg-onlinebooking.js:98 188 192 msgid "Seamless (recommended)" 189 193 msgstr "Naadloos (aanbevolen)" 190 194 191 #: js/gutenberg-onlinebooking.js:10 1195 #: js/gutenberg-onlinebooking.js:102 192 196 msgid "iframe (uses setting in your Recras)" 193 197 msgstr "iframe (gebruikt instelling uit jouw Recras)" 194 198 195 #: js/gutenberg-onlinebooking.js:12 0199 #: js/gutenberg-onlinebooking.js:121 196 200 msgid "Integration method" 197 201 msgstr "Integratiemethode" 198 202 199 #: js/gutenberg-onlinebooking.js:16 8203 #: js/gutenberg-onlinebooking.js:169 200 204 msgid "Preview times in programme" 201 205 msgstr "Toon voorbeeldtijden in programma" 202 206 203 #: js/gutenberg-onlinebooking.js:17 7207 #: js/gutenberg-onlinebooking.js:178 204 208 msgid "Show discount fields" 205 209 msgstr "Toon korting-velden" 206 210 207 #: js/gutenberg-onlinebooking.js:19 0211 #: js/gutenberg-onlinebooking.js:191 208 212 msgid "Pre-fill amounts (requires exactly 1 package selected)" 209 213 msgstr "Aantallen vooraf invullen (vereist exact 1 arrangement geselecteerd)" 210 214 211 #: js/gutenberg-onlinebooking.js:22 1215 #: js/gutenberg-onlinebooking.js:222 212 216 msgid "Pre-fill time (requires exactly 1 package selected)" 213 217 msgstr "Tijd vooraf invullen (vereist exact 1 geselecteerd arrangement)" 214 218 215 #: js/gutenberg-onlinebooking.js:22 2219 #: js/gutenberg-onlinebooking.js:223 216 220 msgid "e.g. 14:00" 217 221 msgstr "bijv. 14:00" 218 222 219 #: js/gutenberg-onlinebooking.js:28 5223 #: js/gutenberg-onlinebooking.js:286 220 224 msgid "Pre-filled package" 221 225 msgstr "Vooraf ingevuld arrangement" 222 226 223 #: js/gutenberg-onlinebooking.js:28 6227 #: js/gutenberg-onlinebooking.js:287 224 228 msgid "Pre-filled package (optional)" 225 229 msgstr "Vooraf ingevuld arrangement (optioneel)" 226 230 227 #: js/gutenberg-onlinebooking.js:30 2231 #: js/gutenberg-onlinebooking.js:303 228 232 msgid "" 229 233 "Seamless integration uses the styling of your website. At Recras → Settings " … … 233 237 "Instellingen in het menu aan de linkerkant kun een optioneel thema instellen." 234 238 235 #: js/gutenberg-onlinebooking.js:30 3239 #: js/gutenberg-onlinebooking.js:304 236 240 msgid "" 237 241 "iframe integration uses the styling set in your Recras. You can change the " … … 242 246 "Eigen CSS." 243 247 244 #: js/gutenberg-onlinebooking.js:30 6248 #: js/gutenberg-onlinebooking.js:307 245 249 msgid "Package selection" 246 250 msgstr "Arrangementselectie" 247 251 248 #: js/gutenberg-onlinebooking.js:31 1 js/gutenberg-onlinebooking.js:331249 #: js/gutenberg-package.js:14 5252 #: js/gutenberg-onlinebooking.js:312 js/gutenberg-onlinebooking.js:332 253 #: js/gutenberg-package.js:149 250 254 msgid "" 251 255 "If you are not seeing certain packages, make sure in Recras \"May be " … … 257 261 "\"Extra instellingen\" van het arrangement." 258 262 259 #: js/gutenberg-onlinebooking.js:31 2263 #: js/gutenberg-onlinebooking.js:313 260 264 msgid "" 261 265 "If you select a single package, it will be pre-filled and will skip the " … … 265 269 "de arrangement-selectie-stap overgeslagen." 266 270 267 #: js/gutenberg-onlinebooking.js:32 3271 #: js/gutenberg-onlinebooking.js:324 268 272 msgid "Pre-fill date (requires exactly 1 package selected)" 269 273 msgstr "Datum vooraf invullen (vereist exact 1 geselecteerd arrangement)" 270 274 271 #: js/gutenberg-package.js: 67275 #: js/gutenberg-package.js:71 272 276 msgid "Description" 273 277 msgstr "Beschrijving" 274 278 275 #: js/gutenberg-package.js:7 1 js/gutenberg-product.js:76279 #: js/gutenberg-package.js:75 js/gutenberg-product.js:79 276 280 msgid "Duration" 277 281 msgstr "Duur" 278 282 279 #: js/gutenberg-package.js:7 5 js/gutenberg-product.js:80283 #: js/gutenberg-package.js:79 js/gutenberg-product.js:83 280 284 msgid "Image tag" 281 285 msgstr "Afbeelding-tag" 282 286 283 #: js/gutenberg-package.js: 79287 #: js/gutenberg-package.js:83 284 288 msgid "Minimum number of persons" 285 289 msgstr "Minimum aantal personen" 286 290 287 #: js/gutenberg-package.js:8 3291 #: js/gutenberg-package.js:87 288 292 msgid "Price p.p. excl. VAT" 289 293 msgstr "Prijs p.p. excl. btw" 290 294 291 #: js/gutenberg-package.js: 87295 #: js/gutenberg-package.js:91 292 296 msgid "Price p.p. incl. VAT" 293 297 msgstr "Prijs p.p. incl. btw" 294 298 295 #: js/gutenberg-package.js:9 1299 #: js/gutenberg-package.js:95 296 300 msgid "Programme" 297 301 msgstr "Programma" 298 302 299 #: js/gutenberg-package.js:9 5303 #: js/gutenberg-package.js:99 300 304 msgid "Starting location" 301 305 msgstr "Startlocatie" 302 306 303 #: js/gutenberg-package.js: 99 js/gutenberg-product.js:96307 #: js/gutenberg-package.js:103 js/gutenberg-product.js:99 304 308 msgid "Title" 305 309 msgstr "Titel" 306 310 307 #: js/gutenberg-package.js:10 3311 #: js/gutenberg-package.js:107 308 312 msgid "Total price excl. VAT" 309 313 msgstr "Totaalprijs excl. btw" 310 314 311 #: js/gutenberg-package.js:1 07315 #: js/gutenberg-package.js:111 312 316 msgid "Total price incl. VAT" 313 317 msgstr "Totaalprijs incl. btw" 314 318 315 #: js/gutenberg-package.js:11 1319 #: js/gutenberg-package.js:115 316 320 msgid "Relative image URL" 317 321 msgstr "Relatieve afbeelding-URL" 318 322 319 #: js/gutenberg-package.js:11 4 js/gutenberg-product.js:99320 #: js/gutenberg-voucher-info.js:7 3323 #: js/gutenberg-package.js:118 js/gutenberg-product.js:102 324 #: js/gutenberg-voucher-info.js:78 321 325 msgid "Property to show" 322 326 msgstr "Eigenschap om te tonen" 323 327 324 #: js/gutenberg-package.js:1 28328 #: js/gutenberg-package.js:132 325 329 msgid "Start time" 326 330 msgstr "Starttijd" 327 331 328 #: js/gutenberg-package.js:1 38332 #: js/gutenberg-package.js:142 329 333 msgid "Show header?" 330 334 msgstr "Toon header?" 331 335 332 #: js/gutenberg-product.js:2 js/gutenberg-product.js: 48333 #: js/gutenberg-product.js:10 2 src/Plugin.php:118 src/Plugin.php:218336 #: js/gutenberg-product.js:2 js/gutenberg-product.js:51 337 #: js/gutenberg-product.js:105 src/Plugin.php:118 src/Plugin.php:230 334 338 msgid "Product" 335 339 msgstr "Product" 336 340 337 #: js/gutenberg-product.js: 68341 #: js/gutenberg-product.js:71 338 342 msgid "Description (long)" 339 343 msgstr "Beschrijving (lang)" 340 344 341 #: js/gutenberg-product.js:7 2345 #: js/gutenberg-product.js:75 342 346 msgid "Description (short)" 343 347 msgstr "Beschrijving (kort)" 344 348 345 #: js/gutenberg-product.js:8 4349 #: js/gutenberg-product.js:87 346 350 msgid "Image URL" 347 351 msgstr "Afbeelding-URL" 348 352 349 #: js/gutenberg-product.js: 88353 #: js/gutenberg-product.js:91 350 354 msgid "Minimum amount" 351 355 msgstr "Minimumaantal" 352 356 353 #: js/gutenberg-product.js:9 2357 #: js/gutenberg-product.js:95 354 358 msgid "Price (incl. VAT)" 355 359 msgstr "Prijs (incl. btw)" 356 360 357 #: js/gutenberg-product.js:10 6361 #: js/gutenberg-product.js:109 358 362 msgid "" 359 363 "If you are not seeing certain products, make sure in Recras \"May be " … … 365 369 "\"Presentatie\" van het product." 366 370 367 #: js/gutenberg-product.js:1 09371 #: js/gutenberg-product.js:112 368 372 msgid "" 369 373 "Could not find any products. Make sure in Recras \"May be presented on a " … … 374 378 "\"Presentatie\" van het product." 375 379 376 #: js/gutenberg-voucher-info.js:2 js/gutenberg-voucher-info.js: 76377 #: src/Plugin.php:120 src/Plugin.php:2 21380 #: js/gutenberg-voucher-info.js:2 js/gutenberg-voucher-info.js:81 381 #: src/Plugin.php:120 src/Plugin.php:234 378 382 msgid "Voucher info" 379 383 msgstr "Tegoedboninfo" 380 384 381 #: js/gutenberg-voucher-info.js:4 4 js/gutenberg-voucher-sales.js:55385 #: js/gutenberg-voucher-info.js:49 js/gutenberg-voucher-sales.js:60 382 386 msgid "Voucher template" 383 387 msgstr "Tegoedbon-template" 384 388 385 #: js/gutenberg-voucher-info.js:6 2389 #: js/gutenberg-voucher-info.js:67 386 390 msgid "Name" 387 391 msgstr "Naam" 388 392 389 #: js/gutenberg-voucher-info.js: 66393 #: js/gutenberg-voucher-info.js:71 390 394 msgid "Price" 391 395 msgstr "Prijs" 392 396 393 #: js/gutenberg-voucher-info.js:7 0397 #: js/gutenberg-voucher-info.js:75 394 398 msgid "Validity" 395 399 msgstr "Geldigheid" 396 400 397 #: js/gutenberg-voucher-sales.js:2 js/gutenberg-voucher-sales.js: 85398 #: src/Plugin.php: 119 src/Plugin.php:222399 msgid "Voucher sales "400 msgstr "Tegoedbonverkoop "401 402 #: js/gutenberg-voucher-sales.js:8 2401 #: js/gutenberg-voucher-sales.js:2 js/gutenberg-voucher-sales.js:90 402 #: src/Plugin.php:235 403 msgid "Voucher sales (deprecated)" 404 msgstr "Tegoedbonverkoop (verouderd)" 405 406 #: js/gutenberg-voucher-sales.js:87 403 407 msgid "Show quantity input (will be set to 1 if not shown)" 404 408 msgstr "Toon aantal-invoer (wordt op 1 gezet indien verborgen)" 405 409 406 410 #: src/Arrangement.php:21 src/Availability.php:20 src/Bookprocess.php:87 407 #: src/ContactForm.php: 55src/Products.php:21 src/Vouchers.php:22411 #: src/ContactForm.php:60 src/Products.php:21 src/Vouchers.php:22 408 412 msgid "Error: no ID set" 409 413 msgstr "Fout: geen ID ingesteld" 410 414 411 415 #: src/Arrangement.php:24 src/Availability.php:23 src/Bookprocess.php:91 412 #: src/ContactForm.php: 58src/OnlineBooking.php:25 src/Products.php:24416 #: src/ContactForm.php:63 src/OnlineBooking.php:25 src/Products.php:24 413 417 #: src/Vouchers.php:25 src/Vouchers.php:78 414 418 msgid "Error: ID is not a number" … … 416 420 417 421 #: src/Arrangement.php:39 src/Arrangement.php:279 src/Bookprocess.php:98 418 #: src/ContactForm.php:7 1 src/ContactForm.php:76422 #: src/ContactForm.php:76 src/ContactForm.php:81 419 423 #, php-format 420 424 msgid "Error: %s" … … 465 469 msgstr "Fout: boekproces bestaat niet" 466 470 467 #: src/ContactForm.php: 76471 #: src/ContactForm.php:81 468 472 msgid "Contact form might be deleted" 469 473 msgstr "Contactformulier is mogelijk verwijderd" 470 474 471 #: src/ContactForm.php:11 3475 #: src/ContactForm.php:118 472 476 msgid "Error: package is set, but contact form does not support packages" 473 477 msgstr "" … … 475 479 "arrangementen" 476 480 477 #: src/ContactForm.php:1 25src/OnlineBooking.php:70 src/Vouchers.php:93481 #: src/ContactForm.php:130 src/OnlineBooking.php:70 src/Vouchers.php:93 478 482 msgid "Error: redirect is set, but is an invalid URL" 479 483 msgstr "Fout: doorstuurpagina is ingesteld, maar is een ongeldige URL" 480 484 481 #: src/ContactForm.php:3 76485 #: src/ContactForm.php:381 482 486 msgid "Unknown" 483 487 msgstr "Onbekend" 484 488 485 #: src/ContactForm.php:3 77489 #: src/ContactForm.php:382 486 490 msgid "Male" 487 491 msgstr "Man" 488 492 489 #: src/ContactForm.php:3 78493 #: src/ContactForm.php:383 490 494 msgid "Female" 491 495 msgstr "Vrouw" 492 496 493 #: src/ContactForm.php:5 14497 #: src/ContactForm.php:536 494 498 msgid "(required)" 495 499 msgstr "(verplicht)" 496 500 497 #: src/ContactForm.php:5 39501 #: src/ContactForm.php:561 498 502 msgid "Clear choice" 499 503 msgstr "Keuze wissen" … … 572 576 msgstr "Cache" 573 577 574 #: src/Plugin.php:99 src/Plugin.php:100 src/Settings.php:4 07578 #: src/Plugin.php:99 src/Plugin.php:100 src/Settings.php:419 575 579 msgid "Documentation" 576 580 msgstr "Documentatie" … … 580 584 msgstr "Shortcodes" 581 585 582 #: src/Plugin.php:195 586 #: src/Plugin.php:117 587 msgid "Online booking of packages" 588 msgstr "Online boeking van arrangementen" 589 590 #: src/Plugin.php:119 591 msgid "Voucher sales" 592 msgstr "Tegoedbonverkoop" 593 594 #: src/Plugin.php:207 583 595 msgid "Error: you have not set your Recras domain yet" 584 596 msgstr "Fout: je hebt je Recras-domein nog niet ingesteld" 585 597 586 #: src/Plugin.php: 197598 #: src/Plugin.php:209 587 599 msgid "" 588 600 "Error: your Recras domain has not been set yet, but you do not have the " … … 594 606 "doen." 595 607 596 #: src/Plugin.php:2 13608 #: src/Plugin.php:225 597 609 msgid "Could not connect to your Recras" 598 610 msgstr "Kon geen verbinding maken met je Recras" 599 611 600 #: src/Plugin.php:2 17612 #: src/Plugin.php:229 601 613 msgid "Package availability" 602 614 msgstr "Arrangement-beschikbaarheid" 603 615 604 #: src/Plugin.php:2 45616 #: src/Plugin.php:261 605 617 msgid "At least one choice is required" 606 618 msgstr "Ten minste één keuze is vereist" 607 619 608 #: src/Plugin.php:2 46620 #: src/Plugin.php:262 609 621 msgid "Loading..." 610 622 msgstr "Laden..." 611 623 612 #: src/Plugin.php:2 47624 #: src/Plugin.php:263 613 625 msgid "Your message was sent successfully" 614 626 msgstr "Uw bericht is succesvol verzonden" 615 627 616 #: src/Plugin.php:2 48628 #: src/Plugin.php:264 617 629 msgid "There was an error sending your message" 618 630 msgstr "Er was een probleem met het verzenden van uw bericht" 619 631 620 #: src/Plugin.php:2 57632 #: src/Plugin.php:273 621 633 msgid "Previous month" 622 634 msgstr "Vorige maand" 623 635 624 #: src/Plugin.php:2 58636 #: src/Plugin.php:274 625 637 msgid "Next month" 626 638 msgstr "Volgende maand" 627 639 628 #: src/Plugin.php:2 60640 #: src/Plugin.php:276 629 641 msgid "January" 630 642 msgstr "Januari" 631 643 632 #: src/Plugin.php:2 61644 #: src/Plugin.php:277 633 645 msgid "February" 634 646 msgstr "Februari" 635 647 636 #: src/Plugin.php:2 62648 #: src/Plugin.php:278 637 649 msgid "March" 638 650 msgstr "Maart" 639 651 640 #: src/Plugin.php:2 63652 #: src/Plugin.php:279 641 653 msgid "April" 642 654 msgstr "April" 643 655 644 #: src/Plugin.php:2 64656 #: src/Plugin.php:280 645 657 msgid "May" 646 658 msgstr "Mei" 647 659 648 #: src/Plugin.php:2 65660 #: src/Plugin.php:281 649 661 msgid "June" 650 662 msgstr "Juni" 651 663 652 #: src/Plugin.php:2 66664 #: src/Plugin.php:282 653 665 msgid "July" 654 666 msgstr "Juli" 655 667 656 #: src/Plugin.php:2 67668 #: src/Plugin.php:283 657 669 msgid "August" 658 670 msgstr "Augustus" 659 671 660 #: src/Plugin.php:2 68672 #: src/Plugin.php:284 661 673 msgid "September" 662 674 msgstr "September" 663 675 664 #: src/Plugin.php:2 69676 #: src/Plugin.php:285 665 677 msgid "October" 666 678 msgstr "Oktober" 667 679 668 #: src/Plugin.php:2 70680 #: src/Plugin.php:286 669 681 msgid "November" 670 682 msgstr "November" 671 683 672 #: src/Plugin.php:2 71684 #: src/Plugin.php:287 673 685 msgid "December" 674 686 msgstr "December" 675 687 676 #: src/Plugin.php:2 74688 #: src/Plugin.php:290 677 689 msgid "Sunday" 678 690 msgstr "Zondag" 679 691 680 #: src/Plugin.php:2 75692 #: src/Plugin.php:291 681 693 msgid "Monday" 682 694 msgstr "Maandag" 683 695 684 #: src/Plugin.php:2 76696 #: src/Plugin.php:292 685 697 msgid "Tuesday" 686 698 msgstr "Dinsdag" 687 699 688 #: src/Plugin.php:2 77700 #: src/Plugin.php:293 689 701 msgid "Wednesday" 690 702 msgstr "Woensdag" 691 703 692 #: src/Plugin.php:2 78704 #: src/Plugin.php:294 693 705 msgid "Thursday" 694 706 msgstr "Donderdag" 695 707 696 #: src/Plugin.php:2 79708 #: src/Plugin.php:295 697 709 msgid "Friday" 698 710 msgstr "Vrijdag" 699 711 700 #: src/Plugin.php:2 80712 #: src/Plugin.php:296 701 713 msgid "Saturday" 702 714 msgstr "Zaterdag" 703 715 704 #: src/Plugin.php:2 83716 #: src/Plugin.php:299 705 717 msgid "Sun" 706 718 msgstr "Zo" 707 719 708 #: src/Plugin.php: 284720 #: src/Plugin.php:300 709 721 msgid "Mon" 710 722 msgstr "Ma" 711 723 712 #: src/Plugin.php: 285724 #: src/Plugin.php:301 713 725 msgid "Tue" 714 726 msgstr "Di" 715 727 716 #: src/Plugin.php: 286728 #: src/Plugin.php:302 717 729 msgid "Wed" 718 730 msgstr "Wo" 719 731 720 #: src/Plugin.php: 287732 #: src/Plugin.php:303 721 733 msgid "Thu" 722 734 msgstr "Do" 723 735 724 #: src/Plugin.php: 288736 #: src/Plugin.php:304 725 737 msgid "Fri" 726 738 msgstr "Vr" 727 739 728 #: src/Plugin.php: 289740 #: src/Plugin.php:305 729 741 msgid "Sat" 730 742 msgstr "Za" … … 770 782 msgstr "Fout bij het ophalen van het Recras-domein!" 771 783 772 #: src/Settings.php:1 68 src/Settings.php:177 src/Settings.php:186773 #: src/Settings.php: 198784 #: src/Settings.php:180 src/Settings.php:189 src/Settings.php:198 785 #: src/Settings.php:210 774 786 msgid "You do not have sufficient permissions to access this page." 775 787 msgstr "Je hebt niet genoeg rechten om deze pagina te bekijken." 776 788 777 #: src/Settings.php:2 68789 #: src/Settings.php:280 778 790 msgid "No theme" 779 791 msgstr "Geen thema" 780 792 781 #: src/Settings.php:2 72793 #: src/Settings.php:284 782 794 msgid "Basic theme" 783 795 msgstr "Basisthema" 784 796 785 #: src/Settings.php:2 76797 #: src/Settings.php:288 786 798 msgid "BP Green" 787 799 msgstr "BP Groen" 788 800 789 #: src/Settings.php:2 80801 #: src/Settings.php:292 790 802 msgid "Reasonably Red" 791 803 msgstr "Redelijk Rood" 792 804 793 #: src/Settings.php:2 84805 #: src/Settings.php:296 794 806 msgid "Recras Blue" 795 807 msgstr "Recras Blauw" 796 808 797 #: src/Settings.php:3 66809 #: src/Settings.php:378 798 810 msgid "Recras settings" 799 811 msgstr "Recras-instellingen" 800 812 801 #: src/Settings.php:3 72813 #: src/Settings.php:384 802 814 msgid "Recras domain" 803 815 msgstr "Recras-domein" 804 816 805 #: src/Settings.php:3 73817 #: src/Settings.php:385 806 818 msgid "Currency symbol" 807 819 msgstr "Valutasymbool" 808 820 809 #: src/Settings.php:3 74821 #: src/Settings.php:386 810 822 msgid "Decimal separator" 811 823 msgstr "Decimaalscheiding" 812 824 813 #: src/Settings.php:3 75814 msgid "Use calendar widget for contact forms "815 msgstr "Kalender-widget gebruiken voor contactformulieren "816 817 #: src/Settings.php:3 76825 #: src/Settings.php:387 826 msgid "Use calendar widget for contact forms (deprecated)" 827 msgstr "Kalender-widget gebruiken voor contactformulieren (verouderd)" 828 829 #: src/Settings.php:388 818 830 msgid "Fix book process datepicker styling" 819 831 msgstr "Styling boekproces-datumselectie oplossen" 820 832 821 #: src/Settings.php:3 77833 #: src/Settings.php:389 822 834 msgid "Theme for Recras integrations" 823 835 msgstr "Thema voor Recras-integraties" 824 836 825 #: src/Settings.php:3 78837 #: src/Settings.php:390 826 838 msgid "Enable Google Analytics integration? (deprecated)" 827 839 msgstr "Google Analytics-integratie inschakelen? (verouderd)" 828 840 829 #: src/Settings.php:4 06841 #: src/Settings.php:418 830 842 #, php-format 831 843 msgid "For more information on these options, please see the %s page." -
recras/trunk/readme.txt
r3457781 r3484591 3 3 Tags: recras, recreation, reservation, booking, voucher 4 4 Tested up to: 6.9 5 Stable tag: 6.5. 25 Stable tag: 6.5.3 6 6 License: GPLv2 or later 7 7 License URI: http://www.gnu.org/licenses/gpl-2.0.html 8 8 9 Easily integrate data from your Recras instance, such as packages and contact forms, into your own website.9 Easily integrate data from your Recras instance, such as book processes, into your own website. 10 10 11 11 == Description == 12 With this plugin, you can easily integrate data from your [Recras](https://recras.nl/) instance, such as packages and contact forms, into your own website.12 With this plugin, you can easily integrate data from your [Recras](https://recras.nl/) instance, such as book processes, into your own website. 13 13 14 14 To get started, go to the Recras → Settings page and enter your Recras domain. For example, if you log in to Recras at `https://mycompany.recras.com/` then enter `mycompany.recras.com`. That's all there is to it! You can now use widgets to retrieve data. All data is retrieved via a secured connection (HTTPS) to ensure data integrity. Other than the request parameters, no data is sent to the Recras servers. … … 16 16 This plugin consists of the following "widgets". To use them, you first need to set your Recras domain (see paragraph above). 17 17 * Book processes 18 * Contact forms 18 * Contact forms (deprecated) 19 19 * Packages 20 20 * Products … … 75 75 == Changelog == 76 76 77 = 6.5.3 = 78 * Styling fix for Gutenberg info texts 79 * Only show contact form widget when your recras allows it 80 77 81 = 6.5.2 = 78 82 * Fix for some contact forms not submitting when loaded in a popup -
recras/trunk/recras-wordpress-plugin.php
r3457781 r3484591 3 3 Plugin Name: Recras 4 4 Plugin URI: https://www.recras.com/ 5 Version: 6.5. 25 Version: 6.5.3 6 6 Description: Easily integrate your Recras data into your own site 7 7 Requires at least: 6.7 -
recras/trunk/src/ContactForm.php
r3457781 r3484591 48 48 public static function renderContactForm($attributes): string 49 49 { 50 if (!Settings::allowOldContactForms()) { 51 error_log('Old contact forms is integrated on your website, but is disabled in your Recras'); 52 return ''; 53 } 54 50 55 if (is_string($attributes)) { 51 56 $attributes = []; -
recras/trunk/src/Gutenberg.php
r3447037 r3484591 32 32 plugins_url('css/gutenberg.css', __DIR__), 33 33 ['wp-edit-blocks'], 34 ' 3.6.3'34 '6.5.3' 35 35 ); 36 36 … … 38 38 'availability' => [ 39 39 'callback' => [Availability::class, 'renderAvailability'], 40 'version' => '6. 4.0',40 'version' => '6.5.3', 41 41 ], 42 42 'bookprocess' => [ 43 43 'callback' => [Bookprocess::class, 'renderBookprocess'], 44 'version' => '6.5. 1',44 'version' => '6.5.3', 45 45 ], 46 46 'contactform' => [ 47 47 'callback' => [ContactForm::class, 'renderContactForm'], 48 'version' => '6.5. 1',48 'version' => '6.5.3', 49 49 ], 50 50 'onlinebooking' => [ 51 51 'callback' => [OnlineBooking::class, 'renderOnlineBooking'], 52 'version' => '6. 4.0',52 'version' => '6.5.3', 53 53 ], 54 54 'package' => [ 55 55 'callback' => [Arrangement::class, 'renderPackage'], 56 'version' => '6.5. 1',56 'version' => '6.5.3', 57 57 ], 58 58 'product' => [ 59 59 'callback' => [Products::class, 'renderProduct'], 60 'version' => '6.5. 1',60 'version' => '6.5.3', 61 61 ], 62 62 'voucher-info' => [ 63 63 'callback' => [Vouchers::class, 'renderVoucherInfo'], 64 'version' => '6.5. 1',64 'version' => '6.5.3', 65 65 ], 66 66 'voucher-sales' => [ 67 67 'callback' => [Vouchers::class, 'renderVoucherSales'], 68 'version' => '6.5. 1',68 'version' => '6.5.3', 69 69 ], 70 70 ]; 71 71 72 if (!Settings::allowOldContactForms()) { 73 unset($gutenbergBlocks['contactform']); 74 } 72 75 if (!Settings::allowOnlinePackageBooking()) { 73 76 unset($gutenbergBlocks['availability']); -
recras/trunk/src/Plugin.php
r3435083 r3484591 139 139 private function checkOldSettings(): void 140 140 { 141 $instance = \Recras\Settings::getInstance();141 $instance = Settings::getInstance(); 142 142 if (!$instance) { 143 143 return; … … 165 165 if (is_object($setting) && property_exists($setting, 'waarde')) { 166 166 Transient::set($instance . '_show_old_voucher_sales', $setting->waarde, DAY_IN_SECONDS); 167 } 168 } 169 170 $setting = Transient::get($instance . '_show_old_contact_forms'); 171 if ($setting === false) { 172 try { 173 $setting = Http::get($instance, 'instellingen/allow_old_contact_forms'); 174 } catch (\Exception $e) { 175 return; 176 } 177 if (is_object($setting) && property_exists($setting, 'waarde')) { 178 Transient::set($instance . '_show_old_contact_forms', $setting->waarde, DAY_IN_SECONDS); 167 179 } 168 180 } … … 210 222 { 211 223 $l10n = [ 212 'contact_form' => __('Contact form ', 'recras'),224 'contact_form' => __('Contact form (deprecated)', 'recras'), 213 225 'no_connection' => __('Could not connect to your Recras', 'recras'), 214 'online_booking' => __('Online booking of packages ', 'recras'),226 'online_booking' => __('Online booking of packages (deprecated)', 'recras'), 215 227 'bookprocess' => __('Book process', 'recras'), 216 228 'package' => __('Package', 'recras'), 217 229 'package_availability' => __('Package availability', 'recras'), 218 230 'product' => __('Product', 'recras'), 231 'showContactForms' => 'yes', 219 232 'showOnlineBooking' => 'yes', 220 233 'showVoucherSales' => 'yes', 221 234 'voucherInfo' => __('Voucher info', 'recras'), 222 'voucherSales' => __('Voucher sales ', 'recras'),235 'voucherSales' => __('Voucher sales (deprecated)', 'recras'), 223 236 ]; 224 237 238 if (!Settings::allowOldContactForms()) { 239 $l10n['showContactForms'] = 'no'; 240 } 225 241 if (!Settings::allowOnlinePackageBooking()) { 226 242 $l10n['showOnlineBooking'] = 'no'; -
recras/trunk/src/Settings.php
r3432851 r3484591 117 117 $html .= '</select>'; 118 118 echo $html; 119 } 120 121 122 public static function allowOldContactForms(): bool 123 { 124 $instance = Settings::getInstance(); 125 if (!$instance) { 126 return true; 127 } 128 $setting = Transient::get($instance . '_show_old_contact_forms'); 129 // if getting the transient fails, we want to show the button to be sure, so comparing with 'no' is safest 130 return ($setting === 'no') ? false : true; 119 131 } 120 132 … … 371 383 372 384 self::addField('recras_domain', __('Recras domain', 'recras'), [__CLASS__, 'addInputDomain']); 385 self::addField('recras_theme', __('Theme for Recras integrations', 'recras'), [__CLASS__, 'addInputTheme']); 386 self::addField('recras_fix_react_datepicker', __('Fix book process datepicker styling', 'recras'), [__CLASS__, 'addInputFixDatepicker']); 373 387 self::addField('recras_currency', __('Currency symbol', 'recras'), [__CLASS__, 'addInputCurrency']); 374 388 self::addField('recras_decimal', __('Decimal separator', 'recras'), [__CLASS__, 'addInputDecimal']); 375 self::addField('recras_datetimepicker', __('Use calendar widget for contact forms', 'recras'), [__CLASS__, 'addInputDatepicker']); 376 self::addField('recras_fix_react_datepicker', __('Fix book process datepicker styling', 'recras'), [__CLASS__, 'addInputFixDatepicker']); 377 self::addField('recras_theme', __('Theme for Recras integrations', 'recras'), [__CLASS__, 'addInputTheme']); 389 self::addField('recras_datetimepicker', __('Use calendar widget for contact forms (deprecated)', 'recras'), [__CLASS__, 'addInputDatepicker']); 378 390 self::addField('recras_enable_analytics', __('Enable Google Analytics integration? (deprecated)', 'recras'), [__CLASS__, 'addInputAnalytics']); 379 391 } -
recras/trunk/src/admin/documentation.php
r3432851 r3484591 6 6 <dt><?php esc_html_e('Recras domain', 'recras');?></dt> 7 7 <dd>If you log in to Recras at <code>https://mycompany.recras.com/</code> then your Recras domain is <code>mycompany.recras.com</code>.</dd> 8 <dt><?php esc_html_e('Currency symbol', 'recras');?></dt>9 <dd>Used in prices such as € 100,00. Set to € (Euro) by default.</dd>10 <dt><?php esc_html_e('Decimal separator', 'recras');?></dt>11 <dd>Used in prices such as € 100,00. Set to , (comma) by default.</dd>12 <dt><?php esc_html_e('Use calendar widget for contact forms', 'recras');?></dt>13 <dd>By default, date pickers in contact forms use whatever the browser has available. If you want to be able to style the date picker, we recommend to enable the date picker we have included with the plugin.<br>14 <strong>Note:</strong> this setting only applies to standalone contact forms, not to contact forms used in book processes.15 </dd>16 8 <dt><?php esc_html_e('Theme for Recras integrations', 'recras');?></dt> 17 9 <dd>Which theme is used for book processes. … … 23 15 <li>Reasonably Red - is a theme with red accents 24 16 </ol> 17 </dd> 18 <dt><?php esc_html_e('Currency symbol', 'recras');?></dt> 19 <dd>Used in prices such as € 100,00. Set to € (Euro) by default.</dd> 20 <dt><?php esc_html_e('Decimal separator', 'recras');?></dt> 21 <dd>Used in prices such as € 100,00. Set to , (comma) by default.</dd> 22 <dt><?php esc_html_e('Use calendar widget for contact forms', 'recras');?></dt> 23 <dd>By default, date pickers in contact forms use whatever the browser has available. If you want to be able to style the date picker, we recommend to enable the date picker we have included with the plugin.<br> 24 <strong>Note:</strong> this setting only applies to standalone contact forms, which are deprecated. This does not apply to contact forms used in book processes. 25 25 </dd> 26 26 </dl> … … 63 63 <hr> 64 64 <h2><?php esc_html_e('Contact forms', 'recras'); ?></h2> 65 <p>Contact forms can be added using the Recras/Contact form block (Gutenberg) or using the <span class="rDocsIcon dashicons dashicons-email"></span> icon in the Classic Editor.</p> 66 <p>The following options are available:</p> 67 <ol class="recrasOptionsList"> 68 <li>Contact form - <strong>required</strong> what form to use 69 <li>Show title? - show the title of the contact form or not. Enabled by default 70 <li>Show labels? - show the label for each element. Enabled by default. <strong>Note:</strong> showing labels is highly recommended. It is good for accessibility, and when they are not used it can lead to confusing results with radio buttons. 71 <li>Show placeholders? - show the placeholder for each element. Enabled by default 72 <li>Package - for forms where the user can select a package, setting this parameter will select the package automatically and hide the field for the user. 73 <li>HTML element - show the contact form as definition list (default), ordered list, or table (not recommended for accessibility reasons). 74 <li>Element for single choices - show fields where a single choice is made (i.e. Customer type) as drop-down list (default) or radio buttons. 75 <li>Submit button text - the text for the form submission button. Defaults to "Send" 76 <li>Thank-you page - a page/post that the user is redirected to, after submitting the form successfully. 77 </ol> 65 <p>Contact forms can be integrated using a book process.</p> 78 66 79 67 <hr> … … 96 84 97 85 <hr> 98 <h2><?php esc_html_e('Voucher sales', 'recras'); ?></h2>99 <p>Voucher sales can be integrated using a book process.</p>100 101 <hr>102 86 <h2><?php esc_html_e('Voucher info', 'recras'); ?></h2> 103 87 <p>Voucher info can be integrated using the Recras/Voucher info block (Gutenberg) or using the <span class="rDocsIcon dashicons dashicons-money"></span> icon in the Classic Editor.</p> … … 111 95 </ol> 112 96 </ol> 97 98 <hr> 99 <h2><?php esc_html_e('Voucher sales', 'recras'); ?></h2> 100 <p>Voucher sales can be integrated using a book process.</p> -
recras/trunk/src/admin/shortcodes.php
r3432851 r3484591 40 40 41 41 <hr> 42 <h2><?php esc_html_e('Contact forms', 'recras'); ?></h2>43 <p>Contact forms can be added using the <kbd>[recras-contact]</kbd> shortcode.</p>44 <p>The following options are available:</p>45 <ol class="recrasOptionsList">46 <li>Contact form - <kbd>id</kbd>47 <li>Show title? - <kbd>showtitle</kbd>48 <li>Show labels? - <kbd>showlabels</kbd>49 <li>Show placeholders? - <kbd>showplaceholders</kbd>50 <li>Package - <kbd>arrangement</kbd>51 <li>HTML element - <kbd>element</kbd>, value is one of <kbd>dl</kbd> (recommended), <kbd>ol</kbd>, <kbd>table</kbd> (discouraged)52 <li>Element for single choices - <kbd>single_choice_element</kbd>, value is one of <kbd>select</kbd>, <kbd>radio</kbd>53 <li>Submit button text - <kbd>submitText</kbd>54 <li>Thank-you page - <kbd>redirect</kbd>55 </ol>56 <p>Example: <kbd>[recras-contact id="17" showtitle="0" showlabels="1" showplaceholders="1" submitText="Go!"]</kbd></p>57 58 59 <hr>60 42 <h2><?php esc_html_e('Products', 'recras'); ?></h2> 61 43 <p>Products can be added using the <kbd>recras-product</kbd> shortcode.</p>
Note: See TracChangeset
for help on using the changeset viewer.