Changeset 1892870
- Timestamp:
- 06/14/2018 01:09:37 PM (8 years ago)
- Location:
- basepress/trunk/freemius
- Files:
-
- 2 deleted
- 11 edited
-
includes/class-freemius.php (modified) (5 diffs)
-
includes/class-fs-api.php (modified) (1 diff)
-
languages/freemius-da_DK.mo (modified) (previous)
-
languages/freemius-da_DK.po (modified) (1 diff)
-
languages/freemius-he_IL.mo (modified) (previous)
-
languages/freemius-he_IL.po (modified) (32 diffs)
-
languages/freemius-it_IT.mo (modified) (previous)
-
languages/freemius-it_IT.po (modified) (13 diffs)
-
languages/freemius.pot (modified) (5 diffs)
-
start.php (modified) (2 diffs)
-
templates/account.php (modified) (1 diff)
-
templates/all-admin-notice.php (deleted)
-
templates/checkout-legacy.php (deleted)
Legend:
- Unmodified
- Added
- Removed
-
basepress/trunk/freemius/includes/class-freemius.php
r1882707 r1892870 3264 3264 static function _get_current_wp_user() { 3265 3265 self::require_pluggable_essentials(); 3266 self::wp_cookie_constants(); 3266 3267 3267 3268 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 } 3268 3319 } 3269 3320 … … 10806 10857 } 10807 10858 } 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' ); 10809 10860 } 10810 10861 … … 14332 14383 } 14333 14384 14385 // Get user information based on parent's plugin. 14386 $user = $this->get_user(); 14387 14334 14388 // First of all, set site info - otherwise we won't 14335 14389 // be able to invoke API calls. 14336 14390 $parent_fs->_site = new FS_Site( $parent_install ); 14391 $parent_fs->_user = $user; 14337 14392 14338 14393 // Sync add-on plans. 14339 14394 $parent_fs->_sync_plans(); 14340 14341 // Get user information based on parent's plugin.14342 $user = $this->get_user();14343 14395 14344 14396 $parent_fs->_set_account( $user, $parent_fs->_site ); … … 17236 17288 $is_premium = null; 17237 17289 if ( ! $is_addon ) { 17238 $is_premium = $this->is_premium();17290 $is_premium = ( $this->is_premium() || $this->_can_download_premium() ); 17239 17291 } 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() ); 17241 17294 } 17242 17295 … … 17434 17487 if ( ! empty( $plugin_id ) ) { 17435 17488 $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 ); 17439 17498 } 17440 17499 -
basepress/trunk/freemius/includes/class-fs-api.php
r1882707 r1892870 552 552 is_object( $result ) && 553 553 isset( $result->error ) && 554 isset( $result-> message )554 isset( $result->error->message ) 555 555 ); 556 556 } -
basepress/trunk/freemius/languages/freemius-da_DK.po
r1882707 r1892870 1 # Copyright (C) 2018 freemius2 # This file is distributed under the same license as the freemius package.3 # Translators:4 # Joachim Jensen, 2016-20185 1 msgid "" 6 2 msgstr "" 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" 9 5 "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 3 3 # Translators: 4 4 # Rami Yushuvaev <r_a_m_i@hotmail.com>, 2017 5 # Vova Feldman <vova@freemius.com>, 2017 5 # Vova Feldman <vova@freemius.com>, 2017-2018 6 6 msgid "" 7 7 msgstr "" … … 9 9 "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" 10 10 "POT-Creation-Date: \n" 11 "PO-Revision-Date: 2018-05-2 4 11:59+0000\n"11 "PO-Revision-Date: 2018-05-27 16:16+0000\n" 12 12 "Last-Translator: Vova Feldman <vova@freemius.com>\n" 13 13 "Language: he_IL\n" … … 33 33 #: includes/class-freemius.php:1871 34 34 msgid "I found a better %s" 35 msgstr " I found a better %s"35 msgstr "מצאתי %s יותר טוב" 36 36 37 37 #: includes/class-freemius.php:1873 … … 184 184 msgctxt "" 185 185 msgid "W00t" 186 msgstr " W00t"186 msgstr "יש" 187 187 188 188 #: includes/class-freemius.php:4842 … … 383 383 msgctxt "" 384 384 msgid "Hmm" 385 msgstr " Hmm"385 msgstr "אממ" 386 386 387 387 #: includes/class-freemius.php:16652 … … 429 429 #: includes/class-freemius.php:16751 430 430 msgid "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."431 msgstr "תקופת הניסיון שלך הסתיימה. הפיטצ'רים החינאמיים עדיין ניתנים לשימוש." 432 432 433 433 #: includes/class-freemius.php:16753 … … 541 541 #: includes/class-freemius.php:17911 542 542 msgid "Thank you!" 543 msgstr " Thank you!"543 msgstr "תודה רבה!" 544 544 545 545 #: includes/class-freemius.php:17918 … … 681 681 #: includes/class-fs-plugin-updater.php:727 682 682 msgid "Invalid module ID." 683 msgstr " Invalid module ID."683 msgstr "מזהה המודול לא תקני." 684 684 685 685 #: includes/class-freemius.php19564, includes/class-fs-plugin-updater.php:747 686 686 msgid "Premium version already active." 687 msgstr " Premium version already active."687 msgstr "הגרסה בתשלום כבר פעילה." 688 688 689 689 #: includes/class-freemius.php:19571 690 690 msgid "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."691 msgstr "אין ברשותך רישיון בר תוקף לשימוש בגרסת הפרימיום." 692 692 693 693 #: includes/class-freemius.php:19578 … … 701 701 #: includes/class-freemius.php:19941 702 702 msgid "View paid features" 703 msgstr " View paid features"703 msgstr "צפה בפיטצ'רים שבתשלום" 704 704 705 705 #: includes/class-freemius.php:20251 … … 709 709 #: includes/class-freemius.php:20252 710 710 msgid "Thank you so much for using %s!" 711 msgstr " Thank you so much for using%s!"711 msgstr "אנו מודים לך על היותך כמשתמש של %s!" 712 712 713 713 #: includes/class-freemius.php:20258 … … 717 717 #: includes/class-freemius.php:20262 718 718 msgid "Thank you so much for using our products!" 719 msgstr " Thank you so much for using our products!"719 msgstr "אנו מודים לך על השימוש במוצרים שלנו!" 720 720 721 721 #: includes/class-freemius.php:20263 … … 729 729 #: includes/class-freemius.php:20291 730 730 msgid "Products" 731 msgstr " Products"731 msgstr "מוצרים" 732 732 733 733 #: includes/class-freemius.php20298, templates/connect.php:259 734 734 msgid "Yes" 735 msgstr " Yes"735 msgstr "כן" 736 736 737 737 #: includes/class-freemius.php20299, templates/connect.php:260 738 738 msgid "send me security & feature updates, educational content and offers." 739 msgstr " send me security & feature updates, educational content and offers."739 msgstr "תשלחו לי עדכוני אבטחה ופיטצ'רים, תוכן חינוכי, ומידע אודות מבצעים." 740 740 741 741 #: includes/class-freemius.php20300, templates/connect.php:265 742 742 msgid "No" 743 msgstr " No"743 msgstr "לא" 744 744 745 745 #: includes/class-freemius.php20302, templates/connect.php:267 746 746 msgid "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."747 msgstr "%sאל%2$s תשלחו לי עדכוני אבטחה, פיטצ'רים, תוכן חינוכי, ומידע על מבצעים." 748 748 749 749 #: includes/class-freemius.php:20312 … … 757 757 #: includes/class-freemius.php:20598 758 758 msgid "License key is empty." 759 msgstr " License key is empty."759 msgstr "מפתח הרישיון ריק." 760 760 761 761 #: includes/class-fs-plugin-updater.php184, … … 788 788 #: includes/fs-plugin-info-dialog.php:380 789 789 msgid "Install Free Version Now" 790 msgstr " Install Free Version Now"790 msgstr "התקן גרסה חינאמית עכשיו" 791 791 792 792 #: includes/fs-plugin-info-dialog.php381, templates/auto-installation.php111, … … 809 809 #: includes/fs-plugin-info-dialog.php:403 810 810 msgid "Install Free Version Update Now" 811 msgstr " Install Free Version Update Now"811 msgstr "התקן עדכון גרסה חינאמית עכשיו" 812 812 813 813 #: includes/fs-plugin-info-dialog.php404, templates/account.php:448 … … 825 825 #: includes/fs-plugin-info-dialog.php:424 826 826 msgid "Latest Free Version Installed" 827 msgstr " Latest Free Version Installed"827 msgstr "גרסה חינאמית עדכנית הותקנה" 828 828 829 829 #: includes/fs-plugin-info-dialog.php:425 … … 1018 1018 #: includes/fs-plugin-info-dialog.php:1054 1019 1019 msgid "Donate to this plugin" 1020 msgstr " Donate to this plugin"1020 msgstr "תרום לתוסף" 1021 1021 1022 1022 #: includes/fs-plugin-info-dialog.php:979 … … 1059 1059 #: includes/fs-plugin-info-dialog.php:1062 1060 1060 msgid "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."1061 msgstr "תוסף זה לא נבדק עם גרסת הוורדפרס שלך." 1062 1062 1063 1063 #: includes/fs-plugin-info-dialog.php:1064 1064 1064 msgid "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."1065 msgstr "התוסף לא סומן כתואם לגרסת הוורדפרס שלך." 1066 1066 1067 1067 #: includes/fs-plugin-info-dialog.php:1083 … … 1279 1279 #: templates/account.php:501 1280 1280 msgid "Search by address" 1281 msgstr " Search by address"1281 msgstr "חפש לפי כתובת" 1282 1282 1283 1283 #: templates/account.php510, templates/account.php558, templates/debug.php226, … … 1290 1290 #: templates/account.php511, templates/debug.php:357 1291 1291 msgid "Address" 1292 msgstr " Address"1292 msgstr "כתובת" 1293 1293 1294 1294 #: templates/account.php:512 … … 1312 1312 #: templates/account.php:665 1313 1313 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?" 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?"1314 msgstr "ביטול הרישיון יחסום את כל הפיטצ'רים שבתשלום אך יאפשר להפעיל את הרישיון על אתר אחר. האם תרצו להמשיך בכל זאת?" 1315 1315 1316 1316 #: templates/add-ons.php:36 … … 1342 1342 #: templates/auto-installation.php:93 1343 1343 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." 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."1344 msgstr "הורדה והתקנה אוטומטית של %s (גרסה בתשלום) מ-%2$s תתחיל בעוד %3$s. אם ברצונך לבצע את ההתקנה ידנית - לחץ על כפתור הביטול עכשיו." 1345 1345 1346 1346 #: templates/auto-installation.php:104 1347 1347 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." 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."1348 msgstr "תהליך ההתקנה התחיל ויכול לקחת מספר דקות לסיום. אנא המתינו בסבלנות עד לסיום מבלי לרענן את הדפדפן." 1349 1349 1350 1350 #: templates/auto-installation.php:109 … … 1358 1358 #: templates/checkout.php:172 1359 1359 msgid "PCI compliant" 1360 msgstr " PCI compliant"1360 msgstr "עומד בתקן PCI" 1361 1361 1362 1362 #. translators: %s: name (e.g. Hey John,) … … 1442 1442 #: templates/connect.php:305 1443 1443 msgid "Delegate to Site Admins" 1444 msgstr " Delegate to Site Admins"1444 msgstr "האצלה למנהלי האתרים" 1445 1445 1446 1446 #: templates/connect.php:305 … … 1635 1635 #: templates/debug.php:236 1636 1636 msgid "Network User" 1637 msgstr " Network User"1637 msgstr "משתמש רשת" 1638 1638 1639 1639 #: templates/debug.php:273 … … 1653 1653 #: templates/debug.php:322 1654 1654 msgid "Simulate Network Upgrade" 1655 msgstr " Simulate Network Upgrade"1655 msgstr "סמלוץ עדכון לרשת" 1656 1656 1657 1657 #: templates/debug.php:348 … … 1666 1666 #: templates/debug.php356, templates/account/partials/site.php:148 1667 1667 msgid "Blog ID" 1668 msgstr " Blog ID"1668 msgstr "מזהה בלוג" 1669 1669 1670 1670 #: templates/debug.php421, templates/debug.php499, … … 1804 1804 #: templates/account/billing.php45, templates/account/billing.php:45 1805 1805 msgid "Tax / VAT ID" 1806 msgstr " Tax / VAT ID"1806 msgstr "ח.פ." 1807 1807 1808 1808 #: templates/account/billing.php48, templates/account/billing.php48, … … 2115 2115 #: templates/forms/premium-versions-upgrade-handler.php:24 2116 2116 msgid "There is a new version of %s available." 2117 msgstr " There is a new version of %s available."2117 msgstr "יש גרסה חדשה עבור ה%s." 2118 2118 2119 2119 #: templates/forms/premium-versions-upgrade-handler.php:25 … … 2123 2123 #: templates/forms/premium-versions-upgrade-handler.php:34 2124 2124 msgid "New Version Available" 2125 msgstr " New Version Available"2125 msgstr "יש גרסה חדשה" 2126 2126 2127 2127 #: templates/forms/premium-versions-upgrade-handler.php:36 2128 2128 msgid "Renew license" 2129 msgstr " Renew license"2129 msgstr "חידוש רישיון" 2130 2130 2131 2131 #: templates/forms/premium-versions-upgrade-handler.php:53 … … 2156 2156 #: templates/partials/network-activation.php:23 2157 2157 msgid "Activate license on all sites in the network." 2158 msgstr " Activate license on all sites in the network."2158 msgstr "הפעלת רישיון על כל האתרים ברשת." 2159 2159 2160 2160 #: templates/partials/network-activation.php:24 2161 2161 msgid "Apply on all sites in the network." 2162 msgstr " Apply on all sites in the network."2162 msgstr "יישום על כל האתרים ברשת." 2163 2163 2164 2164 #: templates/partials/network-activation.php:27 2165 2165 msgid "Activate license on all pending sites." 2166 msgstr " Activate license on all pending sites."2166 msgstr "הפעלת רישיון על כל האתרים התלויים והעומדים." 2167 2167 2168 2168 #: templates/partials/network-activation.php:28 2169 2169 msgid "Apply on all pending sites." 2170 msgstr " Apply on all pending sites."2170 msgstr "יישום על כל האתרים התלויים והעומדים." 2171 2171 2172 2172 #: templates/partials/network-activation.php36, 2173 2173 #: templates/partials/network-activation.php:68 2174 2174 msgid "allow" 2175 msgstr " allow"2175 msgstr "אפשר" 2176 2176 2177 2177 #: templates/partials/network-activation.php38, 2178 2178 #: templates/partials/network-activation.php:70 2179 2179 msgid "delegate" 2180 msgstr " delegate"2180 msgstr "האצל" 2181 2181 2182 2182 #: templates/partials/network-activation.php41, 2183 2183 #: templates/partials/network-activation.php:73 2184 2184 msgid "skip" 2185 msgstr " skip"2185 msgstr "דלג" 2186 2186 2187 2187 #: templates/plugin-info/description.php72, … … 2226 2226 #: templates/account/partials/site.php:181 2227 2227 msgid "Owner Name" 2228 msgstr " Owner Name"2228 msgstr "שם הבעלים" 2229 2229 2230 2230 #: templates/account/partials/site.php:193 2231 2231 msgid "Owner Email" 2232 msgstr " Owner Email"2232 msgstr "מייל הבעלים" 2233 2233 2234 2234 #: templates/account/partials/site.php:205 2235 2235 msgid "Owner ID" 2236 msgstr " Owner ID"2236 msgstr "מזהה הבעלים" 2237 2237 2238 2238 #: templates/account/partials/site.php:270 2239 2239 msgid "Subscription" 2240 msgstr " Subscription"2240 msgstr "מנוי" 2241 2241 2242 2242 #: templates/forms/deactivation/contact.php:19 -
basepress/trunk/freemius/languages/freemius-it_IT.po
r1882707 r1892870 11 11 "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" 12 12 "POT-Creation-Date: \n" 13 "PO-Revision-Date: 2018-05-2 4 14:01+0000\n"13 "PO-Revision-Date: 2018-05-25 22:15+0000\n" 14 14 "Last-Translator: Daniele Scasciafratte Mte90 <mte90net@gmail.com>\n" 15 15 "Language: it_IT\n" … … 177 177 #: includes/class-freemius.php:17103 178 178 msgid "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."179 msgstr "Errore API inaspettato. Contatta l'autore di %s con il seguente errore." 180 180 181 181 #: includes/class-freemius.php:4815 … … 415 415 #: includes/class-freemius.php:16705 416 416 msgid "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 %s per sempre."417 msgstr "La tua licenza è scaduta. Puoi continuare ad usare la versione gratuita %s per sempre." 418 418 419 419 #: includes/class-freemius.php:16707 420 420 msgid "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$s senza interruzioni."421 msgstr "La tua licenza è scaduta. %1$saggiorna ora %2$sper continuare ad utilizzare %3$s senza interruzioni." 422 422 423 423 #: includes/class-freemius.php:16715 … … 435 435 #: includes/class-freemius.php:16753 436 436 msgid "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$s aggiorna ora %2$sper continuare ad usare %3$ssenza interruzioni."437 msgstr "La tua versione prova è scaduta.%1$s aggiorna ora %2$s per continuare ad usare %3$s senza interruzioni." 438 438 439 439 #: includes/class-freemius.php:16858 … … 471 471 #: includes/class-freemius.php:17037 472 472 msgid "You are already running the %s in a trial mode." 473 msgstr "Stai già usando %s in modalità prova."473 msgstr "Stai già usando %s in modalità prova." 474 474 475 475 #: includes/class-freemius.php:17048 … … 539 539 #: includes/class-freemius.php17910, templates/forms/optout.php:32 540 540 msgid "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 "541 msgstr "Ti ringraziamo per averci concesso di tracciare alcuni dati di utilizzo al fine di migliorare %s." 542 542 543 543 #: includes/class-freemius.php:17911 … … 572 572 #: includes/class-freemius.php:18067 573 573 msgid "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 %s a %scliccando il pulsante Cambia proprietario."574 msgstr "Puoi abbandonare la proprietà dell'account %s a %scliccando il pulsante Cambia proprietario." 575 575 576 576 #: includes/class-freemius.php:18074 … … 627 627 #: includes/class-freemius.php:18804 628 628 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!" 629 msgstr "Ciao, sai che %s ha il programma di affiliazione? Se ti piace %s puoi diventare un nostro ambasciatore e guadagnare denaro!"629 msgstr "Ciao, sai che %s ha il programma di affiliazione? Se ti piace %s puoi diventare un nostro ambasciatore e guadagnare denaro!" 630 630 631 631 #: includes/class-freemius.php:18813 … … 747 747 #: includes/class-freemius.php20302, templates/connect.php:267 748 748 msgid "do %sNOT%s send me security & feature updates, educational content and offers." 749 msgstr "%snon %s mi invierà aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte."749 msgstr "%snon %s mi invierà aggiornamenti di funzionalità e sicurezza, contenuti formativi e offerte." 750 750 751 751 #: includes/class-freemius.php:20312 … … 1410 1410 #: templates/connect.php:231 1411 1411 msgid "During the update process we detected %d site(s) that are still pending license activation." 1412 msgstr "Durante la procedura di aggiornamento abbiamo individuato%d sito/i che sono in attesa della attivazione della licenza."1412 msgstr "Durante la procedura di aggiornamento abbiamo individuato%d sito/i che sono in attesa della attivazione della licenza." 1413 1413 1414 1414 #: templates/connect.php:233 1415 1415 msgid "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 %s su questi siti, inserisci la tua licenza sotto e fai clic sul pulsante di attivazione."1416 msgstr "Se vuoi utilizzare %s su questi siti, inserisci la tua licenza sotto e fai clic sul pulsante di attivazione." 1417 1417 1418 1418 #: templates/connect.php:235 … … 1488 1488 #: templates/connect.php378, templates/forms/license-activation.php:38 1489 1489 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." 1490 msgstr " %1$sinvierà periodicamente dei dati a %2$sper verificare aggiornamenti di sicurezza e di funzionalità e verificare la validità della tua licenza."1490 msgstr " 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." 1491 1491 1492 1492 #: templates/connect.php:383 … … 1770 1770 #: templates/secure-https-header.php:28 1771 1771 msgid "Secure HTTPS %s page, running from an external domain" 1772 msgstr "Metti in sicurezza la pagina HTTPS %s gestita da un dominio esterno"1772 msgstr "Metti in sicurezza la pagina HTTPS %s gestita da un dominio esterno" 1773 1773 1774 1774 #: includes/customizer/class-fs-customizer-support-section.php55, … … 1983 1983 #: templates/forms/affiliation.php:142 1984 1984 msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" 1985 msgstr "Comunica nuovi clienti al nostro %s e guadagna %s di commissione per ogni vendita avvenuta!"1985 msgstr "Comunica nuovi clienti al nostro %s e guadagna %s di commissione per ogni vendita avvenuta!" 1986 1986 1987 1987 #: templates/forms/affiliation.php:145 -
basepress/trunk/freemius/languages/freemius.pot
r1882707 r1892870 121 121 msgstr "" 122 122 123 #: includes/class-freemius.php:34 02123 #: includes/class-freemius.php:3453 124 124 msgid "I don't know what is cURL or how to install it, help me!" 125 125 msgstr "" 126 126 127 #: includes/class-freemius.php:34 04127 #: includes/class-freemius.php:3455 128 128 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." 129 129 msgstr "" 130 130 131 #: includes/class-freemius.php:34 11131 #: includes/class-freemius.php:3462 132 132 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." 133 133 msgstr "" 134 134 135 #: includes/class-freemius.php:35 16135 #: includes/class-freemius.php:3567 136 136 msgid "Yes - do your thing" 137 137 msgstr "" 138 138 139 #: includes/class-freemius.php:35 21139 #: includes/class-freemius.php:3572 140 140 msgid "No - just deactivate" 141 141 msgstr "" 142 142 143 #: includes/class-freemius.php:3 566, 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:43143 #: 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 144 144 msgctxt "exclamation" 145 145 msgid "Oops" 146 146 msgstr "" 147 147 148 #: includes/class-freemius.php:36 35148 #: includes/class-freemius.php:3686 149 149 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." 150 150 msgstr "" 151 151 152 #: includes/class-freemius.php:4 063152 #: includes/class-freemius.php:4114 153 153 msgctxt "addonX cannot run without pluginY" 154 154 msgid "%s cannot run without %s." 155 155 msgstr "" 156 156 157 #: includes/class-freemius.php:4 064157 #: includes/class-freemius.php:4115 158 158 msgctxt "addonX cannot run..." 159 159 msgid "%s cannot run without the plugin." 160 160 msgstr "" 161 161 162 #: includes/class-freemius.php:4 176, includes/class-freemius.php:4201, includes/class-freemius.php:17103162 #: includes/class-freemius.php:4227, includes/class-freemius.php:4252, includes/class-freemius.php:17155 163 163 msgid "Unexpected API error. Please contact the %s's author with the following error." 164 164 msgstr "" 165 165 166 #: includes/class-freemius.php:48 15166 #: includes/class-freemius.php:4866 167 167 msgid "Premium %s version was successfully activated." 168 168 msgstr "" 169 169 170 #: includes/class-freemius.php:48 27, includes/class-freemius.php:6660170 #: includes/class-freemius.php:4878, includes/class-freemius.php:6711 171 171 msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)." 172 172 msgid "W00t" 173 173 msgstr "" 174 174 175 #: includes/class-freemius.php:48 42175 #: includes/class-freemius.php:4893 176 176 msgid "You have a %s license." 177 177 msgstr "" 178 178 179 #: includes/class-freemius.php:48 46, 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:16891179 #: 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 180 180 msgctxt "interjection expressing joy or exuberance" 181 181 msgid "Yee-haw" 182 182 msgstr "" 183 183 184 #: includes/class-freemius.php:51 10184 #: includes/class-freemius.php:5161 185 185 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." 186 186 msgstr "" 187 187 188 #: includes/class-freemius.php:51 14188 #: includes/class-freemius.php:5165 189 189 msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." 190 190 msgstr "" 191 191 192 #: includes/class-freemius.php:51 23, templates/add-ons.php:99, templates/account/partials/addon.php:283192 #: includes/class-freemius.php:5174, templates/add-ons.php:99, templates/account/partials/addon.php:283 193 193 msgid "More information about %s" 194 194 msgstr "" 195 195 196 #: includes/class-freemius.php:51 24196 #: includes/class-freemius.php:5175 197 197 msgid "Purchase License" 198 198 msgstr "" 199 199 200 #: includes/class-freemius.php:60 35, templates/connect.php:161200 #: includes/class-freemius.php:6086, templates/connect.php:161 201 201 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." 202 202 msgstr "" 203 203 204 #: includes/class-freemius.php:60 39204 #: includes/class-freemius.php:6090 205 205 msgid "start the trial" 206 206 msgstr "" 207 207 208 #: includes/class-freemius.php:60 40, templates/connect.php:165208 #: includes/class-freemius.php:6091, templates/connect.php:165 209 209 msgid "complete the install" 210 210 msgstr "" 211 211 212 #: includes/class-freemius.php:61 47212 #: includes/class-freemius.php:6198 213 213 msgid "You are just one step away - %s" 214 214 msgstr "" 215 215 216 #: includes/class-freemius.php:6 150216 #: includes/class-freemius.php:6201 217 217 msgctxt "%s - plugin name. As complete \"PluginX\" activation now" 218 218 msgid "Complete \"%s\" Activation Now" 219 219 msgstr "" 220 220 221 #: includes/class-freemius.php:62 27221 #: includes/class-freemius.php:6278 222 222 msgid "We made a few tweaks to the %s, %s" 223 223 msgstr "" 224 224 225 #: includes/class-freemius.php:62 31225 #: includes/class-freemius.php:6282 226 226 msgid "Opt in to make \"%s\" Better!" 227 227 msgstr "" 228 228 229 #: includes/class-freemius.php:6 659229 #: includes/class-freemius.php:6710 230 230 msgid "The upgrade of %s was successfully completed." 231 231 msgstr "" 232 232 233 #: includes/class-freemius.php:8 384, 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:32233 #: 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 234 234 msgid "Add-On" 235 235 msgstr "" 236 236 237 #: includes/class-freemius.php:8 386, templates/debug.php:349, templates/debug.php:510237 #: includes/class-freemius.php:8437, templates/debug.php:349, templates/debug.php:510 238 238 msgid "Plugin" 239 239 msgstr "" 240 240 241 #: includes/class-freemius.php:8 387, templates/debug.php:349, templates/debug.php:510, templates/forms/deactivation/form.php:64241 #: includes/class-freemius.php:8438, templates/debug.php:349, templates/debug.php:510, templates/forms/deactivation/form.php:64 242 242 msgid "Theme" 243 243 msgstr "" 244 244 245 #: includes/class-freemius.php:108 08246 msgid " invalid_site_details_collection"247 msgstr "" 248 249 #: includes/class-freemius.php:109 28245 #: includes/class-freemius.php:10859 246 msgid "Invalid site details collection." 247 msgstr "" 248 249 #: includes/class-freemius.php:10979 250 250 msgid "We couldn't find your email address in the system, are you sure it's the right address?" 251 251 msgstr "" 252 252 253 #: includes/class-freemius.php:109 30253 #: includes/class-freemius.php:10981 254 254 msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" 255 255 msgstr "" 256 256 257 #: includes/class-freemius.php:11 166257 #: includes/class-freemius.php:11217 258 258 msgid "Account is pending activation." 259 259 msgstr "" 260 260 261 #: includes/class-freemius.php:136 08261 #: includes/class-freemius.php:13659 262 262 msgid "%s activation was successfully completed." 263 263 msgstr "" 264 264 265 #: includes/class-freemius.php:136 22265 #: includes/class-freemius.php:13673 266 266 msgid "Your account was successfully activated with the %s plan." 267 267 msgstr "" 268 268 269 #: includes/class-freemius.php:136 33, includes/class-freemius.php:16737269 #: includes/class-freemius.php:13684, includes/class-freemius.php:16789 270 270 msgid "Your trial has been successfully started." 271 271 msgstr "" 272 272 273 #: includes/class-freemius.php:142 03, includes/class-freemius.php:14255, includes/class-freemius.php:14317273 #: includes/class-freemius.php:14254, includes/class-freemius.php:14306, includes/class-freemius.php:14368 274 274 msgid "Couldn't activate %s." 275 275 msgstr "" 276 276 277 #: includes/class-freemius.php:142 04, includes/class-freemius.php:14256, includes/class-freemius.php:14318277 #: includes/class-freemius.php:14255, includes/class-freemius.php:14307, includes/class-freemius.php:14369 278 278 msgid "Please contact us with the following message:" 279 279 msgstr "" 280 280 281 #: includes/class-freemius.php:14 666, includes/class-freemius.php:18929281 #: includes/class-freemius.php:14718, includes/class-freemius.php:18988 282 282 msgid "Upgrade" 283 283 msgstr "" 284 284 285 #: includes/class-freemius.php:14 672285 #: includes/class-freemius.php:14724 286 286 msgid "Start Trial" 287 287 msgstr "" 288 288 289 #: includes/class-freemius.php:14 674289 #: includes/class-freemius.php:14726 290 290 msgid "Pricing" 291 291 msgstr "" 292 292 293 #: includes/class-freemius.php:147 34, includes/class-freemius.php:14736293 #: includes/class-freemius.php:14786, includes/class-freemius.php:14788 294 294 msgid "Affiliation" 295 295 msgstr "" 296 296 297 #: includes/class-freemius.php:14 756, includes/class-freemius.php:14758, templates/account.php:146, templates/debug.php:314297 #: includes/class-freemius.php:14808, includes/class-freemius.php:14810, templates/account.php:146, templates/debug.php:314 298 298 msgid "Account" 299 299 msgstr "" 300 300 301 #: includes/class-freemius.php:14 769, includes/class-freemius.php:14771, includes/customizer/class-fs-customizer-support-section.php:60301 #: includes/class-freemius.php:14821, includes/class-freemius.php:14823, includes/customizer/class-fs-customizer-support-section.php:60 302 302 msgid "Contact Us" 303 303 msgstr "" 304 304 305 #: includes/class-freemius.php:14 781, includes/class-freemius.php:14783, includes/class-freemius.php:18939, templates/account.php:96, templates/account/partials/addon.php:37305 #: 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 306 306 msgid "Add-Ons" 307 307 msgstr "" 308 308 309 #: includes/class-freemius.php:148 15, templates/pricing.php:97309 #: includes/class-freemius.php:14867, templates/pricing.php:97 310 310 msgctxt "noun" 311 311 msgid "Pricing" 312 312 msgstr "" 313 313 314 #: includes/class-freemius.php:150 09, includes/customizer/class-fs-customizer-support-section.php:67314 #: includes/class-freemius.php:15061, includes/customizer/class-fs-customizer-support-section.php:67 315 315 msgid "Support Forum" 316 316 msgstr "" 317 317 318 #: includes/class-freemius.php:15 794318 #: includes/class-freemius.php:15846 319 319 msgid "Your email has been successfully verified - you are AWESOME!" 320 320 msgstr "" 321 321 322 #: includes/class-freemius.php:15 795322 #: includes/class-freemius.php:15847 323 323 msgctxt "a positive response" 324 324 msgid "Right on" 325 325 msgstr "" 326 326 327 #: includes/class-freemius.php:16 367327 #: includes/class-freemius.php:16419 328 328 msgid "Your %s Add-on plan was successfully upgraded." 329 329 msgstr "" 330 330 331 #: includes/class-freemius.php:16 369331 #: includes/class-freemius.php:16421 332 332 msgid "%s Add-on was successfully purchased." 333 333 msgstr "" 334 334 335 #: includes/class-freemius.php:16 372335 #: includes/class-freemius.php:16424 336 336 msgid "Download the latest version" 337 337 msgstr "" 338 338 339 #: includes/class-freemius.php:164 44339 #: includes/class-freemius.php:16496 340 340 msgctxt "%1s - plugin title, %2s - API domain" 341 341 msgid "Your server is blocking the access to Freemius' API, which is crucial for %1s synchronization. Please contact your host to whitelist %2s" 342 342 msgstr "" 343 343 344 #: includes/class-freemius.php:164 47, includes/class-freemius.php:16862, includes/class-freemius.php:16927344 #: includes/class-freemius.php:16499, includes/class-freemius.php:16914, includes/class-freemius.php:16979 345 345 msgid "Error received from the server:" 346 346 msgstr "" 347 347 348 #: includes/class-freemius.php:16 457348 #: includes/class-freemius.php:16509 349 349 msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." 350 350 msgstr "" 351 351 352 #: includes/class-freemius.php:166 39, includes/class-freemius.php:16867, includes/class-freemius.php:16910352 #: includes/class-freemius.php:16691, includes/class-freemius.php:16919, includes/class-freemius.php:16962 353 353 msgctxt "something somebody says when they are thinking about what you have just said." 354 354 msgid "Hmm" 355 355 msgstr "" 356 356 357 #: includes/class-freemius.php:16 652357 #: includes/class-freemius.php:16704 358 358 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." 359 359 msgstr "" 360 360 361 #: includes/class-freemius.php:16 653, templates/account.php:98, templates/add-ons.php:130, templates/account/partials/addon.php:39361 #: includes/class-freemius.php:16705, templates/account.php:98, templates/add-ons.php:130, templates/account/partials/addon.php:39 362 362 msgctxt "trial period" 363 363 msgid "Trial" 364 364 msgstr "" 365 365 366 #: includes/class-freemius.php:16 658366 #: includes/class-freemius.php:16710 367 367 msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." 368 368 msgstr "" 369 369 370 #: includes/class-freemius.php:16 662, includes/class-freemius.php:16719370 #: includes/class-freemius.php:16714, includes/class-freemius.php:16771 371 371 msgid "Please contact us here" 372 372 msgstr "" 373 373 374 #: includes/class-freemius.php:16 672374 #: includes/class-freemius.php:16724 375 375 msgid "Your plan was successfully upgraded." 376 376 msgstr "" 377 377 378 #: includes/class-freemius.php:16 689378 #: includes/class-freemius.php:16741 379 379 msgid "Your plan was successfully changed to %s." 380 380 msgstr "" 381 381 382 #: includes/class-freemius.php:167 05382 #: includes/class-freemius.php:16757 383 383 msgid "Your license has expired. You can still continue using the free %s forever." 384 384 msgstr "" 385 385 386 #: includes/class-freemius.php:167 07386 #: includes/class-freemius.php:16759 387 387 msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." 388 388 msgstr "" 389 389 390 #: includes/class-freemius.php:167 15390 #: includes/class-freemius.php:16767 391 391 msgid "Your license has been cancelled. If you think it's a mistake, please contact support." 392 392 msgstr "" 393 393 394 #: includes/class-freemius.php:167 28394 #: includes/class-freemius.php:16780 395 395 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." 396 396 msgstr "" 397 397 398 #: includes/class-freemius.php:16 751398 #: includes/class-freemius.php:16803 399 399 msgid "Your free trial has expired. You can still continue using all our free features." 400 400 msgstr "" 401 401 402 #: includes/class-freemius.php:16 753402 #: includes/class-freemius.php:16805 403 403 msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." 404 404 msgstr "" 405 405 406 #: includes/class-freemius.php:16 858406 #: includes/class-freemius.php:16910 407 407 msgid "It looks like the license could not be activated." 408 408 msgstr "" 409 409 410 #: includes/class-freemius.php:16 888410 #: includes/class-freemius.php:16940 411 411 msgid "Your license was successfully activated." 412 412 msgstr "" 413 413 414 #: includes/class-freemius.php:169 14414 #: includes/class-freemius.php:16966 415 415 msgid "It looks like your site currently doesn't have an active license." 416 416 msgstr "" 417 417 418 #: includes/class-freemius.php:169 26418 #: includes/class-freemius.php:16978 419 419 msgid "It looks like the license deactivation failed." 420 420 msgstr "" 421 421 422 #: includes/class-freemius.php:1 6954422 #: includes/class-freemius.php:17006 423 423 msgid "Your license was successfully deactivated, you are back to the %s plan." 424 424 msgstr "" 425 425 426 #: includes/class-freemius.php:1 6955426 #: includes/class-freemius.php:17007 427 427 msgid "O.K" 428 428 msgstr "" 429 429 430 #: includes/class-freemius.php:170 03430 #: includes/class-freemius.php:17055 431 431 msgid "Your plan was successfully downgraded. Your %s plan license will expire in %s." 432 432 msgstr "" 433 433 434 #: includes/class-freemius.php:170 13434 #: includes/class-freemius.php:17065 435 435 msgid "Seems like we are having some temporary issue with your plan downgrade. Please try again in few minutes." 436 436 msgstr "" 437 437 438 #: includes/class-freemius.php:170 37438 #: includes/class-freemius.php:17089 439 439 msgid "You are already running the %s in a trial mode." 440 440 msgstr "" 441 441 442 #: includes/class-freemius.php:17 048442 #: includes/class-freemius.php:17100 443 443 msgid "You already utilized a trial before." 444 444 msgstr "" 445 445 446 #: includes/class-freemius.php:17 062446 #: includes/class-freemius.php:17114 447 447 msgid "Plan %s do not exist, therefore, can't start a trial." 448 448 msgstr "" 449 449 450 #: includes/class-freemius.php:17 073450 #: includes/class-freemius.php:17125 451 451 msgid "Plan %s does not support a trial period." 452 452 msgstr "" 453 453 454 #: includes/class-freemius.php:17 084454 #: includes/class-freemius.php:17136 455 455 msgid "None of the %s's plans supports a trial period." 456 456 msgstr "" 457 457 458 #: includes/class-freemius.php:171 34458 #: includes/class-freemius.php:17186 459 459 msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" 460 460 msgstr "" 461 461 462 #: includes/class-freemius.php:17 185462 #: includes/class-freemius.php:17237 463 463 msgid "Your %s free trial was successfully cancelled." 464 464 msgstr "" 465 465 466 #: includes/class-freemius.php:17 190466 #: includes/class-freemius.php:17242 467 467 msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." 468 468 msgstr "" 469 469 470 #: includes/class-freemius.php:17 474470 #: includes/class-freemius.php:17533 471 471 msgid "Version %s was released." 472 472 msgstr "" 473 473 474 #: includes/class-freemius.php:17 474474 #: includes/class-freemius.php:17533 475 475 msgid "Please download %s." 476 476 msgstr "" 477 477 478 #: includes/class-freemius.php:17 481478 #: includes/class-freemius.php:17540 479 479 msgid "the latest %s version here" 480 480 msgstr "" 481 481 482 #: includes/class-freemius.php:17 486482 #: includes/class-freemius.php:17545 483 483 msgid "New" 484 484 msgstr "" 485 485 486 #: includes/class-freemius.php:17 491486 #: includes/class-freemius.php:17550 487 487 msgid "Seems like you got the latest release." 488 488 msgstr "" 489 489 490 #: includes/class-freemius.php:17 492490 #: includes/class-freemius.php:17551 491 491 msgid "You are all good!" 492 492 msgstr "" 493 493 494 #: includes/class-freemius.php:17 758494 #: includes/class-freemius.php:17817 495 495 msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." 496 496 msgstr "" 497 497 498 #: includes/class-freemius.php:17 893498 #: includes/class-freemius.php:17952 499 499 msgid "Site successfully opted in." 500 500 msgstr "" 501 501 502 #: includes/class-freemius.php:17 894, includes/class-freemius.php:18671502 #: includes/class-freemius.php:17953, includes/class-freemius.php:18730 503 503 msgid "Awesome" 504 504 msgstr "" 505 505 506 #: includes/class-freemius.php:179 10, templates/forms/optout.php:32506 #: includes/class-freemius.php:17969, templates/forms/optout.php:32 507 507 msgid "We appreciate your help in making the %s better by letting us track some usage data." 508 508 msgstr "" 509 509 510 #: includes/class-freemius.php:179 11510 #: includes/class-freemius.php:17970 511 511 msgid "Thank you!" 512 512 msgstr "" 513 513 514 #: includes/class-freemius.php:179 18514 #: includes/class-freemius.php:17977 515 515 msgid "We will no longer be sending any usage data of %s on %s to %s." 516 516 msgstr "" 517 517 518 #: includes/class-freemius.php:180 33518 #: includes/class-freemius.php:18092 519 519 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." 520 520 msgstr "" 521 521 522 #: includes/class-freemius.php:180 39522 #: includes/class-freemius.php:18098 523 523 msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." 524 524 msgstr "" 525 525 526 #: includes/class-freemius.php:18 044526 #: includes/class-freemius.php:18103 527 527 msgid "%s is the new owner of the account." 528 528 msgstr "" 529 529 530 #: includes/class-freemius.php:18 046530 #: includes/class-freemius.php:18105 531 531 msgctxt "as congratulations" 532 532 msgid "Congrats" 533 533 msgstr "" 534 534 535 #: includes/class-freemius.php:18 066535 #: includes/class-freemius.php:18125 536 536 msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." 537 537 msgstr "" 538 538 539 #: includes/class-freemius.php:18 067539 #: includes/class-freemius.php:18126 540 540 msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." 541 541 msgstr "" 542 542 543 #: includes/class-freemius.php:18 074543 #: includes/class-freemius.php:18133 544 544 msgid "Change Ownership" 545 545 msgstr "" 546 546 547 #: includes/class-freemius.php:18 082547 #: includes/class-freemius.php:18141 548 548 msgid "Your email was successfully updated. You should receive an email with confirmation instructions in few moments." 549 549 msgstr "" 550 550 551 #: includes/class-freemius.php:18 094551 #: includes/class-freemius.php:18153 552 552 msgid "Please provide your full name." 553 553 msgstr "" 554 554 555 #: includes/class-freemius.php:18 099555 #: includes/class-freemius.php:18158 556 556 msgid "Your name was successfully updated." 557 557 msgstr "" 558 558 559 #: includes/class-freemius.php:18 160559 #: includes/class-freemius.php:18219 560 560 msgid "You have successfully updated your %s." 561 561 msgstr "" 562 562 563 #: includes/class-freemius.php:183 00563 #: includes/class-freemius.php:18359 564 564 msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." 565 565 msgstr "" 566 566 567 #: includes/class-freemius.php:183 01567 #: includes/class-freemius.php:18360 568 568 msgctxt "advance notice of something that will need attention." 569 569 msgid "Heads up" 570 570 msgstr "" 571 571 572 #: includes/class-freemius.php:187 11572 #: includes/class-freemius.php:18770 573 573 msgctxt "exclamation" 574 574 msgid "Hey" 575 575 msgstr "" 576 576 577 #: includes/class-freemius.php:187 11577 #: includes/class-freemius.php:18770 578 578 msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." 579 579 msgstr "" 580 580 581 #: includes/class-freemius.php:187 19581 #: includes/class-freemius.php:18778 582 582 msgid "No commitment for %s days - cancel anytime!" 583 583 msgstr "" 584 584 585 #: includes/class-freemius.php:187 20585 #: includes/class-freemius.php:18779 586 586 msgid "No credit card required" 587 587 msgstr "" 588 588 589 #: includes/class-freemius.php:187 27, templates/forms/trial-start.php:53589 #: includes/class-freemius.php:18786, templates/forms/trial-start.php:53 590 590 msgctxt "call to action" 591 591 msgid "Start free trial" 592 592 msgstr "" 593 593 594 #: includes/class-freemius.php:188 04594 #: includes/class-freemius.php:18863 595 595 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!" 596 596 msgstr "" 597 597 598 #: includes/class-freemius.php:188 13598 #: includes/class-freemius.php:18872 599 599 msgid "Learn more" 600 600 msgstr "" 601 601 602 #: includes/class-freemius.php:1 8963, 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:230602 #: 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 603 603 msgid "Activate License" 604 604 msgstr "" 605 605 606 #: includes/class-freemius.php:1 8964, templates/account.php:457, templates/account.php:496, templates/account/partials/site.php:256606 #: includes/class-freemius.php:19023, templates/account.php:461, templates/account.php:500, templates/account/partials/site.php:256 607 607 msgid "Change License" 608 608 msgstr "" 609 609 610 #: includes/class-freemius.php:19 046, templates/account/partials/site.php:161610 #: includes/class-freemius.php:19105, templates/account/partials/site.php:161 611 611 msgid "Opt Out" 612 612 msgstr "" 613 613 614 #: includes/class-freemius.php:19 048, includes/class-freemius.php:19053, templates/account/partials/site.php:43, templates/account/partials/site.php:161614 #: includes/class-freemius.php:19107, includes/class-freemius.php:19112, templates/account/partials/site.php:43, templates/account/partials/site.php:161 615 615 msgid "Opt In" 616 616 msgstr "" 617 617 618 #: includes/class-freemius.php:19 245618 #: includes/class-freemius.php:19304 619 619 msgid "Please follow these steps to complete the upgrade" 620 620 msgstr "" 621 621 622 #: includes/class-freemius.php:19 249622 #: includes/class-freemius.php:19308 623 623 msgid "Download the latest %s version" 624 624 msgstr "" 625 625 626 #: includes/class-freemius.php:19 253626 #: includes/class-freemius.php:19312 627 627 msgid "Upload and activate the downloaded version" 628 628 msgstr "" 629 629 630 #: includes/class-freemius.php:19 255630 #: includes/class-freemius.php:19314 631 631 msgid "How to upload and activate?" 632 632 msgstr "" 633 633 634 #: includes/class-freemius.php:19 384634 #: includes/class-freemius.php:19443 635 635 msgid "%sClick here%s to choose the sites where you'd like to activate the license on." 636 636 msgstr "" 637 637 638 #: includes/class-freemius.php:19 545638 #: includes/class-freemius.php:19604 639 639 msgid "Auto installation only works for opted-in users." 640 640 msgstr "" 641 641 642 #: includes/class-freemius.php:19 555, includes/class-freemius.php:19588, includes/class-fs-plugin-updater.php:713, includes/class-fs-plugin-updater.php:727642 #: includes/class-freemius.php:19614, includes/class-freemius.php:19647, includes/class-fs-plugin-updater.php:713, includes/class-fs-plugin-updater.php:727 643 643 msgid "Invalid module ID." 644 644 msgstr "" 645 645 646 #: includes/class-freemius.php:19 564, includes/class-fs-plugin-updater.php:747646 #: includes/class-freemius.php:19623, includes/class-fs-plugin-updater.php:747 647 647 msgid "Premium version already active." 648 648 msgstr "" 649 649 650 #: includes/class-freemius.php:19 571650 #: includes/class-freemius.php:19630 651 651 msgid "You do not have a valid license to access the premium version." 652 652 msgstr "" 653 653 654 #: includes/class-freemius.php:19 578654 #: includes/class-freemius.php:19637 655 655 msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." 656 656 msgstr "" 657 657 658 #: includes/class-freemius.php:19 596, includes/class-fs-plugin-updater.php:746658 #: includes/class-freemius.php:19655, includes/class-fs-plugin-updater.php:746 659 659 msgid "Premium add-on version already installed." 660 660 msgstr "" 661 661 662 #: includes/class-freemius.php: 19941662 #: includes/class-freemius.php:20000 663 663 msgid "View paid features" 664 664 msgstr "" 665 665 666 #: includes/class-freemius.php:20 251666 #: includes/class-freemius.php:20310 667 667 msgid "Thank you so much for using %s and its add-ons!" 668 668 msgstr "" 669 669 670 #: includes/class-freemius.php:20 252670 #: includes/class-freemius.php:20311 671 671 msgid "Thank you so much for using %s!" 672 672 msgstr "" 673 673 674 #: includes/class-freemius.php:20 258674 #: includes/class-freemius.php:20317 675 675 msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." 676 676 msgstr "" 677 677 678 #: includes/class-freemius.php:20 262678 #: includes/class-freemius.php:20321 679 679 msgid "Thank you so much for using our products!" 680 680 msgstr "" 681 681 682 #: includes/class-freemius.php:20 263682 #: includes/class-freemius.php:20322 683 683 msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." 684 684 msgstr "" 685 685 686 #: includes/class-freemius.php:20 282686 #: includes/class-freemius.php:20341 687 687 msgid "%s and its add-ons" 688 688 msgstr "" 689 689 690 #: includes/class-freemius.php:20 291690 #: includes/class-freemius.php:20350 691 691 msgid "Products" 692 692 msgstr "" 693 693 694 #: includes/class-freemius.php:20 298, templates/connect.php:259694 #: includes/class-freemius.php:20357, templates/connect.php:259 695 695 msgid "Yes" 696 696 msgstr "" 697 697 698 #: includes/class-freemius.php:20 299, templates/connect.php:260698 #: includes/class-freemius.php:20358, templates/connect.php:260 699 699 msgid "send me security & feature updates, educational content and offers." 700 700 msgstr "" 701 701 702 #: includes/class-freemius.php:203 00, templates/connect.php:265702 #: includes/class-freemius.php:20359, templates/connect.php:265 703 703 msgid "No" 704 704 msgstr "" 705 705 706 #: includes/class-freemius.php:203 02, templates/connect.php:267706 #: includes/class-freemius.php:20361, templates/connect.php:267 707 707 msgid "do %sNOT%s send me security & feature updates, educational content and offers." 708 708 msgstr "" 709 709 710 #: includes/class-freemius.php:203 12710 #: includes/class-freemius.php:20371 711 711 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 🙂" 712 712 msgstr "" 713 713 714 #: includes/class-freemius.php:203 14, templates/connect.php:274714 #: includes/class-freemius.php:20373, templates/connect.php:274 715 715 msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" 716 716 msgstr "" 717 717 718 #: includes/class-freemius.php:20 598718 #: includes/class-freemius.php:20657 719 719 msgid "License key is empty." 720 720 msgstr "" … … 767 767 msgstr "" 768 768 769 #: includes/fs-plugin-info-dialog.php:404, templates/account.php:4 48769 #: includes/fs-plugin-info-dialog.php:404, templates/account.php:452 770 770 msgid "Install Update Now" 771 771 msgstr "" … … 926 926 msgstr "" 927 927 928 #: includes/fs-plugin-info-dialog.php:915 928 #: includes/fs-plugin-info-dialog.php:915, templates/account.php:368 929 929 msgctxt "x-ago" 930 930 msgid "%s ago" … … 1168 1168 msgstr "" 1169 1169 1170 #: templates/account.php:416 1170 #: templates/account.php:368, templates/account/partials/addon.php:116 1171 msgid "Expired" 1172 msgstr "" 1173 1174 #: templates/account.php:420 1171 1175 msgid "Premium version" 1172 1176 msgstr "" 1173 1177 1174 #: templates/account.php:4 181178 #: templates/account.php:422 1175 1179 msgid "Free version" 1176 1180 msgstr "" 1177 1181 1178 #: templates/account.php:43 01182 #: templates/account.php:434 1179 1183 msgid "Verify Email" 1180 1184 msgstr "" 1181 1185 1182 #: templates/account.php:44 11186 #: templates/account.php:445 1183 1187 msgid "Download %s Version" 1184 1188 msgstr "" 1185 1189 1186 #: templates/account.php:45 5, templates/account.php:636, templates/account/partials/site.php:237, templates/account/partials/site.php:2551190 #: templates/account.php:459, templates/account.php:640, templates/account/partials/site.php:237, templates/account/partials/site.php:255 1187 1191 msgctxt "verb" 1188 1192 msgid "Show" 1189 1193 msgstr "" 1190 1194 1191 #: templates/account.php:4 691195 #: templates/account.php:473 1192 1196 msgid "What is your %s?" 1193 1197 msgstr "" 1194 1198 1195 #: templates/account.php:4 77, templates/account/billing.php:271199 #: templates/account.php:481, templates/account/billing.php:27 1196 1200 msgctxt "verb" 1197 1201 msgid "Edit" 1198 1202 msgstr "" 1199 1203 1200 #: templates/account.php:49 01204 #: templates/account.php:494 1201 1205 msgid "Sites" 1202 1206 msgstr "" 1203 1207 1204 #: templates/account.php:50 11208 #: templates/account.php:505 1205 1209 msgid "Search by address" 1206 1210 msgstr "" 1207 1211 1208 #: templates/account.php:51 0, 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:211212 #: 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 1209 1213 msgid "ID" 1210 1214 msgstr "" 1211 1215 1212 #: templates/account.php:51 1, templates/debug.php:3571216 #: templates/account.php:515, templates/debug.php:357 1213 1217 msgid "Address" 1214 1218 msgstr "" 1215 1219 1216 #: templates/account.php:51 21220 #: templates/account.php:516 1217 1221 msgid "License" 1218 1222 msgstr "" 1219 1223 1220 #: templates/account.php:51 31224 #: templates/account.php:517 1221 1225 msgid "Plan" 1222 1226 msgstr "" 1223 1227 1224 #: templates/account.php:56 11228 #: templates/account.php:565 1225 1229 msgctxt "as software license" 1226 1230 msgid "License" 1227 1231 msgstr "" 1228 1232 1229 #: templates/account.php:63 01233 #: templates/account.php:634 1230 1234 msgctxt "verb" 1231 1235 msgid "Hide" 1232 1236 msgstr "" 1233 1237 1234 #: templates/account.php:66 51238 #: templates/account.php:669 1235 1239 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?" 1236 1240 msgstr "" … … 2114 2118 msgstr "" 2115 2119 2116 #: templates/account/partials/addon.php:1162117 msgid "Expired"2118 msgstr ""2119 2120 2120 #: templates/account/partials/addon.php:121 2121 2121 msgid "No expiration" -
basepress/trunk/freemius/start.php
r1882707 r1892870 16 16 * @var string 17 17 */ 18 $this_sdk_version = '2.1. 0';18 $this_sdk_version = '2.1.1'; 19 19 20 20 #region SDK Selection Logic -------------------------------------------------------------------- … … 180 180 $current_theme = wp_get_theme(); 181 181 $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 } 182 192 } 183 193 -
basepress/trunk/freemius/templates/account.php
r1882707 r1892870 365 365 <?php if ( is_object( $license ) && ! $license->is_lifetime() ) : ?> 366 366 <?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 ) ) ?> 367 369 <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> 369 373 <?php elseif ( $is_active_subscription && ! $subscription->is_first_payment_pending() ) : ?> 370 374 <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.