From e7baceb2be8c0c57fe4e0f2fb26e434ab7b8b389 Mon Sep 17 00:00:00 2001 From: Morten Skyt Eriksen Date: Thu, 16 Aug 2018 14:16:30 +0200 Subject: [PATCH] Version 1.5.1 * Updated Danish translations (primarily the two-factor settings and frontend). * Fix: Our shortcode had unintentionally been renamed. We now support both `[gwapi]` and `[gatewayapi]`. * Fix: Two-factor-module caused fatal error on PHP 5. Also fixed general notices in two-factor module. * Fix: Two-factor module caused fatal error when creating new WordPress-users. --- gatewayapi.php | 2 +- inc/security_two_factor.php | 76 +- inc/shortcode.php | 6 +- languages/gatewayapi-da_DK.mo | Bin 43834 -> 50841 bytes languages/gatewayapi-da_DK.po | 2118 ++++++++++++++++++--------------- readme.txt | 8 +- 6 files changed, 1201 insertions(+), 1009 deletions(-) diff --git a/gatewayapi.php b/gatewayapi.php index 57ef116..70af0a3 100644 --- a/gatewayapi.php +++ b/gatewayapi.php @@ -3,7 +3,7 @@ Plugin Name: GatewayAPI Plugin URI: https://wordpress.org/plugins/gatewayapi/ Description: Send SMS'es through WordPress. -Version: 1.5.0 +Version: 1.5.1 Author: OnlineCity ApS Author URI: http://onlinecity.dk License: MIT diff --git a/inc/security_two_factor.php b/inc/security_two_factor.php index 850daee..f144fe3 100644 --- a/inc/security_two_factor.php +++ b/inc/security_two_factor.php @@ -14,7 +14,7 @@ class GwapiSecurityTwoFactor public static function getRoles() { $roles = wp_roles()->get_names(); - $current_roles = get_option('gwapi_security_required_roles', []); + $current_roles = get_option('gwapi_security_required_roles') ? : []; $out = []; foreach ($roles as $k => $t) { @@ -389,15 +389,18 @@ public static function sendInitialSms() } // vars for HTML - $html = (function () use ($mcc, $mno, $tmp_token) { - ob_start(); - include _gwapi_dir() . '/tpl/wp-login-confirm-phone.php'; - return ob_get_clean(); - })(); + $html = self::getHtmlLoginConfirmPhone($mcc, $mno, $tmp_token); die(json_encode(['success' => true, 'html' => $html])); } + private static function getHtmlLoginConfirmPhone($mcc, $mno, $tmp_token) + { + ob_start(); + include _gwapi_dir() . '/tpl/wp-login-confirm-phone.php'; + return ob_get_clean(); + } + /** * Send the confirmation SMS. */ @@ -443,14 +446,17 @@ public static function confirmSms() // then show a message of the happy success $redirect_to = $login_info['redirect_to']; - $html = (function () use ($redirect_to) { - ob_start(); - include _gwapi_dir() . '/tpl/wp-login-confirmed-phone.php'; - return ob_get_clean(); - })(); + $html = self::getHtmlLoginConfirmedPhone($redirect_to); die(json_encode(['success' => true, 'html' => $html])); } + + private static function getHtmlLoginConfirmedPhone($redirect_to) + { + ob_start(); + include _gwapi_dir() . '/tpl/wp-login-confirmed-phone.php'; + return ob_get_clean(); + } } @@ -497,26 +503,29 @@ public static function handleLogin(\WP_User $user) } } - (function () use ($mcc, $mno) { - // anonymize the phone number - $mno = str_repeat('·', strlen($mno) - 3) . substr($mno, -3, 3); - $tmp_token = GwapiSecurityTwoFactor::$TMP_TOKEN; - - // enqueue css/js - GwapiSecurityTwoFactor::enqueueCssJs(); - - // tweak the form id, so the JS hooks in properly - add_filter('gwapi_confirm_phone_form_id', function ($c) { - return "gwapi_confirm_login_form"; - }); - - // output! - login_header(__('Two-factor security check', 'gatewayapi')); - echo '
'; - include _gwapi_dir() . '/tpl/wp-login-confirm-phone.php'; - echo '
'; - login_footer(); - })(); + self::getHtmlLoginConfirmPhone($mcc, $mno); + } + + private static function getHtmlLoginConfirmPhone($mcc, $mno) + { + // anonymize the phone number + $mno = str_repeat('·', strlen($mno) - 3) . substr($mno, -3, 3); + $tmp_token = GwapiSecurityTwoFactor::$TMP_TOKEN; + + // enqueue css/js + GwapiSecurityTwoFactor::enqueueCssJs(); + + // tweak the form id, so the JS hooks in properly + add_filter('gwapi_confirm_phone_form_id', function ($c) { + return "gwapi_confirm_login_form"; + }); + + // output! + login_header(__('Two-factor security check', 'gatewayapi')); + echo '
'; + include _gwapi_dir() . '/tpl/wp-login-confirm-phone.php'; + echo '
'; + login_footer(); } /** @@ -573,7 +582,10 @@ class GwapiSecurityTwoFactorUserProfile { public static function addContactMethod($methods, $user = null) { - if (!is_a($user, 'WP_User')) $user = get_user_by('id', $user->ID); + if (!is_a($user, 'WP_User')) { + if (is_object($user) && isset($user->ID) && is_int($user->ID)) $user = get_user_by('id', $user->ID); + else return $methods; // unsupported on brand new users + } if (!GwapiSecurityTwoFactor::userNeedsTwoFactor($user)) return $methods; // only enable this for when editing own profile diff --git a/inc/shortcode.php b/inc/shortcode.php index 063f85f..24b21f7 100644 --- a/inc/shortcode.php +++ b/inc/shortcode.php @@ -463,7 +463,7 @@ function _gwapi_shortcode_handle_send_sms($atts) return [ $action_text, $action_note ]; } -add_shortcode('gatewayapi', function($atts) { +$shortcode_fn = function($atts) { // validate: action $valid_actions = ['signup', 'update', 'unsubscribe', 'send_sms']; @@ -544,4 +544,6 @@ function _gwapi_shortcode_handle_send_sms($atts) // end form echo ''; -}); \ No newline at end of file +}; +add_shortcode('gatewayapi', $shortcode_fn); +add_shortcode('gwapi', $shortcode_fn); \ No newline at end of file diff --git a/languages/gatewayapi-da_DK.mo b/languages/gatewayapi-da_DK.mo index a9f10b89f847ea2075a74816490e2a9f820195d6..6980216a107e08e76ea3e2299fbd46735527f2db 100644 GIT binary patch delta 18728 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 XXpW(+nJk=R<4U-TlqcRbvgZE)APVk9 delta 11324 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 Guide." -msgstr "Hjælp til pluginet? Tjek endelig vores Bruger-guide ud!" +#. Author of the plugin/theme +msgid "OnlineCity ApS" +msgstr "OnlineCity ApS" -# wpml-name: 6a26f548831e6a8c26bfbbd9f6ec61e0 -msgid "Help" -msgstr "Hjælp" +#. Description of the plugin/theme +msgid "Send SMS'es through WordPress." +msgstr "Send SMS'er igennem WordPress." -# wpml-name: 7a97419a6312bf2f5dcdb87d844f3d07 -msgid "User Guide" -msgstr "Brugerguide" +#. Plugin URI of the plugin/theme +msgid "https://wordpress.org/plugins/gatewayapi/" +msgstr "https://wordpress.org/plugins/gatewayapi/" -# wpml-name: c20f2aa07704ed799127e8709ea990d6 -msgid "Enter all calling codes allowed, separated by space. Leave empty to allow all. See the list of calling codes." -msgstr "Indtast alle landekoder som er tillad, adskildt af mellemrum. Lad feltet være tomt for at tillade alle lande. Se liste over landekoder hér." +#. Plugin Name of the plugin/theme +msgid "GatewayAPI" +msgstr "GatewayAPI" -# wpml-name: 92b00faacee05c59c26b973c71771c09 -msgid "There are no recipients in the groups you have selected. The SMS cannot be sent to 0 recipients." -msgstr "Der er ingen modtagere i de grupper du har valgt. SMS'en kan ikke sendes til 0 modtagere." +#: tpl/wp-login-confirmed-phone.php:6 +msgid "You have also been logged in 😄" +msgstr "Du er også blevet logget ind 😄" -# wpml-name: a21ae3bfa24b506cc9c31ae09e04a7b7 -msgid "You must have a groups field in this form (it may be hidden) in order to select recipients." -msgstr "Du skal have oprettet et modtagergruppe-felt (det kan være skjult) for at der kan leveres til modtagere." +#: tpl/wp-login-confirmed-phone.php:4 +msgid "Success! Your mobile is now connected to your profile, which helps secure the integrity of your account and this website." +msgstr "Super! Din mobil er nu forbundet med din profil, hvilket hjælper med at sikre din konto og dette websted." -# wpml-name: b627bf9523b811503a903988f5021adf -msgid "At least one group must be selected in order to send an SMS." -msgstr "Der skal vælges minimum én gruppe for at kunne sende en SMS." +#: tpl/wp-login-confirm-phone.php:23 +msgid "Confirming..." +msgstr "Bekræfter..." -# wpml-name: 45a1213d8c466b5d571a5b350ddea4b7 -msgid "1.3.3 DEV" -msgstr "1.3.3 DEV" +#: tpl/wp-login-confirm-phone.php:22 +msgid "Confirm code" +msgstr "Bekræftelseskode" -# wpml-name: 2141ad0cd449be140c23fdecf03411b5 -msgid "Show tags" -msgstr "Vis tags" +#: tpl/wp-login-confirm-phone.php:4 +msgid "We have just sent you a SMS, to the number +:mcc :mno. Please enter the confirmation code from it, in the field below." +msgstr "Vi har netop sendt dig en SMS, til telefonnummeret +mcc :mno. Indtast venligst bekræftelseskoden fra den, i feltet nedenfor." -# wpml-name: cb35511464ffb27802d116dde41a7522 -msgid "Links to a table of possible SMS-tags (opens in popup)." -msgstr "Linker til en tabel over tilgængelige SMS-tags (åbner i en popup)." +#: tpl/wp-login-add-phone.php:29 +msgid "Sending SMS..." +msgstr "Sender SMS..." -# wpml-name: fb312067009a944d29b6b2ff3340cd0b -msgid "Creates a link to a popup-window, containing a table of possible SMS-tags." -msgstr "Opretter et link til et popup-vindue, som indeholder en tabel med tilgængelige SMS-tags." +#: tpl/wp-login-add-phone.php:29 +msgid "Verify phone" +msgstr "Bekræft telefonnummer" -# wpml-name: a542b94b0bd414a155b8c891445698d8 -msgid "Link to tags" -msgstr "Link til tags" +#: tpl/wp-login-add-phone.php:7 +msgid "Please add your cellphone number below, so we can send you a one-time verification code.
This is mandatory, but free of charge to you." +msgstr "Skriv venligst dit mobilnummer nedenfor, så der kan sendes en éngangs bekræftelseskode.
Dette er obligatorisk, men gratis for dig." -# wpml-name: 470611858515e96612dc0b1ffffb07f4 -msgid "Enable counter" -msgstr "Aktivér tæller" +#: tpl/wp-login-add-phone.php:2 +msgid "Register mobile phone number" +msgstr "Registrér mobilnummer" -# wpml-name: a94131691000da92c5a6d1f4340fca80 -msgid "Displays how many SMS'es this message spans as you type it." -msgstr "Viser hvor mange SMS'er denne besked fylder imens du indtaster beskeden." +#: tpl/settings_page.php:609 +msgid "Paste the following URL into the Web hook URL input field." +msgstr "Indtast den følgende URL ind i Web hook URL input-feltet." -# wpml-name: 00914008e58920e2994f712269d2e306 -msgid "Character counter" -msgstr "Tegntæller" +#: tpl/settings_page.php:606 +msgid "Enter a Unique label." +msgstr "Indtast et unikt navn i \"Unique label\"." -# wpml-name: 68753d36ec0c4d7768b20993268d68d1 -msgid "Placeholder" -msgstr "Pladsholder" +#: tpl/settings_page.php:603 +msgid "Click ADD NEW." +msgstr "Tryk \"ADD NEW\"." -# wpml-name: b0140f98dc08c4bba0f93f1e67456130 -msgid "Send SMS from the frontend. Warning: anyone with access to a page with this on, can send SMS'es on your behalf!" -msgstr "Send SMS fra hjemmesiden. Advarsel: alle som besøger siden med formularen på, kan sende SMS'er på vegne af dit site!" +#: tpl/settings_page.php:600 +msgid "Visit gatewayapi.com and click Settings > Web Hooks or follow this link." +msgstr "Besøg gatewayapi.com og tryk på \"Settings\" > \"Web Hooks\" eller klik her." -# wpml-name: 0d47e091ebbf985920a53f4456e496c1 -msgid "smstext" -msgstr "smstekst" +#: tpl/settings_page.php:596 +msgid "Please follow these simple steps:" +msgstr "Følg venligst disse simple instrukser:" -# wpml-name: 698851127b8b95a5f744ca584881e6b9 -msgid "Name attribute" -msgstr "Navn-attribut" +#: tpl/settings_page.php:593 +msgid "Before your installation is capable of receiving SMS messages you must configure GatewayAPI." +msgstr "Før din installation er i stand til at modtage SMS-beskeder, så skal du først lave en kobling med GatewayAPI." -# wpml-name: 5b28ee398da148313e912a0c08d76ba4 -msgid "1.3.3" -msgstr "1.3.3" +#: tpl/settings_page.php:587 +msgid "Configuration" +msgstr "Opsætning" -# wpml-name: 198068b3cdca651ae033a746f970a50d -msgid "1.3.0" -msgstr "1.3.0" +#: tpl/settings_page.php:578 +msgid "Yes please, I would like to receive SMS messages." +msgstr "Ja, jeg vil gerne kunne modtage SMS-beskeder." -# wpml-name: 570db42f21ba187adedb280c174196b7 -msgid "Enter the keyword which triggers this action." -msgstr "Indtast keywordet som udløser denne handling." +#: tpl/settings_page.php:573 +msgid "Do you want to receive SMS messages for this installation?" +msgstr "Ønsker du at kunne modtage SMS-beskeder med denne installation?" -# wpml-name: 0080402911be06e922e65a8336497733 -msgid "Pick an action describing what will happen, when this receive action is triggered." -msgstr "Vælg en handling som beskriver hvad der skal ske, når denne modtagehandling udløses." +#: tpl/settings_page.php:564 +msgid "Your shortcode" +msgstr "Din shortcode" -# wpml-name: c304104d6110b2e12faa77ff3f2b9d0d -msgid "Enter the keyword which triggers this action. If you own the entire number, this may not be required." -msgstr "Indtast keywordet som udløser denne handling. Hvis du ejer hele nummeret er dette muligvis ikke nødvendigt." +#: tpl/settings_page.php:559 +msgid "Allow the sender name to be changed." +msgstr "Tilad at afsendernavn ændres." -# wpml-name: 220f3d3750583b9db48568a0b5b9a5f1 -msgid "Keyword" -msgstr "Keyword" +#: tpl/settings_page.php:554 +msgid "Please consider that embedding this into a public part of your website enables any visitor to send SMS'es to the selected groups. This is rarely a good idea. Pages utilizing this shortcode should at least be password protected or be limited to specific user roles." +msgstr "Overvej venligst at det at benytte denne formular på en reelt offentligt tilgængelig side åbner op for, at enhver besøgende kan sende SMS’er til de valgte grupper. Dette er meget sjældent en god idé. Sider som benytter denne shortcode bør som minimum kodeordsbeskytte eller sikre på andre måder." -# wpml-name: 142756a4d21b48034e008f1016263464 -msgid "Which number are SMS'es sent to?" -msgstr "Hvilket nummer sendes SMS’er til?" +#: tpl/settings_page.php:554 +msgid "Warning:" +msgstr "Advarsel:" -# wpml-name: 99707b584d05f258416d7eafba7d5bb4 -msgid "Name of receive action" -msgstr "Navn på modtagehandling" +#: tpl/settings_page.php:545 +msgid "Yes, show the list of selected groups and allow user to edit." +msgstr "Ja, vis listen med de udvalgte grupper og tillad at vælge til og fra." -# wpml-name: 6733085251c4dec2c0eee20c70acb20c -msgid "Create new receive action" -msgstr "Opret ny modtagehandling" +#: tpl/settings_page.php:541 +msgid "Would you also like to show the list of groups (containing only the above selected gorups) and allow the user to pick amongst these groups? All will be selected per default." +msgstr "Ønsker du også at vise listen af grupper (som kun indeholder de ovenfor valgte grupper) samt tillade at brugeren vælger iblandt disse grupper? Alle vil være valgt som standard." -# wpml-name: 1fbc40c8ed35a8be3ff0764a0c805f1a -msgid "Create receive action" -msgstr "Opret modtagehandling" +#: tpl/settings_page.php:539 +msgid "Select multiple groups by holding down CTRL (Windows) / CMD (Mac) while clicking." +msgstr "Vælg flere grupper ved at holde CTRL nede (Windows) / CMD (Mac) imens du klikker til og fra." -# wpml-name: 281ea372fd9dae7f652fa2ef5305d6f0 -msgid "Rec. actions" -msgstr "Modt. handlinger" +#: tpl/settings_page.php:532 +msgid "Which group(s) should be affected? If action is signup or update, the user will be added to the selected groups. With action \"Send SMS\", this is the groups who will receive the SMS." +msgstr "Hvilke(n) gruppe(r) skal påvirkes? Hvis handlingen er tilmeld eller opdatér, vil brugeren blive tilmeldt til de valgte grupper. Er handlingen “Send SMS” så vil dette være grupperne som modtager SMS’en." -# wpml-name: 306137c3641bb9a7b011b4f825eda622 -msgid "No receive actions found in trash" -msgstr "Ingen modtagehandlinger fundet i papirkurven" +#: tpl/settings_page.php:524 +msgid "Yes, I would like to enable reCAPTCHA on this form." +msgstr "Ja, jeg ønsker at aktivere reCAPTCHA på denne formular." -# wpml-name: cfa45c33ee5fde3097333a4563ecf7c8 -msgid "No receive actions found" -msgstr "Ingen modtagehandlinger fundet" +#: tpl/settings_page.php:519 +msgid "Would you like to use Google's free reCAPTCHA-service to protect the form against spam bots and abuse?" +msgstr "Ønsker du har benytte Google’s gratis reCAPTCHA-service til at beskytte formularen imod spam-bots og andet misbrug?" -# wpml-name: 4a1ae00815bc0ad2713690547da9b4df -msgid "Search receive actions" -msgstr "Søg i modtagehandlinger" +#: tpl/settings_page.php:517 +msgid "Require CAPTCHA" +msgstr "Kræv CAPTCHA" -# wpml-name: a349d88ec59f78b4d42c2909e4f11b71 -msgid "New receive action" -msgstr "Ny modtagehandling" +#: tpl/settings_page.php:511 +msgid "Send an SMS" +msgstr "Send en SMS" -# wpml-name: d942a988dd0fb2b54f110bcbfc858f4b -msgid "Edit receive action" -msgstr "Redigér modtagehandling" +#: tpl/settings_page.php:506 +msgid "User is unsubscribed (existing recipient is deleted)" +msgstr "Bruger er afmeldt (eksisterende modtager er slettet)" -# wpml-name: a66916a02300a302b4584e08cd9a7897 -msgid "Create new action" -msgstr "Opret ny handling" +#: tpl/settings_page.php:500 +msgid "User is updated (existing recipient is updated)" +msgstr "Bruger er opdateret (eksisterende modtager er opdateret)" -# wpml-name: 1bc73bb1a51e8caa424dc31eef5a6575 -msgid "Create action" -msgstr "Opret handling" +#: tpl/settings_page.php:494 +msgid "User is signed up (recipient is created)" +msgstr "Bruger er tilmeldt (modtager er oprettet)" -# wpml-name: 3699c9739fa1007d70ab60ec4e48d84c -msgid "Receive action" -msgstr "Modtagehandling" +#: tpl/settings_page.php:490 +msgid "What should happen when the form is successfully submitted?" +msgstr "Hvad skal der ske når formularen er fuldt og gyldigt udfyldt?" -# wpml-name: 5b8eca5e40e862b0f9bab085ca590eda -msgid "Receive actions" -msgstr "Modtagehandlinger" +#: tpl/settings_page.php:489 +msgid "Action of form" +msgstr "Handling i formular" -# wpml-name: 2c7239a957a61e60a24058552836e889 -msgid "Binary payload of the received SMS. Optional." -msgstr "Binært indhold i SMS’en. Valgfrit." +#: tpl/settings_page.php:485 +msgid "Note: If any fields below are missing or out-of-date, then please click \"Save changes\", as this is based on the last saved version." +msgstr "Bemærk: Hvis nogen af felterne mangler eller er forældede, så tryk venligst på “Gem ændringer”, da denne brugerflade baserer sig på senest gemte version." -# wpml-name: fd52327eab9eaafecc38175655438fab -msgid "User data header of the received SMS. Optional." -msgstr "Bruger headerdata i den modtagne SMS. Valgfrit." +#: tpl/settings_page.php:482 +msgid "Use the options below to build a shortcode ready for use anywhere you would like." +msgstr "Brug mulighederne nedenfor for at bygge en shortcode som kan benyttes i alle indholdsfelter." -# wpml-name: b57c7c1039c7a0bbd4fd08f5c64b0410 -msgid "Encoding of the received SMS. Optional." -msgstr "Kodning i den modtagne SMS. Valgfrit." +#: tpl/settings_page.php:469 +msgid "Enabling this will force a one-time synchronization of all users, when you save these settings. This is useful when initially setting this plugin up and in cases where you might have updated the user database directly, so that the regular hooks on which the user synchronization relies, has not been triggered." +msgstr "Slåes dette felt til vil der blive lave en én-gangs-synkronisering af alle brugere, så snart indstillingerne på denne side gemmes. Dette er brugbart når du indledningsvist opsætter pluginnet eller i situationer hvor ændringer f.eks. er foretaget på databaseniveau og de nødvendige automatiske handlinger derfor ikke er kørt." -# wpml-name: 2c870deeb3bbc7cd6f34ef2b58f6b956 -msgid "How long the SMS is valid. Optional." -msgstr "Hvor lang tid SMS’en er gyldig. Valgfrit." +#: tpl/settings_page.php:466 +msgid "Synchronize all existing users on submit." +msgstr "Synkronisér alle brugere når indstillingerne gemmes." -# wpml-name: 5926ec5d8e12505be6e7bbd52f620cf2 -msgid "MNC, mobile network code. Optional." -msgstr "MNC, mobilnetværkskode. Valgfrit." +#: tpl/settings_page.php:462 +msgid "Synchronize now" +msgstr "Synkronisér nu" -# wpml-name: 142f80389ce7013115b9b12e8fe9913b -msgid "MCC, mobile country code. Optional." -msgstr "MCC, mobil landekode. Valgfrit." +#: tpl/settings_page.php:433 +msgid "User meta field" +msgstr "Bruger metafelt" -# wpml-name: 873415bf2f51a3c6a7b6919a0b995043 -msgid "If SMS was sent with a text based sender, then this field is set. Optional." -msgstr "Hvis SMS var afsendt med en tekstbaseret afsender, så sættes dette felt. Valgfrit." +#: tpl/settings_page.php:431 +msgid "Group name" +msgstr "Gruppenavn" -# wpml-name: c32f621ace0c0e190ab93ce52487bb5e -msgid "Label of the webhook who matched the SMS." -msgstr "Navn på webhooken som matchede SMS’en." +#: tpl/settings_page.php:425 +msgid "If you wish to automatically subscribe recipients to specific groups, then please tell which groups a user should be assigned to, when a specific user meta key is present. This user meta key just needs to be present and hold any value except \"0\", \"false\" or be empty." +msgstr "Hvis du ønsker automatisk at tilmelde modtagere til bestemte grupper, så fortæl venligst hvilke grupper en bruger skal tilmeldes, når en bestemt metaværdi er til stede på brugeren. Denne metaværdi skal blot eksistere og indeholde en værdi som ikke er “0”, “false” samt må ikke være tom." -# wpml-name: ee3c23b047b73bb7c3d8a7931ead32c9 -msgid "The UNIX Timestamp when the SMS was sent." -msgstr "UNIX timestamp for hvornår SMS’en var sendt." +#: tpl/settings_page.php:416 +msgid "If you want to map other fields from the user and to the meta fields on the recipient, then please list them below. Enter a user meta key, add a colon and then enter the corresponding recipient meta field. To add more fields, separate with newline." +msgstr "Hvis du ønsker at tilknytte andre metafelter fra brugeren og over på modtageren, så indtast dem venligst nedenfor. Skriv en brugers metafelt, skriv et kolon (:) samt skriv nøglen for modtageren. For at tilføje flere felter, opdel med linjeskift." -# wpml-name: bb44620a2276e35950b70681f03df6da -msgid "The body of the SMS, incl. keyword." -msgstr "Indholdet i SMS’en, inkl. keyword." +#: tpl/settings_page.php:414 +msgid "Meta Key : Recipient Field Key" +msgstr "Bruger metanøgle : Modtagerfelt" -# wpml-name: 8d9fe7c66e574c74a7e84c0f918aa68b -msgid "The short code on which the SMS was received." -msgstr "Short-coden som SMS’en blev modtaget på." +#: tpl/settings_page.php:411 +msgid "Other fields" +msgstr "Andre felter" -# wpml-name: f879b3b463fef0a11489601bab204886 -msgid "The MSISDN of the mobile device who sent the SMS." -msgstr "MSISDN’et på mobilenheden som sendte SMS'en." +#: tpl/settings_page.php:405 +msgid "If only the mobile number, but not the country code, is specified on a user, then this value will be assumed." +msgstr "Hvis kun mobilnummer, men ikke landekode, er tilknyttet en bruger, så vil denne værdi blive brugt." -# wpml-name: 94cfe33973e6d8cb77d4394ff4be5c74 -msgid "The ID of the MO SMS" -msgstr "ID’et på MO SMS." +#: tpl/settings_page.php:392 +msgid "Which user meta key contains the country code for the mobile number?" +msgstr "Hvilken metanøgle på brugeren indeholder landekoden for mobilnummeret?" -# wpml-name: 23f1bda6713a3652835ff7304fc39784 -msgid "Received on: %1$s" -msgstr "Modtaget: %1$s" +#: tpl/settings_page.php:380 +msgid "Which user meta key contains the mobile number?" +msgstr "Hvilken metanøgle indeholder mobilnummeret?" -# wpml-name: ac5bb077c33753116b5e91ff1766e7bc -msgid "Received" -msgstr "Modtaget" +#: tpl/settings_page.php:368 +msgid "Enable user synchronization" +msgstr "Slå brugersynkronisering til" -# wpml-name: a9d093d11bc6e98b0c8e586ffa545c85 -msgid "Receiver" -msgstr "Modtager" +#: tpl/settings_page.php:363 +msgid "Please note: It is your responsibility to ensure that the information on a user is valid and that mobile numbers are unique. If a user is not present in the recipients list, then there's either missing or invalid information on the user, or the number is already associated with another user." +msgstr "Bemærk venligst: Det er dit ansvar at sørge for at informationerne på en bruger er gyldige og at mobilnummeret er unikt. Hvis en bruger ikke er at finde i modtagerlisten, så er det enten fordi der mangler mobilnummer eller andre værdier er ugyldige, eller fordi nummeret er tilknyttet en anden modtager." -# wpml-name: 2f66304205dde0cf02a6843e326381b4 -msgid "Search Inbox" -msgstr "Søg indbakke" +#: tpl/settings_page.php:360 +msgid "If any information changes on the WordPress user or the user is deleted, the recipient is updated or deleted as well. In other words, the recipient works as an always up-to-date copy of the relevant users." +msgstr "Hvis oplysninger ændrer sig på en WordPress bruger eller hvis brugeren er slettet, så opdateres eller slettes modtageren ligeledes. Med andre ord, så vil modtageren altid være up-to-date og spejlet med oplysningerne fra brugeren." -# wpml-name: f9ce0264cad52d42ff88797796034080 -msgid "Received SMS" -msgstr "Modtaget SMS" +#: tpl/settings_page.php:357 +msgid "It is possible to create recipients and keep them up-to-date automatically. As soon as the minimum required information on a user in the WordPress user is present, a recipient will be created automatically." +msgstr "Det er muligt at oprette modtagere og holde dem opdateret helt automatisk. Så snart de påkrævede oplysninger er oprettet på en WordPress bruger, vil modtageren blive oprettet automatisk." -# wpml-name: 3882d32c66e7e768145ecd8f104b0c08 -msgid "Inbox" -msgstr "Indbakke" +#: tpl/settings_page.php:348 +msgid "Reset to default" +msgstr "Nulstil til fabriksopsæt" -# wpml-name: b00a6785dabeb3a12f46d1b8d5d40694 -msgid "Paste the following URL into the Web hook URL input field." -msgstr "Indtast den følgende URL ind i Web hook URL input-feltet." +#: tpl/settings_page.php:348 +msgid "Are you sure that you want to reset to default? All your field configurations above will be lost immediately with no way of recovery." +msgstr "Er du sikker på at du ønsker at nulstille til fabriksopsæt? Alle dine feltindstillinger ovenfor går tabt med det samme og vil ikke kunne genskabes." -# wpml-name: fd7888efc44bbf1fa8a1d9f35d777e7b -msgid "Enter a Unique label." -msgstr "Indtast et unikt navn i \"Unique label\"." +#: tpl/settings_page.php:346 +msgid "Add another field" +msgstr "Tilføj endnu et felt" -# wpml-name: 0a90c4dbc07375783f80168800f261fb -msgid "Click ADD NEW." -msgstr "Tryk \"ADD NEW\"." +#: tpl/settings_page.php:335 +msgid "Delete this field" +msgstr "Slet dette felt" -# wpml-name: f2cb96e908ad2f28f4d469a7dc5b30b9 -msgid "Visit gatewayapi.com and click Settings > Web Hooks or follow this link." -msgstr "Besøg gatewayapi.com og tryk på \"Settings\" > \"Web Hooks\" eller klik her." +#: tpl/settings_page.php:335 +msgid "Are you sure that you want to delete this field?" +msgstr "Er du sikker på at du ønsker at slette dette felt?" -# wpml-name: 4de53c79fae109f88a05c91be88b76ea -msgid "Please follow these simple steps:" -msgstr "Følg venligst disse simple instrukser:" +#: tpl/settings_page.php:323 +msgid "Enter a single choice per line. Prefix the line with two exclamation marks (!!), to make an option selected by default." +msgstr "Indtast en enkelt valgmulighed pr. linje. Foranstil to udråbstegn (!!) på en linje, for at forhåndsvælge muligheden." -# wpml-name: 71adfd4f6cbf2841e6f724a211e4a56b -msgid "Before your installation is capable of receiving SMS messages you must configure GatewayAPI." -msgstr "Før din installation er i stand til at modtage SMS-beskeder, så skal du først lave en kobling med GatewayAPI." +#: tpl/settings_page.php:321 +msgid "Choices" +msgstr "Muligheder" -# wpml-name: 254f642527b45bc260048e30704edb39 -msgid "Configuration" -msgstr "Opsætning" +#: tpl/settings_page.php:311 +msgid "List of country calling codes" +msgstr "Liste over telefon-landekode" -# wpml-name: b1b88ea5d77e82e5ae0cbbc308dfcd50 -msgid "Yes please, I would like to receive SMS messages." -msgstr "Ja, jeg vil gerne kunne modtage SMS-beskeder." +#: tpl/settings_page.php:308 +msgid "If you wish to limit the countries available, please enter the country calling codes below (one per line, no “+”-prefix)." +msgstr "Hvis du ønsker at begrænse de mulige lande, så indtast deres landekoder nedenfor (én landekode pr. linje, ikke foranstillet med +)." -# wpml-name: 1263737230d0b420ff78252f65ff544c -msgid "Do you want to receive SMS messages for this installation?" -msgstr "Ønsker du at kunne modtage SMS-beskeder med denne installation?" +#: tpl/settings_page.php:306 +msgid "Country limitation" +msgstr "Landebegrænsning" -# wpml-name: 1b7223f5ce6643467cb650ffe08b8ba7 -msgid "SMS Inbox" -msgstr "SMS-indbakke" +#: tpl/settings_page.php:279 +msgid "Type" +msgstr "Type" -# wpml-name: 76c51a12781c105c173965d1830c2bd1 -msgid "Not entering the code will cancel the signup. Clicking OK will allow you to try and enter the code again." -msgstr "Hvis du ikke indtaster en kode, vil tilmelding blive annulleret. Trykker du OK får du mulighed for at prøve igen." +#: tpl/settings_page.php:267 +msgid "Yes, this is a required field." +msgstr "Ja, dette er et påkrævet felt." -# wpml-name: 77a1103e360c52f05fd2a1b0911d6e27 -msgid "You did not enter the code correctly. Please try again." -msgstr "Du har lavet fejl i indtastningen. Prøv venligst igen." +#: tpl/settings_page.php:260 +msgid "Required fields must be filled when adding recipients. For multiple choice field types, at least one value must be picked." +msgstr "Påkrævede felter skal udfyldes når man tilmelder en modtager. For “Flere valg” felt-typer betyder påkrævet, at minimum én af mulighederne skal vælges." -# wpml-name: 5c905e8cc09d41f9f4c13bbad9917ce5 -msgid "You did not enter a code. It is not possible for you to continue." -msgstr "Du indtastede ikke en kode. Det er ikke muligt for dig at fortsætte." +#: tpl/settings_page.php:258 +msgid "Required field?" +msgstr "Påkrævet felt?" -# wpml-name: 48e422acbbd29ecaf9937660ca6c7667 -msgid "We have just sent you an SMS with a verification code. Please enter it below:" -msgstr "Vi har netop afsendt en SMS med en bekræftelseskode. Indtast den venligst nedenfor:" +#: tpl/settings_page.php:248 +msgid "A helpful description of what input the user is expected to put in the field." +msgstr "En forklarende beskrivelse af hvad der forventes af brugeren ift. indtastningen." -# wpml-name: bf701dae9aff5bb22b8f000dc9bf6199 -msgid "1.2.2" -msgstr "1.2.2" +#: tpl/settings_page.php:246 +msgid "Description" +msgstr "Beskrivelse" -# wpml-name: 4d75601964cf8822aa732f1b72e8bcd1 -msgid "You must supply both country code and phone number in order to continue." -msgstr "Du skal indtaste både landekode og telefonnummer for at kunne fortsætte." +#: tpl/settings_page.php:230 +msgid "This is used as the tag when sending SMS'es, in shortcodes and is used as the meta key." +msgstr "Dette er brugt som tag når SMS’er afsendes, i shortcodes samt er brugt som nøgle for metafelt." -# wpml-name: e46a25d251913eca8bdfb1d9dfa60c64 -msgid "Synchronize all existing users on submit." -msgstr "Synkronisér alle brugere når indstillingerne gemmes." +#: tpl/settings_page.php:228 +msgid "Field ID" +msgstr "Felt-ID" -# wpml-name: 0b318300cc689b74a29cfcb61d0c9566 -msgid "User synchronization is complete. %d users were synchronized." -msgstr "Brugersynkronisering gennemført. %d brugere blev synkroniseret." +#: tpl/settings_page.php:218 +msgid "Shown in all pulic forms which uses this field." +msgstr "Vises i alle offentlige formularer som benytter dette felt." -# wpml-name: 7fd46df15b1e1c5cfb222f1001c20662 -msgid "%d users of %d synchronized..." -msgstr "%d brugere ud af %d synkroniseret…" +#: tpl/settings_page.php:200 +msgid "Use the \"Build Shortcode\"-tab to get the shortcodes required to embed a signup form, update a recipient, unsubscribe or simply send an SMS." +msgstr "Brug “Byg Shortcode”-tabben til at få den fornødne shortcode til en tilmeldingsformular, opdaterér tilmelding, afmeld eller til simpel SMS-afsendelse." -# wpml-name: 8efeb0483a47dbf53000616dd27c1d24 -msgid "%d user is being synchronized now." -msgstr "%d bruger er ved at blive synkroniseret." +#: tpl/settings_page.php:197 +msgid "The fields below are available when sending SMS'es, as well as when the users signs up or updates their recipient." +msgstr "Felterne nedenfor er tilgængelige når man sender SMS’er, såvel som når brugeren tilmelder sig eller opdaterer deres modtager." -# wpml-name: 1b78506f11436c0676d0cd175f6bb918 -msgid "There are no users to synchronize at this time, ie. no users which has the meta field for mobile number." -msgstr "Der er ingen brugere som skal synkroniseres på nuværende tidpunkt, dvs. ingen brugere hvor meta-feltet for mobilnummer er til stede." +#: tpl/settings_page.php:179 +msgid "How often must the user be forced to re-authorize via two-factor, when visiting from the same web browser?" +msgstr "Hvor ofte skal brugerne gen-bekræfte via to-faktor, når de besøger fra samme webbrowser?" -# wpml-name: 296a30e2525e8b70a683efbd864d95cd -msgid "%d users are being synchronized now" -msgstr "%d brugere synkroniseres nu" +#: tpl/settings_page.php:172 +msgid "Remember for up to 1 month" +msgstr "Husk i op til 1 måned" -# wpml-name: 8b36eba43c9a0b25920918d6d2ec3fa2 -msgid "Enabling this will force a one-time synchronization of all users, when you save these settings. This is useful when initially setting this plugin up and in cases where you might have updated the user database directly, so that the regular hooks on which the user synchronization relies, has not been triggered." -msgstr "Slåes dette felt til vil der blive lave en én-gangs-synkronisering af alle brugere, så snart indstillingerne på denne side gemmes. Dette er brugbart når du indledningsvist opsætter pluginnet eller i situationer hvor ændringer f.eks. er foretaget på databaseniveau og de nødvendige automatiske handlinger derfor ikke er kørt." +#: tpl/settings_page.php:171 +msgid "Remember for up to 2 weeks" +msgstr "Husk i op til 2 uger" -# wpml-name: 8627813f208ddbebe9a238113f3f97f8 -msgid "Synchronize now" -msgstr "Synkronisér nu" +#: tpl/settings_page.php:170 +msgid "Remember for up to 1 week" +msgstr "Husk i op til 1 uge" -# wpml-name: 51d8b1a38b2fc7fb51f74d2c656a3bab -msgid "Synchronize existing users" -msgstr "Synkronisér eksisterende brugere" +#: tpl/settings_page.php:169 +msgid "Remember for up to 1 day" +msgstr "Husk i op til 1 dag" -# wpml-name: 6406640337323a3f112bb2cd50f491d6 -msgid "Your verification code:" -msgstr "Din verifikationskode:" +#: tpl/settings_page.php:168 +msgid "Re-authorize with every login" +msgstr "Gen-bekræft ved hvert login" + +#: tpl/settings_page.php:164 +msgid "Two-factor cookie lifetime" +msgstr "To-faktor-cookies udløb" + +#: tpl/settings_page.php:159 +msgid "Hold down CTRL (PC) / CMD (Mac) to select multiple roles." +msgstr "Hold CTRL (PC) / CMD (Mac) nede for at vælge flere roller." + +#: tpl/settings_page.php:157 +msgid "All roles selected will be forced to upgrade to two-factor on their next login. We recommend that all roles above subscriber-level are selected." +msgstr "Alle roller valgt vil være tvunget til at opgradere til at benytte to-faktor ved deres næstkommende login. Vi anbefaler at alle roller over \"Abonnent\"-rollen vælges." + +#: tpl/settings_page.php:148 +msgid "User roles with two-factor" +msgstr "Brugerroller med to-faktor" + +#: tpl/settings_page.php:143 +msgid "This could rescue you from a site lockout, in case your GatewayAPI-account ran out of credit (you should enable auto-charge to avoid this) or if you forgot to update your profile when you got a new number. You should not share this URL, but keep it as a recovery measure for you as an administrator." +msgstr "Dette kan rede dig hvis du bliver låst helt ude, f.eks. i fald din GatewayAPI-konto skulle løbe tør for penge (du kan slå auto-optankning til for at undgå dette) eller hvis du glemte at opdatere din profil samtidigt med et skift af mobilnummer. Du bør ikke dele denne URL, men blot gemme den et sikkert sted." + +#: tpl/settings_page.php:141 +msgid "Use it to bypass all two-factor security measures when logging in." +msgstr "Brug den til at omgå alle to-faktor sikkerhedsforanstaltninger ved log ind." + +#: tpl/settings_page.php:141 +msgid "This URL should be copied to a safe place!" +msgstr "URL'en bør kopieres til et sikkert sted!" + +#: tpl/settings_page.php:139 +msgid "Reset" +msgstr "Nulstil" + +#: tpl/settings_page.php:139 +msgid "New code is generated on save" +msgstr "Ny kode laves når du gemmer" + +#: tpl/settings_page.php:131 +msgid "Emergency bypass URL" +msgstr "Nødadgangs URL" + +#: tpl/settings_page.php:125 +msgid "The two-factor login system is based solely on SMS'es, so your users will not need any apps, thus making it compatible with any mobile phone. All you will ever pay, is the cost of the text messages sent as part of the login process, while getting the greatly added security of two-factor security." +msgstr "Tofaktor-systemet er baseret udelukkende på SMS'er, så brugerne skal ikke have nogle apps, hvorfor dette virker med alle telefoner. Alt du betaler, er omkostningerne forbundet med at sende SMS'er i login-processen. Og til gengæld øger du din sides sikkerhed ganske dramatisk." + +#: tpl/settings_page.php:107 +msgid "ReCAPTCHA Secret key" +msgstr "ReCAPTCHA Hemmelig nøgle" + +#: tpl/settings_page.php:97 +msgid "ReCAPTCHA Site Key" +msgstr "ReCAPTCHA Sidenøgle" + +#: tpl/settings_page.php:93 +msgid "Click here to read more about reCAPTCHA and signup." +msgstr "Klik her for at lære mere om reCAPTCHA og for at tilmelde dig." + +#: tpl/settings_page.php:92 +msgid "If you would like to use reCAPTCHA on the public GatewayAPI forms (signup, unsubscribe etc.), then please enter your site key and secret key below." +msgstr "Hvis du ønsker at benytte reCAPTCHA på de offentligt tilgængelige GatewayAPI-formularer (tilmeld, afmeld osv.), så indtast venligst din “site key” og “secret key” nedenfor." + +#: tpl/settings_page.php:91 +msgid "reCAPTCHA is a free service from Google, which greatly reduces spam and abuse from your public forms." +msgstr "reCAPTCHA er en gratis tjeneste fra Google, som er bygget til at reducere spam-indtastninger og misbrug af dine offentlige formularer." + +#: tpl/settings_page.php:90 +msgid "Captcha for public forms" +msgstr "CAPTCHA i offentlige formularer" + +#: tpl/settings_page.php:83 +msgid "Must consist of either 11 characters or 15 digits." +msgstr "Skal bestå af 11 tegn eller 15 tal." + +#: tpl/settings_page.php:76 +msgid "Default sender" +msgstr "Standardafsender" + +#: tpl/settings_page.php:71 +msgid "Enabling two-factor forces users with certain roles, to connect their cellphone with their user account. Afterwards an additional step is added after the user/password-prompt, which asks for a one-time code. This code is immediately sent via SMS to the users cellphone. It is possible to remember a device for an extended period of time, so the user will not have to reauthorize all the time." +msgstr "Når du slår to-faktor til for bestemte roller, tvinges disse til at forbinde deres mobil med deres brugerprofil. Derefter tilføjes et ekstra trin i loginprocessen efter de har logget på med brugernavn og kodeord, som spørger om en éngangskode, de har modtaget på SMS samtidigt. Det er muligt at huske en enhed i lang tid, så brugeren ikke skal gen-bekræfte via SMS ved hvert login." + +#: tpl/settings_page.php:69 +msgid "Used to enable two-factor security for logging into your WordPress backend." +msgstr "Bruges til at slå to-faktor-sikkerhed til ved login til WordPress-backendet." + +#: tpl/settings_page.php:66 +msgid "Yes, enable the security settings tab" +msgstr "Ja, slå sikkerheds-tab'en til" + +#: tpl/settings_page.php:59 +msgid "Enable security-tab" +msgstr "Aktivér sikkerheds-tab" + +#: tpl/settings_page.php:54 +msgid "Enabling this adds a new menu for sending SMS'es and listing sent SMS'es, as well as managing an address book." +msgstr "Når du aktiverer dette, tilføjes en ny menu hvor du kan afsende SMS’er, se afsendte SMS’er, samt opbygge et adressekartotek." + +#: tpl/settings_page.php:51 +msgid "Yes, enable the SMS sending UI" +msgstr "Ja, aktivér SMS-afsendelsesbrugerfladerne" + +#: tpl/settings_page.php:46 +msgid "Enable sending UI" +msgstr "Aktivér afsend-brugerflade" + +#: tpl/settings_page.php:41 +msgid "OAuth Secret" +msgstr "OAuth Hemmelighed" + +#: tpl/settings_page.php:35 +msgid "OAuth Key" +msgstr "OAuth Nøgle" + +#: tpl/settings_page.php:30 +msgid "Please enter your OAuth Key and OAuth Secret below. You find this information by logging into :link and then navigate to Settings » API Keys." +msgstr "Indtast venligst OAuth-nøglen og hemmeligheden nedenfor. Du finder disse oplysninger ved at logge ind i :link og derefter navigerer til Settings » API Keys." + +#: tpl/settings_page.php:25 +msgid "Need help with the plugin? We highly recommend that you check out the User Guide." +msgstr "Hjælp til pluginet? Tjek endelig vores Bruger-guide ud." + +#: tpl/settings_page.php:15 +msgid "SMS Inbox" +msgstr "SMS-indbakke" + +#: tpl/settings_page.php:14 +msgid "Build Shortcode" +msgstr "Byg Shortcode" + +#: tpl/settings_page.php:13 +msgid "User synchronization" +msgstr "Brugersynkronisering" + +#: tpl/settings_page.php:12 +msgid "Recipient fields" +msgstr "Modtagerfelter" + +#: tpl/settings_page.php:11 +msgid "Security" +msgstr "Sikkerhed" + +#: tpl/settings_page.php:10 +msgid "General settings" +msgstr "Generelle indstillinger" -# wpml-name: bfc7a206ca05c0aa568aeb571206fc2a +#: tpl/import-do.php:48 msgid "Updated recipients" msgstr "Opdaterede modtagere" -# wpml-name: e3a8df26e64d7dd6c359645b0d4ea8cc +#: tpl/import-do.php:42 msgid "New recipients" msgstr "Nye modtagere" -# wpml-name: eb3fa081617be5f01b65ef1faf33fa37 +#: tpl/import-do.php:35 msgid "Invalid rows" msgstr "Ugyldig række" -# wpml-name: 530f488f7a9800411efc6926ab189708 +#: tpl/import-do.php:27 msgid "Rows" msgstr "Rækker" -# wpml-name: fa072aec56f675fa4e267c90bac014a6 +#: tpl/import-do.php:22 msgid "Importing..." msgstr "Importerer..." -# wpml-name: 37666c6323e4f8c1aa7234989e79a87c +#: tpl/import-do.php:12 msgid "Your import is running. It's important that you do not leave this page until it has finished." msgstr "Importeringen er igang. Det er vigtigt at du ikke forlader denne side imens importen er i gang." -# wpml-name: 18fc7c19e8ec29de336fd0886c78d685 +#: tpl/import-data.php:24 msgid "Analyze data" msgstr "Analyser data" -# wpml-name: 13c6843f563ca14045c384a7b0199b1e +#: tpl/import-data.php:15 msgid "Your existing data" msgstr "Din eksisterende data" -# wpml-name: 5fe4434803eaa3732466278712e9d836 +#: tpl/import-data.php:6 msgid "First row must contain columns names." msgstr "Første række skal indeholde kolonnenavne." -# wpml-name: 13f48b06b4a58d4bc70693d7731b66be +#: tpl/import-data.php:3 msgid "To import your recipients, please open a spreadsheet containing at least the country code and mobile numbers of your recipients. Copy all rows and simply paste into the big textarea below." msgstr "For at importere dine modtagere så åben venligst et regneark hvori du som minimum har landekode og mobilnumre på dine modtagere. Kopiér alle rækker og indsæt resultatet i det store tekstområde nedenfor." -# wpml-name: 376ad62c31b67ad0ffcd4cb8ddc067cc +#: tpl/import-analysis.php:76 msgid "Fields which you have chosen to \"Ignore\", will remain untouched for existing members." msgstr "Felter som du har valgt at ignorere vil forblive uberørte for allerede eksisterende medlemmer." -# wpml-name: 5b419efc36c23a7704dc75400ff719b5 +#: tpl/import-analysis.php:75 msgid "If a recipient already exists, the recipient is overwritten with the not-ignored fields above." msgstr "Hvis en modtager allerede eksisterer så overskrives alle ikke-ignorerede felter på modtageren." -# wpml-name: 8aa60a89d24ac9cc80268a1bb04ee97c +#: tpl/import-analysis.php:74 msgid "At import the system compares your new data with your existing, based on the mobile country code and number." msgstr "Når importeringen udføres så sammenlignes dine nye modtagere med de eksisterende, ved at kigge på lande kode og mobilnummer." -# wpml-name: 72d6d7a1885885bb55a565fd1070581a +#: tpl/import-analysis.php:72 msgid "Import" msgstr "Importér" -# wpml-name: fd038fc7f319e48f3115d92bf5bdbef9 +#: tpl/import-analysis.php:48 +msgid "Which groups should these recipients be assigned to? For existing recipients, their current groups will only be expanded with the new groups and none of their current groups will be removed." +msgstr "Hvilke gruppe skal disse modtagere tilknyttes? For allerede oprettede modtagere vil der kun blive tilføjet på deres liste af grupper og de vil derfor ikke blive afmeldt nogen grupper de pt. er tilmeldt." + +#: tpl/import-analysis.php:47 +msgid "Assign to groups" +msgstr "Knyt til grupper" + +#: tpl/import-analysis.php:34 msgid "Ignore" msgstr "Ignorér" -# wpml-name: 31d87a118234c73ed8047ce7f31a511b +#: tpl/import-analysis.php:21 +msgid "The system has crunched the data you pasted. Please map the column titles from your spreadsheet, with the fields from the system below." +msgstr "Systemet har bearbejdet din data. Knyt venligst kolonnetitler fra dit regneark, med felterne fra systemet." + +#: inc/validation.php:58 msgid "Sender must contain at most 11 characters (or 15 digits)." msgstr "Afsender må maksimalt indeholde 11 tegn eller 15 tal." -# wpml-name: e16814e853bb5a19f0fea7a4a44e6226 +#: inc/validation.php:56 msgid "Sender must be no longer than 15 characters when using digits." msgstr "Afsender skal maksimalt være på 15 tegn, når du kun bruger tal." -# wpml-name: 200c32004980ccb1afefe3b642534c6c +#: inc/validation.php:44 msgid "There already exists a recipient with these details." msgstr "Der er allerede tilføjet en modtager med de samme detaljer." -# wpml-name: 81b55d1a5b97da281f7e669bfbdc6099 +#: inc/validation.php:22 msgid "The phone number is invalid." msgstr "Telefonnummeret er ugyldigt." -# wpml-name: 0de341ac70e758751c86c59a9354b429 +#: inc/validation.php:18 msgid "No phone number entered." msgstr "Intet telefonnummer indtastet." -# wpml-name: 621c2f4d0b335916289a784ae600509d +#: inc/validation.php:15 msgid "The country code is invalid." msgstr "Landekoden er ugyldig." -# wpml-name: 4a86efb4711f4f6a0bcea022f1f3fc6c +#: inc/validation.php:14 msgid "No country code entered." msgstr "Ingen landekode indtastet." -# wpml-name: 03b85b16c525c7b69568dbe5da5d148b +#: inc/user_sync.php:218 +msgid "%d users of %d synchronized..." +msgstr "%d brugere ud af %d synkroniseret…" + +#: inc/user_sync.php:208 +msgid "User synchronization is complete. %d users were synchronized." +msgstr "Brugersynkronisering gennemført. %d brugere blev synkroniseret." + +#: inc/user_sync.php:196 +msgid "%d user is being synchronized now." +msgid_plural "%d users are being synchronized now" +msgstr[0] "%d bruger synkroniseres nu." +msgstr[1] "%d brugere synkroniseres nu" + +#: inc/user_sync.php:192 +msgid "There are no users to synchronize at this time, ie. no users which has the meta field for mobile number." +msgstr "Der er ingen brugere som skal synkroniseres på nuværende tidpunkt, dvs. ingen brugere hvor meta-feltet for mobilnummer er til stede." + +#: inc/tax_recipient.php:22 +msgid "No groups found" +msgstr "Ingen grupper fundet" + +#: inc/tax_recipient.php:21 +msgid "Choose from most used groups" +msgstr "Vælg fra mest brugte grupper" + +#: inc/tax_recipient.php:20 +msgid "Add or remove groups" +msgstr "Tilføj eller fjern grupper" + +#: inc/tax_recipient.php:19 +msgid "Popular groups" +msgstr "Populære grupper" + +#: inc/tax_recipient.php:18 +msgid "Search groups" +msgstr "Søg i grupper" + +#: inc/tax_recipient.php:17 +msgid "New group" +msgstr "Ny modtagergruppe" + +#: inc/tax_recipient.php:16 +msgid "Add new recipient group" +msgstr "Tilføj ny modtagergruppe" + +#: inc/tax_recipient.php:15 +msgid "Update group" +msgstr "Opdatér gruppe" + +#: inc/tax_recipient.php:14 +msgid "View group" +msgstr "Vis gruppe" + +#: inc/tax_recipient.php:13 +msgid "Edit group" +msgstr "Redigér gruppe" + +#: inc/tax_recipient.php:10 +msgid "Recipient group" +msgstr "Modtagergrupper" + +#: inc/shortcode.php:479 msgid "You must enter Site key and Secret key from Google reCAPTCHA on the GatewayAPI Settings-page, or disable CAPTCHA on your GatewayAPI Form shortcode." msgstr "Du skal indtaste “Site key” og “Secret key” fra Google’s reCAPTCHA på GatewayAPI Opsæt-siden, eller slå CAPTCHA fra i den bagvedliggende shortcode." -# wpml-name: a1cc4069a6207c1a3db6f920a890b063 +#: inc/shortcode.php:472 msgid "Invalid action specified for GatewayAPI shortcode. Must be one of: %actions%." msgstr "Ugyldig handling valgt for GatewayAPI Shortcode. Det skal være en af: %actions%." -# wpml-name: 6f4d507ec26c3d1785376f5ca7d983bb +#: inc/shortcode.php:452 msgid "Your SMS has been queued for delivery and should arrive shortly." msgstr "Din SMS er sat i kø til levering og bør ankomme om kort tid." -# wpml-name: 1a150c03f2ad2053f62d2abd5757663a +#: inc/shortcode.php:393 msgid "Please enter your message here." msgstr "Indtast venligst din besked her." -# wpml-name: 7796c5baeb80245dc7cc73be6f746804 +#: inc/shortcode.php:383 msgid "Sender of the SMS. Either up to 11 characters or up to 15 digits only." msgstr "Afsender af SMS. Indtast enten op til 11 tegn eller op til 15 tal." -# wpml-name: a765cf4ae6c6473beec13fbe8bbe933c +#: inc/shortcode.php:357 msgid "You have been unsubscribed." msgstr "Du er hermed afmeldt." -# wpml-name: e816c8311eaf6544a18d8c5f2999fc3d +#: inc/shortcode.php:315 msgid "Unsubscribe confirmation code: %code%" msgstr "Bekræftelseskode for afmeldelse: %code%" -# wpml-name: f4186cc8460e8c4c19c4465f22906530 +#: inc/shortcode.php:277 msgid "Your changes has been saved. Thank you for keeping your subscription up-to-date." msgstr "Dine ændringer er gemt. Tak for at du holder din tilmelding opdateret." -# wpml-name: daa6b483e9f6ca081ec7e0b4a352f9e9 +#: inc/shortcode.php:259 msgid "Save changes" msgstr "Gem ændringer" -# wpml-name: 0e47baf01d8d97f3fdc2571b3ee34b47 +#: inc/shortcode.php:236 inc/shortcode.php:344 msgid "The code you entered is incorrect. Please try again." msgstr "Koden du har indtastet er ugyldig. Prøv venligst igen." -# wpml-name: de7241bde4e4d888e078551a6de4b48c +#: inc/shortcode.php:228 msgid "Your request is missing or has invalid technical security identity information. This may happen if you have waited for more than 4 hours or has been doing other subscription related actions in other tabs/windows." msgstr "Din anmodning mangler eller har ugyldig teknisk sikkerhedsinformation. Dette kan skyldes at du har ventet i mere end 4 timer eller har lavet lignende ændringer på din tilmelding i et andet vindue/anden enhed." -# wpml-name: 463ea884a12cc2164065559e1941a634 +#: inc/shortcode.php:216 inc/shortcode.php:333 msgid "We could not find you in our database. Maybe you made a typo or maybe you are not subscribed with this number?" msgstr "Vi kunne ikke slå dig op i databasen. Måske har du lavet en slåfejl eller måske er du ikke tilmeldt med dette nummer?" -# wpml-name: a0bfb8e59e6c13fc8d990781f77694fe +#: inc/shortcode.php:214 tpl/wp-login-confirmed-phone.php:10 msgid "Continue" msgstr "Fortsæt" -# wpml-name: 612f076bf033a69efe0a1d8e933c3c28 +#: inc/shortcode.php:192 inc/shortcode.php:299 msgid "Note: A code will be sent by SMS to the mobile number specified, which is used to verify your ownership." msgstr "Bemærk: En kode vil blive afsendt pr. SMS til mobilnummeret du har indtastet. Denne benyttes til at bekræfte at du besidder telefonnummeret." -# wpml-name: bffe9a3c9a7e00ba00a11749e022d911 +#: inc/shortcode.php:191 msgid "Log in" msgstr "Log ind" -# wpml-name: 8174aae8d601638fcc4a87909de9aee4 +#: inc/shortcode.php:166 msgid "You have been succesfully subscribed. Thank you signing up." msgstr "Du har tilmeldt dig med succes. Tak for din tilmelding." -# wpml-name: eb0c9ec47f7a04a6bf49ea6a20ada6a6 +#: inc/shortcode.php:156 inc/shortcode.php:267 msgid "It seems the SMS code you are using to authorize this update, has expired. Please start over and try again." msgstr "Det ser ud til at den SMS-kode du benytter, er udløbet. Prøv venligst igen." -# wpml-name: 70d9be9b139893aa6c69b5e77e614311 +#: inc/shortcode.php:147 inc/shortcode.php:331 msgid "Confirm" msgstr "Bekræft" -# wpml-name: b530f350ded9155e6fda1bb89c409ffd +#: inc/shortcode.php:134 inc/shortcode.php:209 inc/shortcode.php:316 msgid "Sending of the verification code by SMS failed. Please try again later or contact the website owner." msgstr "Afsendelse af verifikations-SMS fejlede. Prøv venligst igen senere eller tag kontakt til websitets ejer." -# wpml-name: fc492dd2023b11bc31ac43bc788c310d +#: inc/shortcode.php:133 inc/shortcode.php:208 msgid "Your confirmation code: %code%" msgstr "Din bekræftelseskode: %code%" -# wpml-name: 56bdecf4f430f149d66ad9720fb6b1a6 +#: inc/shortcode.php:124 msgid "You are already subscribed with the phone number specified." msgstr "Du er allerede tilmeldt på det angivne telefonnummer." -# wpml-name: fa92cac6d66b88785db58f715d4a69cb +#: inc/shortcode.php:116 msgid "Note: A code will be sent by SMS to the mobile number specified, to confirm the ownership." msgstr "Bemærk: En kode afsendes pr. SMS til mobilnummeret du har indtastet, som bekræfter ejerskabet." -# wpml-name: d9776f0775997b2e698c6975420b5c5d +#: inc/shortcode.php:115 msgid "Sign up" msgstr "Tilmeld" -# wpml-name: 7f485baff94ded814bfa3394c7842996 +#: inc/shortcode.php:55 inc/shortcode.php:144 inc/shortcode.php:327 msgid "Please enter the code that you have just received by SMS." msgstr "Indtast venligst koden du netop har modtaget pr. SMS." -# wpml-name: 5750c1e05728fd532a018ac415b55f87 +#: inc/shortcode.php:53 inc/shortcode.php:142 inc/shortcode.php:325 +#: tpl/wp-login-confirm-phone.php:15 msgid "Confirmation code" msgstr "Bekræftelseskode" -# wpml-name: 73c7fbc3685eb59c3861b7d8aa6f42b8 -msgid "Select the groups with has the content that you would like to receive." -msgstr "Vælg de grupper som du ønsker at tilmelde dig." +#: inc/security_two_factor.php:614 +msgid "You have followed a link containing an expired/invalid nonce. Please go back and redirect the page - then it should work." +msgstr "Du har fulgt et link med en ugyldig/udløbet sikkerhedstoken. Gå venligst tilbage og genindlæs siden - så bør dette virke." -# wpml-name: c2fd5fb872c659303579fe50e1bb2867 -msgid "Select the groups you would like to send to. If none is selected, the SMS will be sent to everyone." -msgstr "Vælg de grupper du ønsker at sende til. Hvis ingen er valgt vil SMS’en blive sendt til samtlige modtagere." +#: inc/security_two_factor.php:601 +msgid "Change mobile number" +msgstr "Skift mobilnummer" -# wpml-name: fdab4bf5f4183ebad6348d368fd366f5 -msgid "The code is invalid. Please try again." -msgstr "Koden er ugyldig. Prøv venligst igen." +#: inc/security_two_factor.php:600 +msgid "Add mobile number" +msgstr "Tilføj mobilnummer" -# wpml-name: 4fe6893b2d72891c96cc1324cba8b34f -msgid "There is no verification going on for this phone number. Perhaps you waited too long? These codes expire after 30 minutes." -msgstr "Der er ingen aktiv verifikationsproces igang for dette telefonnummer. Måske ventede du for længe med at indtaste koden fra SMS’en vi sendte? Koden udløber efter 30 minutter." +#: inc/security_two_factor.php:599 +msgid "For security reasons, it is mandatory to associate your account with a cellphone number. This greatly enhances the integrity of your account and this site in general." +msgstr "Af sikkerhedsmæssige årsager er det obligatorisk at tilknytte et mobilnummer med din brugerprofil. Dette er for at øge din kontos samt sidens sikkerhed." -# wpml-name: 1e9305d293fd4304df5e5176a9c572e0 -msgid "Due to too many attempts at verifying SMS-codes within a short period of time, your request has been blocked. Try again later." -msgstr "Pga. for mange forsøg med verifikation af SMS-koden inden for en kort tidsramme, er din anmodning blevet blokeret. Prøv venligst igen." +#: inc/security_two_factor.php:598 +msgid "Two-factor security" +msgstr "To-faktor sikkerhed" -# wpml-name: e331dd369f049e66fe885bd6ee0d79aa -msgid "You must supply both country code and phone number." -msgstr "Du skal angive både landekode og telefonnummer." +#: inc/security_two_factor.php:514 +msgid "Two-factor security check" +msgstr "To-faktor sikkerhedstjek" -# wpml-name: 63acc3fec66ab998805fdf436039b180 -msgid "The verification code has expired. You have just 5 minutes to enter the code. Please try again." -msgstr "Verifikationskoden er udløbet. Du har kun 5 minutter til at indtaste koden. Prøv venligst igen." +#: inc/security_two_factor.php:486 +msgid "Problem in the two-factor security module" +msgstr "Problem med to-faktor sikkerhedsmodulet" -# wpml-name: 6b837ee9125dcca7256cf2f5ca3a1ec4 -msgid "The verification code that you entered, was incorrect." -msgstr "Verifikationskoden du indtastede er ikke korrekt." +#: inc/security_two_factor.php:429 inc/security_two_factor.php:551 +msgid "The code you have entered, is invalid. Please double check the SMS we sent you and try again." +msgstr "Koden du har indtastet, er ugyldig. Dobbelttjek venligst med den SMS vi sendte dig og prøv igen." -# wpml-name: 708b42451ba0d628e5fcd6d7eb5556c6 -msgid "It doesn't seem that you have verified your number by SMS, or the verification has expired. Note that you must submit the form within 30 minutes after validating." -msgstr "Det ser ikke ud til at du har bekræftet dit nummer via SMS, eller også er verifikationskoden udløbet. Bemærk at du skal indsende formularen senest 30 minutter efter verifikationen." +#: inc/security_two_factor.php:418 inc/security_two_factor.php:540 +msgid "You have tried to enter the confirmation token too many times. Please start over to try again." +msgstr "Du har prøvet at indtaste bekræftelseskoden for mange gange. Start venligst forfra for at prøve igen." -# wpml-name: d67c4c272a4d9de8e81c9b79ea06e30c -msgid "The action for the form is not consistent with the per-form configured action. This should not happen, but may occur if the editor of this site has changed the settings for this form since you opened this page." -msgstr "Formularhandlingen stemmer ikke med den forhåndsvalgte i formularen opsat af webmasteren. Dette bør aldrig ske, men kan ske grundet ændringer af sitets webmaster imens du har set på denne side." +#: inc/security_two_factor.php:387 inc/security_two_factor.php:496 +msgid "The SMS could not be sent due to a technical error/misconfiguration of the GatewayAPI-plugin.

