Plugin Directory

Changeset 1892870


Ignore:
Timestamp:
06/14/2018 01:09:37 PM (8 years ago)
Author:
8bitsinarow
Message:

Updated Freemius SDK to 2.1.1

Location:
basepress/trunk/freemius
Files:
2 deleted
11 edited

Legend:

Unmodified
Added
Removed
  • basepress/trunk/freemius/includes/class-freemius.php

    r1882707 r1892870  
    32643264        static function _get_current_wp_user() {
    32653265            self::require_pluggable_essentials();
     3266            self::wp_cookie_constants();
    32663267
    32673268            return wp_get_current_user();
     3269        }
     3270
     3271        /**
     3272         * Define cookie constants which are required by Freemius::_get_current_wp_user() since
     3273         * it uses wp_get_current_user() which needs the cookie constants set. When a plugin
     3274         * is network activated the cookie constants are only configured after the network
     3275         * plugins activation, therefore, if we don't define those constants WP will throw
     3276         * PHP warnings/notices.
     3277         *
     3278         * @author   Vova Feldman (@svovaf)
     3279         * @since    2.1.1
     3280         */
     3281        private static function wp_cookie_constants() {
     3282            if ( defined( 'LOGGED_IN_COOKIE' ) &&
     3283                 ( defined( 'AUTH_COOKIE' ) || defined( 'SECURE_AUTH_COOKIE' ) )
     3284            ) {
     3285                return;
     3286            }
     3287
     3288            /**
     3289             * Used to guarantee unique hash cookies
     3290             *
     3291             * @since 1.5.0
     3292             */
     3293            if ( ! defined( 'COOKIEHASH' ) ) {
     3294                $siteurl = get_site_option( 'siteurl' );
     3295                if ( $siteurl ) {
     3296                    define( 'COOKIEHASH', md5( $siteurl ) );
     3297                } else {
     3298                    define( 'COOKIEHASH', '' );
     3299                }
     3300            }
     3301
     3302            if ( ! defined( 'LOGGED_IN_COOKIE' ) ) {
     3303                define( 'LOGGED_IN_COOKIE', 'wordpress_logged_in_' . COOKIEHASH );
     3304            }
     3305
     3306            /**
     3307             * @since 2.5.0
     3308             */
     3309            if ( ! defined( 'AUTH_COOKIE' ) ) {
     3310                define( 'AUTH_COOKIE', 'wordpress_' . COOKIEHASH );
     3311            }
     3312
     3313            /**
     3314             * @since 2.6.0
     3315             */
     3316            if ( ! defined( 'SECURE_AUTH_COOKIE' ) ) {
     3317                define( 'SECURE_AUTH_COOKIE', 'wordpress_sec_' . COOKIEHASH );
     3318            }
    32683319        }
    32693320
     
    1080610857                }
    1080710858            } else {
    10808                 $error = $this->get_text_inline( 'invalid_site_details_collection', 'Invalid site details collection.' );
     10859                $error = $this->get_text_inline( 'Invalid site details collection.', 'invalid_site_details_collection' );
    1080910860            }
    1081010861
     
    1433214383            }
    1433314384
     14385            // Get user information based on parent's plugin.
     14386            $user = $this->get_user();
     14387
    1433414388            // First of all, set site info - otherwise we won't
    1433514389            // be able to invoke API calls.
    1433614390            $parent_fs->_site = new FS_Site( $parent_install );
     14391            $parent_fs->_user = $user;
    1433714392
    1433814393            // Sync add-on plans.
    1433914394            $parent_fs->_sync_plans();
    14340 
    14341             // Get user information based on parent's plugin.
    14342             $user = $this->get_user();
    1434314395
    1434414396            $parent_fs->_set_account( $user, $parent_fs->_site );
     
    1723617288            $is_premium = null;
    1723717289            if ( ! $is_addon ) {
    17238                 $is_premium = $this->is_premium();
     17290                $is_premium = ( $this->is_premium() || $this->_can_download_premium() );
    1723917291            } else if ( $this->is_addon_activated( $addon_id ) ) {
    17240                 $is_premium = self::get_instance_by_id( $addon_id )->is_premium();
     17292                $fs_addon   = self::get_instance_by_id( $addon_id );
     17293                $is_premium = ( $fs_addon->is_premium() || $fs_addon->_can_download_premium() );
    1724117294            }
    1724217295
     
    1743417487            if ( ! empty( $plugin_id ) ) {
    1743517488                $params['plugin_id'] = $plugin_id;
    17436             }
    17437 
    17438             return $this->get_account_url( 'download_latest', $params );
     17489            } else if ( $this->is_addon() ) {
     17490                $params['plugin_id'] = $this->get_id();
     17491            }
     17492
     17493            $fs = $this->is_addon() ?
     17494                $this->get_parent_instance() :
     17495                $this;
     17496
     17497            return $fs->get_account_url( 'download_latest', $params );
    1743917498        }
    1744017499
  • basepress/trunk/freemius/includes/class-fs-api.php

    r1882707 r1892870  
    552552                is_object( $result ) &&
    553553                isset( $result->error ) &&
    554                 isset( $result->message )
     554                isset( $result->error->message )
    555555            );
    556556        }
  • basepress/trunk/freemius/languages/freemius-da_DK.po

    r1882707 r1892870  
    1 # Copyright (C) 2018 freemius
    2 # This file is distributed under the same license as the freemius package.
    3 # Translators:
    4 # Joachim Jensen, 2016-2018
    51msgid ""
    62msgstr ""
    7 "Project-Id-Version: WordPress SDK\n"
    8 "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
     3"Project-Id-Version: \n"
     4"Report-Msgid-Bugs-To: \n"
    95"POT-Creation-Date: \n"
    10 "PO-Revision-Date: 2018-05-24 11:59+0000\n"
    11 "Last-Translator: Joachim Jensen\n"
    12 "Language: da_DK\n"
    13 "Language-Team: Danish (Denmark) (http://www.transifex.com/freemius/wordpress-sdk/language/da_DK/)\n"
    14 "Content-Type: text/plain; charset=UTF-8\n"
    15 "Content-Transfer-Encoding: 8bit\n"
    16 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
    17 "MIME-Version: 1.0\n"
    18 "X-Poedit-Basepath: ..\n"
    19 "X-Poedit-KeywordsList: get_text_inline;fs_text_inline;fs_echo_inline;fs_esc_js_inline;fs_esc_attr_inline;fs_esc_attr_echo_inline;fs_esc_html_inline;fs_esc_html_echo_inline;get_text_x_inline:1,2c;fs_text_x_inline:1,2c;fs_echo_x_inline:1,2c;fs_esc_attr_x_inline:1,2c;fs_esc_js_x_inline:1,2c;fs_esc_js_echo_x_inline:1,2c;fs_esc_html_x_inline:1,2c;fs_esc_html_echo_x_inline:1,2c\n"
    20 "X-Poedit-SearchPath-0: .\n"
    21 "X-Poedit-SearchPathExcluded-0: *.js\n"
    22 "X-Poedit-SourceCharset: UTF-8\n"
    23 
    24 #: includes/class-freemius.php:1551
    25 msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
    26 msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error."
    27 
    28 #: includes/class-freemius.php:1553
    29 msgid "Error"
    30 msgstr "Fejl"
    31 
    32 #: includes/class-freemius.php:1871
    33 msgid "I found a better %s"
    34 msgstr "Jeg fandt et bedre %s"
    35 
    36 #: includes/class-freemius.php:1873
    37 msgid "What's the %s's name?"
    38 msgstr "What's the %s's name?"
    39 
    40 #: includes/class-freemius.php:1879
    41 msgid "It's a temporary %s. I'm just debugging an issue."
    42 msgstr "It's a temporary %s. I'm just debugging an issue."
    43 
    44 #: includes/class-freemius.php:1881
    45 msgid "Deactivation"
    46 msgstr "Deaktivering"
    47 
    48 #: includes/class-freemius.php:1882
    49 msgid "Theme Switch"
    50 msgstr "Temaskift"
    51 
    52 #: includes/class-freemius.php1891, templates/forms/resend-key.php:24
    53 msgid "Other"
    54 msgstr "Andet"
    55 
    56 #: includes/class-freemius.php:1899
    57 msgid "I no longer need the %s"
    58 msgstr "Jeg har ikke længere brug for %s"
    59 
    60 #: includes/class-freemius.php:1906
    61 msgid "I only needed the %s for a short period"
    62 msgstr "Jeg behøvede kun %s i en kort periode"
    63 
    64 #: includes/class-freemius.php:1912
    65 msgid "The %s broke my site"
    66 msgstr "%s ødelagde min webside"
    67 
    68 #: includes/class-freemius.php:1919
    69 msgid "The %s suddenly stopped working"
    70 msgstr "%s stoppede pludseligt med at virke"
    71 
    72 #: includes/class-freemius.php:1929
    73 msgid "I can't pay for it anymore"
    74 msgstr "Jeg kan ikke længere betale for det"
    75 
    76 #: includes/class-freemius.php:1931
    77 msgid "What price would you feel comfortable paying?"
    78 msgstr "Hvilken pris ville du foretrække at betale?"
    79 
    80 #: includes/class-freemius.php:1937
    81 msgid "I don't like to share my information with you"
    82 msgstr "Jeg har ikke lyst til at dele mine informationer med jer"
    83 
    84 #: includes/class-freemius.php:1958
    85 msgid "The %s didn't work"
    86 msgstr "%s virkede ikke"
    87 
    88 #: includes/class-freemius.php:1968
    89 msgid "I couldn't understand how to make it work"
    90 msgstr "Jeg forstod ikke, hvordan jeg skulle få det til at fungere."
    91 
    92 #: includes/class-freemius.php:1976
    93 msgid "The %s is great, but I need specific feature that you don't support"
    94 msgstr "%s er godt, men jeg har brug for en specifik feature, som ikke understøttes"
    95 
    96 #: includes/class-freemius.php:1978
    97 msgid "What feature?"
    98 msgstr "Hvilken feature?"
    99 
    100 #: includes/class-freemius.php:1982
    101 msgid "The %s is not working"
    102 msgstr "%s virker ikke"
    103 
    104 #: includes/class-freemius.php:1984
    105 msgid "Kindly share what didn't work so we can fix it for future users..."
    106 msgstr "Kindly share what didn't work so we can fix it for future users..."
    107 
    108 #: includes/class-freemius.php:1988
    109 msgid "It's not what I was looking for"
    110 msgstr "Det er ikke, hvad jeg søgte"
    111 
    112 #: includes/class-freemius.php:1990
    113 msgid "What you've been looking for?"
    114 msgstr "What you've been looking for?"
    115 
    116 #: includes/class-freemius.php:1994
    117 msgid "The %s didn't work as expected"
    118 msgstr "%s virkede ikke som forventet"
    119 
    120 #: includes/class-freemius.php:1996
    121 msgid "What did you expect?"
    122 msgstr "Hvad forventede du?"
    123 
    124 #: includes/class-freemius.php2729, templates/debug.php:20
    125 msgid "Freemius Debug"
    126 msgstr "Freemius Debug"
    127 
    128 #: includes/class-freemius.php:3402
    129 msgid "I don't know what is cURL or how to install it, help me!"
    130 msgstr "Jeg ved ikke hvad cURL er, eller hvordan jeg installerer det. Hjælp mig!"
    131 
    132 #: includes/class-freemius.php:3404
    133 msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
    134 msgstr "Vi vil kontakte din udbyder og løse problemet. Når vi har opdatinger i sagen, vil vi følge op med en email til dig på %s."
    135 
    136 #: includes/class-freemius.php:3411
    137 msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
    138 msgstr "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
    139 
    140 #: includes/class-freemius.php:3516
    141 msgid "Yes - do your thing"
    142 msgstr "Yes - do your thing"
    143 
    144 #: includes/class-freemius.php:3521
    145 msgid "No - just deactivate"
    146 msgstr "Nej - bare deaktiver"
    147 
    148 #: includes/class-freemius.php3566, includes/class-freemius.php4066,
    149 #: includes/class-freemius.php5127, includes/class-freemius.php10941,
    150 #: includes/class-freemius.php14205, includes/class-freemius.php14257,
    151 #: includes/class-freemius.php14319, includes/class-freemius.php16448,
    152 #: includes/class-freemius.php16458, includes/class-freemius.php17014,
    153 #: includes/class-freemius.php17032, includes/class-freemius.php17130,
    154 #: includes/class-freemius.php17866, templates/add-ons.php:43
    155 msgctxt "exclamation"
    156 msgid "Oops"
    157 msgstr "Ups"
    158 
    159 #: includes/class-freemius.php:3635
    160 msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
    161 msgstr "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
    162 
    163 #: includes/class-freemius.php:4063
    164 msgctxt "addonX cannot run without pluginY"
    165 msgid "%s cannot run without %s."
    166 msgstr "%s virker ikke uden %s."
    167 
    168 #: includes/class-freemius.php:4064
    169 msgctxt "addonX cannot run..."
    170 msgid "%s cannot run without the plugin."
    171 msgstr "%s virker ikke uden pluginnet."
    172 
    173 #: includes/class-freemius.php4176, includes/class-freemius.php4201,
    174 #: includes/class-freemius.php:17103
    175 msgid "Unexpected API error. Please contact the %s's author with the following error."
    176 msgstr "Unexpected API error. Please contact the %s's author with the following error."
    177 
    178 #: includes/class-freemius.php:4815
    179 msgid "Premium %s version was successfully activated."
    180 msgstr "Premium %s version was successfully activated."
    181 
    182 #: includes/class-freemius.php4827, includes/class-freemius.php:6660
    183 msgctxt ""
    184 msgid "W00t"
    185 msgstr "W00t"
    186 
    187 #: includes/class-freemius.php:4842
    188 msgid "You have a %s license."
    189 msgstr "Du har en %s licens."
    190 
    191 #: includes/class-freemius.php4846, includes/class-freemius.php13626,
    192 #: includes/class-freemius.php13637, includes/class-freemius.php16376,
    193 #: includes/class-freemius.php16676, includes/class-freemius.php16741,
    194 #: includes/class-freemius.php:16891
    195 msgctxt "interjection expressing joy or exuberance"
    196 msgid "Yee-haw"
    197 msgstr "Yee-haw"
    198 
    199 #: includes/class-freemius.php:5110
    200 msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
    201 msgstr "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
    202 
    203 #: includes/class-freemius.php:5114
    204 msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
    205 msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
    206 
    207 #: includes/class-freemius.php5123, templates/add-ons.php99,
    208 #: templates/account/partials/addon.php:283
    209 msgid "More information about %s"
    210 msgstr "Mere information om %s"
    211 
    212 #: includes/class-freemius.php:5124
    213 msgid "Purchase License"
    214 msgstr "Køb licens"
    215 
    216 #: includes/class-freemius.php6035, templates/connect.php:161
    217 msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
    218 msgstr "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
    219 
    220 #: includes/class-freemius.php:6039
    221 msgid "start the trial"
    222 msgstr "start prøveperioden"
    223 
    224 #: includes/class-freemius.php6040, templates/connect.php:165
    225 msgid "complete the install"
    226 msgstr "færdiggør installeringen"
    227 
    228 #: includes/class-freemius.php:6147
    229 msgid "You are just one step away - %s"
    230 msgstr "Du mangler kun ét skridt - %s"
    231 
    232 #: includes/class-freemius.php:6150
    233 msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
    234 msgid "Complete \"%s\" Activation Now"
    235 msgstr "Færdiggør aktivering af \"%s\" nu"
    236 
    237 #: includes/class-freemius.php:6227
    238 msgid "We made a few tweaks to the %s, %s"
    239 msgstr "We made a few tweaks to the %s, %s"
    240 
    241 #: includes/class-freemius.php:6231
    242 msgid "Opt in to make \"%s\" Better!"
    243 msgstr "Opt in to make \"%s\" Better!"
    244 
    245 #: includes/class-freemius.php:6659
    246 msgid "The upgrade of %s was successfully completed."
    247 msgstr "Opgraderingen af %s blev fuldendt."
    248 
    249 #: includes/class-freemius.php8384, includes/class-fs-plugin-updater.php581,
    250 #: includes/class-fs-plugin-updater.php733,
    251 #: includes/class-fs-plugin-updater.php739, templates/auto-installation.php:32
    252 msgid "Add-On"
    253 msgstr "Tilføjelse"
    254 
    255 #: includes/class-freemius.php8386, templates/debug.php349,
    256 #: templates/debug.php:510
    257 msgid "Plugin"
    258 msgstr "Plugin"
    259 
    260 #: includes/class-freemius.php8387, templates/debug.php349,
    261 #: templates/debug.php510, templates/forms/deactivation/form.php:64
    262 msgid "Theme"
    263 msgstr "Tema"
    264 
    265 #: includes/class-freemius.php:10808
    266 msgid "invalid_site_details_collection"
    267 msgstr "invalid_site_details_collection"
    268 
    269 #: includes/class-freemius.php:10928
    270 msgid "We couldn't find your email address in the system, are you sure it's the right address?"
    271 msgstr "We couldn't find your email address in the system, are you sure it's the right address?"
    272 
    273 #: includes/class-freemius.php:10930
    274 msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
    275 msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?"
    276 
    277 #: includes/class-freemius.php:11166
    278 msgid "Account is pending activation."
    279 msgstr "Account is pending activation."
    280 
    281 #: includes/class-freemius.php:13608
    282 msgid "%s activation was successfully completed."
    283 msgstr "Aktivering af %s blev gennemført."
    284 
    285 #: includes/class-freemius.php:13622
    286 msgid "Your account was successfully activated with the %s plan."
    287 msgstr "Din konto blev aktiveret med planen %s."
    288 
    289 #: includes/class-freemius.php13633, includes/class-freemius.php:16737
    290 msgid "Your trial has been successfully started."
    291 msgstr "Din prøveperiode er begyndt."
    292 
    293 #: includes/class-freemius.php14203, includes/class-freemius.php14255,
    294 #: includes/class-freemius.php:14317
    295 msgid "Couldn't activate %s."
    296 msgstr "Kunne ikke aktivere %s."
    297 
    298 #: includes/class-freemius.php14204, includes/class-freemius.php14256,
    299 #: includes/class-freemius.php:14318
    300 msgid "Please contact us with the following message:"
    301 msgstr "Kontakt os venligst med følgende besked:"
    302 
    303 #: includes/class-freemius.php14666, includes/class-freemius.php:18929
    304 msgid "Upgrade"
    305 msgstr "Opgrader"
    306 
    307 #: includes/class-freemius.php:14672
    308 msgid "Start Trial"
    309 msgstr "Start prøveperiode"
    310 
    311 #: includes/class-freemius.php:14674
    312 msgid "Pricing"
    313 msgstr "Priser"
    314 
    315 #: includes/class-freemius.php14734, includes/class-freemius.php:14736
    316 msgid "Affiliation"
    317 msgstr "Affiliation"
    318 
    319 #: includes/class-freemius.php14756, includes/class-freemius.php14758,
    320 #: templates/account.php146, templates/debug.php:314
    321 msgid "Account"
    322 msgstr "Konto"
    323 
    324 #: includes/class-freemius.php14769, includes/class-freemius.php14771,
    325 #: includes/customizer/class-fs-customizer-support-section.php:60
    326 msgid "Contact Us"
    327 msgstr "Kontakt os"
    328 
    329 #: includes/class-freemius.php14781, includes/class-freemius.php14783,
    330 #: includes/class-freemius.php18939, templates/account.php96,
    331 #: templates/account/partials/addon.php:37
    332 msgid "Add-Ons"
    333 msgstr "Tilføjelser"
    334 
    335 #: includes/class-freemius.php14815, templates/pricing.php:97
    336 msgctxt "noun"
    337 msgid "Pricing"
    338 msgstr "Priser"
    339 
    340 #: includes/class-freemius.php15009,
    341 #: includes/customizer/class-fs-customizer-support-section.php:67
    342 msgid "Support Forum"
    343 msgstr "Supportforum"
    344 
    345 #: includes/class-freemius.php:15794
    346 msgid "Your email has been successfully verified - you are AWESOME!"
    347 msgstr "Din e-mailadresse er blevet verificeret - du er FOR SEJ!"
    348 
    349 #: includes/class-freemius.php:15795
    350 msgctxt "a positive response"
    351 msgid "Right on"
    352 msgstr "Sådan"
    353 
    354 #: includes/class-freemius.php:16367
    355 msgid "Your %s Add-on plan was successfully upgraded."
    356 msgstr "Your %s Add-on plan was successfully upgraded."
    357 
    358 #: includes/class-freemius.php:16369
    359 msgid "%s Add-on was successfully purchased."
    360 msgstr "Betalingen for tilføjelsen %s blev gennemført."
    361 
    362 #: includes/class-freemius.php:16372
    363 msgid "Download the latest version"
    364 msgstr "Download den seneste version"
    365 
    366 #: includes/class-freemius.php:16444
    367 msgctxt "%1s - plugin title, %2s - API domain"
    368 msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
    369 msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
    370 
    371 #: includes/class-freemius.php16447, includes/class-freemius.php16862,
    372 #: includes/class-freemius.php:16927
    373 msgid "Error received from the server:"
    374 msgstr "Fejl modtager fra serveren:"
    375 
    376 #: includes/class-freemius.php:16457
    377 msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
    378 msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
    379 
    380 #: includes/class-freemius.php16639, includes/class-freemius.php16867,
    381 #: includes/class-freemius.php:16910
    382 msgctxt ""
    383 msgid "Hmm"
    384 msgstr "Hmm"
    385 
    386 #: includes/class-freemius.php:16652
    387 msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
    388 msgstr "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
    389 
    390 #: includes/class-freemius.php16653, templates/account.php98,
    391 #: templates/add-ons.php130, templates/account/partials/addon.php:39
    392 msgctxt "trial period"
    393 msgid "Trial"
    394 msgstr "Prøveperiode"
    395 
    396 #: includes/class-freemius.php:16658
    397 msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
    398 msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s."
    399 
    400 #: includes/class-freemius.php16662, includes/class-freemius.php:16719
    401 msgid "Please contact us here"
    402 msgstr "Kontakt os her"
    403 
    404 #: includes/class-freemius.php:16672
    405 msgid "Your plan was successfully upgraded."
    406 msgstr "Din plan er blevet opgraderet."
    407 
    408 #: includes/class-freemius.php:16689
    409 msgid "Your plan was successfully changed to %s."
    410 msgstr "Din plan er blevet ændret til %s."
    411 
    412 #: includes/class-freemius.php:16705
    413 msgid "Your license has expired. You can still continue using the free %s forever."
    414 msgstr "Your license has expired. You can still continue using the free %s forever."
    415 
    416 #: includes/class-freemius.php:16707
    417 msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
    418 msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
    419 
    420 #: includes/class-freemius.php:16715
    421 msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
    422 msgstr "Din licens er blevet annulleret. Hvis du mener, dette er en fejl, så kontakt venligst support."
    423 
    424 #: includes/class-freemius.php:16728
    425 msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
    426 msgstr "Din licens er udløbet. Du kan stadig benytte alle funktionerne i %s, men du bliver nødt til at fornye din licens for at få opdateringer og support."
    427 
    428 #: includes/class-freemius.php:16751
    429 msgid "Your free trial has expired. You can still continue using all our free features."
    430 msgstr "Your free trial has expired. You can still continue using all our free features."
    431 
    432 #: includes/class-freemius.php:16753
    433 msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
    434 msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
    435 
    436 #: includes/class-freemius.php:16858
    437 msgid "It looks like the license could not be activated."
    438 msgstr "Det ser ud til, at licensen ikke kunne aktiveres."
    439 
    440 #: includes/class-freemius.php:16888
    441 msgid "Your license was successfully activated."
    442 msgstr "Din licens er blevet aktiveret."
    443 
    444 #: includes/class-freemius.php:16914
    445 msgid "It looks like your site currently doesn't have an active license."
    446 msgstr "Det ser ud til, at dit websted endnu ikke har en aktiv licens."
    447 
    448 #: includes/class-freemius.php:16926
    449 msgid "It looks like the license deactivation failed."
    450 msgstr "Det ser ud til, at licens-deaktiveringen mislykkedes."
    451 
    452 #: includes/class-freemius.php:16954
    453 msgid "Your license was successfully deactivated, you are back to the %s plan."
    454 msgstr "Din licens blev deaktiveret, du er tilbage på planen %s."
    455 
    456 #: includes/class-freemius.php:16955
    457 msgid "O.K"
    458 msgstr "O.K"
    459 
    460 #: includes/class-freemius.php:17003
    461 msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
    462 msgstr "Din plan blev nedgraderet. Licensen til din %s plan vil udløbe om %s."
    463 
    464 #: includes/class-freemius.php:17013
    465 msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
    466 msgstr "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
    467 
    468 #: includes/class-freemius.php:17037
    469 msgid "You are already running the %s in a trial mode."
    470 msgstr "You are already running the %s in a trial mode."
    471 
    472 #: includes/class-freemius.php:17048
    473 msgid "You already utilized a trial before."
    474 msgstr "Du har allerede brugt din prøveperiode."
    475 
    476 #: includes/class-freemius.php:17062
    477 msgid "Plan %s do not exist, therefore, can't start a trial."
    478 msgstr "Plan %s eksisterer ikke og kan derfor ikke starte prøveperiode."
    479 
    480 #: includes/class-freemius.php:17073
    481 msgid "Plan %s does not support a trial period."
    482 msgstr "Plan %s understøtter ikke en prøveperiode."
    483 
    484 #: includes/class-freemius.php:17084
    485 msgid "None of the %s's plans supports a trial period."
    486 msgstr "None of the %s's plans supports a trial period."
    487 
    488 #: includes/class-freemius.php:17134
    489 msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
    490 msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
    491 
    492 #: includes/class-freemius.php:17185
    493 msgid "Your %s free trial was successfully cancelled."
    494 msgstr "Din gratis prøveperiode for %s er blevet annulleret."
    495 
    496 #: includes/class-freemius.php:17190
    497 msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
    498 msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
    499 
    500 #: includes/class-freemius.php:17474
    501 msgid "Version %s was released."
    502 msgstr "Version %s er blevet udgivet."
    503 
    504 #: includes/class-freemius.php:17474
    505 msgid "Please download %s."
    506 msgstr "Download venligst %s."
    507 
    508 #: includes/class-freemius.php:17481
    509 msgid "the latest %s version here"
    510 msgstr "den seneste version af %s her"
    511 
    512 #: includes/class-freemius.php:17486
    513 msgid "New"
    514 msgstr "Ny"
    515 
    516 #: includes/class-freemius.php:17491
    517 msgid "Seems like you got the latest release."
    518 msgstr "Det ser ud til, at du har den seneste udgivelse."
    519 
    520 #: includes/class-freemius.php:17492
    521 msgid "You are all good!"
    522 msgstr "Det var det!"
    523 
    524 #: includes/class-freemius.php:17758
    525 msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
    526 msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
    527 
    528 #: includes/class-freemius.php:17893
    529 msgid "Site successfully opted in."
    530 msgstr "Site successfully opted in."
    531 
    532 #: includes/class-freemius.php17894, includes/class-freemius.php:18671
    533 msgid "Awesome"
    534 msgstr "Sejt"
    535 
    536 #: includes/class-freemius.php17910, templates/forms/optout.php:32
    537 msgid "We appreciate your help in making the %s better by letting us track some usage data."
    538 msgstr "We appreciate your help in making the %s better by letting us track some usage data."
    539 
    540 #: includes/class-freemius.php:17911
    541 msgid "Thank you!"
    542 msgstr "Thank you!"
    543 
    544 #: includes/class-freemius.php:17918
    545 msgid "We will no longer be sending any usage data of %s on %s to %s."
    546 msgstr "We will no longer be sending any usage data of %s on %s to %s."
    547 
    548 #: includes/class-freemius.php:18033
    549 msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
    550 msgstr "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
    551 
    552 #: includes/class-freemius.php:18039
    553 msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
    554 msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
    555 
    556 #: includes/class-freemius.php:18044
    557 msgid "%s is the new owner of the account."
    558 msgstr "%s er den nye ejer af kontoen."
    559 
    560 #: includes/class-freemius.php:18046
    561 msgctxt "as congratulations"
    562 msgid "Congrats"
    563 msgstr "Tillykke"
    564 
    565 #: includes/class-freemius.php:18066
    566 msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
    567 msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered."
    568 
    569 #: includes/class-freemius.php:18067
    570 msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
    571 msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
    572 
    573 #: includes/class-freemius.php:18074
    574 msgid "Change Ownership"
    575 msgstr "Skift ejerskab"
    576 
    577 #: includes/class-freemius.php:18082
    578 msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
    579 msgstr "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
    580 
    581 #: includes/class-freemius.php:18094
    582 msgid "Please provide your full name."
    583 msgstr "Indtast venligst dit fulde navn."
    584 
    585 #: includes/class-freemius.php:18099
    586 msgid "Your name was successfully updated."
    587 msgstr "Dit navn er blevet opdateret."
    588 
    589 #: includes/class-freemius.php:18160
    590 msgid "You have successfully updated your %s."
    591 msgstr "Opdatering af %s blev gennemført."
    592 
    593 #: includes/class-freemius.php:18300
    594 msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
    595 msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server."
    596 
    597 #: includes/class-freemius.php:18301
    598 msgctxt "advance notice of something that will need attention."
    599 msgid "Heads up"
    600 msgstr "Se her"
    601 
    602 #: includes/class-freemius.php:18711
    603 msgctxt "exclamation"
    604 msgid "Hey"
    605 msgstr "Hey"
    606 
    607 #: includes/class-freemius.php:18711
    608 msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
    609 msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
    610 
    611 #: includes/class-freemius.php:18719
    612 msgid "No commitment for %s days - cancel anytime!"
    613 msgstr "Ingen bindinger i %s dage - annuller når som helst!"
    614 
    615 #: includes/class-freemius.php:18720
    616 msgid "No credit card required"
    617 msgstr "Betalingskort ikke påkrævet"
    618 
    619 #: includes/class-freemius.php18727, templates/forms/trial-start.php:53
    620 msgctxt "call to action"
    621 msgid "Start free trial"
    622 msgstr "Start gratis prøveperiode"
    623 
    624 #: includes/class-freemius.php:18804
    625 msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
    626 msgstr "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
    627 
    628 #: includes/class-freemius.php:18813
    629 msgid "Learn more"
    630 msgstr "Læs mere"
    631 
    632 #: includes/class-freemius.php18963, templates/account.php394,
    633 #: templates/account.php497, templates/connect.php169,
    634 #: templates/connect.php408, templates/forms/license-activation.php24,
    635 #: templates/account/partials/addon.php:230
    636 msgid "Activate License"
    637 msgstr "Aktiver licens"
    638 
    639 #: includes/class-freemius.php18964, templates/account.php457,
    640 #: templates/account.php496, templates/account/partials/site.php:256
    641 msgid "Change License"
    642 msgstr "Skift licens"
    643 
    644 #: includes/class-freemius.php19046, templates/account/partials/site.php:161
    645 msgid "Opt Out"
    646 msgstr "Frameld"
    647 
    648 #: includes/class-freemius.php19048, includes/class-freemius.php19053,
    649 #: templates/account/partials/site.php43,
    650 #: templates/account/partials/site.php:161
    651 msgid "Opt In"
    652 msgstr "Tilmeld"
    653 
    654 #: includes/class-freemius.php:19245
    655 msgid "Please follow these steps to complete the upgrade"
    656 msgstr "Følg venligst disse trin for at færdiggøre opgraderingen"
    657 
    658 #: includes/class-freemius.php:19249
    659 msgid "Download the latest %s version"
    660 msgstr "Download den seneste version af %s"
    661 
    662 #: includes/class-freemius.php:19253
    663 msgid "Upload and activate the downloaded version"
    664 msgstr "Upload og aktiver den downloadede version"
    665 
    666 #: includes/class-freemius.php:19255
    667 msgid "How to upload and activate?"
    668 msgstr "Upload og aktivering, hvordan?"
    669 
    670 #: includes/class-freemius.php:19384
    671 msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
    672 msgstr "%sClick here%s to choose the sites where you'd like to activate the license on."
    673 
    674 #: includes/class-freemius.php:19545
    675 msgid "Auto installation only works for opted-in users."
    676 msgstr "Auto installation only works for opted-in users."
    677 
    678 #: includes/class-freemius.php19555, includes/class-freemius.php19588,
    679 #: includes/class-fs-plugin-updater.php713,
    680 #: includes/class-fs-plugin-updater.php:727
    681 msgid "Invalid module ID."
    682 msgstr "Ugyldigt modul-ID."
    683 
    684 #: includes/class-freemius.php19564, includes/class-fs-plugin-updater.php:747
    685 msgid "Premium version already active."
    686 msgstr "Premium version allerede aktiv."
    687 
    688 #: includes/class-freemius.php:19571
    689 msgid "You do not have a valid license to access the premium version."
    690 msgstr "Du har ikke en gyldig licens til at benytte premium-versionen."
    691 
    692 #: includes/class-freemius.php:19578
    693 msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
    694 msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version."
    695 
    696 #: includes/class-freemius.php19596, includes/class-fs-plugin-updater.php:746
    697 msgid "Premium add-on version already installed."
    698 msgstr "Premium tilføjelse er allerede installeret."
    699 
    700 #: includes/class-freemius.php:19941
    701 msgid "View paid features"
    702 msgstr "Vis betalte features"
    703 
    704 #: includes/class-freemius.php:20251
    705 msgid "Thank you so much for using %s and its add-ons!"
    706 msgstr "Thank you so much for using %s and its add-ons!"
    707 
    708 #: includes/class-freemius.php:20252
    709 msgid "Thank you so much for using %s!"
    710 msgstr "Thank you so much for using %s!"
    711 
    712 #: includes/class-freemius.php:20258
    713 msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
    714 msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
    715 
    716 #: includes/class-freemius.php:20262
    717 msgid "Thank you so much for using our products!"
    718 msgstr "Thank you so much for using our products!"
    719 
    720 #: includes/class-freemius.php:20263
    721 msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
    722 msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them."
    723 
    724 #: includes/class-freemius.php:20282
    725 msgid "%s and its add-ons"
    726 msgstr "%s and its add-ons"
    727 
    728 #: includes/class-freemius.php:20291
    729 msgid "Products"
    730 msgstr "Products"
    731 
    732 #: includes/class-freemius.php20298, templates/connect.php:259
    733 msgid "Yes"
    734 msgstr "Yes"
    735 
    736 #: includes/class-freemius.php20299, templates/connect.php:260
    737 msgid "send me security & feature updates, educational content and offers."
    738 msgstr "send me security & feature updates, educational content and offers."
    739 
    740 #: includes/class-freemius.php20300, templates/connect.php:265
    741 msgid "No"
    742 msgstr "No"
    743 
    744 #: includes/class-freemius.php20302, templates/connect.php:267
    745 msgid "do %sNOT%s send me security & feature updates, educational content and offers."
    746 msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
    747 
    748 #: includes/class-freemius.php:20312
    749 msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
    750 msgstr "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
    751 
    752 #: includes/class-freemius.php20314, templates/connect.php:274
    753 msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
    754 msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
    755 
    756 #: includes/class-freemius.php:20598
    757 msgid "License key is empty."
    758 msgstr "License key is empty."
    759 
    760 #: includes/class-fs-plugin-updater.php184,
    761 #: includes/class-fs-plugin-updater.php:219
    762 msgid "%sRenew your license now%s to access version %s security & feature updates, and support."
    763 msgstr "%sRenew your license now%s to access version %s security & feature updates, and support."
    764 
    765 #: includes/class-fs-plugin-updater.php:776
    766 msgid "Installing plugin: %s"
    767 msgstr "Installerer plugin: %s"
    768 
    769 #: includes/class-fs-plugin-updater.php:817
    770 msgid "Unable to connect to the filesystem. Please confirm your credentials."
    771 msgstr "Unable to connect to the filesystem. Please confirm your credentials."
    772 
    773 #: includes/class-fs-plugin-updater.php:923
    774 msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
    775 msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work."
    776 
    777 #: includes/fs-plugin-info-dialog.php336,
    778 #: templates/account/partials/addon.php:287
    779 msgctxt "verb"
    780 msgid "Purchase"
    781 msgstr "Køb"
    782 
    783 #: includes/fs-plugin-info-dialog.php:339
    784 msgid "Start my free %s"
    785 msgstr "Start min gratis %s"
    786 
    787 #: includes/fs-plugin-info-dialog.php:380
    788 msgid "Install Free Version Now"
    789 msgstr "Install Free Version Now"
    790 
    791 #: includes/fs-plugin-info-dialog.php381, templates/auto-installation.php111,
    792 #: templates/account/partials/addon.php267,
    793 #: templates/account/partials/addon.php:317
    794 msgid "Install Now"
    795 msgstr "Installer nu"
    796 
    797 #: includes/fs-plugin-info-dialog.php:392
    798 msgctxt "as download latest version"
    799 msgid "Download Latest Free Version"
    800 msgstr "Download Latest Free Version"
    801 
    802 #: includes/fs-plugin-info-dialog.php393, templates/account.php80,
    803 #: templates/account/partials/addon.php:21
    804 msgctxt "as download latest version"
    805 msgid "Download Latest"
    806 msgstr "Download seneste"
    807 
    808 #: includes/fs-plugin-info-dialog.php:403
    809 msgid "Install Free Version Update Now"
    810 msgstr "Install Free Version Update Now"
    811 
    812 #: includes/fs-plugin-info-dialog.php404, templates/account.php:448
    813 msgid "Install Update Now"
    814 msgstr "Installer opdatering nu"
    815 
    816 #: includes/fs-plugin-info-dialog.php:415
    817 msgid "Newer Free Version (%s) Installed"
    818 msgstr "Newer Free Version (%s) Installed"
    819 
    820 #: includes/fs-plugin-info-dialog.php:416
    821 msgid "Newer Version (%s) Installed"
    822 msgstr "Nyere version (%s) installeret"
    823 
    824 #: includes/fs-plugin-info-dialog.php:424
    825 msgid "Latest Free Version Installed"
    826 msgstr "Latest Free Version Installed"
    827 
    828 #: includes/fs-plugin-info-dialog.php:425
    829 msgid "Latest Version Installed"
    830 msgstr "Seneste version installeret"
    831 
    832 #: includes/fs-plugin-info-dialog.php:580
    833 msgctxt "Plugin installer section title"
    834 msgid "Description"
    835 msgstr "Beskrivelse"
    836 
    837 #: includes/fs-plugin-info-dialog.php:581
    838 msgctxt "Plugin installer section title"
    839 msgid "Installation"
    840 msgstr "Installering"
    841 
    842 #: includes/fs-plugin-info-dialog.php:582
    843 msgctxt "Plugin installer section title"
    844 msgid "FAQ"
    845 msgstr "FAQ"
    846 
    847 #: includes/fs-plugin-info-dialog.php583,
    848 #: templates/plugin-info/description.php:55
    849 msgid "Screenshots"
    850 msgstr "Skærmbilleder"
    851 
    852 #: includes/fs-plugin-info-dialog.php:584
    853 msgctxt "Plugin installer section title"
    854 msgid "Changelog"
    855 msgstr "Ændringslog"
    856 
    857 #: includes/fs-plugin-info-dialog.php:585
    858 msgctxt "Plugin installer section title"
    859 msgid "Reviews"
    860 msgstr "Anmeldelser"
    861 
    862 #: includes/fs-plugin-info-dialog.php:586
    863 msgctxt "Plugin installer section title"
    864 msgid "Other Notes"
    865 msgstr "Andre noter"
    866 
    867 #: includes/fs-plugin-info-dialog.php:601
    868 msgctxt "Plugin installer section title"
    869 msgid "Features & Pricing"
    870 msgstr "Funktioner og priser"
    871 
    872 #: includes/fs-plugin-info-dialog.php:611
    873 msgid "Plugin Install"
    874 msgstr "Plugin-installering"
    875 
    876 #: includes/fs-plugin-info-dialog.php:683
    877 msgctxt "e.g. Professional Plan"
    878 msgid "%s Plan"
    879 msgstr "%s Plan"
    880 
    881 #: includes/fs-plugin-info-dialog.php:709
    882 msgctxt "e.g. the best product"
    883 msgid "Best"
    884 msgstr "Bedste"
    885 
    886 #: includes/fs-plugin-info-dialog.php715,
    887 #: includes/fs-plugin-info-dialog.php:735
    888 msgctxt "as every month"
    889 msgid "Monthly"
    890 msgstr "Månedligt"
    891 
    892 #: includes/fs-plugin-info-dialog.php:718
    893 msgctxt "as once a year"
    894 msgid "Annual"
    895 msgstr "Årligt"
    896 
    897 #: includes/fs-plugin-info-dialog.php:721
    898 msgid "Lifetime"
    899 msgstr "Livstid"
    900 
    901 #: includes/fs-plugin-info-dialog.php735,
    902 #: includes/fs-plugin-info-dialog.php737,
    903 #: includes/fs-plugin-info-dialog.php:739
    904 msgctxt "e.g. billed monthly"
    905 msgid "Billed %s"
    906 msgstr "Faktureret %s"
    907 
    908 #: includes/fs-plugin-info-dialog.php:737
    909 msgctxt "as once a year"
    910 msgid "Annually"
    911 msgstr "Årligt"
    912 
    913 #: includes/fs-plugin-info-dialog.php:739
    914 msgctxt "as once a year"
    915 msgid "Once"
    916 msgstr "Engangsbeløb"
    917 
    918 #: includes/fs-plugin-info-dialog.php:745
    919 msgid "Single Site License"
    920 msgstr "Single Site License"
    921 
    922 #: includes/fs-plugin-info-dialog.php:747
    923 msgid "Unlimited Licenses"
    924 msgstr "Ubegrænsede licenser"
    925 
    926 #: includes/fs-plugin-info-dialog.php:749
    927 msgid "Up to %s Sites"
    928 msgstr "Op til %s websteder"
    929 
    930 #: includes/fs-plugin-info-dialog.php759,
    931 #: templates/plugin-info/features.php:82
    932 msgctxt "as monthly period"
    933 msgid "mo"
    934 msgstr "md"
    935 
    936 #: includes/fs-plugin-info-dialog.php766,
    937 #: templates/plugin-info/features.php:80
    938 msgctxt "as annual period"
    939 msgid "year"
    940 msgstr "år"
    941 
    942 #: includes/fs-plugin-info-dialog.php:820
    943 msgctxt "noun"
    944 msgid "Price"
    945 msgstr "Pris"
    946 
    947 #: includes/fs-plugin-info-dialog.php:868
    948 msgid "Save %s"
    949 msgstr "Spar %s"
    950 
    951 #: includes/fs-plugin-info-dialog.php:878
    952 msgid "No commitment for %s - cancel anytime"
    953 msgstr "Ingen bindinger ved %s - annuller når som helst"
    954 
    955 #: includes/fs-plugin-info-dialog.php:881
    956 msgid "After your free %s, pay as little as %s"
    957 msgstr "Efter din gratis %s er prisen kun %s"
    958 
    959 #: includes/fs-plugin-info-dialog.php:892
    960 msgid "Details"
    961 msgstr "Detaljer"
    962 
    963 #: includes/fs-plugin-info-dialog.php896, templates/account.php87,
    964 #: templates/debug.php191, templates/debug.php228, templates/debug.php442,
    965 #: templates/account/partials/addon.php:28
    966 msgctxt "product version"
    967 msgid "Version"
    968 msgstr "Version"
    969 
    970 #: includes/fs-plugin-info-dialog.php:903
    971 msgctxt "as the plugin author"
    972 msgid "Author"
    973 msgstr "Forfatter"
    974 
    975 #: includes/fs-plugin-info-dialog.php:910
    976 msgid "Last Updated"
    977 msgstr "Senest opdateret"
    978 
    979 #: includes/fs-plugin-info-dialog.php:915
    980 msgctxt "x-ago"
    981 msgid "%s ago"
    982 msgstr "%s siden"
    983 
    984 #: includes/fs-plugin-info-dialog.php:924
    985 msgid "Requires WordPress Version"
    986 msgstr "Kræver WordPress-version"
    987 
    988 #: includes/fs-plugin-info-dialog.php:925
    989 msgid "%s or higher"
    990 msgstr "%s eller højere"
    991 
    992 #: includes/fs-plugin-info-dialog.php:932
    993 msgid "Compatible up to"
    994 msgstr "Kompatibel op til"
    995 
    996 #: includes/fs-plugin-info-dialog.php:940
    997 msgid "Downloaded"
    998 msgstr "Downloadet"
    999 
    1000 #: includes/fs-plugin-info-dialog.php:944
    1001 msgid "%s time"
    1002 msgstr "%s gang"
    1003 
    1004 #: includes/fs-plugin-info-dialog.php:946
    1005 msgid "%s times"
    1006 msgstr "%s gange"
    1007 
    1008 #: includes/fs-plugin-info-dialog.php:956
    1009 msgid "WordPress.org Plugin Page"
    1010 msgstr "WordPress.org Plugin-side"
    1011 
    1012 #: includes/fs-plugin-info-dialog.php:964
    1013 msgid "Plugin Homepage"
    1014 msgstr "Plugin-websted"
    1015 
    1016 #: includes/fs-plugin-info-dialog.php972,
    1017 #: includes/fs-plugin-info-dialog.php:1054
    1018 msgid "Donate to this plugin"
    1019 msgstr "Donér til dette plugin"
    1020 
    1021 #: includes/fs-plugin-info-dialog.php:979
    1022 msgid "Average Rating"
    1023 msgstr "Gennemsnitlig vurdering"
    1024 
    1025 #: includes/fs-plugin-info-dialog.php:986
    1026 msgid "based on %s"
    1027 msgstr "baseret på %s"
    1028 
    1029 #: includes/fs-plugin-info-dialog.php:990
    1030 msgid "%s rating"
    1031 msgstr "%s vurdering"
    1032 
    1033 #: includes/fs-plugin-info-dialog.php:992
    1034 msgid "%s ratings"
    1035 msgstr "%s vurderinger"
    1036 
    1037 #: includes/fs-plugin-info-dialog.php:1007
    1038 msgid "%s star"
    1039 msgstr "%s stjerne"
    1040 
    1041 #: includes/fs-plugin-info-dialog.php:1009
    1042 msgid "%s stars"
    1043 msgstr "%s stjerner"
    1044 
    1045 #: includes/fs-plugin-info-dialog.php:1020
    1046 msgid "Click to see reviews that provided a rating of %s"
    1047 msgstr "Click to see reviews that provided a rating of %s"
    1048 
    1049 #: includes/fs-plugin-info-dialog.php:1033
    1050 msgid "Contributors"
    1051 msgstr "Bidragsydere"
    1052 
    1053 #: includes/fs-plugin-info-dialog.php1062,
    1054 #: includes/fs-plugin-info-dialog.php:1064
    1055 msgid "Warning"
    1056 msgstr "Advarsel"
    1057 
    1058 #: includes/fs-plugin-info-dialog.php:1062
    1059 msgid "This plugin has not been tested with your current version of WordPress."
    1060 msgstr "Dette plugin er ikke blevet testet med din nuværende version af WordPress."
    1061 
    1062 #: includes/fs-plugin-info-dialog.php:1064
    1063 msgid "This plugin has not been marked as compatible with your version of WordPress."
    1064 msgstr "This plugin has not been marked as compatible with your version of WordPress."
    1065 
    1066 #: includes/fs-plugin-info-dialog.php:1083
    1067 msgid "Paid add-on must be deployed to Freemius."
    1068 msgstr "Paid add-on must be deployed to Freemius."
    1069 
    1070 #: includes/fs-plugin-info-dialog.php:1084
    1071 msgid "Add-on must be deployed to WordPress.org or Freemius."
    1072 msgstr "Add-on must be deployed to WordPress.org or Freemius."
    1073 
    1074 #: templates/account.php81, templates/account/partials/addon.php22,
    1075 #: templates/account/partials/site.php:295
    1076 msgid "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
    1077 msgstr "Downgrading your plan will immediately stop all future recurring payments and your %s plan license will expire in %s."
    1078 
    1079 #: templates/account.php82, templates/account/partials/addon.php:23
    1080 msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?"
    1081 msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?"
    1082 
    1083 #: templates/account.php83, templates/account/partials/addon.php24,
    1084 #: templates/account/partials/site.php:296
    1085 msgid "You can still enjoy all %s features but you will not have access to %s updates and support."
    1086 msgstr "You can still enjoy all %s features but you will not have access to %s updates and support."
    1087 
    1088 #: templates/account.php84, templates/account/partials/addon.php25,
    1089 #: templates/account/partials/site.php:297
    1090 msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
    1091 msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features."
    1092 
    1093 #. translators: %s: Plan title (e.g. "Professional")
    1094 #: templates/account.php86,
    1095 #: templates/account/partials/activate-license-button.php31,
    1096 #: templates/account/partials/addon.php:27
    1097 msgid "Activate %s Plan"
    1098 msgstr "Aktiver %s plan"
    1099 
    1100 #. translators: %s: Time period (e.g. Auto renews in "2 months")
    1101 #: templates/account.php89, templates/account/partials/addon.php30,
    1102 #: templates/account/partials/site.php:275
    1103 msgid "Auto renews in %s"
    1104 msgstr "Auto-fornyer om %s"
    1105 
    1106 #. translators: %s: Time period (e.g. Expires in "2 months")
    1107 #: templates/account.php91, templates/account/partials/addon.php32,
    1108 #: templates/account/partials/site.php:277
    1109 msgid "Expires in %s"
    1110 msgstr "Udløber om %s"
    1111 
    1112 #: templates/account.php92, templates/account/partials/addon.php:33
    1113 msgctxt "as synchronize license"
    1114 msgid "Sync License"
    1115 msgstr "Synkroniser licens"
    1116 
    1117 #: templates/account.php93, templates/account/partials/addon.php:34
    1118 msgid "Cancel Trial"
    1119 msgstr "Annuller prøveperiode"
    1120 
    1121 #: templates/account.php94, templates/account/partials/addon.php:35
    1122 msgid "Change Plan"
    1123 msgstr "Skift plan"
    1124 
    1125 #: templates/account.php95, templates/account/partials/addon.php:36
    1126 msgctxt "verb"
    1127 msgid "Upgrade"
    1128 msgstr "Opgrader"
    1129 
    1130 #: templates/account.php97, templates/account/partials/addon.php38,
    1131 #: templates/account/partials/site.php:298
    1132 msgctxt "verb"
    1133 msgid "Downgrade"
    1134 msgstr "Nedgrader"
    1135 
    1136 #: templates/account.php99, templates/add-ons.php126,
    1137 #: templates/plugin-info/features.php72,
    1138 #: templates/account/partials/addon.php40,
    1139 #: templates/account/partials/site.php:31
    1140 msgid "Free"
    1141 msgstr "Gratis"
    1142 
    1143 #: templates/account.php100, templates/account/partials/addon.php:41
    1144 msgid "Activate"
    1145 msgstr "Aktiver"
    1146 
    1147 #: templates/account.php101, templates/debug.php361,
    1148 #: includes/customizer/class-fs-customizer-upsell-control.php106,
    1149 #: templates/account/partials/addon.php:42
    1150 msgctxt "as product pricing plan"
    1151 msgid "Plan"
    1152 msgstr "Plan"
    1153 
    1154 #: templates/account.php:154
    1155 msgid "Free Trial"
    1156 msgstr "Gratis prøveperiode"
    1157 
    1158 #: templates/account.php:165
    1159 msgid "Account Details"
    1160 msgstr "Kontodetaljer"
    1161 
    1162 #: templates/account.php:175
    1163 msgid "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
    1164 msgstr "Deleting the account will automatically deactivate your %s plan license so you can use it on other sites. If you want to terminate the recurring payments as well, click the \"Cancel\" button, and first \"Downgrade\" your account. Are you sure you would like to continue with the deletion?"
    1165 
    1166 #: templates/account.php:177
    1167 msgid "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
    1168 msgstr "Deletion is not temporary. Only delete if you no longer want to use this %s anymore. Are you sure you would like to continue with the deletion?"
    1169 
    1170 #: templates/account.php:180
    1171 msgid "Delete Account"
    1172 msgstr "Slet konto"
    1173 
    1174 #: templates/account.php192, templates/account/partials/addon.php155,
    1175 #: templates/account/partials/deactivate-license-button.php:35
    1176 msgid "Deactivate License"
    1177 msgstr "Deaktiver licens"
    1178 
    1179 #: templates/account.php:210
    1180 msgid "Are you sure you want to proceed?"
    1181 msgstr "Er du sikker på, du vil fortsætte?"
    1182 
    1183 #: templates/account.php210, templates/account/partials/addon.php:177
    1184 msgid "Cancel Subscription"
    1185 msgstr "Annuller abonnement"
    1186 
    1187 #: templates/account.php:239
    1188 msgctxt "as synchronize"
    1189 msgid "Sync"
    1190 msgstr "Synkroniser"
    1191 
    1192 #: templates/account.php253, templates/debug.php:477
    1193 msgid "Name"
    1194 msgstr "Navn"
    1195 
    1196 #: templates/account.php259, templates/debug.php:478
    1197 msgid "Email"
    1198 msgstr "E-mail"
    1199 
    1200 #: templates/account.php266, templates/debug.php360, templates/debug.php:516
    1201 msgid "User ID"
    1202 msgstr "Bruger-ID"
    1203 
    1204 #: templates/account.php:274
    1205 msgid "Site ID"
    1206 msgstr "Websteds-ID"
    1207 
    1208 #: templates/account.php:277
    1209 msgid "No ID"
    1210 msgstr "Intet ID"
    1211 
    1212 #: templates/account.php282, templates/debug.php233, templates/debug.php362,
    1213 #: templates/debug.php443, templates/debug.php480,
    1214 #: templates/account/partials/site.php:219
    1215 msgid "Public Key"
    1216 msgstr "Offentlig nøgle"
    1217 
    1218 #: templates/account.php288, templates/debug.php363, templates/debug.php444,
    1219 #: templates/debug.php481, templates/account/partials/site.php:231
    1220 msgid "Secret Key"
    1221 msgstr "Privat nøgle"
    1222 
    1223 #: templates/account.php:291
    1224 msgctxt "as secret encryption key missing"
    1225 msgid "No Secret"
    1226 msgstr "Ingen privat nøgle"
    1227 
    1228 #: templates/account.php310, templates/account/partials/site.php112,
    1229 #: templates/account/partials/site.php:114
    1230 msgid "Trial"
    1231 msgstr "Prøveperiode"
    1232 
    1233 #: templates/account.php329, templates/debug.php521,
    1234 #: templates/account/partials/site.php:248
    1235 msgid "License Key"
    1236 msgstr "Licensnøgle"
    1237 
    1238 #: templates/account.php:359
    1239 msgid "not verified"
    1240 msgstr "ikke verificeret"
    1241 
    1242 #: templates/account.php:416
    1243 msgid "Premium version"
    1244 msgstr "Premium version"
    1245 
    1246 #: templates/account.php:418
    1247 msgid "Free version"
    1248 msgstr "Gratis version"
    1249 
    1250 #: templates/account.php:430
    1251 msgid "Verify Email"
    1252 msgstr "Verificer e-mail"
    1253 
    1254 #: templates/account.php:441
    1255 msgid "Download %s Version"
    1256 msgstr "Download 1%s version"
    1257 
    1258 #: templates/account.php455, templates/account.php636,
    1259 #: templates/account/partials/site.php237,
    1260 #: templates/account/partials/site.php:255
    1261 msgctxt "verb"
    1262 msgid "Show"
    1263 msgstr "Vis"
    1264 
    1265 #: templates/account.php:469
    1266 msgid "What is your %s?"
    1267 msgstr "Angiv venligst %s?"
    1268 
    1269 #: templates/account.php477, templates/account/billing.php:27
    1270 msgctxt "verb"
    1271 msgid "Edit"
    1272 msgstr "Rediger"
    1273 
    1274 #: templates/account.php:490
    1275 msgid "Sites"
    1276 msgstr "Websteder"
    1277 
    1278 #: templates/account.php:501
    1279 msgid "Search by address"
    1280 msgstr "Search by address"
    1281 
    1282 #: templates/account.php510, templates/account.php558, templates/debug.php226,
    1283 #: templates/debug.php354, templates/debug.php439, templates/debug.php476,
    1284 #: templates/debug.php514, templates/debug.php587,
    1285 #: templates/account/payments.php35, templates/debug/logger.php:21
    1286 msgid "ID"
    1287 msgstr "ID"
    1288 
    1289 #: templates/account.php511, templates/debug.php:357
    1290 msgid "Address"
    1291 msgstr "Address"
    1292 
    1293 #: templates/account.php:512
    1294 msgid "License"
    1295 msgstr "Licens"
    1296 
    1297 #: templates/account.php:513
    1298 msgid "Plan"
    1299 msgstr "Plan"
    1300 
    1301 #: templates/account.php:561
    1302 msgctxt "as software license"
    1303 msgid "License"
    1304 msgstr "Licens"
    1305 
    1306 #: templates/account.php:630
    1307 msgctxt "verb"
    1308 msgid "Hide"
    1309 msgstr "Skjul"
    1310 
    1311 #: templates/account.php:665
    1312 msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
    1313 msgstr "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
    1314 
    1315 #: templates/add-ons.php:36
    1316 msgid "Add Ons for %s"
    1317 msgstr "Tilføjelser til %s"
    1318 
    1319 #: templates/add-ons.php:44
    1320 msgid "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
    1321 msgstr "We could'nt load the add-ons list. It's probably an issue on our side, please try to come back in few minutes."
    1322 
    1323 #: templates/add-ons.php:135
    1324 msgid "View details"
    1325 msgstr "Vis detaljer"
    1326 
    1327 #: templates/admin-notice.php13, templates/forms/license-activation.php208,
    1328 #: templates/forms/resend-key.php:77
    1329 msgctxt "as close a window"
    1330 msgid "Dismiss"
    1331 msgstr "Fjern"
    1332 
    1333 #: templates/auto-installation.php:45
    1334 msgid "%s sec"
    1335 msgstr "1%s sek"
    1336 
    1337 #: templates/auto-installation.php:83
    1338 msgid "Automatic Installation"
    1339 msgstr "Automatisk installering"
    1340 
    1341 #: templates/auto-installation.php:93
    1342 msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
    1343 msgstr "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
    1344 
    1345 #: templates/auto-installation.php:104
    1346 msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
    1347 msgstr "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
    1348 
    1349 #: templates/auto-installation.php:109
    1350 msgid "Cancel Installation"
    1351 msgstr "Annuller installering"
    1352 
    1353 #: templates/checkout.php:172
    1354 msgid "Checkout"
    1355 msgstr "Udtjekning"
    1356 
    1357 #: templates/checkout.php:172
    1358 msgid "PCI compliant"
    1359 msgstr "PCI compliant"
    1360 
    1361 #. translators: %s: name (e.g. Hey John,)
    1362 #: templates/connect.php:110
    1363 msgctxt "greeting"
    1364 msgid "Hey %s,"
    1365 msgstr "Hey %s,"
    1366 
    1367 #: templates/connect.php:152
    1368 msgid "Allow & Continue"
    1369 msgstr "Tillad & Fortsæt"
    1370 
    1371 #: templates/connect.php:156
    1372 msgid "Re-send activation email"
    1373 msgstr "Gensend e-mail om aktivering"
    1374 
    1375 #: templates/connect.php:160
    1376 msgid "Thanks %s!"
    1377 msgstr "Tak %s!"
    1378 
    1379 #: templates/connect.php170, templates/forms/license-activation.php:43
    1380 msgid "Agree & Activate License"
    1381 msgstr "Accepter & aktiver licens"
    1382 
    1383 #: templates/connect.php:179
    1384 msgid "Thanks for purchasing %s! To get started, please enter your license key:"
    1385 msgstr "Tak for at købe %s! For at komme i gang, venligst indtast din licensnøgle:"
    1386 
    1387 #: templates/connect.php:186
    1388 msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
    1389 msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s."
    1390 
    1391 #: templates/connect.php:187
    1392 msgid "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
    1393 msgstr "Never miss an important update - opt in to our security and feature updates notifications, and non-sensitive diagnostic tracking with %4$s."
    1394 
    1395 #: templates/connect.php:193
    1396 msgid "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
    1397 msgstr "Never miss an important update - opt in to our security & feature updates notifications, educational content, offers, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
    1398 
    1399 #: templates/connect.php:194
    1400 msgid "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
    1401 msgstr "Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking with %4$s. If you skip this, that's okay! %1$s will still work just fine."
    1402 
    1403 #: templates/connect.php:228
    1404 msgid "We're excited to introduce the Freemius network-level integration."
    1405 msgstr "We're excited to introduce the Freemius network-level integration."
    1406 
    1407 #: templates/connect.php:231
    1408 msgid "During the update process we detected %d site(s) that are still pending license activation."
    1409 msgstr "During the update process we detected %d site(s) that are still pending license activation."
    1410 
    1411 #: templates/connect.php:233
    1412 msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
    1413 msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
    1414 
    1415 #: templates/connect.php:235
    1416 msgid "%s's paid features"
    1417 msgstr "%s's paid features"
    1418 
    1419 #: templates/connect.php:240
    1420 msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
    1421 msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page."
    1422 
    1423 #: templates/connect.php:242
    1424 msgid "During the update process we detected %s site(s) in the network that are still pending your attention."
    1425 msgstr "During the update process we detected %s site(s) in the network that are still pending your attention."
    1426 
    1427 #: templates/connect.php251, templates/forms/license-activation.php:46
    1428 msgid "License key"
    1429 msgstr "Licensnøgle"
    1430 
    1431 #: templates/connect.php254, templates/forms/license-activation.php:19
    1432 msgid "Can't find your license key?"
    1433 msgstr "Kan du ikke finde din licensnøgle?"
    1434 
    1435 #: templates/connect.php302, templates/connect.php617,
    1436 #: templates/forms/deactivation/retry-skip.php:20
    1437 msgctxt "verb"
    1438 msgid "Skip"
    1439 msgstr "Spring over"
    1440 
    1441 #: templates/connect.php:305
    1442 msgid "Delegate to Site Admins"
    1443 msgstr "Delegate to Site Admins"
    1444 
    1445 #: templates/connect.php:305
    1446 msgid "If you click it, this decision will be delegated to the sites administrators."
    1447 msgstr "If you click it, this decision will be delegated to the sites administrators."
    1448 
    1449 #: templates/connect.php:333
    1450 msgid "Your Profile Overview"
    1451 msgstr "Overblik af din profil"
    1452 
    1453 #: templates/connect.php:334
    1454 msgid "Name and email address"
    1455 msgstr "Navn og e-mailadresse"
    1456 
    1457 #: templates/connect.php:339
    1458 msgid "Your Site Overview"
    1459 msgstr "Overblik af dit websted"
    1460 
    1461 #: templates/connect.php:340
    1462 msgid "Site URL, WP version, PHP info, plugins & themes"
    1463 msgstr "Websteds-URL, WP version, PHP info, plugins og temaer"
    1464 
    1465 #: templates/connect.php:345
    1466 msgid "Admin Notices"
    1467 msgstr "Admin-meddelelser"
    1468 
    1469 #: templates/connect.php346, templates/connect.php:362
    1470 msgid "Updates, announcements, marketing, no spam"
    1471 msgstr "Updates, announcements, marketing, no spam"
    1472 
    1473 #: templates/connect.php:351
    1474 msgid "Current %s Events"
    1475 msgstr "Current %s Events"
    1476 
    1477 #: templates/connect.php:352
    1478 msgid "Activation, deactivation and uninstall"
    1479 msgstr "Aktivering, deaktivering og afinstallering"
    1480 
    1481 #: templates/connect.php:361
    1482 msgid "Newsletter"
    1483 msgstr "Nyhedsbrev"
    1484 
    1485 #: templates/connect.php378, templates/forms/license-activation.php:38
    1486 msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
    1487 msgstr "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
    1488 
    1489 #: templates/connect.php:383
    1490 msgid "What permissions are being granted?"
    1491 msgstr "Hvilke tilladelser bliver givet?"
    1492 
    1493 #: templates/connect.php:404
    1494 msgid "Don't have a license key?"
    1495 msgstr "Har du ikke en licensnøgle?"
    1496 
    1497 #: templates/connect.php:405
    1498 msgid "Activate Free Version"
    1499 msgstr "Aktiver gratis version"
    1500 
    1501 #: templates/connect.php:407
    1502 msgid "Have a license key?"
    1503 msgstr "Har du en licensnøgle?"
    1504 
    1505 #: templates/connect.php:415
    1506 msgid "Privacy Policy"
    1507 msgstr "Privatlivspolitik"
    1508 
    1509 #: templates/connect.php:417
    1510 msgid "Terms of Service"
    1511 msgstr "Servicevilkår"
    1512 
    1513 #: templates/connect.php:750
    1514 msgctxt "as in the process of sending an email"
    1515 msgid "Sending email"
    1516 msgstr "Sender e-mail"
    1517 
    1518 #: templates/connect.php:751
    1519 msgctxt "as activating plugin"
    1520 msgid "Activating"
    1521 msgstr "Aktiverer"
    1522 
    1523 #: templates/contact.php:78
    1524 msgid "Contact"
    1525 msgstr "Kontakt"
    1526 
    1527 #: templates/debug.php:17
    1528 msgctxt "as turned off"
    1529 msgid "Off"
    1530 msgstr "Fra"
    1531 
    1532 #: templates/debug.php:18
    1533 msgctxt "as turned on"
    1534 msgid "On"
    1535 msgstr "Til"
    1536 
    1537 #: templates/debug.php:20
    1538 msgid "SDK"
    1539 msgstr "SDK"
    1540 
    1541 #: templates/debug.php:24
    1542 msgctxt "as code debugging"
    1543 msgid "Debugging"
    1544 msgstr "Fejlfinding"
    1545 
    1546 #: templates/debug.php54, templates/debug.php238, templates/debug.php364,
    1547 #: templates/debug.php:482
    1548 msgid "Actions"
    1549 msgstr "Handlinger"
    1550 
    1551 #: templates/debug.php:64
    1552 msgid "Are you sure you want to delete all Freemius data?"
    1553 msgstr "Er du sikker på, du vil slette al Freemius data?"
    1554 
    1555 #: templates/debug.php:64
    1556 msgid "Delete All Accounts"
    1557 msgstr "Slet alle konti"
    1558 
    1559 #: templates/debug.php:71
    1560 msgid "Clear API Cache"
    1561 msgstr "Ryd API-cache"
    1562 
    1563 #: templates/debug.php:79
    1564 msgid "Clear Updates Transients"
    1565 msgstr "Clear Updates Transients"
    1566 
    1567 #: templates/debug.php:86
    1568 msgid "Sync Data From Server"
    1569 msgstr "Synkroniser data fra server"
    1570 
    1571 #: templates/debug.php:90
    1572 msgid "Load DB Option"
    1573 msgstr "Hent DB-indstilling"
    1574 
    1575 #: templates/debug.php:93
    1576 msgid "Set DB Option"
    1577 msgstr "Sæt DB-indstilling"
    1578 
    1579 #: templates/debug.php:170
    1580 msgid "Key"
    1581 msgstr "Nøgle"
    1582 
    1583 #: templates/debug.php:171
    1584 msgid "Value"
    1585 msgstr "Værdi"
    1586 
    1587 #: templates/debug.php:187
    1588 msgctxt "as software development kit versions"
    1589 msgid "SDK Versions"
    1590 msgstr "SDK-versioner"
    1591 
    1592 #: templates/debug.php:192
    1593 msgid "SDK Path"
    1594 msgstr "SDK-sti"
    1595 
    1596 #: templates/debug.php193, templates/debug.php:232
    1597 msgid "Module Path"
    1598 msgstr "Modul-sti"
    1599 
    1600 #: templates/debug.php:194
    1601 msgid "Is Active"
    1602 msgstr "Er aktiv"
    1603 
    1604 #: templates/debug.php222, templates/debug/plugins-themes-sync.php:35
    1605 msgid "Plugins"
    1606 msgstr "Plugins"
    1607 
    1608 #: templates/debug.php222, templates/debug/plugins-themes-sync.php:56
    1609 msgid "Themes"
    1610 msgstr "Temaer"
    1611 
    1612 #: templates/debug.php227, templates/debug.php359, templates/debug.php441,
    1613 #: templates/debug/scheduled-crons.php:80
    1614 msgid "Slug"
    1615 msgstr "Kortnavn"
    1616 
    1617 #: templates/debug.php229, templates/debug.php:440
    1618 msgid "Title"
    1619 msgstr "Titel"
    1620 
    1621 #: templates/debug.php:230
    1622 msgctxt "as application program interface"
    1623 msgid "API"
    1624 msgstr "API"
    1625 
    1626 #: templates/debug.php:231
    1627 msgid "Freemius State"
    1628 msgstr "Freemius tilstand"
    1629 
    1630 #: templates/debug.php:235
    1631 msgid "Network Blog"
    1632 msgstr "Network Blog"
    1633 
    1634 #: templates/debug.php:236
    1635 msgid "Network User"
    1636 msgstr "Network User"
    1637 
    1638 #: templates/debug.php:273
    1639 msgctxt "as connection was successful"
    1640 msgid "Connected"
    1641 msgstr "Forbundet"
    1642 
    1643 #: templates/debug.php:274
    1644 msgctxt "as connection blocked"
    1645 msgid "Blocked"
    1646 msgstr "Blokeret"
    1647 
    1648 #: templates/debug.php:310
    1649 msgid "Simulate Trial"
    1650 msgstr "Simuler prøveperiode"
    1651 
    1652 #: templates/debug.php:322
    1653 msgid "Simulate Network Upgrade"
    1654 msgstr "Simulate Network Upgrade"
    1655 
    1656 #: templates/debug.php:348
    1657 msgid "%s Installs"
    1658 msgstr "%s installeringer"
    1659 
    1660 #: templates/debug.php:350
    1661 msgctxt "like websites"
    1662 msgid "Sites"
    1663 msgstr "Websteder"
    1664 
    1665 #: templates/debug.php356, templates/account/partials/site.php:148
    1666 msgid "Blog ID"
    1667 msgstr "Blog ID"
    1668 
    1669 #: templates/debug.php421, templates/debug.php499,
    1670 #: templates/account/partials/addon.php:334
    1671 msgctxt "verb"
    1672 msgid "Delete"
    1673 msgstr "Slet"
    1674 
    1675 #: templates/debug.php:435
    1676 msgid "Add Ons of module %s"
    1677 msgstr "Tilføjelser til modul %s"
    1678 
    1679 #: templates/debug.php:472
    1680 msgid "Users"
    1681 msgstr "Brugere"
    1682 
    1683 #: templates/debug.php:479
    1684 msgid "Verified"
    1685 msgstr "Verificeret"
    1686 
    1687 #: templates/debug.php:510
    1688 msgid "%s Licenses"
    1689 msgstr "1%s licenser"
    1690 
    1691 #: templates/debug.php:515
    1692 msgid "Plugin ID"
    1693 msgstr "Plugin-ID"
    1694 
    1695 #: templates/debug.php:517
    1696 msgid "Plan ID"
    1697 msgstr "Plan-ID"
    1698 
    1699 #: templates/debug.php:518
    1700 msgid "Quota"
    1701 msgstr "Kvote"
    1702 
    1703 #: templates/debug.php:519
    1704 msgid "Activated"
    1705 msgstr "Aktiveret"
    1706 
    1707 #: templates/debug.php:520
    1708 msgid "Blocking"
    1709 msgstr "Blokerer"
    1710 
    1711 #: templates/debug.php:522
    1712 msgctxt "as expiration date"
    1713 msgid "Expiration"
    1714 msgstr "Udløber"
    1715 
    1716 #: templates/debug.php:545
    1717 msgid "Debug Log"
    1718 msgstr "Fejlfindingslog"
    1719 
    1720 #: templates/debug.php:549
    1721 msgid "All Types"
    1722 msgstr "Alle typer"
    1723 
    1724 #: templates/debug.php:556
    1725 msgid "All Requests"
    1726 msgstr "Alle forespørgsler"
    1727 
    1728 #: templates/debug.php561, templates/debug.php590,
    1729 #: templates/debug/logger.php:25
    1730 msgid "File"
    1731 msgstr "Fil"
    1732 
    1733 #: templates/debug.php562, templates/debug.php588,
    1734 #: templates/debug/logger.php:23
    1735 msgid "Function"
    1736 msgstr "Funktion"
    1737 
    1738 #: templates/debug.php:563
    1739 msgid "Process ID"
    1740 msgstr "Proces-ID"
    1741 
    1742 #: templates/debug.php:564
    1743 msgid "Logger"
    1744 msgstr "Logger"
    1745 
    1746 #: templates/debug.php565, templates/debug.php589,
    1747 #: templates/debug/logger.php:24
    1748 msgid "Message"
    1749 msgstr "Besked"
    1750 
    1751 #: templates/debug.php:567
    1752 msgid "Filter"
    1753 msgstr "Filter"
    1754 
    1755 #: templates/debug.php:575
    1756 msgid "Download"
    1757 msgstr "Download"
    1758 
    1759 #: templates/debug.php586, templates/debug/logger.php:22
    1760 msgid "Type"
    1761 msgstr "Type"
    1762 
    1763 #: templates/debug.php591, templates/debug/logger.php:26
    1764 msgid "Timestamp"
    1765 msgstr "Timestamp"
    1766 
    1767 #: templates/secure-https-header.php:28
    1768 msgid "Secure HTTPS %s page, running from an external domain"
    1769 msgstr "Secure HTTPS %s page, running from an external domain"
    1770 
    1771 #: includes/customizer/class-fs-customizer-support-section.php55,
    1772 #: templates/plugin-info/features.php:43
    1773 msgid "Support"
    1774 msgstr "Support"
    1775 
    1776 #: includes/debug/class-fs-debug-bar-panel.php48,
    1777 #: templates/debug/api-calls.php54, templates/debug/logger.php:62
    1778 msgctxt "milliseconds"
    1779 msgid "ms"
    1780 msgstr "ms"
    1781 
    1782 #: includes/debug/debug-bar-start.php:41
    1783 msgid "Freemius API"
    1784 msgstr "Freemius API"
    1785 
    1786 #: includes/debug/debug-bar-start.php:42
    1787 msgid "Requests"
    1788 msgstr "Requests"
    1789 
    1790 #: templates/account/billing.php:28
    1791 msgctxt "verb"
    1792 msgid "Update"
    1793 msgstr "Opdater"
    1794 
    1795 #: templates/account/billing.php:39
    1796 msgid "Billing"
    1797 msgstr "Betaling"
    1798 
    1799 #: templates/account/billing.php44, templates/account/billing.php:44
    1800 msgid "Business name"
    1801 msgstr "Firmanavn"
    1802 
    1803 #: templates/account/billing.php45, templates/account/billing.php:45
    1804 msgid "Tax / VAT ID"
    1805 msgstr "Moms / VAT ID"
    1806 
    1807 #: templates/account/billing.php48, templates/account/billing.php48,
    1808 #: templates/account/billing.php49, templates/account/billing.php:49
    1809 msgid "Address Line %d"
    1810 msgstr "Adresselinje %d"
    1811 
    1812 #: templates/account/billing.php52, templates/account/billing.php:52
    1813 msgid "City"
    1814 msgstr "By"
    1815 
    1816 #: templates/account/billing.php52, templates/account/billing.php:52
    1817 msgid "Town"
    1818 msgstr "By"
    1819 
    1820 #: templates/account/billing.php53, templates/account/billing.php:53
    1821 msgid "ZIP / Postal Code"
    1822 msgstr "ZIP / Postnummer"
    1823 
    1824 #: templates/account/billing.php:308
    1825 msgid "Country"
    1826 msgstr "Land"
    1827 
    1828 #: templates/account/billing.php:310
    1829 msgid "Select Country"
    1830 msgstr "Vælg land"
    1831 
    1832 #: templates/account/billing.php317, templates/account/billing.php:318
    1833 msgid "State"
    1834 msgstr "Stat"
    1835 
    1836 #: templates/account/billing.php317, templates/account/billing.php:318
    1837 msgid "Province"
    1838 msgstr "Provins"
    1839 
    1840 #: templates/account/payments.php:29
    1841 msgid "Payments"
    1842 msgstr "Betalinger"
    1843 
    1844 #: templates/account/payments.php:36
    1845 msgid "Date"
    1846 msgstr "Dato"
    1847 
    1848 #: templates/account/payments.php:37
    1849 msgid "Amount"
    1850 msgstr "Beløb"
    1851 
    1852 #: templates/account/payments.php38, templates/account/payments.php:50
    1853 msgid "Invoice"
    1854 msgstr "Faktura"
    1855 
    1856 #: templates/debug/api-calls.php:56
    1857 msgid "API"
    1858 msgstr "API"
    1859 
    1860 #: templates/debug/api-calls.php:68
    1861 msgid "Method"
    1862 msgstr "Metode"
    1863 
    1864 #: templates/debug/api-calls.php:69
    1865 msgid "Code"
    1866 msgstr "Kode"
    1867 
    1868 #: templates/debug/api-calls.php:70
    1869 msgid "Length"
    1870 msgstr "Længde"
    1871 
    1872 #: templates/debug/api-calls.php:71
    1873 msgctxt "as file/folder path"
    1874 msgid "Path"
    1875 msgstr "Sti"
    1876 
    1877 #: templates/debug/api-calls.php:73
    1878 msgid "Body"
    1879 msgstr "Body"
    1880 
    1881 #: templates/debug/api-calls.php:75
    1882 msgid "Result"
    1883 msgstr "Resultat"
    1884 
    1885 #: templates/debug/api-calls.php:76
    1886 msgid "Start"
    1887 msgstr "Start"
    1888 
    1889 #: templates/debug/api-calls.php:77
    1890 msgid "End"
    1891 msgstr "Slut"
    1892 
    1893 #: templates/debug/logger.php:15
    1894 msgid "Log"
    1895 msgstr "Log"
    1896 
    1897 #. translators: %s: time period (e.g. In "2 hours")
    1898 #: templates/debug/plugins-themes-sync.php18,
    1899 #: templates/debug/scheduled-crons.php:91
    1900 msgid "In %s"
    1901 msgstr "Om %s"
    1902 
    1903 #. translators: %s: time period (e.g. "2 hours" ago)
    1904 #: templates/debug/plugins-themes-sync.php20,
    1905 #: templates/debug/scheduled-crons.php:93
    1906 msgid "%s ago"
    1907 msgstr "%s siden"
    1908 
    1909 #: templates/debug/plugins-themes-sync.php21,
    1910 #: templates/debug/scheduled-crons.php:74
    1911 msgctxt "seconds"
    1912 msgid "sec"
    1913 msgstr "sek"
    1914 
    1915 #: templates/debug/plugins-themes-sync.php:23
    1916 msgid "Plugins & Themes Sync"
    1917 msgstr "Synkronisering af plugins og temaer"
    1918 
    1919 #: templates/debug/plugins-themes-sync.php:28
    1920 msgid "Total"
    1921 msgstr "Total"
    1922 
    1923 #: templates/debug/plugins-themes-sync.php29,
    1924 #: templates/debug/scheduled-crons.php:84
    1925 msgid "Last"
    1926 msgstr "Sidste"
    1927 
    1928 #: templates/debug/scheduled-crons.php:76
    1929 msgid "Scheduled Crons"
    1930 msgstr "Planlagte cron jobs"
    1931 
    1932 #: templates/debug/scheduled-crons.php:81
    1933 msgid "Module"
    1934 msgstr "Modul"
    1935 
    1936 #: templates/debug/scheduled-crons.php:82
    1937 msgid "Module Type"
    1938 msgstr "Modultype"
    1939 
    1940 #: templates/debug/scheduled-crons.php:83
    1941 msgid "Cron Type"
    1942 msgstr "Cron Type"
    1943 
    1944 #: templates/debug/scheduled-crons.php:85
    1945 msgid "Next"
    1946 msgstr "Næste"
    1947 
    1948 #: templates/forms/affiliation.php:82
    1949 msgid "Non-expiring"
    1950 msgstr "Udløber ikke"
    1951 
    1952 #: templates/forms/affiliation.php:85
    1953 msgid "Apply to become an affiliate"
    1954 msgstr "Apply to become an affiliate"
    1955 
    1956 #: templates/forms/affiliation.php:104
    1957 msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
    1958 msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s."
    1959 
    1960 #: templates/forms/affiliation.php:119
    1961 msgid "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
    1962 msgstr "Thank you for applying for our affiliate program, we'll review your details during the next 14 days and will get back to you with further information."
    1963 
    1964 #: templates/forms/affiliation.php:122
    1965 msgid "Your affiliation account was temporarily suspended."
    1966 msgstr "Your affiliation account was temporarily suspended."
    1967 
    1968 #: templates/forms/affiliation.php:125
    1969 msgid "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
    1970 msgstr "Thank you for applying for our affiliate program, unfortunately, we've decided at this point to reject your application. Please try again in 30 days."
    1971 
    1972 #: templates/forms/affiliation.php:128
    1973 msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
    1974 msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support."
    1975 
    1976 #: templates/forms/affiliation.php:141
    1977 msgid "Like the %s? Become our ambassador and earn cash ;-)"
    1978 msgstr "Like the %s? Become our ambassador and earn cash ;-)"
    1979 
    1980 #: templates/forms/affiliation.php:142
    1981 msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
    1982 msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
    1983 
    1984 #: templates/forms/affiliation.php:145
    1985 msgid "Program Summary"
    1986 msgstr "Program Summary"
    1987 
    1988 #: templates/forms/affiliation.php:147
    1989 msgid "%s commission when a customer purchases a new license."
    1990 msgstr "%s commission when a customer purchases a new license."
    1991 
    1992 #: templates/forms/affiliation.php:149
    1993 msgid "Get commission for automated subscription renewals."
    1994 msgstr "Get commission for automated subscription renewals."
    1995 
    1996 #: templates/forms/affiliation.php:152
    1997 msgid "%s tracking cookie after the first visit to maximize earnings potential."
    1998 msgstr "%s tracking cookie after the first visit to maximize earnings potential."
    1999 
    2000 #: templates/forms/affiliation.php:155
    2001 msgid "Unlimited commissions."
    2002 msgstr "Unlimited commissions."
    2003 
    2004 #: templates/forms/affiliation.php:157
    2005 msgid "%s minimum payout amount."
    2006 msgstr "%s minimum payout amount."
    2007 
    2008 #: templates/forms/affiliation.php:158
    2009 msgid "Payouts are in USD and processed monthly via PayPal."
    2010 msgstr "Payouts are in USD and processed monthly via PayPal."
    2011 
    2012 #: templates/forms/affiliation.php:159
    2013 msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
    2014 msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days."
    2015 
    2016 #: templates/forms/affiliation.php:162
    2017 msgid "Affiliate"
    2018 msgstr "Affiliate"
    2019 
    2020 #: templates/forms/affiliation.php165, templates/forms/resend-key.php:23
    2021 msgid "Email address"
    2022 msgstr "E-mailadresse"
    2023 
    2024 #: templates/forms/affiliation.php:169
    2025 msgid "Full name"
    2026 msgstr "Fulde navn"
    2027 
    2028 #: templates/forms/affiliation.php:173
    2029 msgid "PayPal account email address"
    2030 msgstr "E-mailadresse til PayPal-konto"
    2031 
    2032 #: templates/forms/affiliation.php:177
    2033 msgid "Where are you going to promote the %s?"
    2034 msgstr "Where are you going to promote the %s?"
    2035 
    2036 #: templates/forms/affiliation.php:179
    2037 msgid "Enter the domain of your website or other websites from where you plan to promote the %s."
    2038 msgstr "Enter the domain of your website or other websites from where you plan to promote the %s."
    2039 
    2040 #: templates/forms/affiliation.php:181
    2041 msgid "Add another domain"
    2042 msgstr "Tilføj andet domæne"
    2043 
    2044 #: templates/forms/affiliation.php:185
    2045 msgid "Extra Domains"
    2046 msgstr "Ekstra domæner"
    2047 
    2048 #: templates/forms/affiliation.php:186
    2049 msgid "Extra domains where you will be marketing the product from."
    2050 msgstr "Extra domains where you will be marketing the product from."
    2051 
    2052 #: templates/forms/affiliation.php:196
    2053 msgid "Promotion methods"
    2054 msgstr "Promotion methods"
    2055 
    2056 #: templates/forms/affiliation.php:199
    2057 msgid "Social media (Facebook, Twitter, etc.)"
    2058 msgstr "Social media (Facebook, Twitter, etc.)"
    2059 
    2060 #: templates/forms/affiliation.php:203
    2061 msgid "Mobile apps"
    2062 msgstr "Mobile apps"
    2063 
    2064 #: templates/forms/affiliation.php:207
    2065 msgid "Website, email, and social media statistics (optional)"
    2066 msgstr "Website, email, and social media statistics (optional)"
    2067 
    2068 #: templates/forms/affiliation.php:210
    2069 msgid "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
    2070 msgstr "Please feel free to provide any relevant website or social media statistics, e.g. monthly unique site visits, number of email subscribers, followers, etc. (we will keep this information confidential)."
    2071 
    2072 #: templates/forms/affiliation.php:214
    2073 msgid "How will you promote us?"
    2074 msgstr "How will you promote us?"
    2075 
    2076 #: templates/forms/affiliation.php:217
    2077 msgid "Please provide details on how you intend to promote %s (please be as specific as possible)."
    2078 msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)."
    2079 
    2080 #: templates/forms/affiliation.php223, templates/forms/resend-key.php:22
    2081 msgid "Cancel"
    2082 msgstr "Annuller"
    2083 
    2084 #: templates/forms/affiliation.php:225
    2085 msgid "Become an affiliate"
    2086 msgstr "Become an affiliate"
    2087 
    2088 #: templates/forms/license-activation.php:20
    2089 msgid "Please enter the license key that you received in the email right after the purchase:"
    2090 msgstr "Please enter the license key that you received in the email right after the purchase:"
    2091 
    2092 #: templates/forms/license-activation.php:25
    2093 msgid "Update License"
    2094 msgstr "Opdater licens"
    2095 
    2096 #: templates/forms/optout.php:30
    2097 msgctxt "verb"
    2098 msgid "Opt Out"
    2099 msgstr "Frameld"
    2100 
    2101 #: templates/forms/optout.php:31
    2102 msgctxt "verb"
    2103 msgid "Opt In"
    2104 msgstr "Tilmeld"
    2105 
    2106 #: templates/forms/optout.php:33
    2107 msgid "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider letting us continue with the tracking."
    2108 msgstr "Usage tracking is done in the name of making %s better. Making a better user experience, prioritizing new features, and more good things. We'd really appreciate if you'll reconsider letting us continue with the tracking."
    2109 
    2110 #: templates/forms/optout.php:35
    2111 msgid "By clicking \"Opt Out\", we will no longer be sending any data from %s to %s."
    2112 msgstr "Ved at klikke \"Frameld\" vil vi ikke længere sende data fra %s til %s."
    2113 
    2114 #: templates/forms/premium-versions-upgrade-handler.php:24
    2115 msgid "There is a new version of %s available."
    2116 msgstr "There is a new version of %s available."
    2117 
    2118 #: templates/forms/premium-versions-upgrade-handler.php:25
    2119 msgid " %sRenew your license now%s to access version %s security & feature updates, and support."
    2120 msgstr " %sRenew your license now%s to access version %s security & feature updates, and support."
    2121 
    2122 #: templates/forms/premium-versions-upgrade-handler.php:34
    2123 msgid "New Version Available"
    2124 msgstr "New Version Available"
    2125 
    2126 #: templates/forms/premium-versions-upgrade-handler.php:36
    2127 msgid "Renew license"
    2128 msgstr "Renew license"
    2129 
    2130 #: templates/forms/premium-versions-upgrade-handler.php:53
    2131 msgctxt "close a window"
    2132 msgid "Dismiss"
    2133 msgstr "Fjern"
    2134 
    2135 #: templates/forms/resend-key.php:21
    2136 msgid "Send License Key"
    2137 msgstr "Send licensnøgle"
    2138 
    2139 #: templates/forms/resend-key.php:57
    2140 msgid "Enter the email address you've used for the upgrade below and we will resend you the license key."
    2141 msgstr "Enter the email address you've used for the upgrade below and we will resend you the license key."
    2142 
    2143 #: templates/forms/trial-start.php:22
    2144 msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan."
    2145 msgstr "Du er 1 klik fra at begynde din %1$s dages gratis prøveperiode af planen %2$s."
    2146 
    2147 #: templates/forms/trial-start.php:28
    2148 msgid "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
    2149 msgstr "For compliance with the WordPress.org guidelines, before we start the trial we ask that you opt in with your user and non-sensitive site information, allowing the %s to periodically send data to %s to check for version updates and to validate your trial."
    2150 
    2151 #: templates/js/style-premium-theme.php:37
    2152 msgid "Premium"
    2153 msgstr "Premium"
    2154 
    2155 #: templates/partials/network-activation.php:23
    2156 msgid "Activate license on all sites in the network."
    2157 msgstr "Activate license on all sites in the network."
    2158 
    2159 #: templates/partials/network-activation.php:24
    2160 msgid "Apply on all sites in the network."
    2161 msgstr "Apply on all sites in the network."
    2162 
    2163 #: templates/partials/network-activation.php:27
    2164 msgid "Activate license on all pending sites."
    2165 msgstr "Activate license on all pending sites."
    2166 
    2167 #: templates/partials/network-activation.php:28
    2168 msgid "Apply on all pending sites."
    2169 msgstr "Apply on all pending sites."
    2170 
    2171 #: templates/partials/network-activation.php36,
    2172 #: templates/partials/network-activation.php:68
    2173 msgid "allow"
    2174 msgstr "allow"
    2175 
    2176 #: templates/partials/network-activation.php38,
    2177 #: templates/partials/network-activation.php:70
    2178 msgid "delegate"
    2179 msgstr "delegate"
    2180 
    2181 #: templates/partials/network-activation.php41,
    2182 #: templates/partials/network-activation.php:73
    2183 msgid "skip"
    2184 msgstr "skip"
    2185 
    2186 #: templates/plugin-info/description.php72,
    2187 #: templates/plugin-info/screenshots.php:31
    2188 msgid "Click to view full-size screenshot %d"
    2189 msgstr "Click to view full-size screenshot %d"
    2190 
    2191 #: templates/plugin-info/features.php:56
    2192 msgid "Unlimited Updates"
    2193 msgstr "Ubegrænsede opdateringer"
    2194 
    2195 #: templates/account/partials/activate-license-button.php:46
    2196 msgid "Localhost"
    2197 msgstr "Localhost"
    2198 
    2199 #: templates/account/partials/activate-license-button.php:50
    2200 msgctxt "as 5 licenses left"
    2201 msgid "%s left"
    2202 msgstr "%s tilbage"
    2203 
    2204 #: templates/account/partials/activate-license-button.php:51
    2205 msgid "Last license"
    2206 msgstr "Seneste license"
    2207 
    2208 #: templates/account/partials/addon.php:111
    2209 msgid "Cancelled"
    2210 msgstr "Annulleret"
    2211 
    2212 #: templates/account/partials/addon.php:116
    2213 msgid "Expired"
    2214 msgstr "Udløbet"
    2215 
    2216 #: templates/account/partials/addon.php:121
    2217 msgid "No expiration"
    2218 msgstr "Udløber ikke"
    2219 
    2220 #: templates/account/partials/addon.php259,
    2221 #: templates/account/partials/addon.php:312
    2222 msgid "Activate this add-on"
    2223 msgstr "Aktiver denne tilføjelse"
    2224 
    2225 #: templates/account/partials/site.php:181
    2226 msgid "Owner Name"
    2227 msgstr "Owner Name"
    2228 
    2229 #: templates/account/partials/site.php:193
    2230 msgid "Owner Email"
    2231 msgstr "Owner Email"
    2232 
    2233 #: templates/account/partials/site.php:205
    2234 msgid "Owner ID"
    2235 msgstr "Owner ID"
    2236 
    2237 #: templates/account/partials/site.php:270
    2238 msgid "Subscription"
    2239 msgstr "Subscription"
    2240 
    2241 #: templates/forms/deactivation/contact.php:19
    2242 msgid "Sorry for the inconvenience and we are here to help if you give us a chance."
    2243 msgstr "Vi beklager ulejligheden, og vi er her for at hjælpe, hvis du giver os chancen."
    2244 
    2245 #: templates/forms/deactivation/contact.php:22
    2246 msgid "Contact Support"
    2247 msgstr "Kontakt support"
    2248 
    2249 #: templates/forms/deactivation/form.php:56
    2250 msgid "Anonymous feedback"
    2251 msgstr "Anonym feedback"
    2252 
    2253 #: templates/forms/deactivation/form.php:63
    2254 msgid "Deactivate"
    2255 msgstr "Deaktiver"
    2256 
    2257 #: templates/forms/deactivation/form.php:65
    2258 msgid "Activate %s"
    2259 msgstr "Aktiver %s"
    2260 
    2261 #: templates/forms/deactivation/form.php:76
    2262 msgid "Quick feedback"
    2263 msgstr "Hurtig feedback"
    2264 
    2265 #: templates/forms/deactivation/form.php:80
    2266 msgid "If you have a moment, please let us know why you are %s"
    2267 msgstr "Hvis du har tid, så lad os venligst vide hvorfor du %s"
    2268 
    2269 #: templates/forms/deactivation/form.php:80
    2270 msgid "deactivating"
    2271 msgstr "deaktiverer"
    2272 
    2273 #: templates/forms/deactivation/form.php:80
    2274 msgid "switching"
    2275 msgstr "skifter"
    2276 
    2277 #: templates/forms/deactivation/form.php:269
    2278 msgid "Submit & %s"
    2279 msgstr "Send & %s"
    2280 
    2281 #: templates/forms/deactivation/form.php:290
    2282 msgid "Kindly tell us the reason so we can improve."
    2283 msgstr "Fortæl os venligst årsagen, så vi kan forbedre det."
    2284 
    2285 #: templates/forms/deactivation/form.php:411
    2286 msgid "Yes - %s"
    2287 msgstr "Ja - %s"
    2288 
    2289 #: templates/forms/deactivation/form.php:418
    2290 msgid "Skip & %s"
    2291 msgstr "Spring over & %s"
    2292 
    2293 #: templates/forms/deactivation/retry-skip.php:21
    2294 msgid "Click here to use the plugin anonymously"
    2295 msgstr "Klik her for at benytte pluginnet anonymt"
    2296 
    2297 #: templates/forms/deactivation/retry-skip.php:23
    2298 msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in."
    2299 msgstr "You might have missed it, but you don't have to share any data and can just %s the opt-in."
     6"PO-Revision-Date: \n"
     7"Last-Translator: \n"
     8"Language: \n"
     9"Language-Team: \n"
     10"Content-Type: \n"
     11"Content-Transfer-Encoding: \n"
     12"Plural-Forms: \n"
  • basepress/trunk/freemius/languages/freemius-he_IL.po

    r1882707 r1892870  
    33# Translators:
    44# Rami Yushuvaev <r_a_m_i@hotmail.com>, 2017
    5 # Vova Feldman <vova@freemius.com>, 2017
     5# Vova Feldman <vova@freemius.com>, 2017-2018
    66msgid ""
    77msgstr ""
     
    99"Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
    1010"POT-Creation-Date: \n"
    11 "PO-Revision-Date: 2018-05-24 11:59+0000\n"
     11"PO-Revision-Date: 2018-05-27 16:16+0000\n"
    1212"Last-Translator: Vova Feldman <vova@freemius.com>\n"
    1313"Language: he_IL\n"
     
    3333#: includes/class-freemius.php:1871
    3434msgid "I found a better %s"
    35 msgstr "I found a better %s"
     35msgstr "מצאתי %s יותר טוב"
    3636
    3737#: includes/class-freemius.php:1873
     
    184184msgctxt ""
    185185msgid "W00t"
    186 msgstr "W00t"
     186msgstr "יש"
    187187
    188188#: includes/class-freemius.php:4842
     
    383383msgctxt ""
    384384msgid "Hmm"
    385 msgstr "Hmm"
     385msgstr "אממ"
    386386
    387387#: includes/class-freemius.php:16652
     
    429429#: includes/class-freemius.php:16751
    430430msgid "Your free trial has expired. You can still continue using all our free features."
    431 msgstr "Your free trial has expired. You can still continue using all our free features."
     431msgstr "תקופת הניסיון שלך הסתיימה. הפיטצ'רים החינאמיים עדיין ניתנים לשימוש."
    432432
    433433#: includes/class-freemius.php:16753
     
    541541#: includes/class-freemius.php:17911
    542542msgid "Thank you!"
    543 msgstr "Thank you!"
     543msgstr "תודה רבה!"
    544544
    545545#: includes/class-freemius.php:17918
     
    681681#: includes/class-fs-plugin-updater.php:727
    682682msgid "Invalid module ID."
    683 msgstr "Invalid module ID."
     683msgstr "מזהה המודול לא תקני."
    684684
    685685#: includes/class-freemius.php19564, includes/class-fs-plugin-updater.php:747
    686686msgid "Premium version already active."
    687 msgstr "Premium version already active."
     687msgstr "הגרסה בתשלום כבר פעילה."
    688688
    689689#: includes/class-freemius.php:19571
    690690msgid "You do not have a valid license to access the premium version."
    691 msgstr "You do not have a valid license to access the premium version."
     691msgstr "אין ברשותך רישיון בר תוקף לשימוש בגרסת הפרימיום."
    692692
    693693#: includes/class-freemius.php:19578
     
    701701#: includes/class-freemius.php:19941
    702702msgid "View paid features"
    703 msgstr "View paid features"
     703msgstr "צפה בפיטצ'רים שבתשלום"
    704704
    705705#: includes/class-freemius.php:20251
     
    709709#: includes/class-freemius.php:20252
    710710msgid "Thank you so much for using %s!"
    711 msgstr "Thank you so much for using %s!"
     711msgstr "אנו מודים לך על היותך כמשתמש של %s!"
    712712
    713713#: includes/class-freemius.php:20258
     
    717717#: includes/class-freemius.php:20262
    718718msgid "Thank you so much for using our products!"
    719 msgstr "Thank you so much for using our products!"
     719msgstr "אנו מודים לך על השימוש במוצרים שלנו!"
    720720
    721721#: includes/class-freemius.php:20263
     
    729729#: includes/class-freemius.php:20291
    730730msgid "Products"
    731 msgstr "Products"
     731msgstr "מוצרים"
    732732
    733733#: includes/class-freemius.php20298, templates/connect.php:259
    734734msgid "Yes"
    735 msgstr "Yes"
     735msgstr "כן"
    736736
    737737#: includes/class-freemius.php20299, templates/connect.php:260
    738738msgid "send me security & feature updates, educational content and offers."
    739 msgstr "send me security & feature updates, educational content and offers."
     739msgstr "תשלחו לי עדכוני אבטחה ופיטצ'רים, תוכן חינוכי, ומידע אודות מבצעים."
    740740
    741741#: includes/class-freemius.php20300, templates/connect.php:265
    742742msgid "No"
    743 msgstr "No"
     743msgstr "לא"
    744744
    745745#: includes/class-freemius.php20302, templates/connect.php:267
    746746msgid "do %sNOT%s send me security & feature updates, educational content and offers."
    747 msgstr "do %sNOT%s send me security & feature updates, educational content and offers."
     747msgstr "%sאל%2$s תשלחו לי עדכוני אבטחה, פיטצ'רים, תוכן חינוכי, ומידע על מבצעים."
    748748
    749749#: includes/class-freemius.php:20312
     
    757757#: includes/class-freemius.php:20598
    758758msgid "License key is empty."
    759 msgstr "License key is empty."
     759msgstr "מפתח הרישיון ריק."
    760760
    761761#: includes/class-fs-plugin-updater.php184,
     
    788788#: includes/fs-plugin-info-dialog.php:380
    789789msgid "Install Free Version Now"
    790 msgstr "Install Free Version Now"
     790msgstr "התקן גרסה חינאמית עכשיו"
    791791
    792792#: includes/fs-plugin-info-dialog.php381, templates/auto-installation.php111,
     
    809809#: includes/fs-plugin-info-dialog.php:403
    810810msgid "Install Free Version Update Now"
    811 msgstr "Install Free Version Update Now"
     811msgstr "התקן עדכון גרסה חינאמית עכשיו"
    812812
    813813#: includes/fs-plugin-info-dialog.php404, templates/account.php:448
     
    825825#: includes/fs-plugin-info-dialog.php:424
    826826msgid "Latest Free Version Installed"
    827 msgstr "Latest Free Version Installed"
     827msgstr "גרסה חינאמית עדכנית הותקנה"
    828828
    829829#: includes/fs-plugin-info-dialog.php:425
     
    10181018#: includes/fs-plugin-info-dialog.php:1054
    10191019msgid "Donate to this plugin"
    1020 msgstr "Donate to this plugin"
     1020msgstr "תרום לתוסף"
    10211021
    10221022#: includes/fs-plugin-info-dialog.php:979
     
    10591059#: includes/fs-plugin-info-dialog.php:1062
    10601060msgid "This plugin has not been tested with your current version of WordPress."
    1061 msgstr "This plugin has not been tested with your current version of WordPress."
     1061msgstr "תוסף זה לא נבדק עם גרסת הוורדפרס שלך."
    10621062
    10631063#: includes/fs-plugin-info-dialog.php:1064
    10641064msgid "This plugin has not been marked as compatible with your version of WordPress."
    1065 msgstr "This plugin has not been marked as compatible with your version of WordPress."
     1065msgstr "התוסף לא סומן כתואם לגרסת הוורדפרס שלך."
    10661066
    10671067#: includes/fs-plugin-info-dialog.php:1083
     
    12791279#: templates/account.php:501
    12801280msgid "Search by address"
    1281 msgstr "Search by address"
     1281msgstr "חפש לפי כתובת"
    12821282
    12831283#: templates/account.php510, templates/account.php558, templates/debug.php226,
     
    12901290#: templates/account.php511, templates/debug.php:357
    12911291msgid "Address"
    1292 msgstr "Address"
     1292msgstr "כתובת"
    12931293
    12941294#: templates/account.php:512
     
    13121312#: templates/account.php:665
    13131313msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
    1314 msgstr "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
     1314msgstr "ביטול הרישיון יחסום את כל הפיטצ'רים שבתשלום אך יאפשר להפעיל את הרישיון על אתר אחר. האם תרצו להמשיך בכל זאת?"
    13151315
    13161316#: templates/add-ons.php:36
     
    13421342#: templates/auto-installation.php:93
    13431343msgid "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
    1344 msgstr "An automated download and installation of %s (paid version) from %s will start in %s. If you would like to do it manually - click the cancellation button now."
     1344msgstr "הורדה והתקנה אוטומטית של %s (גרסה בתשלום) מ-%2$s תתחיל בעוד %3$s. אם ברצונך לבצע את ההתקנה ידנית - לחץ על כפתור הביטול עכשיו."
    13451345
    13461346#: templates/auto-installation.php:104
    13471347msgid "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
    1348 msgstr "The installation process has started and may take a few minutes to complete. Please wait until it is done - do not refresh this page."
     1348msgstr "תהליך ההתקנה התחיל ויכול לקחת מספר דקות לסיום. אנא המתינו בסבלנות עד לסיום מבלי לרענן את הדפדפן."
    13491349
    13501350#: templates/auto-installation.php:109
     
    13581358#: templates/checkout.php:172
    13591359msgid "PCI compliant"
    1360 msgstr "PCI compliant"
     1360msgstr "עומד בתקן PCI"
    13611361
    13621362#. translators: %s: name (e.g. Hey John,)
     
    14421442#: templates/connect.php:305
    14431443msgid "Delegate to Site Admins"
    1444 msgstr "Delegate to Site Admins"
     1444msgstr "האצלה למנהלי האתרים"
    14451445
    14461446#: templates/connect.php:305
     
    16351635#: templates/debug.php:236
    16361636msgid "Network User"
    1637 msgstr "Network User"
     1637msgstr "משתמש רשת"
    16381638
    16391639#: templates/debug.php:273
     
    16531653#: templates/debug.php:322
    16541654msgid "Simulate Network Upgrade"
    1655 msgstr "Simulate Network Upgrade"
     1655msgstr "סמלוץ עדכון לרשת"
    16561656
    16571657#: templates/debug.php:348
     
    16661666#: templates/debug.php356, templates/account/partials/site.php:148
    16671667msgid "Blog ID"
    1668 msgstr "Blog ID"
     1668msgstr "מזהה בלוג"
    16691669
    16701670#: templates/debug.php421, templates/debug.php499,
     
    18041804#: templates/account/billing.php45, templates/account/billing.php:45
    18051805msgid "Tax / VAT ID"
    1806 msgstr "Tax / VAT ID"
     1806msgstr "ח.פ."
    18071807
    18081808#: templates/account/billing.php48, templates/account/billing.php48,
     
    21152115#: templates/forms/premium-versions-upgrade-handler.php:24
    21162116msgid "There is a new version of %s available."
    2117 msgstr "There is a new version of %s available."
     2117msgstr "יש גרסה חדשה עבור ה%s."
    21182118
    21192119#: templates/forms/premium-versions-upgrade-handler.php:25
     
    21232123#: templates/forms/premium-versions-upgrade-handler.php:34
    21242124msgid "New Version Available"
    2125 msgstr "New Version Available"
     2125msgstr "יש גרסה חדשה"
    21262126
    21272127#: templates/forms/premium-versions-upgrade-handler.php:36
    21282128msgid "Renew license"
    2129 msgstr "Renew license"
     2129msgstr "חידוש רישיון"
    21302130
    21312131#: templates/forms/premium-versions-upgrade-handler.php:53
     
    21562156#: templates/partials/network-activation.php:23
    21572157msgid "Activate license on all sites in the network."
    2158 msgstr "Activate license on all sites in the network."
     2158msgstr "הפעלת רישיון על כל האתרים ברשת."
    21592159
    21602160#: templates/partials/network-activation.php:24
    21612161msgid "Apply on all sites in the network."
    2162 msgstr "Apply on all sites in the network."
     2162msgstr "יישום על כל האתרים ברשת."
    21632163
    21642164#: templates/partials/network-activation.php:27
    21652165msgid "Activate license on all pending sites."
    2166 msgstr "Activate license on all pending sites."
     2166msgstr "הפעלת רישיון על כל האתרים התלויים והעומדים."
    21672167
    21682168#: templates/partials/network-activation.php:28
    21692169msgid "Apply on all pending sites."
    2170 msgstr "Apply on all pending sites."
     2170msgstr "יישום על כל האתרים התלויים והעומדים."
    21712171
    21722172#: templates/partials/network-activation.php36,
    21732173#: templates/partials/network-activation.php:68
    21742174msgid "allow"
    2175 msgstr "allow"
     2175msgstr "אפשר"
    21762176
    21772177#: templates/partials/network-activation.php38,
    21782178#: templates/partials/network-activation.php:70
    21792179msgid "delegate"
    2180 msgstr "delegate"
     2180msgstr "האצל"
    21812181
    21822182#: templates/partials/network-activation.php41,
    21832183#: templates/partials/network-activation.php:73
    21842184msgid "skip"
    2185 msgstr "skip"
     2185msgstr "דלג"
    21862186
    21872187#: templates/plugin-info/description.php72,
     
    22262226#: templates/account/partials/site.php:181
    22272227msgid "Owner Name"
    2228 msgstr "Owner Name"
     2228msgstr "שם הבעלים"
    22292229
    22302230#: templates/account/partials/site.php:193
    22312231msgid "Owner Email"
    2232 msgstr "Owner Email"
     2232msgstr "מייל הבעלים"
    22332233
    22342234#: templates/account/partials/site.php:205
    22352235msgid "Owner ID"
    2236 msgstr "Owner ID"
     2236msgstr "מזהה הבעלים"
    22372237
    22382238#: templates/account/partials/site.php:270
    22392239msgid "Subscription"
    2240 msgstr "Subscription"
     2240msgstr "מנוי"
    22412241
    22422242#: templates/forms/deactivation/contact.php:19
  • basepress/trunk/freemius/languages/freemius-it_IT.po

    r1882707 r1892870  
    1111"Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n"
    1212"POT-Creation-Date: \n"
    13 "PO-Revision-Date: 2018-05-24 14:01+0000\n"
     13"PO-Revision-Date: 2018-05-25 22:15+0000\n"
    1414"Last-Translator: Daniele Scasciafratte Mte90 <mte90net@gmail.com>\n"
    1515"Language: it_IT\n"
     
    177177#: includes/class-freemius.php:17103
    178178msgid "Unexpected API error. Please contact the %s's author with the following error."
    179 msgstr "Errore API inaspettato. Contatta l'autore di 1%s con il seguente errore."
     179msgstr "Errore API inaspettato. Contatta l'autore di %s con il seguente errore."
    180180
    181181#: includes/class-freemius.php:4815
     
    415415#: includes/class-freemius.php:16705
    416416msgid "Your license has expired. You can still continue using the free %s forever."
    417 msgstr "La tua licenza è scaduta. Puoi continuare ad usare la versione gratuita %sper sempre."
     417msgstr "La tua licenza è scaduta. Puoi continuare ad usare la versione gratuita %s per sempre."
    418418
    419419#: includes/class-freemius.php:16707
    420420msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
    421 msgstr "La tua licenza è scaduta. %1$saggiorna ora %2$sper continuare ad utilizzare %3$ssenza interruzioni."
     421msgstr "La tua licenza è scaduta. %1$saggiorna ora %2$sper continuare ad utilizzare %3$s senza interruzioni."
    422422
    423423#: includes/class-freemius.php:16715
     
    435435#: includes/class-freemius.php:16753
    436436msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
    437 msgstr "La tua versione prova è scaduta.%1$saggiorna ora %2$sper continuare ad usare %3$ssenza interruzioni."
     437msgstr "La tua versione prova è scaduta.%1$s aggiorna ora %2$s per continuare ad usare %3$s senza interruzioni."
    438438
    439439#: includes/class-freemius.php:16858
     
    471471#: includes/class-freemius.php:17037
    472472msgid "You are already running the %s in a trial mode."
    473 msgstr "Stai già usando %sin modalità prova."
     473msgstr "Stai già usando %s in modalità prova."
    474474
    475475#: includes/class-freemius.php:17048
     
    539539#: includes/class-freemius.php17910, templates/forms/optout.php:32
    540540msgid "We appreciate your help in making the %s better by letting us track some usage data."
    541 msgstr "Ti ringraziamo per averci concesso di tracciare alcuni dati di utilizzo al fine di migliorare %s"
     541msgstr "Ti ringraziamo per averci concesso di tracciare alcuni dati di utilizzo al fine di migliorare %s."
    542542
    543543#: includes/class-freemius.php:17911
     
    572572#: includes/class-freemius.php:18067
    573573msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
    574 msgstr "Puoi abbandonare la proprietà dell'account %sa %scliccando il pulsante Cambia proprietario."
     574msgstr "Puoi abbandonare la proprietà dell'account %s a %scliccando il pulsante Cambia proprietario."
    575575
    576576#: includes/class-freemius.php:18074
     
    627627#: includes/class-freemius.php:18804
    628628msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
    629 msgstr "Ciao, sai che %sha il programma di affiliazione? Se ti piace %s puoi diventare un nostro ambasciatore e guadagnare denaro!"
     629msgstr "Ciao, sai che %s ha il programma di affiliazione? Se ti piace %s puoi diventare un nostro ambasciatore e guadagnare denaro!"
    630630
    631631#: includes/class-freemius.php:18813
     
    747747#: includes/class-freemius.php20302, templates/connect.php:267
    748748msgid "do %sNOT%s send me security & feature updates, educational content and offers."
    749 msgstr "%snon %smi invierà aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
     749msgstr "%snon %s mi invierà aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."
    750750
    751751#: includes/class-freemius.php:20312
     
    14101410#: templates/connect.php:231
    14111411msgid "During the update process we detected %d site(s) that are still pending license activation."
    1412 msgstr "Durante la procedura di aggiornamento abbiamo individuato%dsito/i che sono in attesa della attivazione della licenza."
     1412msgstr "Durante la procedura di aggiornamento abbiamo individuato%d sito/i che sono in attesa della attivazione della licenza."
    14131413
    14141414#: templates/connect.php:233
    14151415msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button."
    1416 msgstr "Se vuoi utilizzare %ssu questi siti, inserisci la tua licenza sotto e fai clic sul pulsante di attivazione."
     1416msgstr "Se vuoi utilizzare %s su questi siti, inserisci la tua licenza sotto e fai clic sul pulsante di attivazione."
    14171417
    14181418#: templates/connect.php:235
     
    14881488#: templates/connect.php378, templates/forms/license-activation.php:38
    14891489msgid "The %1$s will be periodically sending data to %2$s to check for security and feature updates, and verify the validity of your license."
    1490 msgstr "%1$sinvierà periodicamente dei dati a %2$sper verificare aggiornamenti di sicurezza e di funzionalità e verificare la validità della tua licenza."
     1490msgstr " Il %1$s invierà periodicamente dei dati a %2$s per verificare aggiornamenti di sicurezza e di funzionalità e verificare la validità della tua licenza."
    14911491
    14921492#: templates/connect.php:383
     
    17701770#: templates/secure-https-header.php:28
    17711771msgid "Secure HTTPS %s page, running from an external domain"
    1772 msgstr "Metti in sicurezza la pagina HTTPS %sgestita da un dominio esterno"
     1772msgstr "Metti in sicurezza la pagina HTTPS %s gestita da un dominio esterno"
    17731773
    17741774#: includes/customizer/class-fs-customizer-support-section.php55,
     
    19831983#: templates/forms/affiliation.php:142
    19841984msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!"
    1985 msgstr "Comunica nuovi clienti al nostro %se guadagna %s di commissione per ogni vendita avvenuta!"
     1985msgstr "Comunica nuovi clienti al nostro %s e guadagna %s di commissione per ogni vendita avvenuta!"
    19861986
    19871987#: templates/forms/affiliation.php:145
  • basepress/trunk/freemius/languages/freemius.pot

    r1882707 r1892870  
    121121msgstr ""
    122122
    123 #: includes/class-freemius.php:3402
     123#: includes/class-freemius.php:3453
    124124msgid "I don't know what is cURL or how to install it, help me!"
    125125msgstr ""
    126126
    127 #: includes/class-freemius.php:3404
     127#: includes/class-freemius.php:3455
    128128msgid "We'll make sure to contact your hosting company and resolve the issue. You will get a follow-up email to %s once we have an update."
    129129msgstr ""
    130130
    131 #: includes/class-freemius.php:3411
     131#: includes/class-freemius.php:3462
    132132msgid "Great, please install cURL and enable it in your php.ini file. In addition, search for the 'disable_functions' directive in your php.ini file and remove any disabled methods starting with 'curl_'. To make sure it was successfully activated, use 'phpinfo()'. Once activated, deactivate the %s and reactivate it back again."
    133133msgstr ""
    134134
    135 #: includes/class-freemius.php:3516
     135#: includes/class-freemius.php:3567
    136136msgid "Yes - do your thing"
    137137msgstr ""
    138138
    139 #: includes/class-freemius.php:3521
     139#: includes/class-freemius.php:3572
    140140msgid "No - just deactivate"
    141141msgstr ""
    142142
    143 #: includes/class-freemius.php:3566, includes/class-freemius.php:4066, includes/class-freemius.php:5127, includes/class-freemius.php:10941, includes/class-freemius.php:14205, includes/class-freemius.php:14257, includes/class-freemius.php:14319, includes/class-freemius.php:16448, includes/class-freemius.php:16458, includes/class-freemius.php:17014, includes/class-freemius.php:17032, includes/class-freemius.php:17130, includes/class-freemius.php:17866, templates/add-ons.php:43
     143#: includes/class-freemius.php:3617, includes/class-freemius.php:4117, includes/class-freemius.php:5178, includes/class-freemius.php:10992, includes/class-freemius.php:14256, includes/class-freemius.php:14308, includes/class-freemius.php:14370, includes/class-freemius.php:16500, includes/class-freemius.php:16510, includes/class-freemius.php:17066, includes/class-freemius.php:17084, includes/class-freemius.php:17182, includes/class-freemius.php:17925, templates/add-ons.php:43
    144144msgctxt "exclamation"
    145145msgid "Oops"
    146146msgstr ""
    147147
    148 #: includes/class-freemius.php:3635
     148#: includes/class-freemius.php:3686
    149149msgid "Thank for giving us the chance to fix it! A message was just sent to our technical staff. We will get back to you as soon as we have an update to %s. Appreciate your patience."
    150150msgstr ""
    151151
    152 #: includes/class-freemius.php:4063
     152#: includes/class-freemius.php:4114
    153153msgctxt "addonX cannot run without pluginY"
    154154msgid "%s cannot run without %s."
    155155msgstr ""
    156156
    157 #: includes/class-freemius.php:4064
     157#: includes/class-freemius.php:4115
    158158msgctxt "addonX cannot run..."
    159159msgid "%s cannot run without the plugin."
    160160msgstr ""
    161161
    162 #: includes/class-freemius.php:4176, includes/class-freemius.php:4201, includes/class-freemius.php:17103
     162#: includes/class-freemius.php:4227, includes/class-freemius.php:4252, includes/class-freemius.php:17155
    163163msgid "Unexpected API error. Please contact the %s's author with the following error."
    164164msgstr ""
    165165
    166 #: includes/class-freemius.php:4815
     166#: includes/class-freemius.php:4866
    167167msgid "Premium %s version was successfully activated."
    168168msgstr ""
    169169
    170 #: includes/class-freemius.php:4827, includes/class-freemius.php:6660
     170#: includes/class-freemius.php:4878, includes/class-freemius.php:6711
    171171msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)."
    172172msgid "W00t"
    173173msgstr ""
    174174
    175 #: includes/class-freemius.php:4842
     175#: includes/class-freemius.php:4893
    176176msgid "You have a %s license."
    177177msgstr ""
    178178
    179 #: includes/class-freemius.php:4846, includes/class-freemius.php:13626, includes/class-freemius.php:13637, includes/class-freemius.php:16376, includes/class-freemius.php:16676, includes/class-freemius.php:16741, includes/class-freemius.php:16891
     179#: includes/class-freemius.php:4897, includes/class-freemius.php:13677, includes/class-freemius.php:13688, includes/class-freemius.php:16428, includes/class-freemius.php:16728, includes/class-freemius.php:16793, includes/class-freemius.php:16943
    180180msgctxt "interjection expressing joy or exuberance"
    181181msgid "Yee-haw"
    182182msgstr ""
    183183
    184 #: includes/class-freemius.php:5110
     184#: includes/class-freemius.php:5161
    185185msgid "%s free trial was successfully cancelled. Since the add-on is premium only it was automatically deactivated. If you like to use it in the future, you'll have to purchase a license."
    186186msgstr ""
    187187
    188 #: includes/class-freemius.php:5114
     188#: includes/class-freemius.php:5165
    189189msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin."
    190190msgstr ""
    191191
    192 #: includes/class-freemius.php:5123, templates/add-ons.php:99, templates/account/partials/addon.php:283
     192#: includes/class-freemius.php:5174, templates/add-ons.php:99, templates/account/partials/addon.php:283
    193193msgid "More information about %s"
    194194msgstr ""
    195195
    196 #: includes/class-freemius.php:5124
     196#: includes/class-freemius.php:5175
    197197msgid "Purchase License"
    198198msgstr ""
    199199
    200 #: includes/class-freemius.php:6035, templates/connect.php:161
     200#: includes/class-freemius.php:6086, templates/connect.php:161
    201201msgid "You should receive an activation email for %s to your mailbox at %s. Please make sure you click the activation button in that email to %s."
    202202msgstr ""
    203203
    204 #: includes/class-freemius.php:6039
     204#: includes/class-freemius.php:6090
    205205msgid "start the trial"
    206206msgstr ""
    207207
    208 #: includes/class-freemius.php:6040, templates/connect.php:165
     208#: includes/class-freemius.php:6091, templates/connect.php:165
    209209msgid "complete the install"
    210210msgstr ""
    211211
    212 #: includes/class-freemius.php:6147
     212#: includes/class-freemius.php:6198
    213213msgid "You are just one step away - %s"
    214214msgstr ""
    215215
    216 #: includes/class-freemius.php:6150
     216#: includes/class-freemius.php:6201
    217217msgctxt "%s - plugin name. As complete \"PluginX\" activation now"
    218218msgid "Complete \"%s\" Activation Now"
    219219msgstr ""
    220220
    221 #: includes/class-freemius.php:6227
     221#: includes/class-freemius.php:6278
    222222msgid "We made a few tweaks to the %s, %s"
    223223msgstr ""
    224224
    225 #: includes/class-freemius.php:6231
     225#: includes/class-freemius.php:6282
    226226msgid "Opt in to make \"%s\" Better!"
    227227msgstr ""
    228228
    229 #: includes/class-freemius.php:6659
     229#: includes/class-freemius.php:6710
    230230msgid "The upgrade of %s was successfully completed."
    231231msgstr ""
    232232
    233 #: includes/class-freemius.php:8384, includes/class-fs-plugin-updater.php:581, includes/class-fs-plugin-updater.php:733, includes/class-fs-plugin-updater.php:739, templates/auto-installation.php:32
     233#: includes/class-freemius.php:8435, includes/class-fs-plugin-updater.php:581, includes/class-fs-plugin-updater.php:733, includes/class-fs-plugin-updater.php:739, templates/auto-installation.php:32
    234234msgid "Add-On"
    235235msgstr ""
    236236
    237 #: includes/class-freemius.php:8386, templates/debug.php:349, templates/debug.php:510
     237#: includes/class-freemius.php:8437, templates/debug.php:349, templates/debug.php:510
    238238msgid "Plugin"
    239239msgstr ""
    240240
    241 #: includes/class-freemius.php:8387, templates/debug.php:349, templates/debug.php:510, templates/forms/deactivation/form.php:64
     241#: includes/class-freemius.php:8438, templates/debug.php:349, templates/debug.php:510, templates/forms/deactivation/form.php:64
    242242msgid "Theme"
    243243msgstr ""
    244244
    245 #: includes/class-freemius.php:10808
    246 msgid "invalid_site_details_collection"
    247 msgstr ""
    248 
    249 #: includes/class-freemius.php:10928
     245#: includes/class-freemius.php:10859
     246msgid "Invalid site details collection."
     247msgstr ""
     248
     249#: includes/class-freemius.php:10979
    250250msgid "We couldn't find your email address in the system, are you sure it's the right address?"
    251251msgstr ""
    252252
    253 #: includes/class-freemius.php:10930
     253#: includes/class-freemius.php:10981
    254254msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?"
    255255msgstr ""
    256256
    257 #: includes/class-freemius.php:11166
     257#: includes/class-freemius.php:11217
    258258msgid "Account is pending activation."
    259259msgstr ""
    260260
    261 #: includes/class-freemius.php:13608
     261#: includes/class-freemius.php:13659
    262262msgid "%s activation was successfully completed."
    263263msgstr ""
    264264
    265 #: includes/class-freemius.php:13622
     265#: includes/class-freemius.php:13673
    266266msgid "Your account was successfully activated with the %s plan."
    267267msgstr ""
    268268
    269 #: includes/class-freemius.php:13633, includes/class-freemius.php:16737
     269#: includes/class-freemius.php:13684, includes/class-freemius.php:16789
    270270msgid "Your trial has been successfully started."
    271271msgstr ""
    272272
    273 #: includes/class-freemius.php:14203, includes/class-freemius.php:14255, includes/class-freemius.php:14317
     273#: includes/class-freemius.php:14254, includes/class-freemius.php:14306, includes/class-freemius.php:14368
    274274msgid "Couldn't activate %s."
    275275msgstr ""
    276276
    277 #: includes/class-freemius.php:14204, includes/class-freemius.php:14256, includes/class-freemius.php:14318
     277#: includes/class-freemius.php:14255, includes/class-freemius.php:14307, includes/class-freemius.php:14369
    278278msgid "Please contact us with the following message:"
    279279msgstr ""
    280280
    281 #: includes/class-freemius.php:14666, includes/class-freemius.php:18929
     281#: includes/class-freemius.php:14718, includes/class-freemius.php:18988
    282282msgid "Upgrade"
    283283msgstr ""
    284284
    285 #: includes/class-freemius.php:14672
     285#: includes/class-freemius.php:14724
    286286msgid "Start Trial"
    287287msgstr ""
    288288
    289 #: includes/class-freemius.php:14674
     289#: includes/class-freemius.php:14726
    290290msgid "Pricing"
    291291msgstr ""
    292292
    293 #: includes/class-freemius.php:14734, includes/class-freemius.php:14736
     293#: includes/class-freemius.php:14786, includes/class-freemius.php:14788
    294294msgid "Affiliation"
    295295msgstr ""
    296296
    297 #: includes/class-freemius.php:14756, includes/class-freemius.php:14758, templates/account.php:146, templates/debug.php:314
     297#: includes/class-freemius.php:14808, includes/class-freemius.php:14810, templates/account.php:146, templates/debug.php:314
    298298msgid "Account"
    299299msgstr ""
    300300
    301 #: includes/class-freemius.php:14769, includes/class-freemius.php:14771, includes/customizer/class-fs-customizer-support-section.php:60
     301#: includes/class-freemius.php:14821, includes/class-freemius.php:14823, includes/customizer/class-fs-customizer-support-section.php:60
    302302msgid "Contact Us"
    303303msgstr ""
    304304
    305 #: includes/class-freemius.php:14781, includes/class-freemius.php:14783, includes/class-freemius.php:18939, templates/account.php:96, templates/account/partials/addon.php:37
     305#: includes/class-freemius.php:14833, includes/class-freemius.php:14835, includes/class-freemius.php:18998, templates/account.php:96, templates/account/partials/addon.php:37
    306306msgid "Add-Ons"
    307307msgstr ""
    308308
    309 #: includes/class-freemius.php:14815, templates/pricing.php:97
     309#: includes/class-freemius.php:14867, templates/pricing.php:97
    310310msgctxt "noun"
    311311msgid "Pricing"
    312312msgstr ""
    313313
    314 #: includes/class-freemius.php:15009, includes/customizer/class-fs-customizer-support-section.php:67
     314#: includes/class-freemius.php:15061, includes/customizer/class-fs-customizer-support-section.php:67
    315315msgid "Support Forum"
    316316msgstr ""
    317317
    318 #: includes/class-freemius.php:15794
     318#: includes/class-freemius.php:15846
    319319msgid "Your email has been successfully verified - you are AWESOME!"
    320320msgstr ""
    321321
    322 #: includes/class-freemius.php:15795
     322#: includes/class-freemius.php:15847
    323323msgctxt "a positive response"
    324324msgid "Right on"
    325325msgstr ""
    326326
    327 #: includes/class-freemius.php:16367
     327#: includes/class-freemius.php:16419
    328328msgid "Your %s Add-on plan was successfully upgraded."
    329329msgstr ""
    330330
    331 #: includes/class-freemius.php:16369
     331#: includes/class-freemius.php:16421
    332332msgid "%s Add-on was successfully purchased."
    333333msgstr ""
    334334
    335 #: includes/class-freemius.php:16372
     335#: includes/class-freemius.php:16424
    336336msgid "Download the latest version"
    337337msgstr ""
    338338
    339 #: includes/class-freemius.php:16444
     339#: includes/class-freemius.php:16496
    340340msgctxt "%1s - plugin title, %2s - API domain"
    341341msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s"
    342342msgstr ""
    343343
    344 #: includes/class-freemius.php:16447, includes/class-freemius.php:16862, includes/class-freemius.php:16927
     344#: includes/class-freemius.php:16499, includes/class-freemius.php:16914, includes/class-freemius.php:16979
    345345msgid "Error received from the server:"
    346346msgstr ""
    347347
    348 #: includes/class-freemius.php:16457
     348#: includes/class-freemius.php:16509
    349349msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again."
    350350msgstr ""
    351351
    352 #: includes/class-freemius.php:16639, includes/class-freemius.php:16867, includes/class-freemius.php:16910
     352#: includes/class-freemius.php:16691, includes/class-freemius.php:16919, includes/class-freemius.php:16962
    353353msgctxt "something somebody says when they are thinking about what you have just said."
    354354msgid "Hmm"
    355355msgstr ""
    356356
    357 #: includes/class-freemius.php:16652
     357#: includes/class-freemius.php:16704
    358358msgid "It looks like you are still on the %s plan. If you did upgrade or change your plan, it's probably an issue on our side - sorry."
    359359msgstr ""
    360360
    361 #: includes/class-freemius.php:16653, templates/account.php:98, templates/add-ons.php:130, templates/account/partials/addon.php:39
     361#: includes/class-freemius.php:16705, templates/account.php:98, templates/add-ons.php:130, templates/account/partials/addon.php:39
    362362msgctxt "trial period"
    363363msgid "Trial"
    364364msgstr ""
    365365
    366 #: includes/class-freemius.php:16658
     366#: includes/class-freemius.php:16710
    367367msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s."
    368368msgstr ""
    369369
    370 #: includes/class-freemius.php:16662, includes/class-freemius.php:16719
     370#: includes/class-freemius.php:16714, includes/class-freemius.php:16771
    371371msgid "Please contact us here"
    372372msgstr ""
    373373
    374 #: includes/class-freemius.php:16672
     374#: includes/class-freemius.php:16724
    375375msgid "Your plan was successfully upgraded."
    376376msgstr ""
    377377
    378 #: includes/class-freemius.php:16689
     378#: includes/class-freemius.php:16741
    379379msgid "Your plan was successfully changed to %s."
    380380msgstr ""
    381381
    382 #: includes/class-freemius.php:16705
     382#: includes/class-freemius.php:16757
    383383msgid "Your license has expired. You can still continue using the free %s forever."
    384384msgstr ""
    385385
    386 #: includes/class-freemius.php:16707
     386#: includes/class-freemius.php:16759
    387387msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
    388388msgstr ""
    389389
    390 #: includes/class-freemius.php:16715
     390#: includes/class-freemius.php:16767
    391391msgid "Your license has been cancelled. If you think it's a mistake, please contact support."
    392392msgstr ""
    393393
    394 #: includes/class-freemius.php:16728
     394#: includes/class-freemius.php:16780
    395395msgid "Your license has expired. You can still continue using all the %s features, but you'll need to renew your license to continue getting updates and support."
    396396msgstr ""
    397397
    398 #: includes/class-freemius.php:16751
     398#: includes/class-freemius.php:16803
    399399msgid "Your free trial has expired. You can still continue using all our free features."
    400400msgstr ""
    401401
    402 #: includes/class-freemius.php:16753
     402#: includes/class-freemius.php:16805
    403403msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions."
    404404msgstr ""
    405405
    406 #: includes/class-freemius.php:16858
     406#: includes/class-freemius.php:16910
    407407msgid "It looks like the license could not be activated."
    408408msgstr ""
    409409
    410 #: includes/class-freemius.php:16888
     410#: includes/class-freemius.php:16940
    411411msgid "Your license was successfully activated."
    412412msgstr ""
    413413
    414 #: includes/class-freemius.php:16914
     414#: includes/class-freemius.php:16966
    415415msgid "It looks like your site currently doesn't have an active license."
    416416msgstr ""
    417417
    418 #: includes/class-freemius.php:16926
     418#: includes/class-freemius.php:16978
    419419msgid "It looks like the license deactivation failed."
    420420msgstr ""
    421421
    422 #: includes/class-freemius.php:16954
     422#: includes/class-freemius.php:17006
    423423msgid "Your license was successfully deactivated, you are back to the %s plan."
    424424msgstr ""
    425425
    426 #: includes/class-freemius.php:16955
     426#: includes/class-freemius.php:17007
    427427msgid "O.K"
    428428msgstr ""
    429429
    430 #: includes/class-freemius.php:17003
     430#: includes/class-freemius.php:17055
    431431msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s."
    432432msgstr ""
    433433
    434 #: includes/class-freemius.php:17013
     434#: includes/class-freemius.php:17065
    435435msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes."
    436436msgstr ""
    437437
    438 #: includes/class-freemius.php:17037
     438#: includes/class-freemius.php:17089
    439439msgid "You are already running the %s in a trial mode."
    440440msgstr ""
    441441
    442 #: includes/class-freemius.php:17048
     442#: includes/class-freemius.php:17100
    443443msgid "You already utilized a trial before."
    444444msgstr ""
    445445
    446 #: includes/class-freemius.php:17062
     446#: includes/class-freemius.php:17114
    447447msgid "Plan %s do not exist, therefore, can't start a trial."
    448448msgstr ""
    449449
    450 #: includes/class-freemius.php:17073
     450#: includes/class-freemius.php:17125
    451451msgid "Plan %s does not support a trial period."
    452452msgstr ""
    453453
    454 #: includes/class-freemius.php:17084
     454#: includes/class-freemius.php:17136
    455455msgid "None of the %s's plans supports a trial period."
    456456msgstr ""
    457457
    458 #: includes/class-freemius.php:17134
     458#: includes/class-freemius.php:17186
    459459msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)"
    460460msgstr ""
    461461
    462 #: includes/class-freemius.php:17185
     462#: includes/class-freemius.php:17237
    463463msgid "Your %s free trial was successfully cancelled."
    464464msgstr ""
    465465
    466 #: includes/class-freemius.php:17190
     466#: includes/class-freemius.php:17242
    467467msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes."
    468468msgstr ""
    469469
    470 #: includes/class-freemius.php:17474
     470#: includes/class-freemius.php:17533
    471471msgid "Version %s was released."
    472472msgstr ""
    473473
    474 #: includes/class-freemius.php:17474
     474#: includes/class-freemius.php:17533
    475475msgid "Please download %s."
    476476msgstr ""
    477477
    478 #: includes/class-freemius.php:17481
     478#: includes/class-freemius.php:17540
    479479msgid "the latest %s version here"
    480480msgstr ""
    481481
    482 #: includes/class-freemius.php:17486
     482#: includes/class-freemius.php:17545
    483483msgid "New"
    484484msgstr ""
    485485
    486 #: includes/class-freemius.php:17491
     486#: includes/class-freemius.php:17550
    487487msgid "Seems like you got the latest release."
    488488msgstr ""
    489489
    490 #: includes/class-freemius.php:17492
     490#: includes/class-freemius.php:17551
    491491msgid "You are all good!"
    492492msgstr ""
    493493
    494 #: includes/class-freemius.php:17758
     494#: includes/class-freemius.php:17817
    495495msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box."
    496496msgstr ""
    497497
    498 #: includes/class-freemius.php:17893
     498#: includes/class-freemius.php:17952
    499499msgid "Site successfully opted in."
    500500msgstr ""
    501501
    502 #: includes/class-freemius.php:17894, includes/class-freemius.php:18671
     502#: includes/class-freemius.php:17953, includes/class-freemius.php:18730
    503503msgid "Awesome"
    504504msgstr ""
    505505
    506 #: includes/class-freemius.php:17910, templates/forms/optout.php:32
     506#: includes/class-freemius.php:17969, templates/forms/optout.php:32
    507507msgid "We appreciate your help in making the %s better by letting us track some usage data."
    508508msgstr ""
    509509
    510 #: includes/class-freemius.php:17911
     510#: includes/class-freemius.php:17970
    511511msgid "Thank you!"
    512512msgstr ""
    513513
    514 #: includes/class-freemius.php:17918
     514#: includes/class-freemius.php:17977
    515515msgid "We will no longer be sending any usage data of %s on %s to %s."
    516516msgstr ""
    517517
    518 #: includes/class-freemius.php:18033
     518#: includes/class-freemius.php:18092
    519519msgid "Please check your mailbox, you should receive an email via %s to confirm the ownership change. From security reasons, you must confirm the change within the next 15 min. If you cannot find the email, please check your spam folder."
    520520msgstr ""
    521521
    522 #: includes/class-freemius.php:18039
     522#: includes/class-freemius.php:18098
    523523msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval."
    524524msgstr ""
    525525
    526 #: includes/class-freemius.php:18044
     526#: includes/class-freemius.php:18103
    527527msgid "%s is the new owner of the account."
    528528msgstr ""
    529529
    530 #: includes/class-freemius.php:18046
     530#: includes/class-freemius.php:18105
    531531msgctxt "as congratulations"
    532532msgid "Congrats"
    533533msgstr ""
    534534
    535 #: includes/class-freemius.php:18066
     535#: includes/class-freemius.php:18125
    536536msgid "Sorry, we could not complete the email update. Another user with the same email is already registered."
    537537msgstr ""
    538538
    539 #: includes/class-freemius.php:18067
     539#: includes/class-freemius.php:18126
    540540msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button."
    541541msgstr ""
    542542
    543 #: includes/class-freemius.php:18074
     543#: includes/class-freemius.php:18133
    544544msgid "Change Ownership"
    545545msgstr ""
    546546
    547 #: includes/class-freemius.php:18082
     547#: includes/class-freemius.php:18141
    548548msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments."
    549549msgstr ""
    550550
    551 #: includes/class-freemius.php:18094
     551#: includes/class-freemius.php:18153
    552552msgid "Please provide your full name."
    553553msgstr ""
    554554
    555 #: includes/class-freemius.php:18099
     555#: includes/class-freemius.php:18158
    556556msgid "Your name was successfully updated."
    557557msgstr ""
    558558
    559 #: includes/class-freemius.php:18160
     559#: includes/class-freemius.php:18219
    560560msgid "You have successfully updated your %s."
    561561msgstr ""
    562562
    563 #: includes/class-freemius.php:18300
     563#: includes/class-freemius.php:18359
    564564msgid "Just letting you know that the add-ons information of %s is being pulled from an external server."
    565565msgstr ""
    566566
    567 #: includes/class-freemius.php:18301
     567#: includes/class-freemius.php:18360
    568568msgctxt "advance notice of something that will need attention."
    569569msgid "Heads up"
    570570msgstr ""
    571571
    572 #: includes/class-freemius.php:18711
     572#: includes/class-freemius.php:18770
    573573msgctxt "exclamation"
    574574msgid "Hey"
    575575msgstr ""
    576576
    577 #: includes/class-freemius.php:18711
     577#: includes/class-freemius.php:18770
    578578msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial."
    579579msgstr ""
    580580
    581 #: includes/class-freemius.php:18719
     581#: includes/class-freemius.php:18778
    582582msgid "No commitment for %s days - cancel anytime!"
    583583msgstr ""
    584584
    585 #: includes/class-freemius.php:18720
     585#: includes/class-freemius.php:18779
    586586msgid "No credit card required"
    587587msgstr ""
    588588
    589 #: includes/class-freemius.php:18727, templates/forms/trial-start.php:53
     589#: includes/class-freemius.php:18786, templates/forms/trial-start.php:53
    590590msgctxt "call to action"
    591591msgid "Start free trial"
    592592msgstr ""
    593593
    594 #: includes/class-freemius.php:18804
     594#: includes/class-freemius.php:18863
    595595msgid "Hey there, did you know that %s has an affiliate program? If you like the %s you can become our ambassador and earn some cash!"
    596596msgstr ""
    597597
    598 #: includes/class-freemius.php:18813
     598#: includes/class-freemius.php:18872
    599599msgid "Learn more"
    600600msgstr ""
    601601
    602 #: includes/class-freemius.php:18963, templates/account.php:394, templates/account.php:497, templates/connect.php:169, templates/connect.php:408, templates/forms/license-activation.php:24, templates/account/partials/addon.php:230
     602#: includes/class-freemius.php:19022, templates/account.php:398, templates/account.php:501, templates/connect.php:169, templates/connect.php:408, templates/forms/license-activation.php:24, templates/account/partials/addon.php:230
    603603msgid "Activate License"
    604604msgstr ""
    605605
    606 #: includes/class-freemius.php:18964, templates/account.php:457, templates/account.php:496, templates/account/partials/site.php:256
     606#: includes/class-freemius.php:19023, templates/account.php:461, templates/account.php:500, templates/account/partials/site.php:256
    607607msgid "Change License"
    608608msgstr ""
    609609
    610 #: includes/class-freemius.php:19046, templates/account/partials/site.php:161
     610#: includes/class-freemius.php:19105, templates/account/partials/site.php:161
    611611msgid "Opt Out"
    612612msgstr ""
    613613
    614 #: includes/class-freemius.php:19048, includes/class-freemius.php:19053, templates/account/partials/site.php:43, templates/account/partials/site.php:161
     614#: includes/class-freemius.php:19107, includes/class-freemius.php:19112, templates/account/partials/site.php:43, templates/account/partials/site.php:161
    615615msgid "Opt In"
    616616msgstr ""
    617617
    618 #: includes/class-freemius.php:19245
     618#: includes/class-freemius.php:19304
    619619msgid "Please follow these steps to complete the upgrade"
    620620msgstr ""
    621621
    622 #: includes/class-freemius.php:19249
     622#: includes/class-freemius.php:19308
    623623msgid "Download the latest %s version"
    624624msgstr ""
    625625
    626 #: includes/class-freemius.php:19253
     626#: includes/class-freemius.php:19312
    627627msgid "Upload and activate the downloaded version"
    628628msgstr ""
    629629
    630 #: includes/class-freemius.php:19255
     630#: includes/class-freemius.php:19314
    631631msgid "How to upload and activate?"
    632632msgstr ""
    633633
    634 #: includes/class-freemius.php:19384
     634#: includes/class-freemius.php:19443
    635635msgid "%sClick here%s to choose the sites where you'd like to activate the license on."
    636636msgstr ""
    637637
    638 #: includes/class-freemius.php:19545
     638#: includes/class-freemius.php:19604
    639639msgid "Auto installation only works for opted-in users."
    640640msgstr ""
    641641
    642 #: includes/class-freemius.php:19555, includes/class-freemius.php:19588, includes/class-fs-plugin-updater.php:713, includes/class-fs-plugin-updater.php:727
     642#: includes/class-freemius.php:19614, includes/class-freemius.php:19647, includes/class-fs-plugin-updater.php:713, includes/class-fs-plugin-updater.php:727
    643643msgid "Invalid module ID."
    644644msgstr ""
    645645
    646 #: includes/class-freemius.php:19564, includes/class-fs-plugin-updater.php:747
     646#: includes/class-freemius.php:19623, includes/class-fs-plugin-updater.php:747
    647647msgid "Premium version already active."
    648648msgstr ""
    649649
    650 #: includes/class-freemius.php:19571
     650#: includes/class-freemius.php:19630
    651651msgid "You do not have a valid license to access the premium version."
    652652msgstr ""
    653653
    654 #: includes/class-freemius.php:19578
     654#: includes/class-freemius.php:19637
    655655msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version."
    656656msgstr ""
    657657
    658 #: includes/class-freemius.php:19596, includes/class-fs-plugin-updater.php:746
     658#: includes/class-freemius.php:19655, includes/class-fs-plugin-updater.php:746
    659659msgid "Premium add-on version already installed."
    660660msgstr ""
    661661
    662 #: includes/class-freemius.php:19941
     662#: includes/class-freemius.php:20000
    663663msgid "View paid features"
    664664msgstr ""
    665665
    666 #: includes/class-freemius.php:20251
     666#: includes/class-freemius.php:20310
    667667msgid "Thank you so much for using %s and its add-ons!"
    668668msgstr ""
    669669
    670 #: includes/class-freemius.php:20252
     670#: includes/class-freemius.php:20311
    671671msgid "Thank you so much for using %s!"
    672672msgstr ""
    673673
    674 #: includes/class-freemius.php:20258
     674#: includes/class-freemius.php:20317
    675675msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s."
    676676msgstr ""
    677677
    678 #: includes/class-freemius.php:20262
     678#: includes/class-freemius.php:20321
    679679msgid "Thank you so much for using our products!"
    680680msgstr ""
    681681
    682 #: includes/class-freemius.php:20263
     682#: includes/class-freemius.php:20322
    683683msgid "You've already opted-in to our usage-tracking, which helps us keep improving them."
    684684msgstr ""
    685685
    686 #: includes/class-freemius.php:20282
     686#: includes/class-freemius.php:20341
    687687msgid "%s and its add-ons"
    688688msgstr ""
    689689
    690 #: includes/class-freemius.php:20291
     690#: includes/class-freemius.php:20350
    691691msgid "Products"
    692692msgstr ""
    693693
    694 #: includes/class-freemius.php:20298, templates/connect.php:259
     694#: includes/class-freemius.php:20357, templates/connect.php:259
    695695msgid "Yes"
    696696msgstr ""
    697697
    698 #: includes/class-freemius.php:20299, templates/connect.php:260
     698#: includes/class-freemius.php:20358, templates/connect.php:260
    699699msgid "send me security & feature updates, educational content and offers."
    700700msgstr ""
    701701
    702 #: includes/class-freemius.php:20300, templates/connect.php:265
     702#: includes/class-freemius.php:20359, templates/connect.php:265
    703703msgid "No"
    704704msgstr ""
    705705
    706 #: includes/class-freemius.php:20302, templates/connect.php:267
     706#: includes/class-freemius.php:20361, templates/connect.php:267
    707707msgid "do %sNOT%s send me security & feature updates, educational content and offers."
    708708msgstr ""
    709709
    710 #: includes/class-freemius.php:20312
     710#: includes/class-freemius.php:20371
    711711msgid "Due to the new %sEU General Data Protection Regulation (GDPR)%s compliance requirements it is required that you provide your explicit consent, again, confirming that you are onboard 🙂"
    712712msgstr ""
    713713
    714 #: includes/class-freemius.php:20314, templates/connect.php:274
     714#: includes/class-freemius.php:20373, templates/connect.php:274
    715715msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:"
    716716msgstr ""
    717717
    718 #: includes/class-freemius.php:20598
     718#: includes/class-freemius.php:20657
    719719msgid "License key is empty."
    720720msgstr ""
     
    767767msgstr ""
    768768
    769 #: includes/fs-plugin-info-dialog.php:404, templates/account.php:448
     769#: includes/fs-plugin-info-dialog.php:404, templates/account.php:452
    770770msgid "Install Update Now"
    771771msgstr ""
     
    926926msgstr ""
    927927
    928 #: includes/fs-plugin-info-dialog.php:915
     928#: includes/fs-plugin-info-dialog.php:915, templates/account.php:368
    929929msgctxt "x-ago"
    930930msgid "%s ago"
     
    11681168msgstr ""
    11691169
    1170 #: templates/account.php:416
     1170#: templates/account.php:368, templates/account/partials/addon.php:116
     1171msgid "Expired"
     1172msgstr ""
     1173
     1174#: templates/account.php:420
    11711175msgid "Premium version"
    11721176msgstr ""
    11731177
    1174 #: templates/account.php:418
     1178#: templates/account.php:422
    11751179msgid "Free version"
    11761180msgstr ""
    11771181
    1178 #: templates/account.php:430
     1182#: templates/account.php:434
    11791183msgid "Verify Email"
    11801184msgstr ""
    11811185
    1182 #: templates/account.php:441
     1186#: templates/account.php:445
    11831187msgid "Download %s Version"
    11841188msgstr ""
    11851189
    1186 #: templates/account.php:455, templates/account.php:636, templates/account/partials/site.php:237, templates/account/partials/site.php:255
     1190#: templates/account.php:459, templates/account.php:640, templates/account/partials/site.php:237, templates/account/partials/site.php:255
    11871191msgctxt "verb"
    11881192msgid "Show"
    11891193msgstr ""
    11901194
    1191 #: templates/account.php:469
     1195#: templates/account.php:473
    11921196msgid "What is your %s?"
    11931197msgstr ""
    11941198
    1195 #: templates/account.php:477, templates/account/billing.php:27
     1199#: templates/account.php:481, templates/account/billing.php:27
    11961200msgctxt "verb"
    11971201msgid "Edit"
    11981202msgstr ""
    11991203
    1200 #: templates/account.php:490
     1204#: templates/account.php:494
    12011205msgid "Sites"
    12021206msgstr ""
    12031207
    1204 #: templates/account.php:501
     1208#: templates/account.php:505
    12051209msgid "Search by address"
    12061210msgstr ""
    12071211
    1208 #: templates/account.php:510, templates/account.php:558, templates/debug.php:226, templates/debug.php:354, templates/debug.php:439, templates/debug.php:476, templates/debug.php:514, templates/debug.php:587, templates/account/payments.php:35, templates/debug/logger.php:21
     1212#: templates/account.php:514, templates/account.php:562, templates/debug.php:226, templates/debug.php:354, templates/debug.php:439, templates/debug.php:476, templates/debug.php:514, templates/debug.php:587, templates/account/payments.php:35, templates/debug/logger.php:21
    12091213msgid "ID"
    12101214msgstr ""
    12111215
    1212 #: templates/account.php:511, templates/debug.php:357
     1216#: templates/account.php:515, templates/debug.php:357
    12131217msgid "Address"
    12141218msgstr ""
    12151219
    1216 #: templates/account.php:512
     1220#: templates/account.php:516
    12171221msgid "License"
    12181222msgstr ""
    12191223
    1220 #: templates/account.php:513
     1224#: templates/account.php:517
    12211225msgid "Plan"
    12221226msgstr ""
    12231227
    1224 #: templates/account.php:561
     1228#: templates/account.php:565
    12251229msgctxt "as software license"
    12261230msgid "License"
    12271231msgstr ""
    12281232
    1229 #: templates/account.php:630
     1233#: templates/account.php:634
    12301234msgctxt "verb"
    12311235msgid "Hide"
    12321236msgstr ""
    12331237
    1234 #: templates/account.php:665
     1238#: templates/account.php:669
    12351239msgid "Deactivating your license will block all premium features, but will enable activating the license on another site. Are you sure you want to proceed?"
    12361240msgstr ""
     
    21142118msgstr ""
    21152119
    2116 #: templates/account/partials/addon.php:116
    2117 msgid "Expired"
    2118 msgstr ""
    2119 
    21202120#: templates/account/partials/addon.php:121
    21212121msgid "No expiration"
  • basepress/trunk/freemius/start.php

    r1882707 r1892870  
    1616     * @var string
    1717     */
    18     $this_sdk_version = '2.1.0';
     18    $this_sdk_version = '2.1.1';
    1919
    2020    #region SDK Selection Logic --------------------------------------------------------------------
     
    180180            $current_theme               = wp_get_theme();
    181181            $is_newest_sdk_plugin_active = ( $current_theme->stylesheet === $fs_newest_sdk->plugin_path );
     182
     183            $current_theme_parent = $current_theme->parent();
     184
     185            /**
     186             * If the current theme is a child of the theme that has the newest SDK, this prevents a redirects loop
     187             * from happening by keeping the SDK info stored in the `fs_active_plugins` option.
     188             */
     189            if ( ! $is_newest_sdk_plugin_active && $current_theme_parent instanceof WP_Theme ) {
     190                $is_newest_sdk_plugin_active = ( $fs_newest_sdk->plugin_path === $current_theme_parent->stylesheet );
     191            }
    182192        }
    183193
  • basepress/trunk/freemius/templates/account.php

    r1882707 r1892870  
    365365                                                        <?php if ( is_object( $license ) && ! $license->is_lifetime() ) : ?>
    366366                                                            <?php if ( ! $is_active_subscription && ! $license->is_first_payment_pending() ) : ?>
     367                                                                <?php $is_license_expired = $license->is_expired() ?>
     368                                                                <?php $expired_ago_text   = ( fs_text_inline( 'Expired', 'expired', $slug ) . ' ' . fs_text_x_inline( '%s ago', 'x-ago', $slug ) ) ?>
    367369                                                                <label
    368                                                                     class="fs-tag fs-warn"><?php echo esc_html( sprintf( $expires_in_text, human_time_diff( time(), strtotime( $license->expiration ) ) ) ) ?></label>
     370                                                                    class="fs-tag <?php echo $is_license_expired ? 'fs-error' : 'fs-warn' ?>"><?php
     371                                                                        echo esc_html( sprintf( $is_license_expired ? $expired_ago_text : $expires_in_text, human_time_diff( time(), strtotime( $license->expiration ) ) ) )
     372                                                                    ?></label>
    369373                                                            <?php elseif ( $is_active_subscription && ! $subscription->is_first_payment_pending() ) : ?>
    370374                                                                <label class="fs-tag fs-success"><?php echo esc_html( sprintf( $renews_in_text, human_time_diff( time(), strtotime( $subscription->next_payment ) ) ) ) ?></label>
Note: See TracChangeset for help on using the changeset viewer.