You could try again, but probably this can only be resolved by your administrator." +msgstr "SMS'en kunne ikke sendes pga. tekniske problemer/fejlopsætning af GatewayAPI-pluginnet.

Du kan prøve igen, men sandsynligvis kan dette kun løses af din administrator." -# wpml-name: 481b24883f60af6069cdc6c22b895501 -msgid "The phone country code selected, is not within the list of valid country codes." -msgstr "Landekoden du valgte er ikke iblandt de gyldige landekoder." +#: inc/security_two_factor.php:385 inc/security_two_factor.php:494 +msgid "The SMS could not be sent, due to the SMS-service rejecting to send the message.

Technical reason:
- :reason" +msgstr "SMS'en kunne ikke afsendes, pga. afvisning fra SMS-tjenesten som skal levere beskeden.

Teknisk årsag:
- :reason" -# wpml-name: 97f46cc8ee405788002bec8e53b890a2 -msgid "You are not subscribed with this phone number." -msgstr "Du er ikke tilmeldt på det valgte mobilnummer." +#: inc/security_two_factor.php:373 inc/security_two_factor.php:479 +msgid "" +"Verification code: :code\n" +"Kind regards, :sender\n" +":home_url" +msgstr "" +"Bekræftelseskode: :code\n" +"Venlig hilsen :sender\n" +":home_url" -# wpml-name: b3ee3577cb5ad332890f5c46cfeeee43 -msgid "You are already subscribed with this phone number." -msgstr "Du er allerede tilmeldt med det pågældende mobilnummer." +#: inc/security_two_factor.php:309 +msgid "Issues related to two-factor, should be temporarily resolved if you log in now." +msgstr "Problemer relateret til to-faktor burde være løst midlertidigt, hvis du forsøger at logge ind nu." -# wpml-name: 6d80c194535e8460f618e395c2058f37 -msgid "The phone number must consist of digits only." -msgstr "Telefonnummeret må kun indeholde tal." +#: inc/security_two_factor.php:308 +msgid "Two-factor bypass mode active" +msgstr "To-faktor bypass-tilstand aktiveret" -# wpml-name: 6d02c086b54e48165af96be7d55d8376 -msgid "One of the selected groups is invalid/should not be selectable. This should not happen, but may occur if the editor of this site has changed the settings for this form since you opened this page." -msgstr "En af de valgte grupper er ugyldig. Dette bør ikke kunne ske, men kan f.eks. ske hvis webmasteren netop har opdateret denne formular imens du har besøgt siden. Start venligst forfra og prøv igen." +#: inc/security_two_factor.php:295 +msgid "Your two-factor bypass code in the URL, is invalid. Two-factor security is still enabled." +msgstr "Din to-faktor bypass-kode i URL'en, er ugyldig. To-faktor sikkerhed er derfor stadig aktiveret." -# wpml-name: d1f3289b883c29d630cd9efbd8e99299 -msgid "You have tried verifying this phone number very recently, but did not complete the required steps. To prevent abuse, please wait 5 minutes before trying again." -msgstr "Du har forsøgt at verificere dette nummer for nyligt, men gennemførte ikke de påkrævede trin. For at modvirke potentielt misbrug skal du vente 5 minutter før du kan prøve igen." +#: inc/security_two_factor.php:295 +msgid "Bypass code is invalid!" +msgstr "Bypass-kode er ugyldig!" -# wpml-name: 575c55650879ce05943124c8812e05e6 -msgid "We have just sent an SMS to your mobile. Please enter the code here in order to verify the phone number." -msgstr "Vi har netop afsendt en SMS til nummeret. Indtast venligst koden hér for at bekræfte at det er dit telefonnummer." +#: inc/security_two_factor.php:278 +msgid "An unknown technical error occured while processing the request. Please try again or contact your administrator." +msgstr "En ukendt teknisk fejl opståd imens anmodningen blev bearbejdet. Forsøg venligst igen eller kontakt din administrator." -# wpml-name: f6fc58b19f5786b0ac685a45adf4bd09 -msgid "action*" -msgstr "handling*" +#: inc/security_two_factor.php:233 +msgid "Your account is temporarily locked, due to too many verification attempts in a short time span.

Please wait at least :time_left before trying again." +msgstr "Din konto er midlertidigt låst pga. for mange fejlede verifikationsforsøg over en kort tidsperiode.

Vent venligst mindst :time_left før du forsøger igen." -# wpml-name: 1471e4e05a4db95d353cc867fe317314 -msgid "groups" -msgstr "grupper" +#: inc/security_two_factor.php:182 +msgid "Error: Your token seems to have expired. Please start over." +msgstr "Fejl: Din nøgle ser ud til at være udløbet. Start venligst forfra." -# wpml-name: ea549dee5d7749e80313058a5ea3ff96 -msgid "countrycode" -msgstr "landekode" +#: inc/security_two_factor.php:179 +msgid "Error: The format of the temporary token is invalid." +msgstr "Fejl: Formatet for den midlertidige er ugyldig." -# wpml-name: f7a42fe7211f98ac7a60a285ac3a9e87 -msgid "phone" -msgstr "telefon" +#: inc/recipient_import.php:5 tpl/import.php:5 +msgid "Import recipients" +msgstr "Importér modtagere" -# wpml-name: 58e74304ed3cadc52a8cb6e28a2e263b -msgid "Not found in database." -msgstr "Ikke fundet i databasen." +#: inc/recipient_import.php:5 +msgid "Import recipients from spreadsheet" +msgstr "Importér modtagere fra regneark" -# wpml-name: 6bd434f93132548bb06d7846a6208f00 -msgid "Missing/invalid country code or number." -msgstr "Manglende/ugyldig landekode eller nummer." +#: inc/recipient_forms.php:387 +msgid "Select the groups with has the content that you would like to receive." +msgstr "Vælg de grupper som du ønsker at tilmelde dig." -# wpml-name: 6bef2fca3530efc358dae7d4f80af0a1 -msgid "Calculated at send" -msgstr "Udregnes ved afsendelse" +#: inc/recipient_forms.php:387 +msgid "Select the groups you would like to send to. If none is selected, the SMS will be sent to everyone." +msgstr "Vælg de grupper du ønsker at sende til. Hvis ingen er valgt vil SMS’en blive sendt til samtlige modtagere." -# wpml-name: ef28ba1810594c8fa3e6dc843cf48268 -msgid "Message is displayed immediately and usually not saved in the normal message inbox. Also knows as a Flash SMS." -msgstr "Beskeden vises med det samme og gemmes typisk ikke i indbakken. Kendes også som en “Flash SMS”." +#: inc/recipient_forms.php:68 +msgid "Hidden (only visible in backend)" +msgstr "Skjult (kun synlig i backend)" -# wpml-name: 29f2857e2d7adb44bf686b55f8803749 -msgid "Recipients in group" -msgstr "Modtagere i gruppe" +#: inc/recipient_forms.php:66 +msgid "Special" +msgstr "Specielt" -# wpml-name: 39ecb85823d9a6d4b93444ec70ae9eb7 -msgid "Not sent yet" -msgstr "Ikke afsendt endnu" +#: inc/recipient_forms.php:64 +msgid "Checkbox (multiple)" +msgstr "Checkboks (flere valg)" -# wpml-name: 500112a7d5b190bfd8eb0061453c276c -msgid "The current status of the SMS is:" -msgstr "Aktuel status for SMS'en er:" +#: inc/recipient_forms.php:63 +msgid "Radio (single)" +msgstr "Radio (enkeltvalg)" -# wpml-name: ce968556aeee7f5b870e095ba313af02 -msgid "Writing one of the following tags (including both %-signs) will result in each recipient receiving a personalized text:" -msgstr "Hvis du skriver en af de følgende tags (inkludér begge %-tegn) vil hver modtager få en personlig tekst:" +#: inc/recipient_forms.php:62 +msgid "Select (single)" +msgstr "Dropdown (enkeltvalg)" -# wpml-name: 58a72f178fb0e2badf9604233310a481 -msgid "Display SMS" -msgstr "Display SMS" +#: inc/recipient_forms.php:61 +msgid "Multiple choices" +msgstr "Flere muligheder" -# wpml-name: 7c7f15f5621541be943204556d159a6f -msgid "Regular SMS" -msgstr "Alm. SMS" +#: inc/recipient_forms.php:59 +msgid "Insecure (visible in backend and SMS'es)" +msgstr "Usikker (synlig i backend og i SMS’er)" -# wpml-name: 8882bcaa03f0e260b34d3ad7ddf51d62 -msgid "Type of SMS" -msgstr "Type af SMS" +#: inc/recipient_forms.php:58 +msgid "Textarea" +msgstr "Tekstområde" -# wpml-name: c8562b7fe8e275fb11f637fdc111b72e -msgid "The sender can be either 11 characters or 15 digits in total." -msgstr "Afsender må være enten 11 tegn eller 15 tal i alt." +#: inc/recipient_forms.php:57 +msgid "Digits only" +msgstr "Kun tal" -# wpml-name: 8aace3ec18d83874d22850b7eee93c7d -msgid "Sender" -msgstr "Afsender" +#: inc/recipient_forms.php:56 +msgid "URL" +msgstr "URL" -# wpml-name: 605d901cab80d7df848df73b7df3bd78 -msgid "No recipients manually added" -msgstr "Ingen modtagere tilføjet manuelt" +#: inc/recipient_forms.php:55 +msgid "E-mail" +msgstr "E-mail" -# wpml-name: 19d5ea03bbc02a1890d182ad772d7372 -msgid "Manually added recipients" -msgstr "Tilføj modtager manuelt" +#: inc/recipient_forms.php:54 +msgid "Plain text" +msgstr "Simpelt tekstfelt" -# wpml-name: c459712e331804deceb572918d4670f0 -msgid "Name (optional)" -msgstr "Navn (valgfrit)" +#: inc/recipient_forms.php:53 +msgid "Text" +msgstr "Tekst" -# wpml-name: 612ae7bff8c65e8ad3144f246af88e1b -msgid "Add recipient" -msgstr "Tilføj modtager" +#: inc/recipient_forms.php:24 +msgid "Mobile number of recipient" +msgstr "Mobilnummer på modtager" -# wpml-name: 8fd86fa0a1fc04c34d50b7244ae74e39 -msgid "Only groups with at least one recipient are listed." -msgstr "Kun grupper med minimum én modtger i vises i listen." +#: inc/recipient_forms.php:17 +msgid "Mobile country code of recipient" +msgstr "Mobil landekode på modtager" -# wpml-name: 868e0cdafdb10f9d7662b2bd36876851 -msgid "You will be sending to all recipients who are in any of the selected groups." -msgstr "Du vil sende til alle modtagere som er i mindst én af de valgte grupper." +#: inc/recipient_forms.php:15 inc/recipient_forms.php:67 +#: tpl/settings_page.php:386 tpl/wp-login-add-phone.php:16 +msgid "Mobile country code" +msgstr "Mobil landekode" -# wpml-name: b7525b43109e0023e2ecbfd8ef7b3392 -msgid "Selected recipient groups" -msgstr "Vælg modtagergrupper" +#: inc/recipient_forms.php:10 +msgid "Full name of recipient" +msgstr "Fuldt navn på modtager" -# wpml-name: c0ef230d2ee22f516c00b67e1a015d37 -msgid "Only one message will be sent per mobile number per SMS. So don't be afraid to mix and match the above." -msgstr "Kun én besked vil blive afsendt pr. mobilnummer pr. SMS. Så vær ikke bange for at benytte flere muligheder ovenfor." +#: inc/integration_contact_form_7.php:1376 +msgid "Not entering the code will cancel the signup. Clicking OK will allow you to try and enter the code again." +msgstr "Hvis du ikke indtaster en kode, vil tilmelding blive annulleret. Trykker du OK får du mulighed for at prøve igen." -# wpml-name: a4774ccf7d355e9579f74be3eb17d26d -msgid "Enter mobile numbers manually" -msgstr "Indtast mobilnumre manuelt" +#: inc/integration_contact_form_7.php:1375 +msgid "You did not enter the code correctly. Please try again." +msgstr "Du har lavet fejl i indtastningen. Prøv venligst igen." -# wpml-name: 3d3a9fc11c7ae6fd8c4a8612bff12768 -msgid "Use recipient groups" -msgstr "Vælg modtagergrupper" +#: inc/integration_contact_form_7.php:1374 +msgid "You did not enter a code. It is not possible for you to continue." +msgstr "Du indtastede ikke en kode. Det er ikke muligt for dig at fortsætte." -# wpml-name: b02831eb50fc1830a507bf2fe445c279 -msgid "How would you like to select recipients for this SMS?" -msgstr "Hvordan ønsker du at udvælge modtagere til denne SMS?" +#: inc/integration_contact_form_7.php:1373 +msgid "We have just sent you an SMS with a verification code. Please enter it below:" +msgstr "Vi har netop afsendt en SMS med en bekræftelseskode. Indtast den venligst nedenfor:" -# wpml-name: aaaa480608820d74f484bb2e8653926d -msgid "Send on%1$s" -msgstr "Send d. %1$s" +#: inc/integration_contact_form_7.php:1372 +msgid "You must supply both country code and phone number in order to continue." +msgstr "Du skal indtaste både landekode og telefonnummer for at kunne fortsætte." -# wpml-name: 416a9e6235810473aa8a2383cda242f0 -msgid "Send immediately" -msgstr "Send nu" +#: inc/integration_contact_form_7.php:1341 +msgid "The code is invalid. Please try again." +msgstr "Koden er ugyldig. Prøv venligst igen." -# wpml-name: b98602eaf43da3a553529bbb9e7139b2 -msgid "Sent on: %1$s" -msgstr "Sendt: %1$s" +#: inc/integration_contact_form_7.php:1340 +msgid "There is no verification going on for this phone number. Perhaps you waited too long? These codes expire after 30 minutes." +msgstr "Der er ingen aktiv verifikationsproces igang for dette telefonnummer. Måske ventede du for længe med at indtaste koden fra SMS’en vi sendte? Koden udløber efter 30 minutter." -# wpml-name: 94966d90747b97d1f0f206c98a8b1ac3 -msgid "Send" -msgstr "Send" +#: inc/integration_contact_form_7.php:1335 +msgid "Due to too many attempts at verifying SMS-codes within a short period of time, your request has been blocked. Try again later." +msgstr "Pga. for mange forsøg med verifikation af SMS-koden inden for en kort tidsramme, er din anmodning blevet blokeret. Prøv venligst igen." -# wpml-name: 4cb488c767672c127db44296a4c6d4d1 -msgid "SMS was successfully sent" -msgstr "SMS blev sent uden problemer" +#: inc/integration_contact_form_7.php:1299 +#: inc/integration_contact_form_7.php:1330 +msgid "You must supply both country code and phone number." +msgstr "Du skal angive både landekode og telefonnummer." -# wpml-name: fca14df82282834e492edb00b3cd48c7 -msgid "Technical error:" -msgstr "Teknisk fejl:" +#: inc/integration_contact_form_7.php:1251 +msgid "There are no recipients in the groups you have selected. The SMS cannot be sent to 0 recipients." +msgstr "Der er ingen modtagere i de grupper du har valgt. SMS'en kan ikke sendes til 0 modtagere." -# wpml-name: 1e23dc6c427af7758d6b1cbf851dca46 -msgid "Failed before sending:" -msgstr "Fejlede før afsendelse:" +#: inc/integration_contact_form_7.php:1231 +msgid "At least one group must be selected in order to send an SMS." +msgstr "Der skal vælges minimum én gruppe for at kunne sende en SMS." -# wpml-name: 7b0fee4d957f4ffc0ed5abdd184062b7 -msgid "Sending..." -msgstr "Sender..." +#: inc/integration_contact_form_7.php:1223 +msgid "You must have a groups field in this form (it may be hidden) in order to select recipients." +msgstr "Du skal have oprettet et modtagergruppe-felt (det kan være skjult) for at der kan leveres til modtagere." -# wpml-name: 58ae0a84b1e59a8cff202c846d2a32cf -msgid "About to send" -msgstr "Skal til at sende" +#: inc/integration_contact_form_7.php:1217 +msgid "The SMS text may not be empty." +msgstr "SMS-teksten må ikke være tom." -# wpml-name: d748abca33ce4dcbd418c0997faf11ca -msgid "Enter your SMS message here." -msgstr "Indtast din SMS-besked her." +#: inc/integration_contact_form_7.php:1189 +msgid "The verification code has expired. You have just 5 minutes to enter the code. Please try again." +msgstr "Verifikationskoden er udløbet. Du har kun 5 minutter til at indtaste koden. Prøv venligst igen." -# wpml-name: 2593c7ce3ff937293feb1e61c152e551 -msgid "characters" -msgstr "tegn" +#: inc/integration_contact_form_7.php:1187 +msgid "The verification code that you entered, was incorrect." +msgstr "Verifikationskoden du indtastede er ikke korrekt." -# wpml-name: a956161a69928cd130a889b88082fb6e -msgid "character" -msgstr "tegn" +#: inc/integration_contact_form_7.php:1177 +msgid "It doesn't seem that you have verified your number by SMS, or the verification has expired. Note that you must submit the form within 30 minutes after validating." +msgstr "Det ser ikke ud til at du har bekræftet dit nummer via SMS, eller også er verifikationskoden udløbet. Bemærk at du skal indsende formularen senest 30 minutter efter verifikationen." -# wpml-name: 6adf97f83acf6453d4a6a4b1070f3754 -msgid "None" -msgstr "Ingen" +#: inc/integration_contact_form_7.php:1143 +msgid "The phone country code selected, is not within the list of valid country codes." +msgstr "Landekoden du valgte er ikke iblandt de gyldige landekoder." -# wpml-name: 665ce2ce2901266bb38a39b8845d647c -msgid "You have not entered your OAuth key and secret yet. Go to :link to complete the setup." -msgstr "Du har ikke indtastet din OAuth-nøgle og hemmelighed endnu. Gå til :link for at afslutte opsættet." +#: inc/integration_contact_form_7.php:1105 +msgid "You are not subscribed with this phone number." +msgstr "Du er ikke tilmeldt på det valgte mobilnummer." -# wpml-name: 4aedd792d2f2f33a8ca602aaac1bad25 -msgid "Validation of the SMS failed prior to sending with the following errors:" -msgstr "Kontroltjek af SMS’en fejlede før afsendelse pga. følgende fejl:" +#: inc/integration_contact_form_7.php:1100 +msgid "You are already subscribed with this phone number." +msgstr "Du er allerede tilmeldt med det pågældende mobilnummer." -# wpml-name: 1f8261d17452a959e013666c5df45e07 -msgid "Phone number" -msgstr "Telefonnummer" +#: inc/integration_contact_form_7.php:1084 +msgid "The phone number must consist of digits only." +msgstr "Telefonnummeret må kun indeholde tal." -# wpml-name: bdb434b7213f1169e4ab2adfd2ade0b2 -msgid "Phone number - digits only" -msgstr "Telefonnummer - kun tal" +#: inc/integration_contact_form_7.php:1052 +#: inc/integration_contact_form_7.php:1057 +msgid "One of the selected groups is invalid/should not be selectable. This should not happen, but may occur if the editor of this site has changed the settings for this form since you opened this page." +msgstr "En af de valgte grupper er ugyldig. Dette bør ikke kunne ske, men kan f.eks. ske hvis webmasteren netop har opdateret denne formular imens du har besøgt siden. Start venligst forfra og prøv igen." -# wpml-name: d5aea6257900e0b66f0d407fbbe271aa -msgid "Country code" -msgstr "Landekode" +#: inc/integration_contact_form_7.php:1011 +msgid "Show tags" +msgstr "Vis tags" -# wpml-name: cd25539c84a3a06b008165ef5831ce10 -msgid "Name of recipient" -msgstr "Navn på modtager" +#: inc/integration_contact_form_7.php:810 +msgid "To use the value input through this field in a mail field, you need to insert the corresponding mail-tag (%s) into the field on the Mail tab." +msgstr "For at bruge værdien indtastet i dette felt i et email-felt, så skal du indsætte det tilhørende mail-tag (%s) i feltet under E-mail-tab'en." -# wpml-name: 62abc69fd3fad42d4dadca97c5d57105 -msgid "1.2.0" -msgstr "1.2.0" +#: inc/integration_contact_form_7.php:788 +msgid "Links to a table of possible SMS-tags (opens in popup)." +msgstr "Linker til en tabel over tilgængelige SMS-tags (åbner i en popup)." -# wpml-name: 16dbf48978b09db6a481c3225c3d41ce -msgid "http://onlinecity.dk" -msgstr "http://onlinecity.dk" +#: inc/integration_contact_form_7.php:784 +msgid "Link to tags" +msgstr "Link til tags" -# wpml-name: 150d2a6131ee2ce3be0071ff8f0c69c4 -msgid "OnlineCity ApS" -msgstr "OnlineCity ApS" +#: inc/integration_contact_form_7.php:777 +msgid "Displays how many SMS'es this message spans as you type it." +msgstr "Viser hvor mange SMS'er denne besked fylder imens du indtaster beskeden." -# wpml-name: 078ef188fa8f2513b632aac51f861c95 -msgid "Send SMS'es through WordPress." -msgstr "Send SMS'er igennem WordPress." +#: inc/integration_contact_form_7.php:773 +msgid "Enable counter" +msgstr "Aktivér tæller" -# wpml-name: 2491e902b82c058e1637c958618de999 -msgid "https://wordpress.org/plugins/gatewayapi/" -msgstr "https://wordpress.org/plugins/gatewayapi/" +#: inc/integration_contact_form_7.php:749 +msgid "Placeholder" +msgstr "Pladsholder" -# wpml-name: 11ed3cf5986ad45dd1f601430dce86df -msgid "GatewayAPI" -msgstr "GatewayAPI" +#: inc/integration_contact_form_7.php:734 +msgid "SMS text field. This makes it possible to write an SMS message intended for sending." +msgstr "SMS-tekstfelt. Dette gør det muligt at skrive en SMS-besked målrettet afsendelse." -# wpml-name: c2f681e31108712d3547c0007323cfde +#: inc/integration_contact_form_7.php:703 msgid "When updating, this triggers another flow: The user will have to enter mobile and country code, verify the number and only then will the rest of the form be presented." msgstr "Under opdatering udløser dette et andet flow: Brugeren skal verificere sit mobilnummer og først derefter bliver resten af formularen vist." -# wpml-name: b9490ead2db65213e016c34fefd5d440 +#: inc/integration_contact_form_7.php:701 msgid "An SMS will be sent to confirm the ownership of the number with a one-time verification code." msgstr "En SMS med en engangskode vil blive afsendt, for at bekræfte ejerskab over nummeret." -# wpml-name: bafd7322c6e97d25b6299b5d6fe8920b +#: inc/integration_contact_form_7.php:698 msgid "No" msgstr "Nej" -# wpml-name: b155b6b4f561bbefa57bcbe381aa7293 +#: inc/integration_contact_form_7.php:693 msgid "Yes (recommended)" msgstr "Ja (anbefalet)" -# wpml-name: b21693f25edc411faff2b8af2037aded +#: inc/integration_contact_form_7.php:687 msgid "Require verification" msgstr "Kræver bekræftelse" -# wpml-name: ad2994fba1726cd7d0e8c6099f6c7c53 +#: inc/integration_contact_form_7.php:682 +msgid "Send SMS from the frontend. Warning: anyone with access to a page with this on, can send SMS'es on your behalf!" +msgstr "Send SMS fra hjemmesiden. Advarsel: alle som besøger siden med formularen på, kan sende SMS'er på vegne af dit site!" + +#: inc/integration_contact_form_7.php:680 inc/shortcode.php:395 +#: tpl/settings_page.php:552 +msgid "Send SMS" +msgstr "Send SMS" + +#: inc/integration_contact_form_7.php:677 msgid "Update an existing subscriber, ie. a recipient with the given phone number must already exist." msgstr "Opdatér en eksisterende modtager, dvs. en modtager som har samme telefonnummer skal allerede eksistere." -# wpml-name: 06933067aafd48425d67bcb01bba5cb6 +#: inc/integration_contact_form_7.php:675 msgid "Update" msgstr "Opdatér" -# wpml-name: ea816b18b7c80b877e83b274c46e2ab1 +#: inc/integration_contact_form_7.php:672 msgid "Unsubscribe a subscriber, ie. move the recipient to the trash." msgstr "Afmeld en modtager, dvs. modtager flyttes til papirkurven." -# wpml-name: 4182c8f19d40c7ca236a5f4f83faeb6b +#: inc/integration_contact_form_7.php:670 inc/shortcode.php:298 msgid "Unsubscribe" msgstr "Afmeld" -# wpml-name: 2eaa836e6fbb564a4aa191613a93d4db +#: inc/integration_contact_form_7.php:667 msgid "Sign up a new subscriber. If a recipient with same phone number exists, the signup will fail." msgstr "Tilmeld en ny modtager. Hvis en modtager med samme nummer allerede eksisterer, fejler tilmeldingen." -# wpml-name: 80919be0413cba91ea1c240ca12ee13a +#: inc/integration_contact_form_7.php:664 msgid "Signup" msgstr "Tilmeld" -# wpml-name: c320c6d242510ff7d32397445890cf2c +#: inc/integration_contact_form_7.php:660 msgid "Triggered action" msgstr "Udløst handling" -# wpml-name: 203e501a6b8654d2259e5184c6a8f178 -msgid "Generate the GatewayAPI Action field. This field instructs GatewayAPI on what to do with the submission." -msgstr "Generér GatewayAPI handlingsfeltet. Dette felt instruerer GatewayAPI-pluginnet i hvad der skal ske med det indsendte data." - -# wpml-name: fa8534d158b86e25db3457d80190f6ca +#: inc/integration_contact_form_7.php:597 msgid "Hide this field. Recipients will be subscribed to all of the selected groups." msgstr "Skjul dette felt. Modtagerne vil blive tilmeldt til alle hér valgte grupper." -# wpml-name: 019003e2afb60a46b69c201255d12e6b +#: inc/integration_contact_form_7.php:591 msgid "Hidden field" msgstr "Skjult felt" -# wpml-name: 21fbb1c5b22d04f8567f7fbf24ec43e6 +#: inc/integration_contact_form_7.php:574 msgid "Pick groups" msgstr "Vælg grupper" -# wpml-name: c9e4114476147afae53762796421518a -msgid "Generate the GatewayAPI Groups selection. Select which groups to sign the recipient up to or make it possible for the recipients to select themselves." -msgstr "Generér GatewayAPI Gruppevalgtsfeltet. Vælg hvilke grupper som modtageren skal tilmeldes eller skal kunne vælge iblandt." +#: inc/integration_contact_form_7.php:509 tpl/settings_page.php:398 +msgid "Default country code" +msgstr "Standard landekode" -# wpml-name: f0aa396229e40af011ee17b800bb1d16 -msgid "Enter all calling codes allowed, separated by comma. Leave empty to allow all. See the list of calling codes." -msgstr "Indtast alle landekoder som er tilladt, adskildt med komma. Lad feltet være tomt for at tillade alle landekoder. Se komplet liste over landekoder." +#: inc/integration_contact_form_7.php:490 +msgid "Enter all calling codes allowed, separated by space. Leave empty to allow all. See the list of calling codes." +msgstr "Indtast alle landekoder som er tillad, adskildt af mellemrum. Lad feltet være tomt for at tillade alle lande. Se liste over landekoder hér." -# wpml-name: 52797b3ed632a8be77edbd6f9c08982e +#: inc/integration_contact_form_7.php:485 msgid "Limit countries" msgstr "Begræns lande" -# wpml-name: 4fe1cb5063fe2854bb2fe4febb6a975b -msgid "Generate the GatewayAPI country code selector." -msgstr "Generér GatewayAPI landevælgeren." +#: inc/integration_contact_form_7.php:456 +#: inc/integration_contact_form_7.php:525 +#: inc/integration_contact_form_7.php:626 +#: inc/integration_contact_form_7.php:718 +#: inc/integration_contact_form_7.php:804 +msgid "Insert Tag" +msgstr "Indsæt Tag" -# wpml-name: 31ce3cdcd67850870b616f75b555bbc5 +#: inc/integration_contact_form_7.php:440 msgid "Default value" msgstr "Standardværdi" -# wpml-name: 0ae4d650bbbdc34898b54cb59e8dbb62 +#: inc/integration_contact_form_7.php:433 +#: inc/integration_contact_form_7.php:502 +#: inc/integration_contact_form_7.php:610 +#: inc/integration_contact_form_7.php:765 msgid "Class attribute" msgstr "Klasse (CSS)" -# wpml-name: 90a4abd4954a264db02cbcd286f587e4 +#: inc/integration_contact_form_7.php:426 +#: inc/integration_contact_form_7.php:495 +#: inc/integration_contact_form_7.php:603 +#: inc/integration_contact_form_7.php:757 msgid "Id attribute" msgstr "Id (CSS)" -# wpml-name: 25b682182a0c11aa8fed2e8f4b704ddf +#: inc/integration_contact_form_7.php:419 +#: inc/integration_contact_form_7.php:478 +#: inc/integration_contact_form_7.php:567 +#: inc/integration_contact_form_7.php:653 +msgid "Name attribute" +msgstr "Navn-attribut" + +#: inc/integration_contact_form_7.php:227 +msgid "You have tried verifying this phone number very recently, but did not complete the required steps. To prevent abuse, please wait 5 minutes before trying again." +msgstr "Du har forsøgt at verificere dette nummer for nyligt, men gennemførte ikke de påkrævede trin. For at modvirke potentielt misbrug skal du vente 5 minutter før du kan prøve igen." + +#: inc/integration_contact_form_7.php:225 +msgid "We have just sent an SMS to your mobile. Please enter the code here in order to verify the phone number." +msgstr "Vi har netop afsendt en SMS til nummeret. Indtast venligst koden hér for at bekræfte at det er dit telefonnummer." + +#: inc/integration_contact_form_7.php:224 +#: inc/integration_contact_form_7.php:1316 +msgid "Your verification code:" +msgstr "Din verifikationskode:" + +#: inc/integration_contact_form_7.php:164 msgid "Up to 11 character or 15 digits." msgstr "Op til 11 tegn eller 15 tal." -# wpml-name: 5864eb8ef6d06d91c5e4f11d5b1dd99e +#: inc/integration_contact_form_7.php:157 +msgid "From" +msgstr "Fra" + +#: inc/integration_contact_form_7.php:151 msgid "Yes, send an auto-reply to the recipients phone number, when the form has been succesfully submitted." msgstr "Ja, send et auto-svar til modtagerens telefonnummer, når denne formular er blevet gennemført." -# wpml-name: 9bb41d14c4822e30bd9f322b9ff707f5 +#: inc/integration_contact_form_7.php:147 msgid "Enable?" msgstr "Aktivér?" -# wpml-name: 4f3fb0ba88bb3385342d548a7707166b +#: inc/integration_contact_form_7.php:140 msgid "In the following fields, these tags are available:" msgstr "I de følgende felter er disse tags mulige:" -# wpml-name: 9060f98eaad60a1da9c54b34cd106dd0 +#: inc/integration_contact_form_7.php:136 msgid "Please note that replying via SMS requires that the GatewayAPI phone number and country code fields has been added to the form." msgstr "Bemærk venligst, at SMS besvarelse kræver at GatewayAPI telefonnummer og landekodefelterne er tilføjet til formularen." -# wpml-name: 476a44bbda133471fee1796d8b7e7358 +#: inc/integration_contact_form_7.php:91 inc/integration_contact_form_7.php:133 msgid "SMS reply" msgstr "SMS svar" -# wpml-name: 2bc0d786612ea8a0e59a74c4443d4c63 -msgid "Your shortcode" -msgstr "Din shortcode" - -# wpml-name: 412b635037952ff964176c0146d880ba -msgid "Allow the sender name to be changed." -msgstr "Tilad at afsendernavn ændres." - -# wpml-name: 415b4e54dc301267522e9b19752449ca -msgid "Please consider that embedding this into a public part of your website enables any visitor to send SMS'es to the selected groups. This is rarely a good idea. Pages utilizing this shortcode should at least be password protected or be limited to specific user roles." -msgstr "Overvej venligst at det at benytte denne formular på en reelt offentligt tilgængelig side åbner op for, at enhver besøgende kan sende SMS’er til de valgte grupper. Dette er meget sjældent en god idé. Sider som benytter denne shortcode bør som minimum kodeordsbeskytte eller sikre på andre måder." - -# wpml-name: 3f3e336e2f1fa10375efd923fca18b55 -msgid "Warning:" -msgstr "Advarsel:" - -# wpml-name: a76483d7286ffbd53a010f1904231f80 -msgid "Send SMS" -msgstr "Send SMS" - -# wpml-name: ff739a388830f9608d8c8002b6bb31c2 -msgid "Yes, show the list of selected groups and allow user to edit." -msgstr "Ja, vis listen med de udvalgte grupper og tillad at vælge til og fra." - -# wpml-name: 92b6936f2c23040408902cd2e385145c -msgid "Would you also like to show the list of groups (containing only the above selected gorups) and allow the user to pick amongst these groups? All will be selected per default." -msgstr "Ønsker du også at vise listen af grupper (som kun indeholder de ovenfor valgte grupper) samt tillade at brugeren vælger iblandt disse grupper? Alle vil være valgt som standard." - -# wpml-name: 6a42ccdd27a07a5660f004946dd46803 -msgid "Select multiple groups by holding down CTRL (Windows) / CMD (Mac) while clicking." -msgstr "Vælg flere grupper ved at holde CTRL nede (Windows) / CMD (Mac) imens du klikker til og fra." - -# wpml-name: ac70e4de74b0443332a173803a444b24 -msgid "Which group(s) should be affected? If action is signup or update, the user will be added to the selected groups. With action \"Send SMS\", this is the groups who will receive the SMS." -msgstr "Hvilke(n) gruppe(r) skal påvirkes? Hvis handlingen er tilmeld eller opdatér, vil brugeren blive tilmeldt til de valgte grupper. Er handlingen “Send SMS” så vil dette være grupperne som modtager SMS’en." - -# wpml-name: 30ab2fa5de3f02c55a47e544cdbcfc78 -msgid "Yes, I would like to enable reCAPTCHA on this form." -msgstr "Ja, jeg ønsker at aktivere reCAPTCHA på denne formular." - -# wpml-name: da9f3919b07d18a1d1080ec6864bac61 -msgid "Would you like to use Google's free reCAPTCHA-service to protect the form against spam bots and abuse?" -msgstr "Ønsker du har benytte Google’s gratis reCAPTCHA-service til at beskytte formularen imod spam-bots og andet misbrug?" - -# wpml-name: d7472a1eeaca42b561f43047ce9bd080 -msgid "Require CAPTCHA" -msgstr "Kræv CAPTCHA" - -# wpml-name: 2a08fcfa2fe5add84ab008224c2bccb9 -msgid "Send an SMS" -msgstr "Send en SMS" - -# wpml-name: 5b264cf3285fb91d159b16044c57c47e -msgid "User is unsubscribed (existing recipient is deleted)" -msgstr "Bruger er afmeldt (eksisterende modtager er slettet)" - -# wpml-name: 6a698edd63c590011745729f61ff9806 -msgid "User is updated (existing recipient is updated)" -msgstr "Bruger er opdateret (eksisterende modtager er opdateret)" - -# wpml-name: be5d6118d9ce05c9c31286665cdc35ae -msgid "User is signed up (recipient is created)" -msgstr "Bruger er tilmeldt (modtager er oprettet)" - -# wpml-name: 7c70d33bbf76d42a42bb273e16b5ede9 -msgid "What should happen when the form is successfully submitted?" -msgstr "Hvad skal der ske når formularen er fuldt og gyldigt udfyldt?" - -# wpml-name: 8724f64609f0e92537db4136002ea696 -msgid "Action of form" -msgstr "Handling i formular" - -# wpml-name: 5cb543d0f3972752440f182a71d6d5f6 -msgid "Note: If any fields below are missing or out-of-date, then please click \"Save changes\", as this is based on the last saved version." -msgstr "Bemærk: Hvis nogen af felterne mangler eller er forældede, så tryk venligst på “Gem ændringer”, da denne brugerflade baserer sig på senest gemte version." - -# wpml-name: a59ae993f67c612de93bafa264f252ef -msgid "Use the options below to build a shortcode ready for use anywhere you would like." -msgstr "Brug mulighederne nedenfor for at bygge en shortcode som kan benyttes i alle indholdsfelter." - -# wpml-name: 8bb308bedc7c098e5cb98e7614ccf3db -msgid "User meta field" -msgstr "Bruger metafelt" - -# wpml-name: c6155aaecccf794cd2a00fcc35898022 -msgid "Group name" -msgstr "Gruppenavn" - -# wpml-name: b154f8593601e2007fa7f8bf52c1b040 -msgid "If you wish to automatically subscribe recipients to specific groups, then please tell which groups a user should be assigned to, when a specific user meta key is present. This user meta key just needs to be present and hold any value except \"0\", \"false\" or be empty." -msgstr "Hvis du ønsker automatisk at tilmelde modtagere til bestemte grupper, så fortæl venligst hvilke grupper en bruger skal tilmeldes, når en bestemt metaværdi er til stede på brugeren. Denne metaværdi skal blot eksistere og indeholde en værdi som ikke er “0”, “false” samt må ikke være tom." - -# wpml-name: f2b2e36f85a91cc3ec4f137b5f05b03c -msgid "If you want to map other fields from the user and to the meta fields on the recipient, then please list them below. Enter a user meta key, add a colon and then enter the corresponding recipient meta field. To add more fields, separate with newline." -msgstr "Hvis du ønsker at tilknytte andre metafelter fra brugeren og over på modtageren, så indtast dem venligst nedenfor. Skriv en brugers metafelt, skriv et kolon (:) samt skriv nøglen for modtageren. For at tilføje flere felter, opdel med linjeskift." - -# wpml-name: 1630b5995d7f65d71695a55568fcc8d8 -msgid "Meta Key : Recipient Field Key" -msgstr "Bruger metanøgle : Modtagerfelt" - -# wpml-name: 07c3e6195b406fdac60370f67542938e -msgid "Other fields" -msgstr "Andre felter" - -# wpml-name: 429bc09988afd850d01b56404384e171 -msgid "If only the mobile number, but not the country code, is specified on a user, then this value will be assumed." -msgstr "Hvis kun mobilnummer, men ikke landekode, er tilknyttet en bruger, så vil denne værdi blive brugt." - -# wpml-name: cc5ad707fa39d9305a838586e13e2e23 -msgid "Default country code" -msgstr "Standard landekode" - -# wpml-name: 635b9239d353061ba80c061abc6ffc53 -msgid "Which user meta key contains the country code for the mobile number?" -msgstr "Hvilken metanøgle på brugeren indeholder landekoden for mobilnummeret?" - -# wpml-name: 18fccd6c74e8d4e141fd8d037a915019 -msgid "Which user meta key contains the mobile number?" -msgstr "Hvilken metanøgle indeholder mobilnummeret?" - -# wpml-name: f8035c31921f3135121436d3c701d382 -msgid "Enable user synchronization" -msgstr "Slå brugersynkronisering til" - -# wpml-name: 9d2bbd75e37ccf358b2c2c55933f702d -msgid "Please note: It is your responsibility to ensure that the information on a user is valid and that mobile numbers are unique. If a user is not present in the recipients list, then there's either missing or invalid information on the user, or the number is already associated with another user." -msgstr "Bemærk venligst: Det er dit ansvar at sørge for at informationerne på en bruger er gyldige og at mobilnummeret er unikt. Hvis en bruger ikke er at finde i modtagerlisten, så er det enten fordi der mangler mobilnummer eller andre værdier er ugyldige, eller fordi nummeret er tilknyttet en anden modtager." - -# wpml-name: bbe06f76e14a6fa4e7963203c06c5d6f -msgid "If any information changes on the WordPress user or the user is deleted, the recipient is updated or deleted as well. In other words, the recipient works as an always up-to-date copy of the relevant users." -msgstr "Hvis oplysninger ændrer sig på en WordPress bruger eller hvis brugeren er slettet, så opdateres eller slettes modtageren ligeledes. Med andre ord, så vil modtageren altid være up-to-date og spejlet med oplysningerne fra brugeren." - -# wpml-name: cfad6e66ee11c057e282325207235d06 -msgid "It is possible to create recipients and keep them up-to-date automatically. As soon as the minimum required information on a user in the WordPress user is present, a recipient will be created automatically." -msgstr "Det er muligt at oprette modtagere og holde dem opdateret helt automatisk. Så snart de påkrævede oplysninger er oprettet på en WordPress bruger, vil modtageren blive oprettet automatisk." - -# wpml-name: 205f915260f7e8910388b7236aa7ba5a -msgid "Reset to default" -msgstr "Nulstil til fabriksopsæt" - -# wpml-name: 60fa9eb7fa5dce3445366886e0e02fe7 -msgid "Are you sure that you want to reset to default? All your field configurations above will be lost immediately with no way of recovery." -msgstr "Er du sikker på at du ønsker at nulstille til fabriksopsæt? Alle dine feltindstillinger ovenfor går tabt med det samme og vil ikke kunne genskabes." - -# wpml-name: ec34f72ad6ed94ed99871a6c6a5f2843 -msgid "Add another field" -msgstr "Tilføj endnu et felt" - -# wpml-name: 0f96cb5192d2c0d8ef47f8455bfa5b29 -msgid "Delete this field" -msgstr "Slet dette felt" - -# wpml-name: a4aa96713f1143aeeab3b02625da3669 -msgid "Are you sure that you want to delete this field?" -msgstr "Er du sikker på at du ønsker at slette dette felt?" - -# wpml-name: d710642f30d9a2aa6303b9141c33cfb0 -msgid "Enter a single choice per line. Prefix the line with two exclamation marks (!!), to make an option selected by default." -msgstr "Indtast en enkelt valgmulighed pr. linje. Foranstil to udråbstegn (!!) på en linje, for at forhåndsvælge muligheden." - -# wpml-name: 6ef697f11922be2e4de0971f7d70997f -msgid "Choices" -msgstr "Muligheder" - -# wpml-name: 152c1bb5c996a3b102fa168966323ca1 -msgid "List of country calling codes" -msgstr "Liste over telefon-landekode" - -# wpml-name: 85ccae0e446db53548475a451135ae2f -msgid "If you wish to limit the countries available, please enter the country calling codes below (one per line, no “+”-prefix)." -msgstr "Hvis du ønsker at begrænse de mulige lande, så indtast deres landekoder nedenfor (én landekode pr. linje, ikke foranstillet med +)." - -# wpml-name: 5ef90e510046b2b04f639c94ff93dd98 -msgid "Country limitation" -msgstr "Landebegrænsning" - -# wpml-name: a8cc57c386f51a0a14059824d35e6cc2 -msgid "Hidden (only visible in backend)" -msgstr "Skjult (kun synlig i backend)" - -# wpml-name: b4c2b550635fe54fd29f2b64dfaca55d -msgid "Special" -msgstr "Specielt" - -# wpml-name: 7ada3c7d64be1ee70356eddfdedfa7ed -msgid "Checkbox (multiple)" -msgstr "Checkboks (flere valg)" - -# wpml-name: 320d5b717366b529425d21138ae877fe -msgid "Radio (single)" -msgstr "Radio (enkeltvalg)" +#: inc/integration_contact_form_7.php:33 +msgid "action*" +msgstr "handling*" -# wpml-name: 9989e24d15572aa4cd7d7c3f7eb22fcb -msgid "Select (single)" -msgstr "Dropdown (enkeltvalg)" +#: inc/integration_contact_form_7.php:32 +msgid "smstext" +msgstr "smstekst" -# wpml-name: 85a0a8ce7422ae05ee2f2fcbf925162c -msgid "Multiple choices" -msgstr "Flere muligheder" +#: inc/integration_contact_form_7.php:31 +msgid "groups" +msgstr "grupper" -# wpml-name: fbe978908d26aa1f4c97f8af5a5b8fac -msgid "Insecure (visible in backend and SMS'es)" -msgstr "Usikker (synlig i backend og i SMS’er)" +#: inc/integration_contact_form_7.php:30 +msgid "countrycode" +msgstr "landekode" -# wpml-name: b5d4d25fe3fa9f8263b5f279a372b709 -msgid "Textarea" -msgstr "Tekstområde" +#: inc/integration_contact_form_7.php:29 +msgid "phone" +msgstr "telefon" -# wpml-name: 33c2b7cd50c5ef2d69cc52776d219723 -msgid "Digits only" -msgstr "Kun tal" +#: inc/helpers.php:60 +msgid "Name. Name of the recipient." +msgstr "Navn. Navn på modtageren." -# wpml-name: e6b391a8d2c4d45902a23a8b6585703d -msgid "URL" -msgstr "URL" +#: inc/helpers.php:43 +msgid "Not found in database." +msgstr "Ikke fundet i databasen." -# wpml-name: 1e884e3078d9978e216a027ecd57fb34 -msgid "E-mail" -msgstr "E-mail" +#: inc/helpers.php:27 +msgid "Missing/invalid country code or number." +msgstr "Manglende/ugyldig landekode eller nummer." -# wpml-name: f39a0720a929097afa9db4505cdf9669 -msgid "Plain text" -msgstr "Simpelt tekstfelt" +#: inc/css_js.php:18 +msgid "Sorry, but there are errors in your input. Please attend to the highlighted fields below." +msgstr "Der er desværre fejl i din indtastning. Gå venligst de fremhævede felter nedenfor igennem." -# wpml-name: 9dffbf69ffba8bc38bc4e01abf4b1675 -msgid "Text" -msgstr "Tekst" +#: inc/cpt_sms_listing_ui.php:41 +msgid "Calculated at send" +msgstr "Udregnes ved afsendelse" -# wpml-name: a1fa27779242b4902f7ae3bdd5c6d508 -msgid "Type" -msgstr "Type" +#: inc/cpt_sms_editor_ui.php:367 +msgid "Send on%1$s" +msgstr "Send d. %1$s" -# wpml-name: 61c9d670c9860147ca957b8a523bb751 -msgid "Required fields must be filled when adding recipients. For multiple choice field types, at least one value must be picked." -msgstr "Påkrævede felter skal udfyldes når man tilmelder en modtager. For “Flere valg” felt-typer betyder påkrævet, at minimum én af mulighederne skal vælges." +#: inc/cpt_sms_editor_ui.php:366 +msgid "Send immediately" +msgstr "Send nu" -# wpml-name: f06d8d813b5a2a2fbe9229f4f1c49059 -msgid "Required field?" -msgstr "Påkrævet felt?" +#: inc/cpt_sms_editor_ui.php:365 +msgid "Sent on: %1$s" +msgstr "Sendt: %1$s" -# wpml-name: 9de103e6bb452e3be59d333257548a01 -msgid "A helpful description of what input the user is expected to put in the field." -msgstr "En forklarende beskrivelse af hvad der forventes af brugeren ift. indtastningen." +#: inc/cpt_sms_editor_ui.php:364 +msgid "Send" +msgstr "Send" -# wpml-name: b5a7adde1af5c87d7fd797b6245c2a39 -msgid "Description" -msgstr "Beskrivelse" +#: inc/cpt_sms_editor_ui.php:281 +msgid "Not sent yet" +msgstr "Ikke afsendt endnu" -# wpml-name: 3b19bd1967f12c0c8c001a078f156142 -msgid "This is used as the tag when sending SMS'es, in shortcodes and is used as the meta key." -msgstr "Dette er brugt som tag når SMS’er afsendes, i shortcodes samt er brugt som nøgle for metafelt." +#: inc/cpt_sms_editor_ui.php:277 +msgid "SMS was successfully sent" +msgstr "SMS blev sent uden problemer" -# wpml-name: 42aa94c0e0e2bb38cacca52539a86089 -msgid "Field ID" -msgstr "Felt-ID" +#: inc/cpt_sms_editor_ui.php:273 +msgid "Technical error:" +msgstr "Teknisk fejl:" -# wpml-name: 01dead2f629e563489534bac2fbda11d -msgid "Shown in all pulic forms which uses this field." -msgstr "Vises i alle offentlige formularer som benytter dette felt." +#: inc/cpt_sms_editor_ui.php:265 +msgid "Failed before sending:" +msgstr "Fejlede før afsendelse:" -# wpml-name: 431dd749fd79693f87a78ef8d53bfecc -msgid "Use the \"Build Shortcode\"-tab to get the shortcodes required to embed a signup form, update a recipient, unsubscribe or simply send an SMS." -msgstr "Brug “Byg Shortcode”-tabben til at få den fornødne shortcode til en tilmeldingsformular, opdaterér tilmelding, afmeld eller til simpel SMS-afsendelse." +#: inc/cpt_sms_editor_ui.php:261 +msgid "Sending..." +msgstr "Sender..." -# wpml-name: 4a9933543f4c059d5e7f576eb707e6c1 -msgid "The fields below are available when sending SMS'es, as well as when the users signs up or updates their recipient." -msgstr "Felterne nedenfor er tilgængelige når man sender SMS’er, såvel som når brugeren tilmelder sig eller opdaterer deres modtager." +#: inc/cpt_sms_editor_ui.php:255 +msgid "About to send" +msgstr "Skal til at sende" -# wpml-name: 60bfb9d7cfc2062696b91c0bcf758d9f -msgid "Mobile number of recipient" -msgstr "Mobilnummer på modtager" +#: inc/cpt_sms_editor_ui.php:250 +msgid "The current status of the SMS is:" +msgstr "Aktuel status for SMS'en er:" -# wpml-name: d1457170f205323fa446500f864338e7 -msgid "Mobile number" -msgstr "Mobilnummer" +#: inc/cpt_sms_editor_ui.php:229 +msgid "Writing one of the following tags (including both %-signs) will result in each recipient receiving a personalized text:" +msgstr "Hvis du skriver en af de følgende tags (inkludér begge %-tegn) vil hver modtager få en personlig tekst:" -# wpml-name: b1c66f49d3394b735794a0737debb69f -msgid "Mobile country code of recipient" -msgstr "Mobil landekode på modtager" +#: inc/cpt_sms_editor_ui.php:227 inc/receive_action_autoreply_ui.php:37 +msgid "Enter your SMS message here." +msgstr "Indtast din SMS-besked her." -# wpml-name: 9cd471e492a821e43309db48d106cc38 -msgid "Mobile country code" -msgstr "Mobil landekode" +#: inc/cpt_sms_editor_ui.php:221 inc/integration_contact_form_7.php:995 +#: inc/receive_action_autoreply_ui.php:31 +msgid "characters" +msgstr "tegn" -# wpml-name: a167de1d83362466c68c91e56af67fbd -msgid "Full name of recipient" -msgstr "Fuldt navn på modtager" +#: inc/cpt_sms_editor_ui.php:220 inc/integration_contact_form_7.php:994 +#: inc/receive_action_autoreply_ui.php:30 +msgid "character" +msgstr "tegn" -# wpml-name: 49ee3087348e8d44e1feda1917443987 -msgid "Name" -msgstr "Navn" +#: inc/cpt_sms_editor_ui.php:209 +msgid "Display SMS" +msgstr "Display SMS" -# wpml-name: 97dd21e60fcdbd9e9d6eb916c7c14785 -msgid "ReCAPTCHA Secret key" -msgstr "ReCAPTCHA “Secret key”" +#: inc/cpt_sms_editor_ui.php:209 +msgid "Message is displayed immediately and usually not saved in the normal message inbox. Also knows as a Flash SMS." +msgstr "Beskeden vises med det samme og gemmes typisk ikke i indbakken. Kendes også som en “Flash SMS”." -# wpml-name: 4c3b7898e558dea1bb1d5473ae292b41 -msgid "ReCAPTCHA Site Key" -msgstr "ReCAPTCHA “Site key”" +#: inc/cpt_sms_editor_ui.php:202 +msgid "Regular SMS" +msgstr "Alm. SMS" -# wpml-name: 3a5ac71571fce28f624f0401f57685f3 -msgid "Click here to read more about reCAPTCHA and signup." -msgstr "Klik her for at lære mere om reCAPTCHA og for at tilmelde dig." +#: inc/cpt_sms_editor_ui.php:195 +msgid "Type of SMS" +msgstr "Type af SMS" -# wpml-name: 3336d1c3853baa70921a18023cfa95a9 -msgid "If you would like to use reCAPTCHA on the public GatewayAPI forms (signup, unsubscribe etc.), then please enter your site key and secret key below." -msgstr "Hvis du ønsker at benytte reCAPTCHA på de offentligt tilgængelige GatewayAPI-formularer (tilmeld, afmeld osv.), så indtast venligst din “site key” og “secret key” nedenfor." +#: inc/cpt_sms_editor_ui.php:190 inc/receive_action_autoreply_ui.php:20 +msgid "The sender can be either 11 characters or 15 digits in total." +msgstr "Afsender må være enten 11 tegn eller 15 tal i alt." -# wpml-name: 977d419ec898a8bfa45e53a4dbda258f -msgid "reCAPTCHA is a free service from Google, which greatly reduces spam and abuse from your public forms." -msgstr "reCAPTCHA er en gratis tjeneste fra Google, som er bygget til at reducere spam-indtastninger og misbrug af dine offentlige formularer." +#: inc/cpt_sms_editor_ui.php:185 inc/cpt_sms_listing_ui.php:14 +#: inc/receive_action_autoreply_ui.php:15 inc/shortcode.php:381 +msgid "Sender" +msgstr "Afsender" -# wpml-name: f161bb11fe746ae805ac6ed705231bf9 -msgid "Captcha for public forms" -msgstr "CAPTCHA i offentlige formularer" +#: inc/cpt_sms_editor_ui.php:146 +msgid "No recipients manually added" +msgstr "Ingen modtagere tilføjet manuelt" -# wpml-name: 87849e213720ed50cb903cb8fe2c14af -msgid "Must consist of either 11 characters or 15 digits." -msgstr "Skal bestå af 11 tegn eller 15 tal." +#: inc/cpt_sms_editor_ui.php:140 inc/integration_contact_form_7.php:741 +#: inc/recipient_forms.php:8 tpl/settings_page.php:216 +msgid "Name" +msgstr "Navn" -# wpml-name: 98e0e5efd55cab0551bc7ffb3b550726 -msgid "Default sender" -msgstr "Standardafsender" +#: inc/cpt_sms_editor_ui.php:133 +msgid "Manually added recipients" +msgstr "Tilføj modtager manuelt" -# wpml-name: 89080674362aebffd98568a5fb6b5466 -msgid "Enabling this adds a new menu for sending SMS'es and listing sent SMS'es, as well as managing an address book." -msgstr "Når du aktiverer dette, tilføjes en ny menu hvor du kan afsende SMS’er, se afsendte SMS’er, samt opbygge et adressekartotek." +#: inc/cpt_sms_editor_ui.php:125 +msgid "Name (optional)" +msgstr "Navn (valgfrit)" -# wpml-name: 4799935bc04e8a30772e15833e4f87c0 -msgid "Yes, enable the SMS sending UI" -msgstr "Ja, aktivér SMS-afsendelsesbrugerfladerne" +#: inc/cpt_sms_editor_ui.php:106 inc/cpt_sms_editor_ui.php:129 +msgid "Add recipient" +msgstr "Tilføj modtager" -# wpml-name: aecd60b2c9b94ea2cd8a151e3f77b559 -msgid "Enable sending UI" -msgstr "Aktivér afsend-brugerflade" +#: inc/cpt_sms_editor_ui.php:78 +msgid "Only groups with at least one recipient are listed." +msgstr "Kun grupper med minimum én modtger i vises i listen." -# wpml-name: 4c834bc72aabcf17785ff998e694cd19 -msgid "OAuth Secret" -msgstr "OAuth Hemmelighed" +#: inc/cpt_sms_editor_ui.php:77 +msgid "You will be sending to all recipients who are in any of the selected groups." +msgstr "Du vil sende til alle modtagere som er i mindst én af de valgte grupper." -# wpml-name: 88dea869219c46759d3dd88071419113 -msgid "OAuth Key" -msgstr "OAuth Nøgle" +#: inc/cpt_sms_editor_ui.php:71 +msgid "Selected recipient groups" +msgstr "Vælg modtagergrupper" -# wpml-name: f5719f5e8fd3ac404fddd47a18063148 -msgid "Please enter your OAuth Key and OAuth Secret below. You find this information by logging into :link and then navigate to Settings » API Keys." -msgstr "Indtast venligst OAuth-nøglen og hemmeligheden nedenfor. Du finder disse oplysninger ved at logge ind i :link og derefter navigerer til Settings » API Keys." +#: inc/cpt_sms_editor_ui.php:64 +msgid "Recipients in group" +msgstr "Modtagere i gruppe" -# wpml-name: 99ceace0afb41069620552b55995e593 -msgid "Build Shortcode" -msgstr "Byg Shortcode" +#: inc/cpt_sms_editor_ui.php:55 inc/tax_recipient.php:12 +msgid "All recipient groups" +msgstr "Alle modtagergrupper" -# wpml-name: 6f15c441b1f41d5f5f6ab9033ac4a15e -msgid "User synchronization" -msgstr "Brugersynkronisering" +#: inc/cpt_sms_editor_ui.php:37 +msgid "Only one message will be sent per mobile number per SMS. So don't be afraid to mix and match the above." +msgstr "Kun én besked vil blive afsendt pr. mobilnummer pr. SMS. Så vær ikke bange for at benytte flere muligheder ovenfor." -# wpml-name: 057fa70d6c00597f7e428eed4e8fc978 -msgid "Recipient fields" -msgstr "Modtagerfelter" +#: inc/cpt_sms_editor_ui.php:33 +msgid "Enter mobile numbers manually" +msgstr "Indtast mobilnumre manuelt" -# wpml-name: de62775a71fc2bf7a13d7530ae24a7ed -msgid "General settings" -msgstr "Generelle indstillinger" +#: inc/cpt_sms_editor_ui.php:28 +msgid "Use recipient groups" +msgstr "Vælg modtagergrupper" -# wpml-name: 75c1275c6b8523bededbc40e28ff6a9f -msgid "Sorry, but there are errors in your input. Please attend to the highlighted fields below." -msgstr "Der er desværre fejl i din indtastning. Gå venligst de fremhævede felter nedenfor igennem." +#: inc/cpt_sms_editor_ui.php:22 +msgid "How would you like to select recipients for this SMS?" +msgstr "Hvordan ønsker du at udvælge modtagere til denne SMS?" -# wpml-name: ec53a8c4f07baed5d8825072c89799be +#: inc/cpt_sms_editor_ui.php:12 tpl/import-do.php:19 msgid "Status" msgstr "Status" -# wpml-name: 4c2a8fe7eaf24721cc7a9f0175115bd4 -msgid "Message" -msgstr "Besked" - -# wpml-name: aba634857a2f1cc61cd0a89cafd7bd71 +#: inc/cpt_sms_editor_ui.php:9 msgid "Enter mobiles manually" msgstr "Indtast mobilnumre manuelt" -# wpml-name: 7b9324fd1b6cc33da6065e0338fd1828 -msgid "Custom fields" -msgstr "Selvdefinerede felter" +#: inc/cpt_sms_editor_ui.php:8 inc/tax_recipient.php:7 inc/tax_recipient.php:9 +msgid "Recipient groups" +msgstr "Modtagergrupper" -# wpml-name: 5e3d6d040d8a81befd75127d526646bc -msgid "Contact information" -msgstr "Kontaktoplysninger" +#: inc/cpt_sms.php:226 +msgid "Sending is already in progress" +msgstr "Afsendelse er allerede i gang" -# wpml-name: cf4d94e6ff4a6ccafb280e6f5cf4e889 -msgid "Import recipients" -msgstr "Importér modtagere" +#: inc/cpt_sms.php:225 +msgid "SMS is not in the right state for sending." +msgstr "SMS er ikke i et stadie hvor den kan afsendes." -# wpml-name: 234190f33951d76b66fd0d4a9559e663 -msgid "Import recipients from spreadsheet" -msgstr "Importér modtagere fra regneark" +#: inc/cpt_sms.php:223 +msgid "Invalid post type." +msgstr "Ugyldig indholdstype." -# wpml-name: 6d3e39e23dadc19fc8fadc554af8a71c +#: inc/cpt_sms.php:184 inc/options.php:7 tpl/settings_page.php:3 msgid "GatewayAPI Settings" msgstr "GatewayAPI Opsæt" -# wpml-name: 4e258e5513e9db4f84e510c1c910d995 -msgid "No groups found" -msgstr "Ingen grupper fundet" +#: inc/cpt_sms.php:184 +msgid "You have not entered your OAuth key and secret yet. Go to :link to complete the setup." +msgstr "Du har ikke indtastet din OAuth-nøgle og hemmelighed endnu. Gå til :link for at afslutte opsættet." -# wpml-name: 2176c33e70037731c42d4ccac1de08a0 -msgid "Choose from most used groups" -msgstr "Vælg fra mest brugte grupper" +#: inc/cpt_sms.php:177 +msgid "Validation of the SMS failed prior to sending with the following errors:" +msgstr "Kontroltjek af SMS’en fejlede før afsendelse pga. følgende fejl:" -# wpml-name: 0773bee4595a4e4dee1d82b88d5386ee -msgid "Add or remove groups" -msgstr "Tilføj eller fjern grupper" +#: inc/cpt_sms.php:16 +msgid "Search SMS'es" +msgstr "Søg i SMS'er" -# wpml-name: 40a21ff40e3b17fa1a73597fac47e1dd -msgid "Popular groups" -msgstr "Populære grupper" +#: inc/cpt_sms.php:15 +msgid "New SMS" +msgstr "Ny SMS" -# wpml-name: 9c98b27e00dcfdb546c90b2407c10e58 -msgid "Search groups" -msgstr "Søg i grupper" +#: inc/cpt_sms.php:14 +msgid "Edit SMS" +msgstr "Redigér SMS" -# wpml-name: 6124d758cdbddbfb7966fa23c8922e5c -msgid "New group" -msgstr "Ny modtagergruppe" +#: inc/cpt_sms.php:13 +msgid "Create new SMS" +msgstr "Opret ny SMS" -# wpml-name: 8d5c8b039b4d1d172c1ae5edffa9ce8e -msgid "Add new recipient group" -msgstr "Tilføj ny modtagergruppe" +#: inc/cpt_sms.php:12 +msgid "Create SMS" +msgstr "Opret SMS" -# wpml-name: 56d39c52b416c8af64d8d94f46771976 -msgid "Update group" -msgstr "Opdatér gruppe" +#: inc/cpt_sms.php:11 inc/cpt_sms_editor_ui.php:222 +#: inc/integration_contact_form_7.php:996 +#: inc/receive_action_autoreply_ui.php:32 +msgid "SMS" +msgstr "SMS" -# wpml-name: de151c2bd7a746da866d1f8a6e1a1adf -msgid "View group" -msgstr "Vis gruppe" +#: inc/cpt_sms.php:10 inc/cpt_sms.php:19 inc/cpt_sms_editor_ui.php:223 +#: inc/integration_contact_form_7.php:997 +#: inc/receive_action_autoreply_ui.php:33 +msgid "SMS'es" +msgstr "SMS’er" -# wpml-name: 3bd11b19e48893c0e79521359ee42211 -msgid "Edit group" -msgstr "Redigér gruppe" +#: inc/cpt_recipient_ui.php:38 inc/cpt_sms_editor_ui.php:120 +msgid "Phone number - digits only" +msgstr "Telefonnummer - kun tal" -# wpml-name: 026cced890031149d8f4841b112fd7f8 -msgid "All recipient groups" -msgstr "Alle modtagergrupper" +#: inc/cpt_recipient_ui.php:7 +msgid "Custom fields" +msgstr "Selvdefinerede felter" + +#: inc/cpt_recipient_ui.php:6 +msgid "Contact information" +msgstr "Kontaktoplysninger" -# wpml-name: a37ede293936e29279ed543129451ec3 +#: inc/cpt_recipient_listing_ui.php:42 inc/cpt_sms.php:293 +msgid "None" +msgstr "Ingen" + +#: inc/cpt_recipient_listing_ui.php:14 inc/recipient_forms.php:386 +#: inc/tax_recipient.php:11 tpl/import-analysis.php:53 +#: tpl/settings_page.php:422 tpl/settings_page.php:530 msgid "Groups" msgstr "Grupper" -# wpml-name: a8b92b1e516183fd19c45127d60f7c8f -msgid "Recipient group" -msgstr "Modtagergrupper" +#: inc/cpt_recipient_listing_ui.php:12 inc/cpt_recipient_ui.php:25 +#: inc/cpt_sms_editor_ui.php:110 +msgid "Country code" +msgstr "Landekode" -# wpml-name: 9f829d5b0f80506f19809d4c2a27d87a -msgid "Recipient groups" -msgstr "Modtagergrupper" +#: inc/cpt_recipient.php:66 +msgid "Name of recipient" +msgstr "Navn på modtager" -# wpml-name: 1c9f3b6666a1ff50f0adf6cddd0aa178 +#: inc/cpt_recipient.php:18 msgid "No recipients found in trash" msgstr "Ingen modtagere fundet i papirkurven" -# wpml-name: af1de6f526a9f8da64f6a385e8df2d28 +#: inc/cpt_recipient.php:17 msgid "No recipients found" msgstr "Ingen modtagere fundet" -# wpml-name: 7aae67d188d6b7aff22ee7eaf0049b33 +#: inc/cpt_recipient.php:16 msgid "Search recipients" msgstr "Søg i modtagere" -# wpml-name: e7e6ff8968673388cd7414cfe15e71bc +#: inc/cpt_recipient.php:15 msgid "New recipient" msgstr "Ny modtager" -# wpml-name: 40469493f23c57b7f61c044f9a1c9185 +#: inc/cpt_recipient.php:14 msgid "Edit recipient" msgstr "Redigér modtager" -# wpml-name: a7dce2f0943283f935156e5c97054994 +#: inc/cpt_recipient.php:13 msgid "Create new recipient" msgstr "Opret ny modtager" -# wpml-name: d789c4613ed7e43e0f580ebbc6da6ab1 +#: inc/cpt_recipient.php:12 msgid "Create recipient" msgstr "Opret modtager" -# wpml-name: 5d6103b662f41b07e10687f03aca8fdc +#: inc/cpt_recipient.php:11 msgid "Recipient" msgstr "Modtager" -# wpml-name: 5959cf158e76f7c6f27bff2917ee05b1 +#: inc/cpt_recipient.php:10 inc/cpt_recipient.php:19 +#: inc/cpt_sms_editor_ui.php:7 inc/cpt_sms_listing_ui.php:15 msgid "Recipients" msgstr "Modtagere" -# wpml-name: 14ba17491bc15e62d0956a0df4e97d56 +#: inc/cpt_receive_sms.php:84 inc/cpt_sms_editor_ui.php:10 +#: inc/cpt_sms_editor_ui.php:215 inc/cpt_sms_listing_ui.php:13 +#: inc/integration_contact_form_7.php:170 +#: inc/receive_action_autoreply_ui.php:25 inc/shortcode.php:390 +msgid "Message" +msgstr "Besked" + +#: inc/cpt_receive_sms.php:83 +msgid "Receiver" +msgstr "Modtager" + +#: inc/cpt_receive_sms.php:82 inc/cpt_recipient_listing_ui.php:13 +#: inc/recipient_forms.php:22 inc/security_two_factor.php:582 +#: tpl/settings_page.php:374 tpl/wp-login-add-phone.php:22 +msgid "Mobile number" +msgstr "Mobilnummer" + +#: inc/cpt_receive_sms.php:53 +msgid "Received on: %1$s" +msgstr "Modtaget: %1$s" + +#: inc/cpt_receive_sms.php:51 inc/cpt_receive_sms.php:52 +msgid "Received" +msgstr "Modtaget" + +#: inc/cpt_receive_sms.php:50 +msgid "View" +msgstr "Vis" + +#: inc/cpt_receive_sms.php:17 inc/cpt_sms.php:18 msgid "No SMS'es found in trash" msgstr "Ingen SMS’er fundet i papirkurven" -# wpml-name: cdc6201d8f4469b87dcd3dc20e419616 +#: inc/cpt_receive_sms.php:16 inc/cpt_sms.php:17 msgid "No SMS'es found" msgstr "Ingen SMS’er fundet" -# wpml-name: dc63c7a2d3cad61bce8cb70d365a7d82 -msgid "Search SMS'es" -msgstr "Søg i SMS'er" +#: inc/cpt_receive_sms.php:15 +msgid "Search Inbox" +msgstr "Søg indbakke" -# wpml-name: c4b9ba7b3159cab84b103424780074a4 -msgid "New SMS" -msgstr "Ny SMS" +#: inc/cpt_receive_sms.php:13 inc/cpt_receive_sms.php:14 +#: inc/cpt_receive_sms_ui.php:8 +msgid "Received SMS" +msgstr "Modtaget SMS" -# wpml-name: 8b223457b3a0bd6364367d01023642c3 -msgid "Edit SMS" -msgstr "Redigér SMS" +#: inc/cpt_receive_sms.php:10 inc/cpt_receive_sms.php:11 +#: inc/cpt_receive_sms.php:12 +msgid "Inbox" +msgstr "Indbakke" -# wpml-name: 7e9f77f376b5bf80e1d1ecbd908e565a -msgid "Create new SMS" -msgstr "Opret ny SMS" +#: inc/cpt_receive_handler.php:135 +msgid "Pick an action describing what will happen, when this receive action is triggered." +msgstr "Vælg en handling som beskriver hvad der skal ske, når denne modtagehandling udløses." -# wpml-name: 6ddeb6cdcf600fb90416c0fad6f35979 -msgid "Create SMS" -msgstr "Opret SMS" +#: inc/cpt_receive_handler.php:116 +msgid "Enter the keyword which triggers this action." +msgstr "Indtast keywordet som udløser denne handling." -# wpml-name: 4cecb21b44628b17c436739bf6301af2 -msgid "SMS" -msgstr "SMS" +#: inc/cpt_receive_handler.php:111 +msgid "Keyword" +msgstr "Keyword" -# wpml-name: 97cc9e87e256270ab5886f29f8c70b26 -msgid "SMS'es" -msgstr "SMS’er" +#: inc/cpt_receive_handler.php:106 +msgid "Which number are SMS'es sent to?" +msgstr "Hvilket nummer sendes SMS’er til?" + +#: inc/cpt_receive_handler.php:101 inc/cpt_recipient_ui.php:34 +#: inc/cpt_sms_editor_ui.php:116 inc/cpt_sms_editor_ui.php:139 +msgid "Phone number" +msgstr "Telefonnummer" + +#: inc/cpt_receive_handler.php:66 +msgid "Name of receive action" +msgstr "Navn på modtagehandling" + +#: inc/cpt_receive_handler.php:18 +msgid "No receive actions found in trash" +msgstr "Ingen modtagehandlinger fundet i papirkurven" + +#: inc/cpt_receive_handler.php:17 +msgid "No receive actions found" +msgstr "Ingen modtagehandlinger fundet" + +#: inc/cpt_receive_handler.php:16 +msgid "Search receive actions" +msgstr "Søg i modtagehandlinger" + +#: inc/cpt_receive_handler.php:15 +msgid "New receive action" +msgstr "Ny modtagehandling" + +#: inc/cpt_receive_handler.php:14 +msgid "Edit receive action" +msgstr "Redigér modtagehandling" + +#: inc/cpt_receive_handler.php:13 +msgid "Create new receive action" +msgstr "Opret ny modtagehandling" + +#: inc/cpt_receive_handler.php:12 +msgid "Create receive action" +msgstr "Opret modtagehandling" + +#: inc/cpt_receive_handler.php:11 inc/cpt_receive_handler.php:71 +#: inc/cpt_receive_handler.php:121 +msgid "Receive action" +msgstr "Modtagehandling" + +#: inc/cpt_receive_handler.php:10 inc/cpt_receive_handler.php:19 +msgid "Receive actions" +msgstr "Modtagehandlinger" diff --git a/readme.txt b/readme.txt index d381f46..4dd2a4b 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: onlinecity Tags: sms, two factor, security, mobile, texting Requires at least: 4.6 Tested up to: 4.9.7 -Stable tag: 1.5.0 +Stable tag: 1.5.1 License: MIT License URI: https://opensource.org/licenses/MIT @@ -125,6 +125,12 @@ Then find the `options`-table, by default `wp_options`. Search for the row where == Changelog == += 1.5.1 = +* Updated Danish translations (primarily the two-factor settings and frontend). +* Fix: Our shortcode had unintentionally been renamed. We now support both `[gwapi]` and `[gatewayapi]`. +* Fix: Two-factor-module caused fatal error on PHP 5. Also fixed general notices in two-factor module. +* Fix: Two-factor module caused fatal error when creating new WordPress-users. + = 1.5.0 = * New! Two-factor security upgrade to your WordPress! (optional) * New! Blacklisting of phone numbers.