From 23a7e7384d935ad1da613bbb606c2becfc982d78 Mon Sep 17 00:00:00 2001 From: Swashata Ghosh Date: Tue, 30 Jan 2024 13:18:08 +0530 Subject: [PATCH] [build] [translation] Fix translation build error. 1. Update all gulp dependencies. 2. Use the new transifex API to push and pull files. --- .example.env | 4 + .gitignore | 4 +- CONTRIBUTING.md | 40 + gulpfile.js | 146 +- gulptasks/transifex.js | 132 + gulptasks/translate.js | 115 + languages/freemius-de_DE.mo | Bin 73551 -> 69463 bytes languages/freemius-de_DE.po | 3109 ++++++++----- languages/freemius-en.mo | Bin 68519 -> 0 bytes languages/freemius-en.po | 2936 ------------ languages/freemius-es_ES.mo | Bin 72032 -> 53110 bytes languages/freemius-es_ES.po | 3119 +++++++------ languages/freemius-fr_FR.mo | Bin 49369 -> 46758 bytes languages/freemius-fr_FR.po | 2804 ++++++----- languages/freemius-nl_NL.mo | Bin 47831 -> 45228 bytes languages/freemius-nl_NL.po | 2789 ++++++----- languages/freemius-ru_RU.mo | Bin 49143 -> 47036 bytes languages/freemius-ru_RU.po | 2669 ++++++----- languages/freemius.pot | 1126 ++--- package-lock.json | 8738 +++++++++++++++++++++++++++++++++++ package.json | 22 +- patches/wp-pot+1.10.2.patch | 48 + 22 files changed, 18321 insertions(+), 9480 deletions(-) create mode 100644 .example.env create mode 100644 CONTRIBUTING.md create mode 100644 gulptasks/transifex.js create mode 100644 gulptasks/translate.js delete mode 100644 languages/freemius-en.mo delete mode 100644 languages/freemius-en.po create mode 100644 package-lock.json create mode 100644 patches/wp-pot+1.10.2.patch diff --git a/.example.env b/.example.env new file mode 100644 index 00000000..2d8f202c --- /dev/null +++ b/.example.env @@ -0,0 +1,4 @@ +# Generate from here: https://app.transifex.com/user/settings/api/ +TRANSIFEX_API="..." +TRANSIFEX_ORGANIZATION=freemius +TRANSIFEX_PROJECT=sdk-testing \ No newline at end of file diff --git a/.gitignore b/.gitignore index ca4867b2..2b13bf5e 100644 --- a/.gitignore +++ b/.gitignore @@ -8,8 +8,8 @@ node_modules transifex-config.json *.orig npm-debug.log -package-lock.json vendor .DS_Store error-phpstan.xml -error-phpcs.log \ No newline at end of file +error-phpcs.log +.env \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..2ae327ff --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,40 @@ +# Contributing to Freemius SDK for WordPress + +We love to receive contributions from our community — you! There are many ways to contribute, from writing tutorials or blog posts, improving the documentation, submitting bug reports and feature requests or writing code which can be incorporated into Freemius SDK for WordPress itself. +Please be sure to read our [contributing guide](https://freemius.com/help/documentation/wordpress-sdk/freemius-sdk-contribute/) before making a pull request. + +## Setup Node.js + +We make use of several Node.js packages to build and test the SDK. To install them, you need to have Node.js installed on your machine. We recommend using +[nvm](https://github.com/nvm-sh/nvm). Once you have it installed, run the following commands to install the correct version of Node.js and the dependencies: + +```bash +# Make sure to use the latest LTS version of Node.js. +nvm install --lts +nvm use --lts + +# Install with a frozen lockfile. +npm ci +```` + +Now you may check the available commands by running: + +```bash +npm run +``` + +## Translations + +We use a custom build to extract translations and generate the POT file. The prerequisites are: + +- You must be a team member of Freemius. +- You must have access to our [Transifex](https://app.transifex.com/freemius/wordpress-sdk/dashboard/) project. +- You have set the `.env` file in the project with the needed variables. Check the `.env.example` file for reference. + +Now, you can run the following commands: + + +```bash +# Run the script to extract translations and generate the POT file. +npm run translate +``` \ No newline at end of file diff --git a/gulpfile.js b/gulpfile.js index 10a12652..8d3826b9 100755 --- a/gulpfile.js +++ b/gulpfile.js @@ -1,144 +1,4 @@ -var gulp = require('gulp'); -var path = require('path'); -var filesystem = require('fs'); -var wpPot = require('gulp-wp-pot'); -var gettext = require('gulp-gettext'); -var sort = require('gulp-sort'); -var pofill = require('gulp-pofill'); -var rename = require('gulp-rename'); -var clean = require('gulp-clean'); +require('dotenv').config(); +const {createTranslation} = require('./gulptasks/translate'); -var languagesFolder = './languages/'; - -var options = require('./transifex-config.json'); - -function getFolders(dir) { - return filesystem.readdirSync(dir) - .filter(function (file) { - return filesystem.statSync(path.join(dir, file)).isDirectory(); - }); -} - -var transifex = require('gulp-transifex').createClient(options); - -// Create POT out of PHP files -gulp.task('prepare-source', function () { - gulp.src('**/*.php') - .pipe(sort()) - .pipe(wpPot({ - destFile : 'freemius.pot', - package : 'freemius', - bugReport : 'https://github.com/Freemius/wordpress-sdk/issues', - lastTranslator : 'Vova Feldman ', - team : 'Freemius Team ', - - gettextFunctions: [ - {name: 'get_text_inline'}, - - {name: 'fs_text_inline'}, - {name: 'fs_echo_inline'}, - {name: 'fs_esc_js_inline'}, - {name: 'fs_esc_attr_inline'}, - {name: 'fs_esc_attr_echo_inline'}, - {name: 'fs_esc_html_inline'}, - {name: 'fs_esc_html_echo_inline'}, - - {name: 'get_text_x_inline', context: 2}, - {name: 'fs_text_x_inline', context: 2}, - {name: 'fs_echo_x_inline', context: 2}, - {name: 'fs_esc_attr_x_inline', context: 2}, - {name: 'fs_esc_js_x_inline', context: 2}, - {name: 'fs_esc_js_echo_x_inline', context: 2}, - {name: 'fs_esc_html_x_inline', context: 2}, - {name: 'fs_esc_html_echo_x_inline', context: 2} - ] - })) - .pipe(gulp.dest(languagesFolder + 'freemius.pot')); - - // Create English PO out of the POT. - return gulp.src(languagesFolder + 'freemius.pot') - .pipe(pofill({ - items: function (item) { - // If msgstr is empty, use identity translation - if (!item.msgstr.length) { - item.msgstr = ['']; - } - if (!item.msgstr[0]) { - item.msgstr[0] = item.msgid; - } - return item; - } - })) - .pipe(rename('freemius-en.po')) - .pipe(gulp.dest(languagesFolder)); -}); - -// Push updated po resource to transifex. -gulp.task('update-transifex', ['prepare-source'], function () { - return gulp.src(languagesFolder + 'freemius-en.po') - .pipe(transifex.pushResource()); -}); - -// Download latest *.po translations. -gulp.task('download-translations', ['update-transifex'], function () { - return gulp.src(languagesFolder + 'freemius-en.po') - .pipe(transifex.pullResource()); -}); - -// Move translations to languages root. -gulp.task('prepare-translations', ['download-translations'], function () { - var folders = getFolders(languagesFolder); - - return folders.map(function (folder) { - return gulp.src(path.join(languagesFolder, folder, 'freemius-en.po')) - .pipe(rename('freemius-' + folder + '.po')) - .pipe(gulp.dest(languagesFolder)); - }); -}); - -// Feel up empty translations with English. -gulp.task('translations-feelup', ['prepare-translations'], function () { - return gulp.src(languagesFolder + '*.po') - .pipe(pofill({ - items: function (item) { - // If msgstr is empty, use identity translation - if (0 == item.msgstr.length) { - item.msgstr = ['']; - } - if (0 == item.msgstr[0].length) { -// item.msgid[0] = item.msgid; - item.msgstr[0] = item.msgid; - } - return item; - } - })) - .pipe(gulp.dest(languagesFolder)); -}); - -// Cleanup temporary translation folders. -gulp.task('cleanup', ['prepare-translations'], function () { - var folders = getFolders(languagesFolder); - - return folders.map(function (folder) { - return gulp.src(path.join(languagesFolder, folder), {read: false}) - .pipe(clean()); - }); -}); - -// Compile *.po to *.mo binaries for usage. -gulp.task('compile-translations', ['translations-feelup'], function () { - // Compile POs to MOs. - return gulp.src(languagesFolder + '*.po') - .pipe(gettext()) - .pipe(gulp.dest(languagesFolder)) -}); - -gulp.task('default', [], function () { - gulp.run('prepare-source'); - gulp.run('update-transifex'); - gulp.run('download-translations'); - gulp.run('prepare-translations'); - gulp.run('translations-feelup'); - gulp.run('cleanup'); - gulp.run('compile-translations'); -}); \ No newline at end of file +exports.translate = createTranslation; diff --git a/gulptasks/transifex.js b/gulptasks/transifex.js new file mode 100644 index 00000000..0095e1f6 --- /dev/null +++ b/gulptasks/transifex.js @@ -0,0 +1,132 @@ +/** + * All Transifex related APIs and code. + * + * @link https://developers.transifex.com/recipes/create-update-and-delete-a-resource-in-nodejs + * @todo Refactor into a class/proper library if we end up using this at more places. + */ +const {transifexApi} = require('@transifex/api'); +const fs = require('node:fs'); +const log = require('fancy-log'); + +transifexApi.setup({ + auth: process.env.TRANSIFEX_API +}); + +const SOURCE_SLUG = 'freemius-enpo'; +const SOURCE_NAME = 'freemius-en.po'; + +async function getOrganization() { + // Safety check, unless we feel 100% confident, this wouldn't break the existing resources. + if ('wordpress-sdk' === process.env.TRANSIFEX_ORGANIZATION) { + throw new Error('Can not use the production organization yet!'); + } + + const organization = await transifexApi.Organization.get({slug: process.env.TRANSIFEX_ORGANIZATION}); + + if (!organization) { + throw new Error(`Organization "${process.env.TRANSIFEX_ORGANIZATION}" not found!`); + } + + log(`Using organization "${organization.attributes.name}"`); + + return organization; +} + +/** + * @param {import('@transifex/api').JsonApiResource} organization + * @return {Promise} + */ +async function getProject(organization) { + const projects = await organization.fetch('projects', false); + const project = await projects.get({slug: process.env.TRANSIFEX_PROJECT}); + + if (!project) { + throw new Error(`Project "${process.env.TRANSIFEX_PROJECT}" not found!`); + } + + log(`Using project "${project.attributes.name}"`); + + return project; +} + +async function getOrgAndProject() { + const organization = await getOrganization(); + const project = await getProject(organization); + + return {organization, project}; +} + +/** + * @param {import('@transifex/api').JsonApiResource} project + * @param {string} name + * @param {string} slug + * @param {import('@transifex/api').JsonApiResource} i18nFormat + * @return {Promise} + */ +async function getResourceStringForUpload(project, name, slug, i18nFormat) { + const resources = await project.fetch('resources', false); + /** + * IMPORTANT: DO NOT DELETE THE RESOURCE from the API. + * It will delete all the translations too. + * So first try to see if the resource is present and use it. If not, then only create it. + */ + + /** + * @type {import('@transifex/api').JsonApiResource} + */ + let resource; + + try { + resource = await resources.get({slug}); + log(`Resource "${name}" already exists, updating...`) + } catch (e) { + // No resources yet + log(`Creating resource "${name}"`); + resource = await transifexApi.Resource.create({ + name, + slug, + project, + i18n_format: i18nFormat, + }); + } + + return resource; +} + +async function uploadEnglishPoToTransifex(poPath) { + const {organization, project} = await getOrgAndProject(); + const content = fs.readFileSync(poPath, {encoding: 'utf-8'}); + + const i18nFormat = await transifexApi.i18n_formats.get({ + organization, + name: 'PO' + }); + + const resource = await getResourceStringForUpload(project, SOURCE_NAME, SOURCE_SLUG, i18nFormat); + + await transifexApi.ResourceStringsAsyncUpload.upload({ + resource, + content, + }); + + return resource; +} + +/** + * @param {string} languageCode + * @param {import('@transifex/api').JsonApiResource} resource + * @return {Promise} + */ +async function getTranslation(languageCode, resource) { + const language = await transifexApi.Language.get({code: languageCode}); + const url = await transifexApi.ResourceTranslationsAsyncDownload.download({ + resource, + language, + }); + + const response = await fetch(url); + return await response.text(); +} + +exports.uploadEnglishPoToTransifex = uploadEnglishPoToTransifex; +exports.getTranslation = getTranslation; \ No newline at end of file diff --git a/gulptasks/translate.js b/gulptasks/translate.js new file mode 100644 index 00000000..f8834607 --- /dev/null +++ b/gulptasks/translate.js @@ -0,0 +1,115 @@ +const {src, dest, series} = require('gulp'); +const sort = require('gulp-sort'); +const wpPot = require('gulp-wp-pot'); +const path = require('node:path'); +const log = require('fancy-log'); +const fs = require('node:fs'); +const {po, mo} = require('gettext-parser'); +const {uploadEnglishPoToTransifex, getTranslation} = require('./transifex'); + +const root = path.resolve(__dirname, '..'); +const languagesFolder = path.resolve(root, './languages'); +const freemiusPotPath = path.resolve(languagesFolder, './freemius.pot'); + +const LANGUAGE_CODES = [ + // 'cs_CZ', + // 'da_DK', + 'de_DE', + 'es_ES', + 'fr_FR', + // 'he_IL', + // 'hu_HU', + // 'it_IT', + // 'js', + 'nl_NL', + 'ru_RU', + // 'ta', + // 'zh_CN', +]; + +function translatePHP() { + return src('**/*.php') + .pipe(sort()) + .pipe(wpPot({ + destFile : 'freemius.pot', + package : 'freemius', + bugReport : 'https://github.com/Freemius/wordpress-sdk/issues', + lastTranslator: 'Vova Feldman ', + team : 'Freemius Team ', + + gettextFunctions: [ + // #region Methods from the Freemius class. + {name: 'get_text_inline'}, + {name: 'get_text_x_inline', context: 2}, + + {name: '$this->get_text_inline'}, + {name: '$this->get_text_x_inline', context: 2}, + + {name: '$this->_fs->get_text_inline'}, + {name: '$this->_fs->get_text_x_inline', context: 2}, + + {name: '$this->fs->get_text_inline'}, + {name: '$this->fs->get_text_x_inline', context: 2}, + + {name: '$fs->get_text_inline'}, + {name: '$fs->get_text_x_inline', context: 2}, + + {name: '$this->_parent->get_text_inline'}, + {name: '$this->_parent->get_text_x_inline', context: 2}, + + // #endregion + + {name: 'fs_text_inline'}, + {name: 'fs_echo_inline'}, + {name: 'fs_esc_js_inline'}, + {name: 'fs_esc_attr_inline'}, + {name: 'fs_esc_attr_echo_inline'}, + {name: 'fs_esc_html_inline'}, + {name: 'fs_esc_html_echo_inline'}, + + {name: 'fs_text_x_inline', context: 2}, + {name: 'fs_echo_x_inline', context: 2}, + {name: 'fs_esc_attr_x_inline', context: 2}, + {name: 'fs_esc_js_x_inline', context: 2}, + {name: 'fs_esc_js_echo_x_inline', context: 2}, + {name: 'fs_esc_html_x_inline', context: 2}, + {name: 'fs_esc_html_echo_x_inline', context: 2}, + ], + })) + .pipe(dest(freemiusPotPath)); +} + +function updateTranslationFiles(languageCode, translation) { + const fileName = `freemius-${languageCode}`; + // Do a parsing, just to be sure that the translation is valid. + const parsedPo = po.parse(translation); + + const poFilePath = path.resolve(languagesFolder, `./${fileName}.po`); + fs.writeFileSync(poFilePath, po.compile(parsedPo)); + + const moFilePath = path.resolve(languagesFolder, `./${fileName}.mo`); + fs.writeFileSync(moFilePath, mo.compile(parsedPo)); +} + +async function syncWithTransifex() { + log('Updaing Transifex source...'); + const resource = await uploadEnglishPoToTransifex(freemiusPotPath); + log('Transifex updated.'); + + // Loop over LANGUAGE_CODE and download and update every one of them + for (const code of LANGUAGE_CODES) { + log(`Updating ${code}...`); + try { + const translation = await getTranslation(code, resource); + + // Update the po file in the file system + updateTranslationFiles(code, translation); + + log(`Updated ${code}.`); + } catch (e) { + log.error(`Failed to get translation of ${code}, skipping...`); + } + } +} + +exports.createTranslation = series(translatePHP, syncWithTransifex); diff --git a/languages/freemius-de_DE.mo b/languages/freemius-de_DE.mo index 2d951e98adae3c53d5ff5b0d3b04d4911a1e0d89..166eafff625e6ae0650c7d47c1b54f1142d3c6fb 100644 GIT binary patch delta 13790 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 delta 17143 zcmZwN2YeLO-v9C00HGz65PBO*s7dG`y#)wL?^4|)8?umW!tMqH(G@8cu)xxku83ko zSqokjK~!v4ywa3rSMXY}pvYtSf4+MTUjEN>=k+?i&+p8cnKP%&0v_L7_R!w4kuxb} z*Ek&85*()iHm~V8%gZ=UdK;BG&ZMgxrz~EJ<#0Oo$2`0rcVGaAc6XePxCbZWzp(%Z z_nkAIArAA9lt3UXJrLZo(NjrnloX#@$#8 z-^XTn4(noaAM>D=m_$4rE8=9Vgn5|A^POTcthSzbj-l9sCtV~Z@d<(;8t6{3-to8VnkhjoQxiP2D{*wHf}JG z77{l{-KaCFL4B|#UX67yi0b0ysCw&B4Za_XF@}0hvn9>gYi2^k%y0eAP}6l{wxVS7A>)v+Gqs5z6K zP5-NF22xNS$6yVdjGFZUTOL9+=mxBSciHlFsCrv45x1jy=uu3@=THxP&6XcW-p%<8 z=VR;0Q1eC)pl+}a)qsPz3QwYDYv5{AKHqvLs>`=wMSKGFz&)t0e;w6x$MIVH3H74G zuQBJRq8b`0vYGi+pRG;BJ|aaiI`HtPDts0Q7J zYS3C#4?l#u?=Iwi5$9zxNff+=n$^cq6~9Hj*#+!|f1z&NZMbPjFVv6>!Rv7{uExWd zgasqa^`)rt2-e2bk)|ipvAouQKQd}jHfr`y!g_cYPQslS#)MI3W0{9)=t}EDsGfTX zHFU4r@)M|ae;zdyRY#kKx5ej)yW%>n|MO(3<85P@v3MWm<1bhar?GD)V=kuR9MlfC z49nnFtbyB6W4#AwV9GeN3WBHx96{ahJT}H(Fru!mHQqd+5o(OnZQKoe5)VRk{UX#P zU50<+ok-_6D<+upr%=~_f*OKvtiPcqU*bfwL)JvaH&3MhyO6n?0*&=+sIEMOo$v$f zh)Ik?e~;tzMZM`FUh^hggPL@ylO2b)I3rPS`XJW9{a6!EU_CsKt+6uQd=++?LjPxw z2~eOLZ$x^}c@k@5*{NoyYk&#FSvV7iAoI-Gh28KE)W*|gn&T8<7*+36EWxX%n<0Av zH3Ua-KAwz_QA@`&U>cJER>r$91@A+>!Q<%S0bBk#YT5m2%Nt&2R!tvlK>1*-g}K-e z7od80J+{F6aScY^B-4S+4ED=RT!|XfeHg)NIp%wR4>l%#AJy_7QA1OhYs$Bv8u~JF zsdE%H2fF2%hGbzG;wd-)XJEP>aX*=|6dXcbaK!ovs^#CIdML?fCRZA261GQ8-fpPX z)7PFKjq1UvSQQIwd_AgxOHgy{KJ2Vle1ME*;|HiN`U=(3A5agvfSMb>qaIi--;~!u z#f?!9YKfX;-B1k}gNZoZ#y;yDtV{WgSXN!UjtpJlY((|Io7Q94i1;(yh6&6lHEcWT zO&&%)XfHOww@_pM4Qd%yEHFKriV4JZF%=tN8g{@)IWiM%!8B}3ycjk6ccC_(gQ$ib z#di29sv#+UGuvz7O~gwu5zEXnJyQuwRS!?%ZKxN?o6UI-bqneL`V>@Q&8Q)5P;b;8 zD_}3Igo7{{M`3H6j(XGEQ1u?f&iDkD#m}${p2b$!C}0{i1hpzgVg}|1=zopvY6`~V z!`K!7#5b@@u~{8|qTaAQi@51PRA-(fNID*Y=c{| zDZU*cqviJDnvz&cch@Iz|p52C3wEo{9qc=K^YUx?5%ozWIdXogUJ6RuVU}scAvQZ5lg=$bC zYRrSENw^TzutnG#??esh+c*q=#C)y)z6;C^cAzeJ%(@5FuvhK*qo}SviF(7YQOoTD z>bl=i%e2A`rhzq4FVqlgVq4Vt{;2zoz{oB#GsvvLstfs@h7V#I_PWum_Z-w@T7{Zq zyHO1|W&H}L690(naU@HHv31U33jTqOuo`bW5Zj>|6pGOQy7BE4)W)5-6!&8h4!PO< zwtEKo3^f6kU)M6C|zHuK<$)~cu;tBDnG0jj4KqbBn` zsJRi@Nk%Pu4mAXCSwBUM;Uybaz1=L+mZ%#IKwUQy%VQ4uaTZR*BN)K+JJ@t^18T?X zx12^`E)LN8|B6gk3finN%fyR%@D@}HpGM8rS1bG3kI!NjCf&`SgmE+u$GNBt=T&Tn$FMOb z-edmM+XDL#uSJdZQFQSeRD+Y5NWFNz)0vDOFb5~&vv@OBU&TbjRX7H}!c6QDHTto- zhb4y@ls~fC{9OM4yA!9frggs&*a>%HFFcJoSdXe^G7hR(faUuc2qp;5?iJEf@m>SnEB0#?VHu>r2SkN(%B+eLxK{2=zk zQ`i;jY%pCo61A-E!g{zG)z!POCLTgP_zSFyl{T8Kxw*9;YR*hWb^QX=oY=OJ{_jTS z9SUk;*-fTmeXK*=9o2PXPz_v$df*0B!=J($_$D^M)2JI?!VZ|W*)(J#s$K}ybGO>^ zMPG#sERMHM#w6kysM%eJBd`=3;j7pXKSTAP zXRCQ$qyd>~6r@{wqi#F`)#YPR7hH>aqcCc{??5%=2~@*hLEYzl)C+uuYS8ys34gb7 z`E90wsYnk-oQAfb3no*s59$WPuscq|fw&6Quw$qPo+uB)VdtIZEA}vInZ1XaE5D!`P~j2t%}7N} z&ieQmw#UwR8uww!qh>2Uj4g==P^mu7!bo#6%gAWy2FETw~8)!b-$to-z%tg6gUIsAZagjd2ia()zFy&VP#j??~oxTk&Jm8(l43x<@jfK2;PX*vE8#~tL=}PGqX|kR$^Ox9{b`KsG*Le zarcg7M&Vpsj2UY2vKkVc%=WOPA0)Qx&z9UO}4q8yxvCAbjZz;-z3ALd4-SeH10oO13(T{rdxvvYbe zmH2v858sJu_yZXK{lANhX8B&!gWtwt{5)QPPwpn z>KRo16R58L3a`c*FPU%7bgZDUUQ0$@w*}Sm?WnQbjhbYyVhw!9#vh~J;4Ie1pHbIW zV|UTAtce=qMyLi(M>Ql5b)Px73YTJpVRq`gY##g`YHZG+%Fm*UTlbkB*pF(^F;rKc z!LIl-HpRC4?GFyzNW2qW9Q=w|Ju^|)-GXZ9`d1i#wP+g!jqn*%*B!wo_#0{&)<0nW zINla{S?6cenC^bntcHUaByRtjSv3!!=F%hB0G~$}kD+?%SJdSE{k4es+p5&p&6v-{ z8#wVLHpZNT=7zVRZge|pvhF}N>?zcc?YADnEaKBx4x7GVu5X2D9wshcNBQ_SO;0}? zAybQjeW=NE95q&7qu$_Gyb%-MG7nsWLx@+SdhQgeE6?Kq{0%!}uebSB^T0W%7y0rX z^Czpsf3mWOS6~4~j*)3irtiCEjQrS~cnRvlo!ANA#H;ZS)B~~)nIXCnXA^J1hFJMM z^H-~_F@ZP-C!i0n#TRh~*7{fc+YoW)k}0L&4Gd$S_f1Pr2PR@YoP$kq1*YOIY>%(n@(Wl&du^Sg=1rTRmQ#P!gQsCdT!`wSW%x8c ziT%-c%yjufIFJwyn>la^)zH2l@E6>wj~(#>>VB<0b8AB$F0ZhivunGQv zm9WMMGgghT7xAr_h_7NQzKy!>W7LhmL%l$qlcu~Is{SDBFk3zrBYHzGnQAy2tKvc% zuRz^s6RIIEqGtC&tbs|VOb@wOhPVytL77+!yV&!?usrbu8&5|)uizB@-;&IH3bdnb zLoJ)fQ4frv8n_qh;~S{;`#HA5bEr43d)n-nEwL4Gchpejpc+>Dj9KsXQLC#Hw!wa9 z=>NuKW>cUCE=Mh=wWtSeL2VScRU^J^Cz;#K=A}dedrOnz5~knnaUPW3~kA;R@93eF)VfCvYnMh=XwC zSNy)iHP{nxKWqLj=rtTm!>6A!zk+vvZSG&~-|-iSI6cT{()CBRY&2?eO|fw?YRu-N z#&VfGe}^sKjJp0&tc)+Wa1oD14~f#7Gfoy@7zsB555oQ;Pa>k zwf)YN_e4EtGHSi&qQ>%iOvlys{C-pqy=CKfQ4Kwgdhq911<%{~FN|m`D}QggycrH4 z?uNJH0=yN=o;PE^0;>|gjJoa+R>QAw0AqX+)v%sFnmIEOs}l!N4OxONu0##>?jPy@ z6f!STpq3v(we&DvjUQnvY{Sed!m)T0?#FW2?`QLX!I(lk2{l<~qs}iwHE;#0A)8P= zxeN6odw!<>HMVb1psqQL$@nR{cpmkp)i0R1H8SCyt8ou@_=Tl}Ut?$7_N(csW9SlB zyl8$+w?RE;66(!!aRC-Z$UIEuET-Yg-^^$9Ic!6G6vv};$$Z@=pvp_I7H+`hxEt@p zKL5k!h3{YpbALCV@8hT*sr-j|(dwv49&yRIWLjcd%*K-##<4i+PZDlNO|}cz0Gs}0 zhN>^>#@FEcI2uc^x#NldhFpUOh=+ST@xQF9p5TesZ&oHQzyHZ-%-f;nKu`2yU#x-K ztj}N_;x|!a`YGxSe!^6|gc(@1tS7$wdgE2ZgHUthCe(9Q+ISPjzyD8?(GK`LF2TL1 ziUZ4;28_gp#JQ*&EkX^|YHW@FK=s_`*a)j78rxwr;t{CH7DTO%TTuJMX4GGNJ3Gh} zVtf8gY$a~Ocd%UrPkd7Sj+=-(RP@CE;ouN`>pnoJys18_JlL(P>V zI0(~{Jx*_&jegvT>cJXSOaog~@tE&_Zwl_=gbxSfFQ^vxuIhWTj`dpdTc z!mHQ=f5rLOv8E@!ML&jl#Eoj1H(QLGiND1uxT3b18)tC{aY`K%Pe%3d64YdUG(x5& znGf+%^wjmlzsrxKTKEU5%hKz4;u}X_)YuM1ExYSblQSPRDVLx&m`6}M-P1OH3AMo; z#Ikq{wb~*lZH13ev;G{a>o3^yX7>ry8=ptD{1?>Zyo8$de_#`=!oSaIt8H)X ziJGi~QP)pKHS{{Htna^%j9NGcC*TdJ_4z*P!V{9MAiGt#^oEDxC*K# zYoV@dimKlV^_+I7hIhy6TK~PsB;g3u7)?Q4I16=Q395_dp&od%jc-FO+m*Y|gV2Y-xe`8m`LezN{)&sS`0 z>ZPC>T;Ik`QA66+mUls7%m zy3igii60`q*~UNEbNVE+n>%-5ZR!-^YRso>CFu{1{{b>>NKt!nK4y^GQSo71!MV%F zY4T@Ceo`~eUwLdJZf*-6u-E)byoI!kG@Nvna`qzUP123Tk3?+6W~g<|zT$jr%X-)c ztg_z8c^!)kj!U_Q<61mz%i35k^AVXlY>;K|qp*w3M@scT3jCx$$g^QN)5+`5$EY3^ zE0Cs1PEh}IY@~3uz0iXTDSMf+ zYskmQYm#;%Z6;2#^|oLW%0^MI0r{{kZ%MqG@?zpl@-^{V;)lu4B;87yLD~OMc9HoP z|B>(#h3TXwoZxF4KR(11VjcZ#newlZ=8_6Hr(eA~-o;n2Q9O$OgP4Uh)^wvX6K*Im}$@HL!8*-|R_sAt^c&@THk?}a+HR=*;PTOzbNXd;64zo^ zd*Vs_nlzC5kxQK1VNa}(_GSwx*N=>QQHS=0+3_3?r0jX}zmc|)U%)jRNju12P1zLk z=~zIl&w730W#sFU*Kvxpo%AKocRF*TBgsd><2aVe6Upm%k9Yv_9(#1` zD>kN{j(f=e8~0&H%HEHc@`n^+9ar0W%FnX%&xvyKX9~VmDaSXq@-V!Ocrj@q`5*8@ z(nXT?_)jToin-iWpXpx2HuY(4)PwjK=?3!sC@)X?`_TNaOu-UTSJLDwPuf~f zaq;Ej6EcOQTdDT~mXKZ|CH}ALiYc2)Svz~}@3`!WI{LBl56aB?BemkF>rL5Il8%v-cQaY@*b7uRMH)oX z@lR5K{3z5tmXlf&_reCY4%ztU_-Y%^#TO~7uM->xi9=l60`I~($j?RR9H}qy>+xDV ze@{GP{`O)MCrdfm5JylxpVXgN$BmR-KGxf^yC~BaO$R?Aof~ZVVB$ff+jWBDInMRu zTr={E@IhjIS>xS)zcL)pkVcZuDzL{@RNPGZllXT0jO3DfbCX~2cgkmwZXiFHq~k$@ z^Q(=sP@nT^SeNS_CC`^T{_jSSauhsG!5tKgCFvMOnT{+&{J;9y+==qP&`X*_UVkB_ zV+iSK@^dLmj+Zbu?77EmJQ}Cid}Di#Fyd?_c%Kv`4Ydzey-TFWN#BvqkaR5h&xOum z@?%YL{Qq*8$+dk*Ur?TA>+Q7Xn^XP{Wlz}hX|{a4_W%1R+(d<&use>kCm$uQNL)(X zk(6u8U$r+`!MP#iuc7=Ad+xYB7qD?pVt$v#|GDKR>VHQ0OnXl3jd1b=nNRSED^4i8 zpR!_-j-}Y#=Ii2k%5LU{Bgubc%iG6mvRM&N;@rQnHEyE(0g{)*9|au`N#C7sWn2EU zjr5p72B`^Y3}r32aT57doPs}* zmXg1oq@#>=7Ug9~Z;^C-Z*aaO{*nAUq&b)0f4@DM$H~u0x7t|baKkt89_(yyzMMKo zDEpMuh_bth`;a=3`ckIj7Rm>h?BD-=kK8os+{U@D$Vb+ZnMy&Jprx(mBkoU1B;8Ls zLE5Ium_xci{yx&(q-?Igld{K12Z`H}bmWo7a8Abyoa;@B689mVhpo}8-+$*-gQFtJ z$BAqz*1^T3%g3u^UZ;GLEx3_$A)CL3@)5S~9ax+4=P64e4J6-|vI*qd;P+U~);-R- zOpX7u6zb?l`hs)|=~+@P<@egkt!$kjaWeTQNgc>1QLica^Q1K-9W_XU>~*(W<0tsf z+oWX5>R>M%dU^a42)1*Bb++a>@^9FD9_Q8*{}1Uc$|~bf(r(gt&UL^lwyxMfoP9-{ zLHsiD1nSnbIXYpFYL_$E zinNAw%$DuKN?fa>y!it+U$-l6K9Ky~R47YYMgFj<>kKD;hWKB^FX9F)u;;oFJ7u$r zikz|&+qVxpZggAw{;^$cx+TU^IwT~-`gFRkc4SD<=MAU3C51k3$mjY4p|H2G(9In` zW|->@Z&DFsI!4#ic>Fq@X0zAMm^R{z6}-J2c>W^YZ**e{mq)4f(vm+yXbh zIOv88d~VA;e@Iu)$S)1#sz#`#o97Su$j{ZIbiZ-`{|)2M4El<`Rz=lR10Zp+-#VBw6GneMn^x5zu&=Y~py+&OylvIe8m-BMntCC&8* z@{3!wrq;+nF1OX=y_9K_q37P623yOh_?@#fBUy)(W3Ky2gHdp+%E2a4yp z^9sClNXT>(Z(BfFxcKkh^V6XPzQPh(-6S@8*g8*a;E0BmtIjG7g|B#KZ1T0u6QaYW zc8Z>!G7z^%&rVqvJ3VEoC-%8 zHvbs|uFowFgy~6hVL@>yK5V(gMI{R9whYHCOzhP$|>t+Tv11mOIV#gnrm53r(xsV!i+WX|g9Xwq#+ygyg(p^TcogofdoPrXR{g|GcGMY|G-8 z%EyAsKPex3Fj~ixJh3>KH;M*?+_72LL|!U)B^vH?Lb7?YFKrR*24ATP50k{lgiIXs&Nyfj1cPg?qTv&bX@5q>LfHfG=p8 zGpg9fdUQKwcFgP;J+{72Wk)-J-2lGWGOcVDjg76pw`SRdw9vZhNuJv4+yqaJ%HEur zzMNojZhH>%XV99_p1QGv+s1lg%^#Rk%aavb`}_@M zJZ?1QrD-Weu6K60)K^&O3%G-Q1%47c2V4knY4S3mP@~HRUHkd3n7~Pd8M*jN^ zT|Jrgk?#uzxGjy=qO>gu^9IA?dyS6`Ezj?Bi|9~fwY^NI5SRFZOx&5lb;rwlszls*rL>xE@C8c43;x%Rl;w@T%;l$3?LSSSSu9O9 zrT^1Y%)Q)#Lcfm=;Z^4OeRM{qlg-3*^GaRyVZa^cU*HQY2<1la+&iQU?-4z+xB04< z*LyOe_rCn+;CVj(fh{h(LIGQqc8&Ou__;x`I+k0qmIG!~;$H*?DV*sJh!16fzc8O} z2{wtX+SkL=Y@#nG@7AC+KDLqMz=c7k%ZGo-Oo7qY6vu z#VcPl5MT45a1Upqk884Gi3dt6G#TJ4@D^%3yrtpdA~qgg+UJgs?@uAR(;waNc92z{ z^iGSiRRe5vS9D#h^?UsiqP-6fk0w2n6n*7zcC_2!u{Iw{p3AP67Sg~DEeJ-dUmTG* z+*g>#yzhPZpRsO-|MJ8(9DTf8bZu_^Xzs~J6Wj^0s;9;!R2bu%Q_AcL#R|_nkq~S6 zNmEa3!lzZsL>R=`8aWL={a+dYI*>)GjcTSpClv1u-aJ^$=dj3KP)hR)e9VX@?jT0X z9l?y&-VrvFg?(8k*(7x{#=~skdVg->3xmvze=+D@hZ;Cw8R^g1;&EHKe7yIO=&1K^Y zQC*&{=b3B5jv8&(j$KQ(57kaR+08Z|jg0Yuu-0lp5pA2TuL_HmO+zo67hfcoJJ$AU zrkkZ6o?Tp2#Eka&JJH31S&_bsK^epK9id~@nE&1{raxkLUp(chaCx#uLzfm+(W{z< zW$DxM-K8;Qqrt_Co;l~KQ6Vxo=<^l%OZkb@f7DQ3gb84}kW5;K=An$S^8*ZWae!Ym z`Yog#NCWC;g!1_O{k^)bc)|F?cun;KKWB>Ew2saBjZ&H)zx~7l7G0s%Eb}Rm&jAbm zxd$tH?n|hluWX@DpK(@9aY;DCA6R#7l4oPGZ@!aVTvAf#b+Uc)pG!>k6nfUpt>XFQ F{{d0zUs?bF diff --git a/languages/freemius-de_DE.po b/languages/freemius-de_DE.po index 8ce7f407..7d9703b5 100644 --- a/languages/freemius-de_DE.po +++ b/languages/freemius-de_DE.po @@ -1,1557 +1,1598 @@ -# Copyright (C) 2022 freemius +# Copyright (C) 2024 freemius # This file is distributed under the same license as the freemius package. # Translators: -# Christoph Brocks, 2022 -# Oliver Heinrich, 2022 +# Swashata Ghosh, 2024 +# msgid "" msgstr "" -"Project-Id-Version: WordPress SDK\n" +"Project-Id-Version: freemius\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2023-04-19 18:31+0530\n" -"Last-Translator: Oliver Heinrich, 2022\n" -"Language-Team: German (Germany) (http://www.transifex.com/freemius/wordpress-sdk/language/de_DE/)\n" -"Language: de_DE\n" +"POT-Creation-Date: 2024-01-30 15:07+0000\n" +"Last-Translator: Swashata Ghosh, 2024\n" +"Language-Team: German (Germany) " +"(https://app.transifex.com/freemius/teams/184351/de_DE/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: de_DE\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-Basepath: ..\n" -"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" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 3.2.2\n" +"X-Poedit-KeywordsList: " +"get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_" +"text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_" +"inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$" +"fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_" +"inline;$this->_parent->get_text_x_inline:1,2c;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;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" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php1744, templates/account.php:947 -msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." -msgstr "Ein Update auf eine Beta-Version ersetzt deine installierte Version von %s durch die neueste Beta-Version - verwende sie mit Vorsicht und nur auf Testseiten. Du wurdest gewarnt." +#: includes/class-freemius.php1781, templates/account.php:943 +msgid "" +"An update to a Beta version will replace your installed version of %s with " +"the latest Beta release - use with caution, and not on production sites. " +"You have been warned." +msgstr "" +"Ein Update auf eine Beta-Version ersetzt deine installierte Version von %s " +"durch die neueste Beta-Version - verwende sie mit Vorsicht und nur auf " +"Testseiten. Du wurdest gewarnt." -#: includes/class-freemius.php:1751 +#: includes/class-freemius.php:1788 msgid "Would you like to proceed with the update?" msgstr "Willst du mit dem Update fortfahren?" -#: includes/class-freemius.php:1976 -msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." -msgstr "Das Freemius SDK konnte die Hauptdatei des Plugins nicht finden. Bitte kontaktiere sdk@freemius.com mit dem aktuellen Fehler." +#: includes/class-freemius.php:2013 +msgid "" +"Freemius SDK couldn't find the plugin's main file. Please contact " +"sdk@freemius.com with the current error." +msgstr "" +"Das Freemius-SDK konnte die Hauptdatei des Plugins nicht finden. Bitte " +"kontaktiere sdk@freemius.com mit der gezeigten Fehlermeldung." -#: includes/class-freemius.php1978, includes/fs-plugin-info-dialog.php:1517 +#: includes/class-freemius.php2015, includes/fs-plugin-info-dialog.php:1513 msgid "Error" msgstr "Fehler" -#: includes/class-freemius.php:2424 +#: includes/class-freemius.php:2461 msgid "I found a better %s" msgstr "Ich habe ein besseres %s gefunden" -#: includes/class-freemius.php:2426 +#: includes/class-freemius.php:2463 msgid "What's the %s's name?" msgstr "Wie lautet der Name des %s?" -#: includes/class-freemius.php:2432 +#: includes/class-freemius.php:2469 msgid "It's a temporary %s - I'm troubleshooting an issue" msgstr "Es ist eine temporäre %s - ich behebe ein Problem" -#: includes/class-freemius.php:2434 +#: includes/class-freemius.php:2471 msgid "Deactivation" msgstr "Deaktivierung" -#: includes/class-freemius.php:2435 +#: includes/class-freemius.php:2472 msgid "Theme Switch" msgstr "Theme wechseln" -#: includes/class-freemius.php2444, templates/forms/resend-key.php24, +#: includes/class-freemius.php2481, templates/forms/resend-key.php24, #: templates/forms/user-change.php:29 msgid "Other" msgstr "Andere" -#: includes/class-freemius.php:2452 +#: includes/class-freemius.php:2489 msgid "I no longer need the %s" msgstr "Ich brauche das %s nicht mehr" -#: includes/class-freemius.php:2459 +#: includes/class-freemius.php:2496 msgid "I only needed the %s for a short period" msgstr "Ich habe das %s nur für einen kurzen Zeitraum benötigt" -#: includes/class-freemius.php:2465 +#: includes/class-freemius.php:2502 msgid "The %s broke my site" -msgstr "Das %s hat meine Seite kaputt gemacht" +msgstr "Das %s hat meine Seite beschädigt" -#: includes/class-freemius.php:2472 +#: includes/class-freemius.php:2509 msgid "The %s suddenly stopped working" msgstr "Das %s funktionierte plötzlich nicht mehr" -#: includes/class-freemius.php:2482 +#: includes/class-freemius.php:2519 msgid "I can't pay for it anymore" msgstr "Ich kann es nicht mehr bezahlen" -#: includes/class-freemius.php:2484 +#: includes/class-freemius.php:2521 msgid "What price would you feel comfortable paying?" msgstr "Welchen Preis würdest du als gerechtfertigt erachten?" -#: includes/class-freemius.php:2490 +#: includes/class-freemius.php:2527 msgid "I don't like to share my information with you" msgstr "Ich möchte meine Informationen nicht mit dir teilen" -#: includes/class-freemius.php:2511 +#: includes/class-freemius.php:2548 msgid "The %s didn't work" msgstr "Das %s hat nicht funktioniert" -#: includes/class-freemius.php:2521 +#: includes/class-freemius.php:2558 msgid "I couldn't understand how to make it work" msgstr "Ich habe nicht gewusst wie ich es zum Laufen bringe" -#: includes/class-freemius.php:2529 +#: includes/class-freemius.php:2566 msgid "The %s is great, but I need specific feature that you don't support" -msgstr "Das %s ist toll, aber ich brauche ein bestimmtes Feature, das nicht unterstützt wird" +msgstr "" +"Das %s ist toll, aber ich brauche ein bestimmtes Feature, das nicht " +"unterstützt wird" -#: includes/class-freemius.php:2531 +#: includes/class-freemius.php:2568 msgid "What feature?" msgstr "Welche Funktion?" -#: includes/class-freemius.php:2535 +#: includes/class-freemius.php:2572 msgid "The %s is not working" msgstr "Das %s funktioniert nicht" -#: includes/class-freemius.php:2537 +#: includes/class-freemius.php:2574 msgid "Kindly share what didn't work so we can fix it for future users..." -msgstr "Bitte teile uns mit, was nicht funktioniert hat, damit wir es für zukünftige Nutzer beheben können..." +msgstr "" +"Bitte teile uns mit, was nicht funktioniert hat, damit wir es für " +"zukünftige Nutzer beheben können." -#: includes/class-freemius.php:2541 +#: includes/class-freemius.php:2578 msgid "It's not what I was looking for" msgstr "Es ist nicht das, wonach ich gesucht habe" -#: includes/class-freemius.php:2543 +#: includes/class-freemius.php:2580 msgid "What you've been looking for?" msgstr "Wonach hast du gesucht?" -#: includes/class-freemius.php:2547 +#: includes/class-freemius.php:2584 msgid "The %s didn't work as expected" msgstr "Das %s hat nicht wie erwartet funktioniert" -#: includes/class-freemius.php:2549 +#: includes/class-freemius.php:2586 msgid "What did you expect?" msgstr "Was hast du erwartet?" -#: includes/class-freemius.php3637, templates/debug.php:24 +#: includes/class-freemius.php3685, templates/debug.php:24 msgid "Freemius Debug" msgstr "Freemius Debug" -#: includes/class-freemius.php:4444 -msgid "I don't know what is cURL or how to install it, help me!" -msgstr "Ich weiß nicht, was cURL ist oder wie man es installiert. Bitte hilf mir!" - -#: includes/class-freemius.php:4446 -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." -msgstr "Wir stellen sicher, dass wir dein Hosting-Unternehmen kontaktieren und das Problem beheben. Du bekommst eine Folge-E-Mail an %s, sobald wir ein Update haben." - -#: includes/class-freemius.php:4453 -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." -msgstr "Toll, bitte installiere cURL und aktiviere es in deiner php.ini Datei. Suche außerdem nach der 'disable_functions' Direktive in deiner php.ini Datei und entferne alle deaktivierten Methoden, die mit 'curl_' beginnen. Um sicherzustellen, dass sie erfolgreich aktiviert wurde, benutze 'phpinfo()'. Danach aktiviere, deaktiviere das %s und aktiviere es anschließend wieder." - -#: includes/class-freemius.php:4558 -msgid "Yes - do your thing" -msgstr "Ja - mach dein Ding" - -#: includes/class-freemius.php:4563 -msgid "No - just deactivate" -msgstr "Nein - nur deaktivieren" - -#: includes/class-freemius.php4608, includes/class-freemius.php5139, -#: includes/class-freemius.php6334, includes/class-freemius.php13998, -#: includes/class-freemius.php14747, includes/class-freemius.php18513, -#: includes/class-freemius.php18618, includes/class-freemius.php18795, -#: includes/class-freemius.php21078, includes/class-freemius.php21456, -#: includes/class-freemius.php21470, includes/class-freemius.php22158, -#: includes/class-freemius.php23174, includes/class-freemius.php23304, -#: includes/class-freemius.php23434, templates/add-ons.php:57 -msgctxt "exclamation" -msgid "Oops" -msgstr "Hoppla" - -#: includes/class-freemius.php:4683 -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." -msgstr "Danke, dass du uns die Chance gibst, das Problem zu beheben! Eine Nachricht wurde soeben an unser technisches Personal gesendet. Wir werden uns bei dir melden, sobald wir ein Update für %s haben. Wir danken dir für deine Geduld." - -#: includes/class-freemius.php:5108 +#: includes/class-freemius.php:4828 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have purchased a %s license." msgstr "Du hast eine %s-Lizenz erworben." -#: includes/class-freemius.php:5112 -msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." -msgstr "Der %sDownload-Link%s, der Lizenzschlüssel und die Installationsanleitung wurden an %s gesendet. Wenn du die E-Mail nach 5 Minuten nicht finden kannst, überprüfe bitte dein Spam-Postfach." - -#: includes/class-freemius.php5122, includes/class-freemius.php6031, -#: includes/class-freemius.php17889, includes/class-freemius.php17900, -#: includes/class-freemius.php21347, includes/class-freemius.php21738, -#: includes/class-freemius.php21807, includes/class-freemius.php:21979 -msgctxt "interjection expressing joy or exuberance" -msgid "Yee-haw" -msgstr "Hurra" - -#: includes/class-freemius.php:5136 -msgctxt "addonX cannot run without pluginY" -msgid "%s cannot run without %s." -msgstr "%s kann nicht ohne %s laufen." +#: includes/class-freemius.php:4832 +msgid "" +" The %s's %sdownload link%s, license key, and installation instructions " +"have been sent to %s. If you can't find the email after 5 min, please check " +"your spam box." +msgstr "" +"Der %s-%sDownload-Link%s, der Lizenzschlüssel und die " +"Installationsanleitung wurden an %s gesendet. Wenn du die E-Mail nach 5 " +"Minuten nicht finden kannst, überprüfe bitte dein Spam-Postfach." -#: includes/class-freemius.php:5137 -msgctxt "addonX cannot run..." -msgid "%s cannot run without the plugin." -msgstr "%s kann ohne das Plugin nicht laufen." +#: includes/class-freemius.php:5138 +msgid "" +"There was an unexpected API error while processing your request. Please try " +"again in a few minutes and if it still doesn't work, contact the %s's " +"author with the following:" +msgstr "" +"Beim Verarbeiten deiner Anfrage ist ein unerwarteter API-Fehler " +"aufgetreten. Bitte versuche es in ein paar Minuten erneut und wenn es immer " +"noch nicht funktioniert, kontaktiere den Autor von %s mit den folgenden " +"Angaben:" -#: includes/class-freemius.php:5418 -msgid "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" -msgstr "Beim Verarbeiten Ihrer Anfrage ist ein unerwarteter API-Fehler aufgetreten. Bitte versuche es in ein paar Minuten erneut und wenn es immer noch nicht funktioniert, kontaktiere den Autor von %s mit den folgenden Angaben:" +#: includes/class-freemius.php:5743 +#. translators: %s: License type (e.g. you have a professional license) +msgid "You have a %s license." +msgstr "Du hast eine %s Lizenz." -#: includes/class-freemius.php:6000 +#: includes/class-freemius.php:5716 msgid "Premium %s version was successfully activated." msgstr "Premium %s Version wurde erfolgreich aktiviert." -#: includes/class-freemius.php6012, includes/class-freemius.php:7992 -msgctxt "" -msgid "W00t" -msgstr "W00t" - -#: includes/class-freemius.php:6027 -msgid "You have a %s license." -msgstr "Du hast eine %s Lizenz." - -#: includes/class-freemius.php:6317 -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." -msgstr "%s kostenlose Testversion wurde erfolgreich abgebrochen. Da das Add-on nur Premium ist, wurde es automatisch deaktiviert. Wenn du es in Zukunft nutzen möchtest, musst du eine Lizenz erwerben." +#: includes/class-freemius.php:6034 +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." +msgstr "" +"Die kostenlose Testversion von %s wurde erfolgreich storniert. Da das " +"Add-on nur Premium ist, wurde es automatisch deaktiviert. Wenn du es in " +"Zukunft nutzen möchtest, musst du eine Lizenz erwerben." -#: includes/class-freemius.php:6321 -msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." -msgstr "%s ist ein reines Premium Add-on. Du musst zuerst eine Lizenz erwerben, bevor du das Plugin aktivieren kannst." +#: includes/class-freemius.php:6038 +msgid "" +"%s is a premium only add-on. You have to purchase a license first before " +"activating the plugin." +msgstr "" +"%s ist ein reines Premium-Add-on. Du musst zuerst eine Lizenz erwerben, " +"bevor du das Plugin aktivieren kannst." -#: includes/class-freemius.php6330, templates/add-ons.php186, +#: includes/class-freemius.php6047, templates/add-ons.php186, #: templates/account/partials/addon.php:386 msgid "More information about %s" msgstr "Mehr Informationen über %s" -#: includes/class-freemius.php:6331 +#: includes/class-freemius.php:6048 msgid "Purchase License" msgstr "Lizenz kaufen" -#: includes/class-freemius.php7318, templates/connect.php:216 -msgid "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." -msgstr "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." +#: includes/class-freemius.php:7053 +#. translators: %3$s: What the user is expected to receive via email (e.g.: +#. "the installation instructions" or "a license key") +msgid "" +"You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 " +"minutes." +msgstr "" +"Du solltest in den nächsten 5 Minuten %1$s für %2$s an deine Mailbox um " +"%3$s erhalten." + +#: includes/class-freemius.php:7070 +#. translators: %s: activation link (e.g.: Click here) +msgid "%s to activate the license once you get it." +msgstr "%s, um die Lizenz zu aktivieren, sobald du sie erhalten hast." + +#: includes/class-freemius.php:7091 +msgid "" +"If you didn't get the email, try checking your spam folder or search for " +"emails from %4$s." +msgstr "" +"Wenn Du die E-Mail nicht erhalten hast, überprüfe deinen Spam-Ordner oder " +"suche nach E-Mails von %4$s." + +#: includes/class-freemius.php:7093 +msgid "Thanks for upgrading." +msgstr "Danke für das Upgrade." + +#: includes/class-freemius.php:7044 +msgid "" +"You should receive a confirmation email for %1$s to your mailbox at %2$s. " +"Please make sure you click the button in that email to %3$s." +msgstr "" +"Du solltest eine Bestätigungs-E-Mail für %1$s an dein Postfach unter %2$s " +"erhalten. Bitte stelle sicher, dass du auf die Schaltfläche in dieser " +"E-Mail an %3$s klickst." -#: includes/class-freemius.php:7322 +#: includes/class-freemius.php:7047 msgid "start the trial" msgstr "die Testversion starten" -#: includes/class-freemius.php7323, templates/connect.php:220 +#: includes/class-freemius.php7048, templates/connect.php:209 msgid "complete the opt-in" -msgstr "complete the opt-in" +msgstr "schließe die Anmeldung ab" + +#: includes/class-freemius.php:7050 +msgid "Thanks!" +msgstr "Danke!" -#: includes/class-freemius.php:7456 +#: includes/class-freemius.php:7229 msgid "You are just one step away - %s" msgstr "Du bist nur einen Schritt entfernt - %s" -#: includes/class-freemius.php:7459 -msgctxt "%s - plugin name. As complete \"PluginX\" activation now" -msgid "Complete \"%s\" Activation Now" -msgstr "Schließe jetzt die \"%s\"-Aktivierung ab" - -#: includes/class-freemius.php:7541 +#: includes/class-freemius.php:7314 msgid "We made a few tweaks to the %s, %s" -msgstr "Wir haben ein paar Anpassungen an den %s, %s gemacht" +msgstr "Wir haben ein paar Anpassungen am %s gemacht. %s" -#: includes/class-freemius.php:7545 +#: includes/class-freemius.php:7318 msgid "Opt in to make \"%s\" better!" msgstr "Mach mit, um \"%s\" besser zu machen!" -#: includes/class-freemius.php:7991 +#: includes/class-freemius.php:7764 msgid "The upgrade of %s was successfully completed." msgstr "Das Upgrade von %s wurde erfolgreich abgeschlossen." -#: includes/class-freemius.php10709, includes/class-fs-plugin-updater.php1090, -#: includes/class-fs-plugin-updater.php1305, -#: includes/class-fs-plugin-updater.php1312, templates/auto-installation.php:32 +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, +#: includes/class-fs-plugin-updater.php1317, +#: includes/class-fs-plugin-updater.php1310, +#: templates/auto-installation.php:32 msgid "Add-On" msgstr "Add-on" -#: includes/class-freemius.php10711, templates/account.php411, -#: templates/account.php419, templates/debug.php395, templates/debug.php:615 +#: includes/class-freemius.php10529, templates/account.php407, +#: templates/account.php415, templates/debug.php399, templates/debug.php:619 msgid "Plugin" msgstr "Plugin" -#: includes/class-freemius.php10712, templates/account.php412, -#: templates/account.php420, templates/debug.php395, templates/debug.php615, +#: includes/class-freemius.php10530, templates/account.php408, +#: templates/account.php416, templates/debug.php399, templates/debug.php619, #: templates/forms/deactivation/form.php:107 msgid "Theme" msgstr "Theme" -#: includes/class-freemius.php:13817 -msgid "An unknown error has occurred while trying to toggle the license's white-label mode." -msgstr "Beim Versuch, auf den White-Label-Modus der Lizenz umzuschalten, ist ein unbekannter Fehler aufgetreten." +#: includes/class-freemius.php:13635 +msgid "" +"An unknown error has occurred while trying to toggle the license's " +"white-label mode." +msgstr "" +"Beim Versuch, auf den White-Label-Modus der Lizenz umzuschalten, ist ein " +"unbekannter Fehler aufgetreten." -#: includes/class-freemius.php:13831 -msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s." -msgstr "Deine %s-Lizenz wurde als White-Label gekennzeichnet, um sensible Informationen vor dem WP Admin zu verbergen (z.B. deine E-Mail, Lizenzschlüssel, Preise, Rechnungsadresse und Rechnungen). Solltest du das wieder rückgängig machen wollen, kannst du das ganz einfach über dein %s tun. Wenn dies ein Fehler war, kannst du es auch %s" +#: includes/class-freemius.php:13649 +msgid "" +"Your %s license was flagged as white-labeled to hide sensitive information " +"from the WP Admin (e.g. your email, license key, prices, billing address & " +"invoices). If you ever wish to revert it back, you can easily do it through " +"your %s. If this was a mistake you can also %s." +msgstr "" +"Deine %s-Lizenz wurde als White-Label gekennzeichnet, um sensible " +"Informationen vor dem WP Admin zu verbergen (z.B. deine E-Mail, " +"Lizenzschlüssel, Preise, Rechnungsadresse und Rechnungen). Solltest du das " +"wieder rückgängig machen wollen, kannst du das ganz einfach über dein %s " +"tun. Wenn dies ein Fehler war, kannst du es auch %s" -#: includes/class-freemius.php13836, +#: includes/class-freemius.php13654, #: templates/account/partials/disconnect-button.php:84 msgid "User Dashboard" msgstr "Benutzer Dashboard" -#: includes/class-freemius.php:13837 +#: includes/class-freemius.php:13655 msgid "revert it now" msgstr "jetzt rückgängig machen." -#: includes/class-freemius.php:13895 +#: includes/class-freemius.php:13713 msgid "An unknown error has occurred while trying to set the user's beta mode." -msgstr "Beim Versuch, den Beta-Modus für den Benutzers einzustellen, ist ein unbekannter Fehler aufgetreten." +msgstr "" +"Beim Versuch, den Beta-Modus für den Benutzers einzustellen, ist ein " +"unbekannter Fehler aufgetreten." -#: includes/class-freemius.php:13969 +#: includes/class-freemius.php:13799 msgid "Invalid new user ID or email address." msgstr "Ungültige neue Benutzer-ID oder E-Mail Adresse." -#: includes/class-freemius.php:13999 -msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." -msgstr "Sorry, wir konnten das E-Mail-Update nicht abschließen. Ein anderer Benutzer mit der gleichen E-Mail ist bereits registriert." +#: includes/class-freemius.php:13829 +msgid "" +"Sorry, we could not complete the email update. Another user with the same " +"email is already registered." +msgstr "" +"Sorry, wir konnten das E-Mail-Update nicht abschließen. Ein anderer " +"Benutzer mit der gleichen E-Mail ist bereits registriert." -#: includes/class-freemius.php:14000 -msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." -msgstr "Wenn du die Eigentümerschaft des Kontos von %s an %s abgeben möchtest, klicke auf den Button Eigentümer wechseln." +#: includes/class-freemius.php:13830 +msgid "" +"If you would like to give up the ownership of the %s's account to %s click " +"the Change Ownership button." +msgstr "" +"Wenn du die Eigentümerschaft des Kontos von %s an %s abgeben möchtest, " +"klicke auf den Button Eigentümer wechseln." -#: includes/class-freemius.php:14007 +#: includes/class-freemius.php:13837 msgid "Change Ownership" msgstr "Eigentümer wechseln" -#: includes/class-freemius.php:14614 +#: includes/class-freemius.php:14434 msgid "Invalid site details collection." msgstr "Ungültige Website-Detailsammlung." -#: includes/class-freemius.php:14734 -msgid "We couldn't find your email address in the system, are you sure it's the right address?" -msgstr "Wir konnten deine E-Mail-Adresse nicht im System finden. Bist du sicher, dass dies die richtige Adresse ist?" - -#: includes/class-freemius.php:14736 -msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" -msgstr "Wir können keine aktiven Lizenzen sehen, die mit dieser E-Mail-Adresse verbunden sind. Bist du sicher, dass es die richtige Adresse ist?" +#: includes/class-freemius.php:14556 +msgid "" +"We can't see any active licenses associated with that email address, are " +"you sure it's the right address?" +msgstr "" +"Wir können keine aktiven Lizenzen sehen, die mit dieser E-Mail-Adresse " +"verbunden sind. Bist du sicher, dass es die richtige Adresse ist?" -#: includes/class-freemius.php:15034 -msgid "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." -msgstr "Die Aktivierung des Kontos steht noch aus. Bitte überprüfe deine E-Mails und klicke auf den Link, um dein Konto zu aktivieren, und sende dann das Affiliate-Formular erneut." +#: includes/class-freemius.php:14554 +msgid "" +"We couldn't find your email address in the system, are you sure it's the " +"right address?" +msgstr "" +"Wir konnten deine E-Mail-Adresse nicht im System finden. Bist du sicher, " +"dass dies die richtige Adresse ist?" -#: includes/class-freemius.php15148, -#: templates/forms/premium-versions-upgrade-handler.php:47 -msgid "Buy a license now" -msgstr "Jetzt eine Lizenz kaufen" +#: includes/class-freemius.php:14860 +msgid "" +"Account is pending activation. Please check your email and click the link " +"to activate your account and then submit the affiliate form again." +msgstr "" +"Die Aktivierung des Kontos steht noch aus. Bitte überprüfe deine E-Mails " +"und klicke auf den Link, um dein Konto zu aktivieren, und sende dann das " +"Affiliate-Formular erneut." -#: includes/class-freemius.php15160, +#: includes/class-freemius.php14986, #: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Verlängere deine Lizenz jetzt" -#: includes/class-freemius.php:15164 +#: includes/class-freemius.php14974, +#: templates/forms/premium-versions-upgrade-handler.php:47 +msgid "Buy a license now" +msgstr "Jetzt eine Lizenz kaufen" + +#: includes/class-freemius.php:14990 msgid "%s to access version %s security & feature updates, and support." -msgstr "%s, um auf die Sicherheits- und Funktionsupdates der Version %s und den Support zuzugreifen." +msgstr "" +"%s, um auf die Sicherheits- und Funktionsupdates der Version %s und den " +"Support zuzugreifen." -#: includes/class-freemius.php:17871 +#: includes/class-freemius.php:17662 msgid "%s opt-in was successfully completed." msgstr "%s Opt-In wurde erfolgreich abgeschlossen." -#: includes/class-freemius.php:17885 -msgid "Your account was successfully activated with the %s plan." -msgstr "Dein Konto wurde erfolgreich mit der %s-Lizenz aktiviert." - -#: includes/class-freemius.php17896, includes/class-freemius.php:21803 +#: includes/class-freemius.php17686, includes/class-freemius.php:21607 msgid "Your trial has been successfully started." msgstr "Dein Testzeitraum wurde erfolgreich gestartet." -#: includes/class-freemius.php18511, includes/class-freemius.php18616, -#: includes/class-freemius.php:18793 +#: includes/class-freemius.php:17676 +msgid "Your account was successfully activated with the %s plan." +msgstr "Dein Konto wurde erfolgreich mit der %s-Lizenz aktiviert." + +#: includes/class-freemius.php18320, includes/class-freemius.php18433, +#: includes/class-freemius.php:18610 msgid "Couldn't activate %s." msgstr "Konnte %s nicht aktivieren." -#: includes/class-freemius.php18512, includes/class-freemius.php18617, -#: includes/class-freemius.php:18794 +#: includes/class-freemius.php18321, includes/class-freemius.php18434, +#: includes/class-freemius.php:18611 msgid "Please contact us with the following message:" msgstr "Bitte kontaktiere uns mit der folgenden Nachricht:" -#: includes/class-freemius.php18613, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php18430, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "Ein unbekannter Fehler ist aufgetreten." -#: includes/class-freemius.php19153, includes/class-freemius.php:24542 +#: includes/class-freemius.php18972, includes/class-freemius.php:24391 msgid "Upgrade" msgstr "Upgrade" -#: includes/class-freemius.php:19159 -msgid "Start Trial" -msgstr "Starte Testversion" - -#: includes/class-freemius.php:19161 +#: includes/class-freemius.php:18980 msgid "Pricing" msgstr "Preise" -#: includes/class-freemius.php19241, includes/class-freemius.php:19243 +#: includes/class-freemius.php:18978 +msgid "Start Trial" +msgstr "Starte Testversion" + +#: includes/class-freemius.php19060, includes/class-freemius.php:19062 msgid "Affiliation" msgstr "Affiliate" -#: includes/class-freemius.php19271, includes/class-freemius.php19273, -#: templates/account.php264, templates/debug.php:362 +#: includes/class-freemius.php19090, includes/class-freemius.php19092, +#: templates/account.php260, templates/debug.php:366 msgid "Account" msgstr "Konto" -#: includes/class-freemius.php19287, includes/class-freemius.php19289, +#: includes/class-freemius.php19106, includes/class-freemius.php19108, #: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Kontakt" -#: includes/class-freemius.php19300, includes/class-freemius.php19302, -#: includes/class-freemius.php24556, templates/account.php134, +#: includes/class-freemius.php19119, includes/class-freemius.php19121, +#: includes/class-freemius.php24405, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Add-ons" -#: includes/class-freemius.php:19336 -msgctxt "ASCII arrow left icon" -msgid "←" -msgstr "←" - -#: includes/class-freemius.php:19336 -msgctxt "ASCII arrow right icon" -msgid "➤" -msgstr "➤" - -#: includes/class-freemius.php19338, templates/pricing.php:110 -msgctxt "noun" -msgid "Pricing" -msgstr "Preise" - -#: includes/class-freemius.php19551, +#: includes/class-freemius.php19370, #: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Support Forum" -#: includes/class-freemius.php:20572 +#: includes/class-freemius.php:20391 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Deine E-Mail wurde erfolgreich verifiziert - Glückwunsch!" -#: includes/class-freemius.php:20573 -msgctxt "a positive response" -msgid "Right on" -msgstr "Direkt an" - -#: includes/class-freemius.php:21079 +#: includes/class-freemius.php:20898 msgid "seems like the key you entered doesn't match our records." -msgstr "es scheint, dass der von dir eingegebene Schlüssel nicht mit unseren Aufzeichnungen übereinstimmt." +msgstr "" +"es scheint, dass der von dir eingegebene Schlüssel nicht mit unseren " +"Aufzeichnungen übereinstimmt." -#: includes/class-freemius.php:21103 -msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." -msgstr "Der Debug-Modus wurde erfolgreich aktiviert und wird in 60 Minuten automatisch wieder deaktiviert. Du kannst ihn auch früher deaktivieren, indem du auf den Link \"Stop Debug\" klickst." +#: includes/class-freemius.php:20922 +msgid "" +"Debug mode was successfully enabled and will be automatically disabled in " +"60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +msgstr "" +"Der Debug-Modus wurde erfolgreich aktiviert und wird in 60 Minuten " +"automatisch wieder deaktiviert. Du kannst ihn auch früher deaktivieren, " +"indem du auf den Link \"Stop Debug\" klickst." -#: includes/class-freemius.php:21338 +#: includes/class-freemius.php:21157 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Dein %s Add-on Plan wurde erfolgreich upgegradet." -#: includes/class-freemius.php:21340 +#: includes/class-freemius.php:21159 +#. translators: %s:product name, e.g. Facebook add-on was successfully... msgid "%s Add-on was successfully purchased." msgstr "%s Add-on wurde erfolgreich erworben." -#: includes/class-freemius.php:21343 +#: includes/class-freemius.php:21162 msgid "Download the latest version" msgstr "Lade die neueste Version herunter" -#: includes/class-freemius.php:21449 -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" -msgstr "Dein Server blockiert den Zugriff auf Freemius' API, die für die %1$s-Synchronisation entscheidend ist. Bitte kontaktiere deinen Host, um %2$s auf die Whitelist zu setzen" +#: includes/class-freemius.php:21280 +msgid "" +"It seems like one of the authentication parameters is wrong. Update your " +"Public Key, Secret Key & User ID, and try again." +msgstr "" +"Es scheint, dass einer der Authentifizierungsparameter falsch ist. " +"Aktualisiere deinen Public Key, Secret Key & User ID und versuche es erneut." -#: includes/class-freemius.php21455, includes/class-freemius.php21469, -#: includes/class-freemius.php21938, includes/class-freemius.php:22027 +#: includes/class-freemius.php21280, includes/class-freemius.php21677, +#: includes/class-freemius.php21778, includes/class-freemius.php:21865 msgid "Error received from the server:" msgstr "Fehler vom Server empfangen:" -#: includes/class-freemius.php:21469 -msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." -msgstr "Es scheint, dass einer der Authentifizierungsparameter falsch ist. Aktualisiere deinen Public Key, Secret Key & User ID und versuche es erneut." - -#: includes/class-freemius.php21700, includes/class-freemius.php21943, -#: includes/class-freemius.php21998, includes/class-freemius.php:22105 -msgctxt "" -msgid "Hmm" -msgstr "Hmm" - -#: includes/class-freemius.php:21713 -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." -msgstr "Es sieht so aus, als wärst du immer noch im %s-Plan. Wenn du ein Upgrade oder einen Planwechsel durchgeführt hast, ist das wahrscheinlich ein Problem auf unserer Seite - sorry." - -#: includes/class-freemius.php21714, templates/account.php136, -#: templates/add-ons.php250, templates/account/partials/addon.php:51 -msgctxt "trial period" -msgid "Trial" -msgstr "Test" +#: includes/class-freemius.php:21524 +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." +msgstr "" +"Es sieht so aus, als wärst du immer noch im %s-Plan. Wenn du ein Upgrade " +"oder einen Planwechsel durchgeführt hast, ist das wahrscheinlich ein " +"Problem auf unserer Seite - sorry." -#: includes/class-freemius.php:21719 -msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." -msgstr "Ich habe mein Konto hochgestuft, aber wenn ich versuche, die Lizenz zu synchronisieren, bleibt der Plan %s." +#: includes/class-freemius.php:21530 +msgid "" +"I have upgraded my account but when I try to Sync the License, the plan " +"remains %s." +msgstr "" +"Ich habe mein Konto hochgestuft, aber wenn ich versuche, die Lizenz zu " +"synchronisieren, bleibt der Plan %s." -#: includes/class-freemius.php21723, includes/class-freemius.php:21782 +#: includes/class-freemius.php21534, includes/class-freemius.php:21586 msgid "Please contact us here" msgstr "Bitte kontaktiere uns hier" -#: includes/class-freemius.php:21734 -msgid "Your plan was successfully activated." -msgstr "Dein Plan wurde erfolgreich aktiviert." - -#: includes/class-freemius.php:21735 -msgid "Your plan was successfully upgraded." -msgstr "Dein Plan wurde erfolgreich upgegradet." - -#: includes/class-freemius.php:21752 +#: includes/class-freemius.php:21556 msgid "Your plan was successfully changed to %s." msgstr "Dein Plan wurde erfolgreich auf %s geändert." -#: includes/class-freemius.php:21768 +#: includes/class-freemius.php:21572 msgid "Your license has expired. You can still continue using the free %s forever." -msgstr "Deine Lizenz ist abgelaufen. Du kannst das kostenlose %s trotzdem für immer weiter nutzen." +msgstr "" +"Deine Lizenz ist abgelaufen. Du kannst das kostenlose %s trotzdem für immer " +"weiter nutzen." + +#: includes/class-freemius.php:21574 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"Deine Lizenz ist abgelaufen. %1$sUpgrade jetzt%2$s, um das %3$s weiterhin " +"ohne Unterbrechungen zu nutzen." + +#: includes/class-freemius.php:21582 +msgid "" +"Your license has been cancelled. If you think it's a mistake, please " +"contact support." +msgstr "" +"Deine Lizenz wurde gelöscht. Wenn du denkst, dass es ein Fehler ist, " +"kontaktiere bitte den Support." -#: includes/class-freemius.php:21770 -msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Deine Lizenz ist abgelaufen. %1$sUpgrade jetzt%2$s, um das %3$s weiterhin ohne Unterbrechungen zu nutzen." +#: includes/class-freemius.php:21595 +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." +msgstr "" +"Deine Lizenz ist abgelaufen. Du kannst weiterhin alle %s Funktionen nutzen, " +"aber du musst deine Lizenz erneuern, um weiterhin Updates und Support zu " +"erhalten." -#: includes/class-freemius.php:21778 -msgid "Your license has been cancelled. If you think it's a mistake, please contact support." -msgstr "Deine Lizenz wurde gelöscht. Wenn du denkst, dass es ein Fehler ist, kontaktiere bitte den Support." +#: includes/class-freemius.php:21621 +msgid "" +"Your free trial has expired. You can still continue using all our free " +"features." +msgstr "" +"Dein kostenloser Testzeitraum ist abgelaufen. Du kannst aber weiterhin alle " +"unsere kostenlosen Funktionen nutzen." -#: includes/class-freemius.php:21791 -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." -msgstr "Deine Lizenz ist abgelaufen. Du kannst weiterhin alle %s Funktionen nutzen, aber du musst deine Lizenz erneuern, um weiterhin Updates und Support zu erhalten." +#: includes/class-freemius.php:21623 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"Deine kostenlose Testversion ist abgelaufen. %1$sUpgrade jetzt%2$s, um das " +"%3$s weiterhin ohne Unterbrechungen zu nutzen." -#: includes/class-freemius.php:21817 -msgid "Your free trial has expired. You can still continue using all our free features." -msgstr "Dein kostenloser Testzeitraum ist abgelaufen. Du kannst aber weiterhin alle unsere kostenlosen Funktionen nutzen." +#: includes/class-freemius.php:21669 +msgid "" +"Your server is blocking the access to Freemius' API, which is crucial for " +"%1$s synchronization. Please contact your host to whitelist the following " +"domains:%2$s" +msgstr "" +"Dein Server blockiert den Zugriff auf die API von Freemius, was für die " +"Synchronisation von %1$s entscheidend ist. Bitte wende dich an deinen Host, " +"um die folgenden Domains auf die Whitelist zu setzen: %2$s" -#: includes/class-freemius.php:21819 -msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Deine kostenlose Testversion ist abgelaufen. %1$sUpgrade jetzt%2$s, um das %3$s weiterhin ohne Unterbrechungen zu nutzen." +#: includes/class-freemius.php:21671 +msgid "Show error details" +msgstr "Fehlerdetails anzeigen" -#: includes/class-freemius.php:21934 +#: includes/class-freemius.php:21774 msgid "It looks like the license could not be activated." msgstr "Es sieht so aus, als ob die Lizenz nicht aktiviert werden konnte." -#: includes/class-freemius.php:21976 +#: includes/class-freemius.php:21816 msgid "Your license was successfully activated." msgstr "Deine Lizenz wurde erfolgreich aktiviert." -#: includes/class-freemius.php:22002 +#: includes/class-freemius.php:21840 msgid "It looks like your site currently doesn't have an active license." msgstr "Es sieht so aus, als ob deine Seite derzeit keine aktive Lizenz hat." -#: includes/class-freemius.php:22026 +#: includes/class-freemius.php:21864 msgid "It looks like the license deactivation failed." msgstr "Es sieht so aus, als wäre die Lizenzdeaktivierung fehlgeschlagen." -#: includes/class-freemius.php:22055 +#: includes/class-freemius.php:21893 msgid "Your %s license was successfully deactivated." msgstr "Deine %s-Lizenz wurde erfolgreich deaktiviert." -#: includes/class-freemius.php:22056 +#: includes/class-freemius.php:21894 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Deine Lizenz wurde erfolgreich deaktiviert, du bist zurück im %s Plan." -#: includes/class-freemius.php:22059 +#: includes/class-freemius.php:21897 msgid "O.K" msgstr "OK" -#: includes/class-freemius.php:22112 -msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." -msgstr "Es scheint, als ob wir ein temporäres Problem mit der Kündigung deines Abonnements haben. Bitte versuche es in ein paar Minuten erneut." +#: includes/class-freemius.php:21950 +msgid "" +"Seems like we are having some temporary issue with your subscription " +"cancellation. Please try again in few minutes." +msgstr "" +"Es scheint, als ob wir ein temporäres Problem mit der Kündigung deines " +"Abonnements haben. Bitte versuche es in ein paar Minuten erneut." -#: includes/class-freemius.php:22121 -msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." -msgstr "Dein Abonnement wurde erfolgreich gekündigt. Dein %s Plan wird in %s ablaufen." +#: includes/class-freemius.php:21959 +msgid "" +"Your subscription was successfully cancelled. Your %s plan license will " +"expire in %s." +msgstr "" +"Dein Abonnement wurde erfolgreich gekündigt. Dein %s Plan wird in %s " +"ablaufen." -#: includes/class-freemius.php:22163 +#: includes/class-freemius.php:22001 msgid "You are already running the %s in a trial mode." msgstr "Du testest %s bereits." -#: includes/class-freemius.php:22174 +#: includes/class-freemius.php:22012 msgid "You already utilized a trial before." msgstr "Du hast schon einmal einen Testzeitraum in Anspruch genommen." -#: includes/class-freemius.php:22188 +#: includes/class-freemius.php:22048 +msgid "None of the %s's plans supports a trial period." +msgstr "Keiner der Pläne von %s unterstützt eine Probezeit." + +#: includes/class-freemius.php:22026 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "Plan %s existiert nicht, es kann keine Testversion gestartet werden." -#: includes/class-freemius.php:22199 +#: includes/class-freemius.php:22037 msgid "Plan %s does not support a trial period." msgstr "Der Plan %s unterstützt keine Probezeit." -#: includes/class-freemius.php:22210 -msgid "None of the %s's plans supports a trial period." -msgstr "Keiner der Pläne von %s unterstützt eine Probezeit." - -#: includes/class-freemius.php:22259 -msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" -msgstr "Es sieht so aus, als wärst du nicht mehr im Testmodus, also gibt es nichts zu stornieren :)" +#: includes/class-freemius.php:22097 +msgid "" +"It looks like you are not in trial mode anymore so there's nothing to " +"cancel :)" +msgstr "" +"Es sieht so aus, als wärst du nicht mehr im Testmodus, also gibt es nichts " +"zu stornieren :)" -#: includes/class-freemius.php:22295 -msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." -msgstr "Es scheint, als hätten wir ein temporäres Problem mit der Abmeldung deiner Testversion. Bitte versuche es in ein paar Minuten erneut." +#: includes/class-freemius.php:22133 +msgid "" +"Seems like we are having some temporary issue with your trial cancellation. " +"Please try again in few minutes." +msgstr "" +"Es scheint, als hätten wir ein temporäres Problem mit der Abmeldung deiner " +"Testversion. Bitte versuche es in ein paar Minuten erneut." -#: includes/class-freemius.php:22314 +#: includes/class-freemius.php:22152 msgid "Your %s free trial was successfully cancelled." msgstr "Deine %s kostenlose Testversion wurde erfolgreich storniert." -#: includes/class-freemius.php:22641 +#: includes/class-freemius.php:22496 +msgid "Seems like you got the latest release." +msgstr "Sieht so aus, als hättest du die neueste Version." + +#: includes/class-freemius.php:22497 +msgid "You are all good!" +msgstr "Ihr seid alle gut!" + +#: includes/class-freemius.php:22479 msgid "Version %s was released." msgstr "Version %s wurde freigegeben." -#: includes/class-freemius.php:22641 +#: includes/class-freemius.php:22479 msgid "Please download %s." msgstr "Bitte lade %s herunter." -#: includes/class-freemius.php:22648 +#: includes/class-freemius.php:22486 msgid "the latest %s version here" msgstr "die neueste %s Version hier" -#: includes/class-freemius.php:22653 +#: includes/class-freemius.php:22491 msgid "New" msgstr "Neu" -#: includes/class-freemius.php:22658 -msgid "Seems like you got the latest release." -msgstr "Sieht so aus, als hättest du die neueste Version." - -#: includes/class-freemius.php:22659 -msgid "You are all good!" -msgstr "Ihr seid alle gut!" - -#: includes/class-freemius.php:23062 -msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." -msgstr "Verifizierungsmail wurde gerade an %s gesendet. Wenn du sie nach 5 Minuten nicht finden kannst, überprüfe bitte deine Spam-Ordner." +#: includes/class-freemius.php:22900 +msgid "" +"Verification mail was just sent to %s. If you can't find it after 5 min, " +"please check your spam box." +msgstr "" +"Verifizierungsmail wurde gerade an %s gesendet. Wenn du sie nach 5 Minuten " +"nicht finden kannst, überprüfe bitte deine Spam-Ordner." -#: includes/class-freemius.php:23202 +#: includes/class-freemius.php:23040 msgid "Site successfully opted in." msgstr "Webseite erfolgreich eingeloggt." -#: includes/class-freemius.php23203, includes/class-freemius.php:24252 +#: includes/class-freemius.php23041, includes/class-freemius.php:24101 msgid "Awesome" msgstr "Fantastisch" -#: includes/class-freemius.php:23219 -msgid "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." -msgstr "Das Teilen von Diagnosedaten mit hilft dabei, Funktionen bereitzustellen, die für deine Website relevanter sind, Inkompatibilitäten mit WordPress- oder PHP-Versionen zu vermeiden, die deine Website beschädigen können, und zu erkennen, auf welche Sprachen und Regionen das Plugin übersetzt und angepasst werden sollte." +#: includes/class-freemius.php:23067 +msgid "Diagnostic data will no longer be sent from %s to %s." +msgstr "Diagnosedaten werden nicht mehr von %s bis %sgesendet." + +#: includes/class-freemius.php:23057 +msgid "" +"Sharing diagnostic data with %s helps to provide functionality that's more " +"relevant to your website, avoid WordPress or PHP version incompatibilities " +"that can break your website, and recognize which languages & regions the " +"plugin should be translated and tailored to." +msgstr "" +"Das Teilen von Diagnosedaten mit %s hilft dabei, Funktionen " +"bereitzustellen, die für deine Website relevanter sind, Inkompatibilitäten " +"mit WordPress- oder PHP-Versionen zu vermeiden, die deine Website " +"beschädigen können, und zu erkennen, auf welche Sprachen und Regionen das " +"Plugin übersetzt und angepasst werden sollte." -#: includes/class-freemius.php:23220 +#: includes/class-freemius.php:23058 msgid "Thank you!" msgstr "Danke dir!" -#: includes/class-freemius.php:23229 -msgid "Diagnostic data will no longer be sent from %s to %s." -msgstr "Diagnosedaten werden nicht mehr von %s bis %sgesendet." - -#: includes/class-freemius.php:23384 -msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." -msgstr "Eine Bestätigungs-E-Mail wurde gerade an %s gesendet. Der Besitzer der E-Mail-Adresse muss die Aktualisierung innerhalb der nächsten 4 Stunden bestätigen." +#: includes/class-freemius.php:23227 +msgid "" +"A confirmation email was just sent to %s. You must confirm the update " +"within the next 4 hours. If you cannot find the email, please check your " +"spam folder." +msgstr "" +"Eine Bestätigungs-E-Mail wurde gerade an %s gesendet. Du musst die " +"Aktualisierung innerhalb der nächsten 4 Stunden bestätigen. Wenn du die " +"E-Mail nicht findest, überprüfe bitte deinen Spam-Ordner." -#: includes/class-freemius.php:23386 -msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." -msgstr "Eine Bestätigungs-E-Mail wurde gerade an %s gesendet. Du musst die Aktualisierung innerhalb der nächsten 4 Stunden bestätigen. Wenn du die E-Mail nicht findest, überprüfe bitte deinen Spam-Ordner." +#: includes/class-freemius.php:23225 +msgid "" +"A confirmation email was just sent to %s. The email owner must confirm the " +"update within the next 4 hours." +msgstr "" +"Eine Bestätigungs-E-Mail wurde gerade an %s gesendet. Der Besitzer der " +"E-Mail-Adresse muss die Aktualisierung innerhalb der nächsten 4 Stunden " +"bestätigen." -#: includes/class-freemius.php:23393 -msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." -msgstr "Danke für die Bestätigung des Eigentümerwechsels. Eine E-Mail wurde soeben an %s zur endgültigen Genehmigung gesendet." +#: includes/class-freemius.php:23239 +msgid "" +"Thanks for confirming the ownership change. An email was just sent to %s " +"for final approval." +msgstr "" +"Danke für die Bestätigung des Eigentümerwechsels. Eine E-Mail wurde soeben " +"an %s zur endgültigen Genehmigung gesendet." -#: includes/class-freemius.php:23398 +#: includes/class-freemius.php:23245 msgid "%s is the new owner of the account." msgstr "%s ist der neue Besitzer des Kontos." -#: includes/class-freemius.php:23400 -msgctxt "as congratulations" -msgid "Congrats" -msgstr "Herzlichen Glückwunsch" +#: includes/class-freemius.php:23269 +msgid "Your name was successfully updated." +msgstr "Dein Name wurde erfolgreich aktualisiert." -#: includes/class-freemius.php:23417 +#: includes/class-freemius.php:23264 msgid "Please provide your full name." msgstr "Bitte gib deinen vollständigen Namen an." -#: includes/class-freemius.php:23422 -msgid "Your name was successfully updated." -msgstr "Dein Name wurde erfolgreich aktualisiert." - -#: includes/class-freemius.php:23483 +#: includes/class-freemius.php:23334 +#. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Du hast deine %s erfolgreich aktualisiert." -#: includes/class-freemius.php:23542 -msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." -msgstr "Ist dies die Seite deines Kunden? %s wenn du sensible Informationen wie deine E-Mail, Lizenzschlüssel, Preise, Rechnungsadresse & Rechnungen vor dem WP Admin verstecken möchtest." +#: includes/class-freemius.php:23398 +msgid "" +"Is this your client's site? %s if you wish to hide sensitive info like your " +"email, license key, prices, billing address & invoices from the WP Admin." +msgstr "" +"Ist dies die Seite deines Kunden? %s wenn du sensible Informationen wie " +"deine E-Mail, Lizenzschlüssel, Preise, Rechnungsadresse & Rechnungen vor " +"dem WP Admin verstecken möchtest." -#: includes/class-freemius.php:23545 +#: includes/class-freemius.php:23401 msgid "Click here" msgstr "Hier klicken" -#: includes/class-freemius.php23582, includes/class-freemius.php:23579 +#: includes/class-freemius.php:23438 msgid "Bundle" msgstr "Paket" -#: includes/class-freemius.php:23662 -msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." -msgstr "Ich wollte dich nur darauf hinweisen, dass die Add-on-Informationen von %s von einem externen Server bezogen werden." - -#: includes/class-freemius.php:23663 -msgctxt "advance notice of something that will need attention." -msgid "Heads up" -msgstr "Kopf hoch" - -#: includes/class-freemius.php:24292 -msgctxt "exclamation" -msgid "Hey" -msgstr "Hey" +#: includes/class-freemius.php:23511 +msgid "" +"Just letting you know that the add-ons information of %s is being pulled " +"from an external server." +msgstr "" +"Ich wollte dich nur darauf hinweisen, dass die Add-on-Informationen von %s " +"von einem externen Server bezogen werden." -#: includes/class-freemius.php:24292 -msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." -msgstr "Wie gefällt dir %s bis jetzt? Teste alle %s-Premium-Funktionen mit der kostenlosen %d-Tage-Testversion." +#: includes/class-freemius.php:24141 +msgid "" +"How do you like %s so far? Test all our %s premium features with a %d-day " +"free trial." +msgstr "" +"Wie gefällt dir %s bis jetzt? Teste alle %s Premium-Funktionen mit der " +"kostenlosen %d-Tage-Testversion." -#: includes/class-freemius.php:24300 +#: includes/class-freemius.php:24149 msgid "No commitment for %s days - cancel anytime!" msgstr "Keine Verpflichtung für %s Tage - jederzeit kündbar!" -#: includes/class-freemius.php:24301 +#: includes/class-freemius.php:24150 msgid "No credit card required" msgstr "Keine Kreditkarte erforderlich" -#: includes/class-freemius.php24308, templates/forms/trial-start.php:53 -msgctxt "call to action" -msgid "Start free trial" -msgstr "Starte die kostenlose Testversion" - -#: includes/class-freemius.php:24385 -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!" -msgstr "Hallo, wusstest du, dass %s ein Partnerprogramm hat? Wenn du die %s magst, kannst du unser Affiliate werden und etwas Geld verdienen!" +#: includes/class-freemius.php:24234 +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!" +msgstr "" +"Hallo, wusstest du, dass %s ein Partnerprogramm hat? Wenn du %s magst, " +"kannst du unser Affiliate-Partner werden und etwas Geld verdienen!" -#: includes/class-freemius.php:24394 +#: includes/class-freemius.php:24243 msgid "Learn more" msgstr "Mehr erfahren" -#: includes/class-freemius.php24580, templates/account.php573, -#: templates/account.php725, templates/connect.php223, -#: templates/connect.php449, includes/managers/class-fs-clone-manager.php1295, +#: includes/class-freemius.php24429, templates/account.php569, +#: templates/account.php721, templates/connect.php212, +#: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, #: templates/forms/license-activation.php27, #: templates/account/partials/addon.php:326 msgid "Activate License" msgstr "Lizenz freischalten" -#: includes/class-freemius.php24581, templates/account.php667, -#: templates/account.php724, templates/account/partials/addon.php327, +#: includes/class-freemius.php24430, templates/account.php663, +#: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "Lizenz ändern" -#: includes/class-freemius.php24688, templates/account/partials/site.php:170 -msgid "Opt Out" -msgstr "Abmelden" - -#: includes/class-freemius.php24690, includes/class-freemius.php24696, +#: includes/class-freemius.php24545, includes/class-freemius.php24539, #: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Opt-In" -#: includes/class-freemius.php:24931 -msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -msgstr " Die kostenpflichtige Version von %1$s ist bereits installiert. Bitte aktiviere sie, um von den %2$s Funktionen zu profitieren. %3$s" - -#: includes/class-freemius.php:24941 -msgid "Activate %s features" -msgstr "Aktiviere %s Funktionen" +#: includes/class-freemius.php24537, templates/account/partials/site.php:170 +msgid "Opt Out" +msgstr "Abmelden" -#: includes/class-freemius.php:24954 +#: includes/class-freemius.php:24803 msgid "Please follow these steps to complete the upgrade" msgstr "Bitte folge diesen Schritten, um das Upgrade abzuschließen" -#: includes/class-freemius.php:24958 +#: includes/class-freemius.php:24807 +#. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Lade die neueste %s Version herunter" -#: includes/class-freemius.php:24962 +#: includes/class-freemius.php:24811 msgid "Upload and activate the downloaded version" msgstr "Lade die heruntergeladene Version hoch und aktiviere sie" -#: includes/class-freemius.php:24964 +#: includes/class-freemius.php:24813 msgid "How to upload and activate?" msgstr "Wie kann ich es hochladen und aktivieren?" -#: includes/class-freemius.php:25098 -msgid "%sClick here%s to choose the sites where you'd like to activate the license on." -msgstr "%sKlicke hier%s um die Webseite auszuwählen, auf denen du die Lizenz aktivieren möchtest." +#: includes/class-freemius.php:24780 +msgid "" +" The paid version of %1$s is already installed. Please activate it to start " +"benefiting the %2$s features. %3$s" +msgstr "" +" Die kostenpflichtige Version von %1$s ist bereits installiert. Bitte " +"aktiviere sie, um von den %2$s Funktionen zu profitieren. %3$s" + +#: includes/class-freemius.php:24790 +msgid "Activate %s features" +msgstr "Aktiviere %s Funktionen" + +#: includes/class-freemius.php:24848 +msgid "Your plan was successfully upgraded." +msgstr "Dein Plan wurde erfolgreich upgegradet." + +#: includes/class-freemius.php:24849 +msgid "Your plan was successfully activated." +msgstr "Dein Plan wurde erfolgreich aktiviert." -#: includes/class-freemius.php:25267 +#: includes/class-freemius.php:24979 +msgid "" +"%sClick here%s to choose the sites where you'd like to activate the license " +"on." +msgstr "" +"%sKlicke hier%s um die Webseite auszuwählen, auf denen du die Lizenz " +"aktivieren möchtest." + +#: includes/class-freemius.php:25148 msgid "Auto installation only works for opted-in users." msgstr "Die automatische Installation funktioniert nur für eingeloggte Nutzer." -#: includes/class-freemius.php25277, includes/class-freemius.php25310, -#: includes/class-fs-plugin-updater.php1284, -#: includes/class-fs-plugin-updater.php:1298 +#: includes/class-freemius.php25158, includes/class-freemius.php25191, +#: includes/class-fs-plugin-updater.php1289, +#: includes/class-fs-plugin-updater.php:1303 msgid "Invalid module ID." msgstr "Ungültige Modul-ID." -#: includes/class-freemius.php25286, includes/class-fs-plugin-updater.php:1320 +#: includes/class-freemius.php25199, includes/class-fs-plugin-updater.php:1324 +msgid "Premium add-on version already installed." +msgstr "Premium Add-on Version bereits installiert." + +#: includes/class-freemius.php25167, includes/class-fs-plugin-updater.php:1325 msgid "Premium version already active." msgstr "Premium Version bereits aktiv." -#: includes/class-freemius.php:25293 +#: includes/class-freemius.php:25174 msgid "You do not have a valid license to access the premium version." msgstr "Du hast keine gültige Lizenz, um auf die Premium-Version zuzugreifen." -#: includes/class-freemius.php:25300 -msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." -msgstr "Das Plugin ist eine \"Serviceware\", was bedeutet, dass es keine Premium Version hat." +#: includes/class-freemius.php:25181 +msgid "" +"Plugin is a \"Serviceware\" which means it does not have a premium code " +"version." +msgstr "" +"Das Plugin ist eine \"Serviceware\", was bedeutet, dass es keine " +"Premiumversion hat." -#: includes/class-freemius.php25318, includes/class-fs-plugin-updater.php:1319 -msgid "Premium add-on version already installed." -msgstr "Premium Add-on Version bereits installiert." - -#: includes/class-freemius.php:25672 +#: includes/class-freemius.php:25559 msgid "View paid features" msgstr "Bezahlte Funktionen ansehen" -#: includes/class-freemius.php:25994 -msgid "Thank you so much for using %s and its add-ons!" -msgstr "Vielen Dank, dass du %s und seine Add-ons benutzt!" - -#: includes/class-freemius.php:25995 -msgid "Thank you so much for using %s!" -msgstr "Vielen Dank, dass du %s benutzt!" - -#: includes/class-freemius.php:26001 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." -msgstr "Du hast dich bereits für unser Nutzungs-Tracking entschieden, was uns hilft, %s weiter zu verbessern." - -#: includes/class-freemius.php:26005 +#: includes/class-freemius.php:25874 msgid "Thank you so much for using our products!" msgstr "Vielen Dank, dass du unsere Produkte benutzt!" -#: includes/class-freemius.php:26006 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." -msgstr "Du hast Dich bereits für unser Nutzungs-Tracking entschieden, was uns hilft, die Benutzerfreundlichkeit weiter zu verbessern." +#: includes/class-freemius.php:25875 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving them." +msgstr "" +"Du hast Dich bereits für unser Nutzungs-Tracking entschieden, was uns " +"hilft, die Benutzerfreundlichkeit weiter zu verbessern." -#: includes/class-freemius.php:26025 +#: includes/class-freemius.php:25894 msgid "%s and its add-ons" msgstr "%s und seine Add-ons" -#: includes/class-freemius.php:26034 +#: includes/class-freemius.php:25903 msgid "Products" msgstr "Produkte" -#: includes/class-freemius.php26041, templates/connect.php:324 +#: includes/class-freemius.php:25863 +msgid "Thank you so much for using %s and its add-ons!" +msgstr "Vielen Dank, dass du %s und seine Add-ons benutzt!" + +#: includes/class-freemius.php:25864 +msgid "Thank you so much for using %s!" +msgstr "Vielen Dank, dass du %s benutzt!" + +#: includes/class-freemius.php:25870 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving the %s." +msgstr "" +"Du hast dich bereits für unser Nutzungs-Tracking entschieden, was uns " +"hilft, %s weiter zu verbessern." + +#: includes/class-freemius.php25910, templates/connect.php:313 msgid "Yes" msgstr "Ja" -#: includes/class-freemius.php26042, templates/connect.php:325 +#: includes/class-freemius.php25911, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "schicke mir Sicherheits- und Funktionsupdates, Bildungsinhalte und Angebote." -#: includes/class-freemius.php26043, templates/connect.php:330 +#: includes/class-freemius.php25912, templates/connect.php:319 msgid "No" msgstr "Nein" -#: includes/class-freemius.php26045, templates/connect.php:332 -msgid "do %sNOT%s send me security & feature updates, educational content and offers." -msgstr "schicke mir %sKEINE%s Sicherheits- und Funktionsupdates, Bildungsinhalte und Angebote." +#: includes/class-freemius.php25914, templates/connect.php:321 +msgid "" +"do %sNOT%s send me security & feature updates, educational content and " +"offers." +msgstr "" +"schicke mir %sKEINE%s Sicherheits- und Funktionsupdates, Bildungsinhalte " +"und Angebote." -#: includes/class-freemius.php:26055 -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 :-)" -msgstr "Aufgrund der neuen %sEU Datenschutzgrundverordnung (DSGVO)%s Compliance-Anforderungen ist es erforderlich, dass du deine ausdrückliche Zustimmung gibst und damit bestätigst, dass du an Bord bist :-)" +#: includes/class-freemius.php:25924 +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 :-)" +msgstr "" +"Aufgrund der neuen %sEU Datenschutzgrundverordnung (DSGVO)%s " +"Compliance-Anforderungen ist es erforderlich, dass du deine ausdrückliche " +"Zustimmung gibst und damit bestätigst, dass du an Bord bist :-)" -#: includes/class-freemius.php26057, templates/connect.php:339 -msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" -msgstr "Bitte lass uns wissen, wenn du möchtest, dass wir dich für Sicherheits- und Funktionsupdates, Bildungsinhalte und gelegentliche Angebote kontaktieren:" +#: includes/class-freemius.php25926, templates/connect.php:328 +msgid "" +"Please let us know if you'd like us to contact you for security & feature " +"updates, educational content, and occasional offers:" +msgstr "" +"Bitte lass uns wissen, wenn du möchtest, dass wir dich für Sicherheits- und " +"Funktionsupdates, Bildungsinhalte und gelegentliche Angebote kontaktieren:" -#: includes/class-freemius.php:26339 +#: includes/class-freemius.php:26216 msgid "License key is empty." msgstr "Der Lizenzschlüssel ist leer." -#: includes/class-fs-plugin-updater.php206, +#: includes/class-fs-plugin-updater.php210, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Lizenz erneuern" -#: includes/class-fs-plugin-updater.php211, +#: includes/class-fs-plugin-updater.php215, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Lizenz kaufen" -#: includes/class-fs-plugin-updater.php331, -#: includes/class-fs-plugin-updater.php:364 +#: includes/class-fs-plugin-updater.php368, +#: includes/class-fs-plugin-updater.php:335 msgid "There is a %s of %s available." msgstr "Es ist ein %s von %s verfügbar." -#: includes/class-fs-plugin-updater.php333, -#: includes/class-fs-plugin-updater.php:369 +#: includes/class-fs-plugin-updater.php373, +#: includes/class-fs-plugin-updater.php:337 msgid "new Beta version" msgstr "neue Beta Version" -#: includes/class-fs-plugin-updater.php334, -#: includes/class-fs-plugin-updater.php:370 +#: includes/class-fs-plugin-updater.php374, +#: includes/class-fs-plugin-updater.php:338 msgid "new version" msgstr "neue Version" -#: includes/class-fs-plugin-updater.php:393 +#: includes/class-fs-plugin-updater.php:397 msgid "Important Upgrade Notice:" msgstr "Wichtiger Hinweis zum Upgrade:" -#: includes/class-fs-plugin-updater.php:1349 +#: includes/class-fs-plugin-updater.php:1354 msgid "Installing plugin: %s" msgstr "Installiere das Plugin: %s" -#: includes/class-fs-plugin-updater.php:1390 +#: includes/class-fs-plugin-updater.php:1395 msgid "Unable to connect to the filesystem. Please confirm your credentials." -msgstr "Es kann keine Verbindung zum Dateisystem hergestellt werden. Bitte bestätige deine Anmeldedaten." +msgstr "" +"Es kann keine Verbindung zum Dateisystem hergestellt werden. Bitte " +"bestätige deine Anmeldedaten." -#: includes/class-fs-plugin-updater.php:1572 -msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." -msgstr "Das Remote-Plugin-Paket enthält keinen Ordner mit dem gewünschten Slug und das Umbenennen hat nicht funktioniert." +#: includes/class-fs-plugin-updater.php:1577 +msgid "" +"The remote plugin package does not contain a folder with the desired slug " +"and renaming did not work." +msgstr "" +"Das Remote-Plugin-Paket enthält keinen Ordner mit dem gewünschten Slug und " +"das Umbenennen hat nicht funktioniert." #: includes/fs-plugin-info-dialog.php:542 msgid "Purchase More" msgstr "Mehr kaufen" -#: includes/fs-plugin-info-dialog.php543, -#: templates/account/partials/addon.php:390 -msgctxt "verb" -msgid "Purchase" -msgstr "Kaufen" - #: includes/fs-plugin-info-dialog.php:547 +#. translators: %s: N-days trial msgid "Start my free %s" msgstr "Starte mein kostenloses %s" -#: includes/fs-plugin-info-dialog.php:745 -msgid "Install Free Version Update Now" -msgstr "Update der kostenlosen Version jetzt installieren" - -#: includes/fs-plugin-info-dialog.php746, templates/account.php:656 -msgid "Install Update Now" -msgstr "Update jetzt installieren" - #: includes/fs-plugin-info-dialog.php:755 msgid "Install Free Version Now" msgstr "Kostenlose Version jetzt installieren" #: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, -#: templates/auto-installation.php111, templates/account/partials/addon.php370, -#: templates/account/partials/addon.php:423 +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php423, +#: templates/account/partials/addon.php:370 msgid "Install Now" msgstr "Jetzt installieren" -#: includes/fs-plugin-info-dialog.php:772 -msgctxt "as download latest version" -msgid "Download Latest Free Version" -msgstr "Neueste kostenlose Version herunterladen" +#: includes/fs-plugin-info-dialog.php:745 +msgid "Install Free Version Update Now" +msgstr "Update der kostenlosen Version jetzt installieren" -#: includes/fs-plugin-info-dialog.php773, templates/account.php114, -#: templates/add-ons.php37, templates/account/partials/addon.php:30 -msgctxt "as download latest version" -msgid "Download Latest" -msgstr "Neuester Download" +#: includes/fs-plugin-info-dialog.php746, templates/account.php:652 +msgid "Install Update Now" +msgstr "Update jetzt installieren" #: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, -#: templates/account/partials/addon.php361, -#: templates/account/partials/addon.php:417 +#: templates/account/partials/addon.php417, +#: templates/account/partials/addon.php:361 msgid "Activate this add-on" msgstr "Aktiviere dieses Add-on" -#: includes/fs-plugin-info-dialog.php790, templates/connect.php:446 +#: includes/fs-plugin-info-dialog.php790, templates/connect.php:437 msgid "Activate Free Version" msgstr "Kostenlose Version freischalten" -#: includes/fs-plugin-info-dialog.php791, templates/account.php138, +#: includes/fs-plugin-info-dialog.php791, templates/account.php134, #: templates/add-ons.php330, templates/account/partials/addon.php:53 msgid "Activate" msgstr "Aktivieren" -#: includes/fs-plugin-info-dialog.php:1003 -msgctxt "Plugin installer section title" -msgid "Description" -msgstr "Beschreibung" - -#: includes/fs-plugin-info-dialog.php:1004 -msgctxt "Plugin installer section title" -msgid "Installation" -msgstr "Installation" - -#: includes/fs-plugin-info-dialog.php:1005 -msgctxt "Plugin installer section title" -msgid "FAQ" -msgstr "FAQ" - -#: includes/fs-plugin-info-dialog.php1006, +#: includes/fs-plugin-info-dialog.php1002, #: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "Screenshots" -#: includes/fs-plugin-info-dialog.php:1007 -msgctxt "Plugin installer section title" -msgid "Changelog" -msgstr "Changelog" - -#: includes/fs-plugin-info-dialog.php:1008 -msgctxt "Plugin installer section title" -msgid "Reviews" -msgstr "Bewertungen" - -#: includes/fs-plugin-info-dialog.php:1009 -msgctxt "Plugin installer section title" -msgid "Other Notes" -msgstr "Weitere Notizen" - -#: includes/fs-plugin-info-dialog.php:1024 -msgctxt "Plugin installer section title" -msgid "Features & Pricing" -msgstr "Funktionen & Preise" - -#: includes/fs-plugin-info-dialog.php:1034 +#: includes/fs-plugin-info-dialog.php:1030 msgid "Plugin Install" msgstr "Plugin installieren" -#: includes/fs-plugin-info-dialog.php:1106 -msgctxt "e.g. Professional Plan" -msgid "%s Plan" -msgstr "%s Plan" - -#: includes/fs-plugin-info-dialog.php:1132 -msgctxt "e.g. the best product" -msgid "Best" -msgstr "Beste" - -#: includes/fs-plugin-info-dialog.php1138, -#: includes/fs-plugin-info-dialog.php:1158 -msgctxt "as every month" -msgid "Monthly" -msgstr "Monatlich" - -#: includes/fs-plugin-info-dialog.php:1141 -msgctxt "as once a year" -msgid "Annual" -msgstr "Jährlich" - -#: includes/fs-plugin-info-dialog.php:1144 +#: includes/fs-plugin-info-dialog.php:1140 msgid "Lifetime" msgstr "Lebenslang" -#: includes/fs-plugin-info-dialog.php1158, -#: includes/fs-plugin-info-dialog.php1160, -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "e.g. billed monthly" -msgid "Billed %s" -msgstr "Abgerechnet wird %s" - -#: includes/fs-plugin-info-dialog.php:1160 -msgctxt "as once a year" -msgid "Annually" -msgstr "Jährlich" - -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "as once a year" -msgid "Once" -msgstr "Einmal" - -#: includes/fs-plugin-info-dialog.php:1168 +#: includes/fs-plugin-info-dialog.php:1164 msgid "Single Site License" msgstr "Einzelplatzlizenz" -#: includes/fs-plugin-info-dialog.php:1170 +#: includes/fs-plugin-info-dialog.php:1166 msgid "Unlimited Licenses" msgstr "Unbegrenzt Lizenzen" -#: includes/fs-plugin-info-dialog.php:1172 +#: includes/fs-plugin-info-dialog.php:1168 msgid "Up to %s Sites" msgstr "Bis zu %s Seiten" -#: includes/fs-plugin-info-dialog.php1182, -#: templates/plugin-info/features.php:82 -msgctxt "as monthly period" -msgid "mo" -msgstr "mtl." - -#: includes/fs-plugin-info-dialog.php1189, -#: templates/plugin-info/features.php:80 -msgctxt "as annual period" -msgid "year" -msgstr "Jahr" - -#: includes/fs-plugin-info-dialog.php:1243 -msgctxt "noun" -msgid "Price" -msgstr "Preis" - -#: includes/fs-plugin-info-dialog.php:1291 +#: includes/fs-plugin-info-dialog.php:1287 +#. translators: %s: Discount (e.g. discount of $5 or 10%) msgid "Save %s" msgstr "%s speichern" -#: includes/fs-plugin-info-dialog.php:1301 +#: includes/fs-plugin-info-dialog.php:1297 msgid "No commitment for %s - cancel anytime" msgstr "Keine Verpflichtung für %s - jederzeit kündigen" -#: includes/fs-plugin-info-dialog.php:1304 +#: includes/fs-plugin-info-dialog.php:1300 msgid "After your free %s, pay as little as %s" msgstr "Nach deinem kostenlosen %s zahlst du so wenig wie %s" -#: includes/fs-plugin-info-dialog.php:1315 +#: includes/fs-plugin-info-dialog.php:1311 msgid "Details" msgstr "Details" -#: includes/fs-plugin-info-dialog.php1319, templates/account.php125, -#: templates/debug.php232, templates/debug.php269, templates/debug.php514, -#: templates/account/partials/addon.php:41 -msgctxt "product version" -msgid "Version" -msgstr "Version" - -#: includes/fs-plugin-info-dialog.php:1326 -msgctxt "as the plugin author" -msgid "Author" -msgstr "Autor" - -#: includes/fs-plugin-info-dialog.php:1333 +#: includes/fs-plugin-info-dialog.php:1329 msgid "Last Updated" msgstr "Zuletzt aktualisiert" -#: includes/fs-plugin-info-dialog.php1338, templates/account.php:544 -msgctxt "x-ago" -msgid "%s ago" -msgstr "vor %s" - -#: includes/fs-plugin-info-dialog.php:1347 +#: includes/fs-plugin-info-dialog.php:1343 msgid "Requires WordPress Version" msgstr "Benötigt WordPress Version" -#: includes/fs-plugin-info-dialog.php1350, -#: includes/fs-plugin-info-dialog.php:1370 +#: includes/fs-plugin-info-dialog.php1346, +#: includes/fs-plugin-info-dialog.php:1366 +#. translators: %s: Version number. msgid "%s or higher" msgstr "%s oder höher" -#: includes/fs-plugin-info-dialog.php:1358 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Compatible up to" msgstr "Kompatibel bis zu" -#: includes/fs-plugin-info-dialog.php:1366 +#: includes/fs-plugin-info-dialog.php:1362 msgid "Requires PHP Version" -msgstr "Requires PHP Version" +msgstr "Benötigt PHP Version" -#: includes/fs-plugin-info-dialog.php:1379 +#: includes/fs-plugin-info-dialog.php:1375 msgid "Downloaded" msgstr "Heruntergeladen" -#: includes/fs-plugin-info-dialog.php:1383 +#: includes/fs-plugin-info-dialog.php:1379 +#. translators: %s: 1 or One (Number of times downloaded) msgid "%s time" msgstr "%s mal" -#: includes/fs-plugin-info-dialog.php:1385 +#: includes/fs-plugin-info-dialog.php:1381 +#. translators: %s: Number of times downloaded msgid "%s times" msgstr "%s mal" -#: includes/fs-plugin-info-dialog.php:1396 +#: includes/fs-plugin-info-dialog.php:1392 msgid "WordPress.org Plugin Page" -msgstr "WordPress.org Plugin Seite" +msgstr "WordPress.org-Plugin-Seite" -#: includes/fs-plugin-info-dialog.php:1405 +#: includes/fs-plugin-info-dialog.php:1401 msgid "Plugin Homepage" -msgstr "Plugin Homepage" +msgstr "Plugin-Homepage" -#: includes/fs-plugin-info-dialog.php1414, -#: includes/fs-plugin-info-dialog.php:1498 +#: includes/fs-plugin-info-dialog.php1410, +#: includes/fs-plugin-info-dialog.php:1494 msgid "Donate to this plugin" msgstr "Für dieses Plugin spenden" -#: includes/fs-plugin-info-dialog.php:1421 +#: includes/fs-plugin-info-dialog.php:1417 msgid "Average Rating" msgstr "Durchschnittliche Bewertung" -#: includes/fs-plugin-info-dialog.php:1428 +#: includes/fs-plugin-info-dialog.php:1424 msgid "based on %s" msgstr "basierend auf %s" -#: includes/fs-plugin-info-dialog.php:1432 +#: includes/fs-plugin-info-dialog.php:1428 +#. translators: %s: 1 or One msgid "%s rating" msgstr "%s Bewertung" -#: includes/fs-plugin-info-dialog.php:1434 +#: includes/fs-plugin-info-dialog.php:1430 +#. translators: %s: Number larger than 1 msgid "%s ratings" msgstr "%s Bewertungen" -#: includes/fs-plugin-info-dialog.php:1449 +#: includes/fs-plugin-info-dialog.php:1445 +#. translators: %s: 1 or One msgid "%s star" msgstr "%s Stern" -#: includes/fs-plugin-info-dialog.php:1451 +#: includes/fs-plugin-info-dialog.php:1447 +#. translators: %s: Number larger than 1 msgid "%s stars" msgstr "%s Sterne" -#: includes/fs-plugin-info-dialog.php:1463 +#: includes/fs-plugin-info-dialog.php:1459 +#. translators: %s: # of stars (e.g. 5 stars) msgid "Click to see reviews that provided a rating of %s" msgstr "Klicke, um Bewertungen zu sehen, die eine Bewertung von %s abgegeben haben" -#: includes/fs-plugin-info-dialog.php:1476 +#: includes/fs-plugin-info-dialog.php:1472 msgid "Contributors" msgstr "Mitwirkende" -#: includes/fs-plugin-info-dialog.php:1517 +#: includes/fs-plugin-info-dialog.php:1513 msgid "This plugin requires a newer version of PHP." -msgstr "This plugin requires a newer version of PHP." +msgstr "Dieses Plugin erfordert eine neuere Version von PHP." -#: includes/fs-plugin-info-dialog.php:1526 -msgid "Click here to learn more about updating PHP." -msgstr "Click here to learn more about updating PHP." +#: includes/fs-plugin-info-dialog.php:1522 +#. translators: %s: URL to Update PHP page. +msgid "" +"Click here to learn more about updating " +"PHP." +msgstr "" +"Klicke hier, um mehr über die " +"Aktualisierung von PHP zu erfahren." -#: includes/fs-plugin-info-dialog.php1540, -#: includes/fs-plugin-info-dialog.php:1542 +#: includes/fs-plugin-info-dialog.php1538, +#: includes/fs-plugin-info-dialog.php:1536 msgid "Warning" msgstr "Warnung" -#: includes/fs-plugin-info-dialog.php:1540 -msgid "This plugin has not been tested with your current version of WordPress." -msgstr "Dieses Plugin wurde nicht mit deiner derzeitigen Version von WordPress getestet." +#: includes/fs-plugin-info-dialog.php:1538 +msgid "" +"This plugin has not been marked as compatible with your version of " +"WordPress." +msgstr "" +"Dieses Plugin wurde als nicht kompatibel mit deiner Version von WordPress " +"markiert." -#: includes/fs-plugin-info-dialog.php:1542 -msgid "This plugin has not been marked as compatible with your version of WordPress." -msgstr "Dieses Plugin wurde als nicht kompatibel mit deiner Version von WordPress markiert." +#: includes/fs-plugin-info-dialog.php:1536 +msgid "This plugin has not been tested with your current version of WordPress." +msgstr "" +"Dieses Plugin wurde nicht mit deiner derzeitigen Version von WordPress " +"getestet." -#: includes/fs-plugin-info-dialog.php:1561 +#: includes/fs-plugin-info-dialog.php:1557 msgid "Paid add-on must be deployed to Freemius." msgstr "Das kostenpflichtige Add-on muss auf Freemius veröffentlicht werden." -#: includes/fs-plugin-info-dialog.php:1562 +#: includes/fs-plugin-info-dialog.php:1558 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "Das Add-on muss auf WordPress.org oder Freemius bereitgestellt werden." -#: includes/fs-plugin-info-dialog.php:1583 -msgid "Newer Version (%s) Installed" -msgstr "Neuere Version (%s) Installiert" - -#: includes/fs-plugin-info-dialog.php:1584 -msgid "Newer Free Version (%s) Installed" -msgstr "Neuere kostenlose Version (%s) Installiert" - -#: includes/fs-plugin-info-dialog.php:1591 +#: includes/fs-plugin-info-dialog.php:1587 msgid "Latest Version Installed" msgstr "Aktuellste Version installiert" -#: includes/fs-plugin-info-dialog.php:1592 +#: includes/fs-plugin-info-dialog.php:1588 msgid "Latest Free Version Installed" msgstr "Aktuellste kostenlose Version installiert" -#: templates/account.php115, templates/forms/subscription-cancellation.php96, +#: includes/fs-plugin-info-dialog.php:1579 +msgid "Newer Version (%s) Installed" +msgstr "Neuere Version (%s) Installiert" + +#: includes/fs-plugin-info-dialog.php:1580 +msgid "Newer Free Version (%s) Installed" +msgstr "Neuere kostenlose Version (%s) Installiert" + +#: templates/account.php111, templates/forms/subscription-cancellation.php96, #: templates/account/partials/addon.php31, #: templates/account/partials/site.php:313 msgid "Downgrading your plan" msgstr "Downgrade deinen Plan" -#: templates/account.php116, templates/forms/subscription-cancellation.php97, +#: templates/account.php112, templates/forms/subscription-cancellation.php97, #: templates/account/partials/addon.php32, #: templates/account/partials/site.php:314 msgid "Cancelling the subscription" msgstr "Das Abonnement kündigen" +#: templates/account.php114, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/site.php:316 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php118, templates/forms/subscription-cancellation.php99, -#: templates/account/partials/site.php:316 -msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." -msgstr "%1$s wird sofort alle zukünftigen wiederkehrenden Zahlungen stoppen und deine %2$s Planz-Lizenz wird in %3$s auslaufen." +msgid "" +"%1$s will immediately stop all future recurring payments and your %2$s plan " +"license will expire in %3$s." +msgstr "" +"%1$s wird sofort alle zukünftigen wiederkehrenden Zahlungen stoppen und " +"deine %2$s Planz-Lizenz wird in %3$s auslaufen." -#: templates/account.php119, templates/forms/subscription-cancellation.php100, +#: templates/account.php115, templates/forms/subscription-cancellation.php100, #: templates/account/partials/addon.php35, #: templates/account/partials/site.php:317 -msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." -msgstr "Bitte beachte, dass wir nicht in der Lage sind, veraltete Preise für Verlängerungen/neue Abonnements nach einer Kündigung beizubehalten. Wenn du dich dafür entscheidest, das Abonnement in Zukunft nach einer Preiserhöhung, die in der Regel einmal im Jahr stattfindet, manuell zu verlängern, wird dir der aktualisierte Preis berechnet." +msgid "" +"Please note that we will not be able to grandfather outdated pricing for " +"renewals/new subscriptions after a cancellation. If you choose to renew the " +"subscription manually in the future, after a price increase, which " +"typically occurs once a year, you will be charged the updated price." +msgstr "" +"Bitte beachte, dass wir nicht in der Lage sind, veraltete Preise für " +"Verlängerungen/neue Abonnements nach einer Kündigung beizubehalten. Wenn du " +"dich dafür entscheidest, das Abonnement in Zukunft nach einer " +"Preiserhöhung, die in der Regel einmal im Jahr stattfindet, manuell zu " +"verlängern, wird dir der aktualisierte Preis berechnet." -#: templates/account.php120, templates/forms/subscription-cancellation.php106, +#: templates/account.php116, templates/forms/subscription-cancellation.php106, #: templates/account/partials/addon.php:36 -msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" -msgstr "Wenn du die Testversion abbrichst, wird der Zugang zu allen Premium-Funktionen sofort gesperrt. Bist du sicher?" +msgid "" +"Cancelling the trial will immediately block access to all premium features. " +"Are you sure?" +msgstr "" +"Wenn du die Testversion abbrichst, wird der Zugang zu allen " +"Premium-Funktionen sofort gesperrt. Bist du sicher?" -#: templates/account.php121, templates/forms/subscription-cancellation.php101, +#: templates/account.php117, templates/forms/subscription-cancellation.php101, #: templates/account/partials/addon.php37, #: templates/account/partials/site.php:318 -msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." -msgstr "Du kannst immer noch alle %s-Funktionen nutzen, aber du wirst keinen Zugang zu %s-Sicherheits- und Funktionsupdates und keinen Support bekommen." +msgid "" +"You can still enjoy all %s features but you will not have access to %s " +"security & feature updates, nor support." +msgstr "" +"Du kannst immer noch alle %s-Funktionen nutzen, aber du wirst keinen Zugang " +"zu %s-Sicherheits- und Funktionsupdates und keinen Support bekommen." -#: templates/account.php122, templates/forms/subscription-cancellation.php102, +#: templates/account.php118, templates/forms/subscription-cancellation.php102, #: templates/account/partials/addon.php38, #: templates/account/partials/site.php:319 -msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." -msgstr "Sobald deine Lizenz abläuft, kannst du die Free Version immer noch nutzen, aber du hast KEINEN Zugriff auf die %s Features." +msgid "" +"Once your license expires you can still use the Free version but you will " +"NOT have access to the %s features." +msgstr "" +"Sobald deine Lizenz abläuft, kannst du die Free Version immer noch nutzen, " +"aber du hast KEINEN Zugriff auf die %s Features." -#. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php124, +#: templates/account.php120, #: templates/account/partials/activate-license-button.php31, #: templates/account/partials/addon.php:40 +#. translators: %s: Plan title (e.g. "Professional") msgid "Activate %s Plan" msgstr "Aktiviere %s Plan" -#. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php127, templates/account/partials/addon.php43, +#: templates/account.php123, templates/account/partials/addon.php43, #: templates/account/partials/site.php:293 +#. translators: %s: Time period (e.g. Auto renews in "2 months") msgid "Auto renews in %s" msgstr "Verlängert sich automatisch in %s" -#. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php129, templates/account/partials/addon.php45, +#: templates/account.php125, templates/account/partials/addon.php45, #: templates/account/partials/site.php:295 +#. translators: %s: Time period (e.g. Expires in "2 months") msgid "Expires in %s" msgstr "Läuft in %s ab" -#: templates/account.php:130 -msgctxt "as synchronize license" -msgid "Sync License" -msgstr "Synchronisiere Lizenz" - -#: templates/account.php131, templates/account/partials/addon.php:46 +#: templates/account.php127, templates/account/partials/addon.php:46 msgid "Cancel Trial" msgstr "Testversion abbrechen" -#: templates/account.php132, templates/account/partials/addon.php:47 +#: templates/account.php128, templates/account/partials/addon.php:47 msgid "Change Plan" msgstr "Plan ändern" -#: templates/account.php133, templates/account/partials/addon.php:48 -msgctxt "verb" -msgid "Upgrade" -msgstr "Upgrade" - -#: templates/account.php135, templates/account/partials/addon.php50, -#: templates/account/partials/site.php:320 -msgctxt "verb" -msgid "Downgrade" -msgstr "Downgrade" - -#: templates/account.php137, templates/add-ons.php246, +#: templates/account.php133, templates/add-ons.php246, #: templates/plugin-info/features.php72, #: templates/account/partials/addon.php52, #: templates/account/partials/site.php:33 msgid "Free" msgstr "Kostenlos" -#: templates/account.php139, templates/debug.php408, -#: includes/customizer/class-fs-customizer-upsell-control.php110, -#: templates/account/partials/addon.php:54 -msgctxt "as product pricing plan" -msgid "Plan" -msgstr "Plan" - -#: templates/account.php:140 +#: templates/account.php:136 msgid "Bundle Plan" msgstr "Paket-Plan" -#: templates/account.php:272 +#: templates/account.php:268 msgid "Free Trial" msgstr "Kostenlose Testversion" -#: templates/account.php:283 +#: templates/account.php:279 msgid "Account Details" msgstr "Konto Details" -#: templates/account.php290, templates/forms/data-debug-mode.php:33 -msgid "Start Debug" -msgstr "Debugging starten" - -#: templates/account.php:292 +#: templates/account.php:288 msgid "Stop Debug" msgstr "Debugging stoppen" -#: templates/account.php:299 +#: templates/account.php286, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" +msgstr "Debugging starten" + +#: templates/account.php:295 msgid "Billing & Invoices" msgstr "Abrechnung & Rechnungen" -#: templates/account.php322, templates/account/partials/addon.php236, +#: templates/account.php318, templates/account/partials/addon.php236, #: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "Lizenz deaktivieren" -#: templates/account.php345, templates/forms/subscription-cancellation.php:125 +#: templates/account.php341, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "Bist du sicher, dass du fortfahren willst?" -#: templates/account.php345, templates/account/partials/addon.php:260 +#: templates/account.php341, templates/account/partials/addon.php:260 msgid "Cancel Subscription" msgstr "Abonnement kündigen" -#: templates/account.php374, templates/account/partials/addon.php:345 -msgctxt "as synchronize" -msgid "Sync" -msgstr "Sync" - -#: templates/account.php389, templates/debug.php:571 +#: templates/account.php385, templates/debug.php:575 msgid "Name" msgstr "Name" -#: templates/account.php395, templates/debug.php:572 +#: templates/account.php391, templates/debug.php:576 msgid "Email" msgstr "E-Mail" -#: templates/account.php402, templates/debug.php406, templates/debug.php:621 +#: templates/account.php398, templates/debug.php410, templates/debug.php:625 msgid "User ID" msgstr "Benutzer-ID" -#: templates/account.php420, templates/account.php738, -#: templates/account.php789, templates/debug.php267, templates/debug.php400, -#: templates/debug.php511, templates/debug.php570, templates/debug.php619, -#: templates/debug.php698, templates/account/payments.php35, +#: templates/account.php416, templates/account.php734, +#: templates/account.php785, templates/debug.php267, templates/debug.php404, +#: templates/debug.php515, templates/debug.php574, templates/debug.php623, +#: templates/debug.php702, templates/account/payments.php35, #: templates/debug/logger.php:21 msgid "ID" msgstr "ID" -#: templates/account.php:427 +#: templates/account.php:423 msgid "Site ID" msgstr "Webseiten-ID" -#: templates/account.php:430 +#: templates/account.php:426 msgid "No ID" msgstr "Keine ID" -#: templates/account.php435, templates/debug.php274, templates/debug.php409, -#: templates/debug.php515, templates/debug.php574, +#: templates/account.php431, templates/debug.php274, templates/debug.php413, +#: templates/debug.php519, templates/debug.php578, #: templates/account/partials/site.php:228 msgid "Public Key" msgstr "Öffentlicher Schlüssel" -#: templates/account.php441, templates/debug.php410, templates/debug.php516, -#: templates/debug.php575, templates/account/partials/site.php:241 +#: templates/account.php437, templates/debug.php414, templates/debug.php520, +#: templates/debug.php579, templates/account/partials/site.php:241 msgid "Secret Key" msgstr "Geheimer Schlüssel" -#: templates/account.php:444 -msgctxt "as secret encryption key missing" -msgid "No Secret" -msgstr "Kein geheimer Schlüssel" - -#: templates/account.php471, templates/account/partials/site.php120, -#: templates/account/partials/site.php:122 -msgid "Trial" -msgstr "Testversion" - -#: templates/account.php498, templates/debug.php627, +#: templates/account.php494, templates/debug.php631, #: templates/account/partials/site.php:262 msgid "License Key" msgstr "Lizenzschlüssel" -#: templates/account.php:529 +#: templates/account.php467, templates/account/partials/site.php122, +#: templates/account/partials/site.php:120 +msgid "Trial" +msgstr "Testversion" + +#: templates/account.php:525 msgid "Join the Beta program" msgstr "Am Beta Programm teilnehmen" -#: templates/account.php:535 +#: templates/account.php:531 msgid "not verified" msgstr "nicht geprüft" -#: templates/account.php544, templates/account/partials/addon.php:195 -msgid "Expired" -msgstr "Abgelaufen" +#: templates/account.php:600 +msgid "Free version" +msgstr "Kostenlose Version" -#: templates/account.php:602 +#: templates/account.php:598 msgid "Premium version" msgstr "Premium Version" -#: templates/account.php:604 -msgid "Free version" -msgstr "Kostenlose Version" +#: templates/account.php540, templates/account/partials/addon.php:195 +msgid "Expired" +msgstr "Abgelaufen" -#: templates/account.php:616 +#: templates/account.php:612 msgid "Verify Email" msgstr "E-Mail verifizieren" -#: templates/account.php:630 +#: templates/account.php689, templates/forms/user-change.php:27 +msgid "Change User" +msgstr "Benutzer ändern" + +#: templates/account.php:676 +msgid "What is your %s?" +msgstr "Wie lautet dein(e) %s?" + +#: templates/account.php:626 msgid "Download %s Version" msgstr "Download %s Version" -#: templates/account.php:646 +#: templates/account.php:642 msgid "Download Paid Version" msgstr "Bezahlte Version herunterladen" -#: templates/account.php664, templates/account.php927, -#: templates/account/partials/site.php250, -#: templates/account/partials/site.php:272 -msgctxt "verb" -msgid "Show" -msgstr "Anzeigen" - -#: templates/account.php:680 -msgid "What is your %s?" -msgstr "Wie lautet dein(e) %s?" +#: templates/account.php:713 +msgid "Sites" +msgstr "Webseiten" -#: templates/account.php688, templates/account/billing.php:21 -msgctxt "verb" -msgid "Edit" -msgstr "Bearbeiten" +#: templates/account.php:726 +msgid "Search by address" +msgstr "Suche über die Adresse" -#: templates/account.php693, templates/forms/user-change.php:27 -msgid "Change User" -msgstr "Benutzer ändern" - -#: templates/account.php:717 -msgid "Sites" -msgstr "Webseiten" - -#: templates/account.php:730 -msgid "Search by address" -msgstr "Suche über die Adresse" - -#: templates/account.php739, templates/debug.php:403 +#: templates/account.php735, templates/debug.php:407 msgid "Address" msgstr "Adresse" -#: templates/account.php:740 +#: templates/account.php:736 msgid "License" msgstr "Lizenz" -#: templates/account.php:741 +#: templates/account.php:737 msgid "Plan" msgstr "Plan" -#: templates/account.php:792 -msgctxt "as software license" -msgid "License" -msgstr "Lizenz" - -#: templates/account.php:921 -msgctxt "verb" -msgid "Hide" -msgstr "Verstecken" - -#: templates/account.php943, templates/forms/data-debug-mode.php31, +#: templates/account.php939, templates/forms/data-debug-mode.php31, #: templates/forms/deactivation/form.php358, #: templates/forms/deactivation/form.php:389 msgid "Processing" msgstr "Verarbeitung" -#: templates/account.php:946 +#: templates/account.php:942 msgid "Get updates for bleeding edge Beta versions of %s." msgstr "Erhalte Updates für aktuelle Beta-Versionen von %s." -#: templates/account.php:1004 +#: templates/account.php:1000 msgid "Cancelling %s" msgstr "Abbruch von %s" -#: templates/account.php1004, templates/account.php1021, +#: templates/account.php1000, templates/account.php1017, #: templates/forms/subscription-cancellation.php27, #: templates/forms/deactivation/form.php:178 msgid "trial" msgstr "teste" -#: templates/account.php1019, templates/forms/deactivation/form.php:195 +#: templates/account.php1015, templates/forms/deactivation/form.php:195 msgid "Cancelling %s..." msgstr "Stoppe %s..." -#: templates/account.php1022, templates/forms/subscription-cancellation.php28, +#: templates/account.php1018, templates/forms/subscription-cancellation.php28, #: templates/forms/deactivation/form.php:179 msgid "subscription" msgstr "Abonnement" -#: templates/account.php:1036 -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?" -msgstr "Wenn du deine Lizenz deaktivierst, werden alle Premium-Funktionen gesperrt, aber du kannst die Lizenz auf einer anderen Seite aktivieren. Bist du sicher, dass du fortfahren möchtest?" +#: templates/account.php:1032 +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?" +msgstr "" +"Wenn du deine Lizenz deaktivierst, werden alle Premium-Funktionen gesperrt, " +"aber du kannst die Lizenz auf einer anderen Seite aktivieren. Bist du " +"sicher, dass du fortfahren möchtest?" -#: templates/account.php:1110 +#: templates/account.php:1106 msgid "Disabling white-label mode" msgstr "Deaktivieren des White-Label-Modus" -#: templates/account.php:1111 +#: templates/account.php:1107 msgid "Enabling white-label mode" msgstr "Aktivieren des White-Label-Modus" @@ -1564,26 +1605,15 @@ msgid "Add Ons for %s" msgstr "Add-Ons für %s" #: templates/add-ons.php:58 -msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "Wir konnten die Liste der Add-ons nicht laden. Es ist wahrscheinlich ein Problem auf unserer Seite, bitte versuche es in ein paar Minuten wieder." - -#: templates/add-ons.php:229 -msgctxt "active add-on" -msgid "Active" -msgstr "Aktiv" - -#: templates/add-ons.php:230 -msgctxt "installed add-on" -msgid "Installed" -msgstr "Installiert" - -#: templates/admin-notice.php13, templates/forms/license-activation.php243, -#: templates/forms/resend-key.php:80 -msgctxt "as close a window" -msgid "Dismiss" -msgstr "Verwerfen" +msgid "" +"We couldn't load the add-ons list. It's probably an issue on our side, " +"please try to come back in few minutes." +msgstr "" +"Wir konnten die Liste der Add-ons nicht laden. Es ist wahrscheinlich ein " +"Problem auf unserer Seite, bitte versuche es in ein paar Minuten wieder." #: templates/auto-installation.php:45 +#. translators: %s: Number of seconds msgid "%s sec" msgstr "%s s" @@ -1592,198 +1622,221 @@ msgid "Automatic Installation" msgstr "Automatische Installation" #: templates/auto-installation.php:93 -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." -msgstr "Ein automatischer Download und die Installation von %s (kostenpflichtige Version) von %s wird in %s starten. Wenn du es manuell machen möchtest - klicke jetzt auf den Abbruch-Button." +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." +msgstr "" +"Ein automatischer Download und die Installation von %s (kostenpflichtige " +"Version) von %s wird in %s starten. Wenn du es manuell machen möchtest - " +"klicke jetzt auf den Abbruch-Button." #: templates/auto-installation.php:104 -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." -msgstr "Der Installationsprozess hat begonnen und kann ein paar Minuten dauern. Bitte warte, bis er abgeschlossen ist - lade diese Seite nicht neu." +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." +msgstr "" +"Der Installationsprozess hat begonnen und kann ein paar Minuten dauern. " +"Bitte warte, bis er abgeschlossen ist - lade diese Seite nicht neu." #: templates/auto-installation.php:109 msgid "Cancel Installation" msgstr "Installation abbrechen" -#: templates/checkout.php:180 +#: templates/checkout.php:181 msgid "Checkout" msgstr "Kasse" -#: templates/checkout.php:180 +#: templates/checkout.php:181 msgid "PCI compliant" msgstr "PCI-konform" -#. translators: %s: name (e.g. Hey John,) -#: templates/connect.php:121 -msgctxt "greeting" -msgid "Hey %s," -msgstr "Hey %s," +#: templates/connect.php:186 +#. translators: %1$s: plugin name (e.g., "Awesome Plugin"); %2$s: version +#. (e.g., "1.2.3") +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "Vielen Dank für die Aktualisierung auf %1$s v %2$s!" -#: templates/connect.php:189 +#: templates/connect.php:178 msgid "Never miss an important update" msgstr "Verpasse nie wieder ein wichtiges Update" -#: templates/connect.php:197 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Vielen Dank für die Aktualisierung auf %1$s v %2$s!" - -#: templates/connect.php:207 +#: templates/connect.php:196 msgid "Allow & Continue" msgstr "Erlauben & Fortfahren" -#: templates/connect.php:211 -msgid "Re-send activation email" -msgstr "Aktivierungsmail erneut senden" +#: templates/connect.php:236 +#. translators: %s: module type (plugin, theme, or add-on) +msgid "" +"We have introduced this opt-in so you never miss an important update and " +"help us make the %s more compatible with your site and better at doing what " +"you need it to." +msgstr "" +"Wir haben dieses Opt-in eingeführt, damit du kein wichtiges Update verpasst " +"und uns hilfst, die Kompatibilität von %smit deiner Website zu verbessern " +"und uns auf das zu konzentrieren, was du benötigst." -#: templates/connect.php:215 -msgid "Thanks %s!" -msgstr "Danke %s!" +#: templates/connect.php:238 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info." +msgstr "" +"Melden dich an, um E-Mail-Benachrichtigungen für Sicherheits- und " +"Funktionsupdates, Bildungsinhalte und gelegentliche Angebote zu erhalten " +"und einige grundlegende Informationen zur WordPress-Umgebung zu teilen." + +#: templates/connect.php:241 +msgid "If you skip this, that's okay! %1$s will still work just fine." +msgstr "" +"Wenn du das überspringst, ist das in Ordnung! %1$swird immer noch " +"funktionieren." #: templates/connect.php:227 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info. This will help us make the %s more compatible " +"with your site and better at doing what you need it to." +msgstr "" +"Melde dich an, um E-Mail-Benachrichtigungen für Sicherheits- und " +"Funktionsupdates, Bildungsinhalte und gelegentliche Angebote zu erhalten " +"und einige grundlegende Informationen zur WordPress-Umgebung zu teilen. " +"Dies wird uns helfen, die Kompatibilität mit deiner Website zu verbessern " +"und uns auf das zu konzentrieren, was du benötigst." + +#: templates/connect.php:216 msgid "Welcome to %s! To get started, please enter your license key:" msgstr "Willkommen bei %s! Um loszulegen, gib bitte deinen Lizenzschlüssel ein:" -#: templates/connect.php:237 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "Melde dich an, um E-Mail-Benachrichtigungen für Sicherheits- und Funktionsupdates, Bildungsinhalte und gelegentliche Angebote zu erhalten und einige grundlegende Informationen zur WordPress-Umgebung zu teilen. Dies wird uns helfen, die Kompatibilität mit deiner Website zu verbessern und uns auf das zu konzentrieren, was du benötigst." - -#: templates/connect.php:239 -msgid "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "Melde dich an, um E-Mail-Benachrichtigungen für Sicherheits- und Funktionsupdates zu erhalten und einige grundlegende Informationen zur WordPress-Umgebung zu teilen. Dies wird uns helfen, die Kompatibilität von %smit Ihrer Website zu verbessern und uns auf das zu konzentrieren, was du benötigst." - -#. translators: %s: module type (plugin, theme, or add-on) -#: templates/connect.php:245 -msgid "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "Wir haben dieses Opt-in eingeführt, damit du kein wichtiges Update verpasst und uns hilfst, die Kompatibilität von %smit deiner Website zu verbessern und uns auf das zu konzentrieren, was du benötigst." - -#: templates/connect.php:248 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." -msgstr "Melden dich an, um E-Mail-Benachrichtigungen für Sicherheits- und Funktionsupdates, Bildungsinhalte und gelegentliche Angebote zu erhalten und einige grundlegende Informationen zur WordPress-Umgebung zu teilen." +#: templates/connect.php:200 +msgid "Re-send activation email" +msgstr "Aktivierungsmail erneut senden" -#: templates/connect.php:249 -msgid "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info." -msgstr "Melde dich an, um E-Mail-Benachrichtigungen für Sicherheits- und Funktionsupdates zu erhalten und einige grundlegende Informationen zur WordPress-Umgebung zu teilen." +#: templates/connect.php:204 +msgid "Thanks %s!" +msgstr "Danke %s!" -#: templates/connect.php:252 -msgid "If you skip this, that's okay! %1$s will still work just fine." -msgstr "Wenn Du das überspringst, ist das in Ordnung! %1$swird immer noch funktionieren." +#: templates/connect.php:205 +msgid "" +"You should receive a confirmation email for %s to your mailbox at %s. " +"Please make sure you click the button in that email to %s." +msgstr "" +"Du solltest eine Bestätigungs-E-Mail für %s an deine Mailbox unter %s " +"erhalten. Bitte stelle sicher, dass du auf die Schaltfläche in dieser " +"E-Mail an %s klickst." -#: templates/connect.php:282 +#: templates/connect.php:271 msgid "We're excited to introduce the Freemius network-level integration." msgstr "Wir freuen uns, dir die Freemius Netzwerk-Integration vorstellen zu können." #: templates/connect.php:285 -msgid "During the update process we detected %d site(s) that are still pending license activation." -msgstr "Während des Update-Prozesses haben wir %d Site(s) entdeckt, die noch auf eine Lizenzaktivierung warten." +msgid "" +"During the update process we detected %s site(s) in the network that are " +"still pending your attention." +msgstr "" +"Während des Update-Prozesses haben wir %s Site(s) im Netzwerk entdeckt, die " +"noch deine Aufmerksamkeit benötigen." -#: templates/connect.php:287 -msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." -msgstr "Wenn du das %s auf diesen Seiten nutzen möchtest, gib bitte deinen Lizenzschlüssel unten ein und klicke auf den Aktivierungsbutton." +#: templates/connect.php:274 +msgid "" +"During the update process we detected %d site(s) that are still pending " +"license activation." +msgstr "" +"Während des Update-Prozesses haben wir %d Site(s) entdeckt, die noch auf " +"eine Lizenzaktivierung warten." + +#: templates/connect.php:276 +msgid "" +"If you'd like to use the %s on those sites, please enter your license key " +"below and click the activation button." +msgstr "" +"Wenn du das %s auf diesen Seiten nutzen möchtest, gib bitte deinen " +"Lizenzschlüssel unten ein und klicke auf den Aktivierungsbutton." -#: templates/connect.php:289 +#: templates/connect.php:278 msgid "%s's paid features" msgstr "Bezahlte Funktionen von %s" -#: templates/connect.php:294 -msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." -msgstr "Alternativ kannst du auch diesen Schritt überspringen und die Lizenz später auf der Netzwerk-Kontoseite deines %s aktivieren." - -#: templates/connect.php:296 -msgid "During the update process we detected %s site(s) in the network that are still pending your attention." -msgstr "Während des Update-Prozesses haben wir %s Site(s) im Netzwerk entdeckt, die noch deine Aufmerksamkeit benötigen." +#: templates/connect.php:283 +msgid "" +"Alternatively, you can skip it for now and activate the license later, in " +"your %s's network-level Account page." +msgstr "" +"Alternativ kannst du auch diesen Schritt überspringen und die Lizenz später " +"auf der Netzwerk-Kontoseite deines %s aktivieren." -#: templates/connect.php305, templates/forms/data-debug-mode.php35, +#: templates/connect.php294, templates/forms/data-debug-mode.php35, #: templates/forms/license-activation.php:42 msgid "License key" msgstr "Lizenzschlüssel" -#: templates/connect.php308, templates/forms/license-activation.php:22 +#: templates/connect.php297, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "Du kannst deinen Lizenzschlüssel nicht finden?" -#: templates/connect.php371, templates/connect.php695, -#: templates/forms/deactivation/retry-skip.php:20 -msgctxt "verb" -msgid "Skip" -msgstr "Überspringen" - -#: templates/connect.php:374 +#: templates/connect.php:363 msgid "Delegate to Site Admins" msgstr "An die Website Admins delegieren" -#: templates/connect.php:374 -msgid "If you click it, this decision will be delegated to the sites administrators." -msgstr "Wenn du es anklickst, wird diese Entscheidung an die Administratoren der Seite delegiert." +#: templates/connect.php:363 +msgid "" +"If you click it, this decision will be delegated to the sites " +"administrators." +msgstr "" +"Wenn du es anklickst, wird diese Entscheidung an die Administratoren der " +"Seite delegiert." -#: templates/connect.php:401 +#: templates/connect.php:392 msgid "License issues?" msgstr "Lizenzprobleme?" -#: templates/connect.php:425 -msgid "For delivery of security & feature updates, and license management, %s needs to" -msgstr "Für die Bereitstellung von Sicherheits- und Funktionsupdates sowie die Lizenzverwaltung muss %s" - -#: templates/connect.php:430 +#: templates/connect.php:421 msgid "This will allow %s to" msgstr "Dies wird es %s ermöglichen" -#: templates/connect.php:445 -msgid "Don't have a license key?" -msgstr "Du hast keinen Lizenzschlüssel?" +#: templates/connect.php:416 +msgid "" +"For delivery of security & feature updates, and license management, %s " +"needs to" +msgstr "" +"Für die Bereitstellung von Sicherheits- und Funktionsupdates sowie die " +"Lizenzverwaltung muss %s" -#: templates/connect.php:448 +#: templates/connect.php:439 msgid "Have a license key?" msgstr "Hast du einen Lizenzschlüssel?" -#: templates/connect.php:456 +#: templates/connect.php:436 +msgid "Don't have a license key?" +msgstr "Du hast keinen Lizenzschlüssel?" + +#: templates/connect.php:447 msgid "Freemius is our licensing and software updates engine" msgstr "Freemius ist unser Dienstleister für Lizenzierung und Software-Updates" -#: templates/connect.php:459 +#: templates/connect.php:450 msgid "Privacy Policy" msgstr "Datenschutzrichtlinie" -#: templates/connect.php:461 -msgid "License Agreement" -msgstr "Lizenzvertrag" - -#: templates/connect.php:461 +#: templates/connect.php:455 msgid "Terms of Service" msgstr "Allgemeine Geschäftsbedingungen" -#: templates/connect.php:881 -msgctxt "as in the process of sending an email" -msgid "Sending email" -msgstr "E-Mail senden" - -#: templates/connect.php:882 -msgctxt "as activating plugin" -msgid "Activating" -msgstr "Aktivieren von" +#: templates/connect.php:453 +msgid "License Agreement" +msgstr "Lizenzvertrag" #: templates/contact.php:78 msgid "Contact" msgstr "Kontakt" -#: templates/debug.php:17 -msgctxt "as turned off" -msgid "Off" -msgstr "Aus" - -#: templates/debug.php:18 -msgctxt "as turned on" -msgid "On" -msgstr "An" - #: templates/debug.php:24 msgid "SDK" msgstr "SDK" -#: templates/debug.php:28 -msgctxt "as code debugging" -msgid "Debugging" -msgstr "Fehlersuche" - -#: templates/debug.php58, templates/debug.php279, templates/debug.php411, -#: templates/debug.php:576 +#: templates/debug.php58, templates/debug.php279, templates/debug.php415, +#: templates/debug.php:580 msgid "Actions" msgstr "Aktionen" @@ -1831,11 +1884,6 @@ msgstr "Schlüssel" msgid "Value" msgstr "Wert" -#: templates/debug.php:228 -msgctxt "as software development kit versions" -msgid "SDK Versions" -msgstr "SDK Versionen" - #: templates/debug.php:233 msgid "SDK Path" msgstr "SDK Pfad" @@ -1856,20 +1904,15 @@ msgstr "Plugins" msgid "Themes" msgstr "Themes" -#: templates/debug.php268, templates/debug.php405, templates/debug.php513, +#: templates/debug.php268, templates/debug.php409, templates/debug.php517, #: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "URL" -#: templates/debug.php270, templates/debug.php:512 +#: templates/debug.php270, templates/debug.php:516 msgid "Title" msgstr "Titel" -#: templates/debug.php:271 -msgctxt "as application program interface" -msgid "API" -msgstr "API" - #: templates/debug.php:272 msgid "Freemius State" msgstr "Freemius Status" @@ -1882,141 +1925,117 @@ msgstr "Netzwerk Blog" msgid "Network User" msgstr "Netzwerk Benutzer" -#: templates/debug.php:321 -msgctxt "as connection was successful" -msgid "Connected" -msgstr "Verbunden" - -#: templates/debug.php:322 -msgctxt "as connection blocked" -msgid "Blocked" -msgstr "Blockiert" - -#: templates/debug.php:358 +#: templates/debug.php:362 msgid "Simulate Trial Promotion" msgstr "Trial Promotion simulieren" -#: templates/debug.php:370 +#: templates/debug.php:374 msgid "Simulate Network Upgrade" msgstr "Netzwerk Upgrade simulieren" -#: templates/debug.php:394 +#: templates/debug.php:398 +#. translators: %s: 'plugin' or 'theme' msgid "%s Installs" msgstr "%s Installationen" -#: templates/debug.php:396 -msgctxt "like websites" -msgid "Sites" -msgstr "Webseiten" - -#: templates/debug.php402, templates/account/partials/site.php:156 +#: templates/debug.php406, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "Blog ID" -#: templates/debug.php:407 +#: templates/debug.php:411 msgid "License ID" msgstr "Lizenz ID" -#: templates/debug.php493, templates/debug.php599, -#: templates/account/partials/addon.php:440 -msgctxt "verb" -msgid "Delete" -msgstr "Löschen" - -#: templates/debug.php:507 +#: templates/debug.php:511 msgid "Add Ons of module %s" msgstr "Add-Ons von Modul %s" -#: templates/debug.php:566 +#: templates/debug.php:570 msgid "Users" msgstr "Benutzer" -#: templates/debug.php:573 +#: templates/debug.php:577 msgid "Verified" msgstr "Verifiziert" -#: templates/debug.php:615 +#: templates/debug.php:619 msgid "%s Licenses" msgstr "%s Lizenzen" -#: templates/debug.php:620 +#: templates/debug.php:624 msgid "Plugin ID" -msgstr "Plugin ID" +msgstr "Plugin-ID" -#: templates/debug.php:622 +#: templates/debug.php:626 msgid "Plan ID" msgstr "Plan ID" -#: templates/debug.php:623 +#: templates/debug.php:627 msgid "Quota" msgstr "Kontingent" -#: templates/debug.php:624 +#: templates/debug.php:628 msgid "Activated" msgstr "Aktiviert" -#: templates/debug.php:625 +#: templates/debug.php:629 msgid "Blocking" msgstr "Blockieren" -#: templates/debug.php626, templates/debug.php697, +#: templates/debug.php630, templates/debug.php701, #: templates/debug/logger.php:22 msgid "Type" msgstr "Typ" -#: templates/debug.php:628 -msgctxt "as expiration date" -msgid "Expiration" -msgstr "Verfalls" - -#: templates/debug.php:656 +#: templates/debug.php:660 msgid "Debug Log" msgstr "Debug Log" -#: templates/debug.php:660 +#: templates/debug.php:664 msgid "All Types" msgstr "Alle Arten" -#: templates/debug.php:667 +#: templates/debug.php:671 msgid "All Requests" msgstr "Alle Anfragen" -#: templates/debug.php672, templates/debug.php701, +#: templates/debug.php676, templates/debug.php705, #: templates/debug/logger.php:25 msgid "File" msgstr "Datei" -#: templates/debug.php673, templates/debug.php699, +#: templates/debug.php677, templates/debug.php703, #: templates/debug/logger.php:23 msgid "Function" msgstr "Position" -#: templates/debug.php:674 +#: templates/debug.php:678 msgid "Process ID" msgstr "Prozess-ID" -#: templates/debug.php:675 +#: templates/debug.php:679 msgid "Logger" msgstr "Logger" -#: templates/debug.php676, templates/debug.php700, +#: templates/debug.php680, templates/debug.php704, #: templates/debug/logger.php:24 msgid "Message" msgstr "Nachricht" -#: templates/debug.php:678 +#: templates/debug.php:682 msgid "Filter" msgstr "Filter" -#: templates/debug.php:686 +#: templates/debug.php:690 msgid "Download" msgstr "Download" -#: templates/debug.php702, templates/debug/logger.php:26 +#: templates/debug.php706, templates/debug/logger.php:26 msgid "Timestamp" msgstr "Zeitstempel" #: templates/secure-https-header.php:28 +#. translators: %s: Page name msgid "Secure HTTPS %s page, running from an external domain" msgstr "Sichere HTTPS %s Seite, die von einer externen Domain geladen wird" @@ -2025,12 +2044,6 @@ msgstr "Sichere HTTPS %s Seite, die von einer externen Domain geladen wird" msgid "Support" msgstr "Unterstützung" -#: includes/debug/class-fs-debug-bar-panel.php48, -#: templates/debug/api-calls.php54, templates/debug/logger.php:62 -msgctxt "milliseconds" -msgid "ms" -msgstr "ms" - #: includes/debug/debug-bar-start.php:41 msgid "Freemius API" msgstr "Freemius API" @@ -2047,17 +2060,29 @@ msgstr "Ungültige Klon-Auflösungsaktion." msgid "products" msgstr "Produkte" -#: includes/managers/class-fs-clone-manager.php:1205 -msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." -msgstr "%1$s wurde in den abgesicherten Modus versetzt, weil wir festgestellt haben, dass %2$s eine exakte Kopie von %3$s ist." - #: includes/managers/class-fs-clone-manager.php:1211 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" -msgstr "Die folgenden Produkte wurden in den abgesicherten Modus versetzt, weil wir festgestellt haben, dass %2$s eine exakte Kopie von %3$s:%1$s ist" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of %3$s:%1$s" +msgstr "" +"Die folgenden Produkte wurden in den abgesicherten Modus versetzt, weil wir " +"festgestellt haben, dass %2$s eine exakte Kopie von %3$s:%1$s ist" #: includes/managers/class-fs-clone-manager.php:1212 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" -msgstr "Die folgenden Produkte wurden in den abgesicherten Modus versetzt, weil wir festgestellt haben, dass %2$s eine exakte Kopie dieser Seiten ist:%3$s%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of these sites:%3$s%1$s" +msgstr "" +"Die folgenden Produkte wurden in den abgesicherten Modus versetzt, weil wir " +"festgestellt haben, dass %2$s eine exakte Kopie dieser Seiten ist:%3$s%1$s" + +#: includes/managers/class-fs-clone-manager.php:1205 +msgid "" +"%1$s has been placed into safe mode because we noticed that %2$s is an " +"exact copy of %3$s." +msgstr "" +"%1$s wurde in den abgesicherten Modus versetzt, weil wir festgestellt " +"haben, dass %2$s eine exakte Kopie von %3$s ist." #: includes/managers/class-fs-clone-manager.php:1238 msgid "the above-mentioned sites" @@ -2068,8 +2093,12 @@ msgid "Is %2$s a duplicate of %4$s?" msgstr "Ist %2$s ein Duplikat von %4$s?" #: includes/managers/class-fs-clone-manager.php:1252 -msgid "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." -msgstr "Ja, %2$s ist ein Duplikat von %4$s für Test-, Staging- oder Entwicklungszwecke." +msgid "" +"Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or " +"development." +msgstr "" +"Ja, %2$s ist ein Duplikat von %4$s für Test-, Staging- oder " +"Entwicklungszwecke." #: includes/managers/class-fs-clone-manager.php:1257 msgid "Long-Term Duplicate" @@ -2084,7 +2113,9 @@ msgid "Is %2$s the new home of %4$s?" msgstr "Wurde %4$s auf %2$s umgezogen?" #: includes/managers/class-fs-clone-manager.php:1270 -msgid "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." +msgid "" +"Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to " +"%%2$s." msgstr "Ja, %%2$s ersetzt %%4$s. Ich möchte meine %s von %%4$s nach %%2$s migrieren." #: includes/managers/class-fs-clone-manager.php1271, @@ -2120,11 +2151,6 @@ msgstr "Das erfordert eine Lizenzaktivierung." msgid "New Website" msgstr "Neue Website" -#: includes/managers/class-fs-clone-manager.php:1319 -msgctxt "Clone resolution admin notice products list label" -msgid "Products" -msgstr "Produkte" - #: includes/managers/class-fs-clone-manager.php:1408 msgid "You marked this website, %s, as a temporary duplicate of %s." msgstr "Du hast diese Website, %s, als temporäres Duplikat von %s markiert." @@ -2134,121 +2160,152 @@ msgid "You marked this website, %s, as a temporary duplicate of these sites" msgstr "Du hast diese Website, %s, als temporäres Duplikat dieser Websites markiert" #: includes/managers/class-fs-clone-manager.php:1423 -msgid "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." -msgstr "%s automatische Sicherheits- und Funktionsupdates und kostenpflichtige Funktionen funktionieren bis %s (oder bis zum Ablauf deiner Lizenz, je nachdem, was zuerst eintritt)." - -#: includes/managers/class-fs-clone-manager.php:1426 -msgctxt "\"The \", e.g.: \"The plugin\"" -msgid "The %s's" -msgstr "Die %s" +msgid "" +"%s automatic security & feature updates and paid functionality will keep " +"working without interruptions until %s (or when your license expires, " +"whatever comes first)." +msgstr "" +"%s automatische Sicherheits- und Funktionsupdates und kostenpflichtige " +"Funktionen funktionieren bis %s (oder bis zum Ablauf deiner Lizenz, je " +"nachdem, was zuerst eintritt)." #: includes/managers/class-fs-clone-manager.php:1429 msgid "The following products'" -msgstr "Die folgenden Produkte" +msgstr "Die folgenden Produkte ihre" #: includes/managers/class-fs-clone-manager.php:1437 -msgid "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." -msgstr "Wenn dies ein langfristiges Webseiten-Duplikat ist, dann brauchst du nach %s bitte %s." +msgid "" +"If this is a long term duplicate, to keep automatic updates and paid " +"functionality after %s, please %s." +msgstr "Wenn dies ein langfristiges Duplikat ist, dann musst du nach %s bitte %s." #: includes/managers/class-fs-clone-manager.php:1439 msgid "activate a license here" msgstr "Lizenz hier aktivieren" -#: includes/managers/class-fs-permission-manager.php:182 +#: includes/managers/class-fs-permission-manager.php:191 msgid "View Basic Website Info" msgstr "Grundlegende Website-Informationen anzeigen" -#: includes/managers/class-fs-permission-manager.php:183 +#: includes/managers/class-fs-permission-manager.php:192 msgid "Homepage URL & title, WP & PHP versions, and site language" msgstr "URL und Titel der Homepage, WP- und PHP-Versionen und Sprache der Website" -#: includes/managers/class-fs-permission-manager.php:186 -msgid "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." -msgstr "Um zusätzliche Funktionen bereitzustellen, die für deine Website relevant sind, Inkompatibilitäten von WordPress- oder PHP-Versionen, die deine Website beschädigen können, und um zu erkennen, welche Sprachen und Regionen für %sübersetzt und angepasst werden sollten." +#: includes/managers/class-fs-permission-manager.php:195 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To provide additional functionality that's relevant to your website, avoid " +"WordPress or PHP version incompatibilities that can break your website, and " +"recognize which languages & regions the %s should be translated and " +"tailored to." +msgstr "" +"Um zusätzliche Funktionen bereitzustellen, die für deine Website relevant " +"sind, Inkompatibilitäten von WordPress- oder PHP-Versionen, die deine " +"Website beschädigen können, und um zu erkennen, welche Sprachen und " +"Regionen für %sübersetzt und angepasst werden sollten." -#: includes/managers/class-fs-permission-manager.php:198 +#: includes/managers/class-fs-permission-manager.php:207 msgid "View Basic %s Info" msgstr "Grundlegende %sInformationen anzeigen" -#: includes/managers/class-fs-permission-manager.php:201 +#: includes/managers/class-fs-permission-manager.php:210 +#. translators: %s: 'Plugin' or 'Theme' msgid "Current %s & SDK versions, and if active or uninstalled" msgstr "Aktuelle %sund SDK-Versionen und falls aktiv oder deinstalliert" -#: includes/managers/class-fs-permission-manager.php:252 +#: includes/managers/class-fs-permission-manager.php:261 msgid "View License Essentials" msgstr "Grundlegende Lizenzen anzeigen" -#: includes/managers/class-fs-permission-manager.php:253 -#: includes/managers/class-fs-permission-manager.php:263 -msgid "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." -msgstr "Damit du verwalten und kontrollieren kannst, wo die Lizenz aktiviert wird, und um sicherzustellen, dass %s Sicherheits- und Funktionsupdates nur an von dir autorisierte Websites geliefert werden." +#: includes/managers/class-fs-permission-manager.php:272 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To let you manage & control where the license is activated and ensure %s " +"security & feature updates are only delivered to websites you authorize." +msgstr "" +"Damit du verwalten und kontrollieren kannst, wo die Lizenz aktiviert wird, " +"und um sicherzustellen, dass %s Sicherheits- und Funktionsupdates nur an " +"von dir autorisierte Websites geliefert werden." -#: includes/managers/class-fs-permission-manager.php:275 +#: includes/managers/class-fs-permission-manager.php:284 msgid "View %s State" msgstr "%s Status anzeigen" -#: includes/managers/class-fs-permission-manager.php:278 +#: includes/managers/class-fs-permission-manager.php:287 +#. translators: %s: 'Plugin' or 'Theme' msgid "Is active, deactivated, or uninstalled" msgstr "Ist aktiv, deaktiviert oder deinstalliert" -#: includes/managers/class-fs-permission-manager.php:281 +#: includes/managers/class-fs-permission-manager.php:290 msgid "So you can reuse the license when the %s is no longer active." msgstr "So kannst du die Lizenz wiederverwenden, wenn die %s nicht mehr aktiv ist." -#: includes/managers/class-fs-permission-manager.php:317 +#: includes/managers/class-fs-permission-manager.php:326 msgid "View Diagnostic Info" msgstr "Diagnoseinformationen anzeigen" -#: includes/managers/class-fs-permission-manager.php317, -#: includes/managers/class-fs-permission-manager.php:354 +#: includes/managers/class-fs-permission-manager.php326, +#: includes/managers/class-fs-permission-manager.php:363 msgid "optional" msgstr "optional" -#: includes/managers/class-fs-permission-manager.php:318 +#: includes/managers/class-fs-permission-manager.php:327 msgid "WordPress & PHP versions, site language & title" msgstr "WordPress- und PHP-Versionen, Sprache und Titel der Website" -#: includes/managers/class-fs-permission-manager.php:321 -msgid "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." -msgstr "Um zu vermeiden, dass deine Website aufgrund von WordPress- oder PHP-Versionsinkompatibilitäten beschädigt wird, und um zu erkennen, welche Sprachen und Regionen von %sübersetzt und angepasst werden sollten." +#: includes/managers/class-fs-permission-manager.php:330 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To avoid breaking your website due to WordPress or PHP version " +"incompatibilities, and recognize which languages & regions the %s should be " +"translated and tailored to." +msgstr "" +"Um zu vermeiden, dass deine Website aufgrund von WordPress- oder " +"PHP-Versionsinkompatibilitäten beschädigt wird, und um zu erkennen, welche " +"Sprachen und Regionen von %sübersetzt und angepasst werden sollten." -#: includes/managers/class-fs-permission-manager.php:354 +#: includes/managers/class-fs-permission-manager.php:363 msgid "View Plugins & Themes List" msgstr "Liste der Plugins & Themes anzeigen" -#: includes/managers/class-fs-permission-manager.php:355 +#: includes/managers/class-fs-permission-manager.php:364 msgid "Names, slugs, versions, and if active or not" msgstr "Namen, Slugs, Versionen und ob aktiv oder nicht" -#: includes/managers/class-fs-permission-manager.php:356 -msgid "To ensure compatibility and avoid conflicts with your installed plugins and themes." -msgstr "Um die Kompatibilität zu gewährleisten und Konflikte mit deinen installierten Plugins und Themes zu vermeiden." +#: includes/managers/class-fs-permission-manager.php:365 +msgid "" +"To ensure compatibility and avoid conflicts with your installed plugins and " +"themes." +msgstr "" +"Um die Kompatibilität zu gewährleisten und Konflikte mit deinen " +"installierten Plugins und Themes zu vermeiden." -#: includes/managers/class-fs-permission-manager.php:373 +#: includes/managers/class-fs-permission-manager.php:382 msgid "View Basic Profile Info" msgstr "Grundlegende Profilinformationen anzeigen" -#: includes/managers/class-fs-permission-manager.php:374 +#: includes/managers/class-fs-permission-manager.php:383 msgid "Your WordPress user's: first & last name, and email address" msgstr "Dein WordPress-Benutzer: Vor- und Nachname und E-Mail-Adresse" -#: includes/managers/class-fs-permission-manager.php:375 -msgid "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." -msgstr "Verpasse keine wichtigen Updates, erhalte Sicherheitswarnungen, bevor sie öffentlich bekannt werden, und erhalte Benachrichtigungen über Sonderangebote und tolle neue Funktionen." +#: includes/managers/class-fs-permission-manager.php:384 +msgid "" +"Never miss important updates, get security warnings before they become " +"public knowledge, and receive notifications about special offers and " +"awesome new features." +msgstr "" +"Verpasse keine wichtigen Updates, erhalte Sicherheitswarnungen, bevor sie " +"öffentlich bekannt werden, und erhalte Benachrichtigungen über " +"Sonderangebote und tolle neue Funktionen." -#: includes/managers/class-fs-permission-manager.php:396 +#: includes/managers/class-fs-permission-manager.php:405 msgid "Newsletter" msgstr "Newsletter" -#: includes/managers/class-fs-permission-manager.php:397 +#: includes/managers/class-fs-permission-manager.php:406 msgid "Updates, announcements, marketing, no spam" msgstr "Updates, Ankündigungen, Marketing, kein Spam" -#: templates/account/billing.php:22 -msgctxt "verb" -msgid "Update" -msgstr "Update" - #: templates/account/billing.php:33 msgid "Billing" msgstr "Abrechnung" @@ -2261,8 +2318,8 @@ msgstr "Geschäftsname" msgid "Tax / VAT ID" msgstr "Steuer-/Umsatzsteuer-ID" -#: templates/account/billing.php42, templates/account/billing.php43, -#: templates/account/billing.php:43 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "Adresse Zeile %d" @@ -2310,17 +2367,6 @@ msgstr "Betrag" msgid "Invoice" msgstr "Rechnung" -#: templates/connect/permissions-group.php31, templates/forms/optout.php26, -#: templates/js/permissions.php:78 -msgctxt "verb" -msgid "Opt Out" -msgstr "Abmelden" - -#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 -msgctxt "verb" -msgid "Opt In" -msgstr "Anmelden" - #: templates/debug/api-calls.php:56 msgid "API" msgstr "API" @@ -2337,11 +2383,6 @@ msgstr "Code" msgid "Length" msgstr "Länge" -#: templates/debug/api-calls.php:71 -msgctxt "as file/folder path" -msgid "Path" -msgstr "Pfad" - #: templates/debug/api-calls.php:73 msgid "Body" msgstr "Hauptteil" @@ -2362,24 +2403,18 @@ msgstr "Ende" msgid "Log" msgstr "Log" -#. translators: %s: time period (e.g. In "2 hours") #: templates/debug/plugins-themes-sync.php18, #: templates/debug/scheduled-crons.php:91 +#. translators: %s: time period (e.g. In "2 hours") msgid "In %s" msgstr "In %s" -#. translators: %s: time period (e.g. "2 hours" ago) #: templates/debug/plugins-themes-sync.php20, #: templates/debug/scheduled-crons.php:93 +#. translators: %s: time period (e.g. "2 hours" ago) msgid "%s ago" msgstr "vor %s" -#: templates/debug/plugins-themes-sync.php21, -#: templates/debug/scheduled-crons.php:74 -msgctxt "seconds" -msgid "sec" -msgstr "s" - #: templates/debug/plugins-themes-sync.php:23 msgid "Plugins & Themes Sync" msgstr "Plugins & Themes Sync" @@ -2413,144 +2448,191 @@ msgstr "Cron Typ" msgid "Next" msgstr "Nächste" -#: templates/forms/affiliation.php:83 +#: templates/forms/affiliation.php:86 msgid "Non-expiring" msgstr "Nicht auslaufend" -#: templates/forms/affiliation.php:86 +#: templates/forms/affiliation.php:89 msgid "Apply to become an affiliate" msgstr "Bewirb dich, um ein Affiliate zu werden" -#: templates/forms/affiliation.php:108 -msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." -msgstr "Dein Affiliate-Antrag für %s wurde angenommen! Logge dich in deinen Affiliate-Bereich ein unter: %s." +#: templates/forms/affiliation.php:137 +msgid "" +"Due to violation of our affiliation terms, we decided to temporarily block " +"your affiliation account. If you have any questions, please contact support." +msgstr "" +"Aufgrund eines Verstoßes gegen unsere Partnerschaftsbedingungen haben wir " +"beschlossen, dein Affiliate-Konto vorübergehend zu sperren. Wenn du Fragen " +"hast, wende dich bitte an den Support." -#: templates/forms/affiliation.php:123 -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." -msgstr "Vielen Dank, dass du dich für unser Partnerprogramm beworben hast. Wir werden deine Angaben in den nächsten 14 Tagen überprüfen und uns mit weiteren Informationen bei dir melden." +#: templates/forms/affiliation.php:134 +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." +msgstr "" +"Vielen Dank, dass du dich für unser Partnerprogramm beworben hast. Leider " +"haben wir uns an dieser Stelle entschieden, deine Bewerbung abzulehnen. " +"Bitte versuche es in 30 Tagen erneut." -#: templates/forms/affiliation.php:126 +#: templates/forms/affiliation.php:131 msgid "Your affiliation account was temporarily suspended." msgstr "Dein Mitgliedskonto wurde vorübergehend gesperrt." -#: templates/forms/affiliation.php:129 -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." -msgstr "Vielen Dank, dass du dich für unser Partnerprogramm beworben hast. Leider haben wir uns an dieser Stelle entschieden, deine Bewerbung abzulehnen. Bitte versuche es in 30 Tagen erneut." +#: templates/forms/affiliation.php:128 +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." +msgstr "" +"Vielen Dank, dass du dich für unser Partnerprogramm beworben hast. Wir " +"werden deine Angaben in den nächsten 14 Tagen überprüfen und uns mit " +"weiteren Informationen bei dir melden." -#: templates/forms/affiliation.php:132 -msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." -msgstr "Aufgrund eines Verstoßes gegen unsere Partnerschaftsbedingungen haben wir beschlossen, dein Affiliate-Konto vorübergehend zu sperren. Wenn du Fragen hast, wende dich bitte an den Support." +#: templates/forms/affiliation.php:113 +msgid "" +"Your affiliate application for %s has been accepted! Log in to your " +"affiliate area at: %s." +msgstr "" +"Dein Affiliate-Antrag für %s wurde angenommen! Logge dich in deinen " +"Affiliate-Bereich ein unter: %s." -#: templates/forms/affiliation.php:145 +#: templates/forms/affiliation.php:150 msgid "Like the %s? Become our ambassador and earn cash ;-)" msgstr "Magst du %s? Werde unser Botschafter/Affiliate und verdiene Geld ;-)" -#: templates/forms/affiliation.php:146 -msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" -msgstr "Empfehle neue Kunden an unsere %s und verdiene %s Provision für jeden erfolgreichen Verkauf, den du vermittelst!" +#: templates/forms/affiliation.php:151 +msgid "" +"Refer new customers to our %s and earn %s commission on each successful " +"sale you refer!" +msgstr "" +"Empfehle neue Kunden an unsere %s und verdiene %s Provision für jeden " +"erfolgreichen Verkauf, den du vermittelst!" -#: templates/forms/affiliation.php:149 +#: templates/forms/affiliation.php:154 msgid "Program Summary" msgstr "Programm Zusammenfassung" -#: templates/forms/affiliation.php:151 +#: templates/forms/affiliation.php:156 msgid "%s commission when a customer purchases a new license." msgstr "%s Provision, wenn ein Kunde eine neue Lizenz kauft." -#: templates/forms/affiliation.php:153 +#: templates/forms/affiliation.php:158 msgid "Get commission for automated subscription renewals." msgstr "Erhalte Provisionen für automatisierte Abonnementverlängerungen." -#: templates/forms/affiliation.php:156 +#: templates/forms/affiliation.php:161 msgid "%s tracking cookie after the first visit to maximize earnings potential." -msgstr "%s Tracking-Cookie nach dem ersten Besuch, um das Ertragspotenzial zu maximieren." +msgstr "" +"%s Tracking-Cookie nach dem ersten Besuch, um das Ertragspotenzial zu " +"maximieren." -#: templates/forms/affiliation.php:159 +#: templates/forms/affiliation.php:164 msgid "Unlimited commissions." msgstr "Unbegrenzte Provisionen." -#: templates/forms/affiliation.php:161 +#: templates/forms/affiliation.php:166 msgid "%s minimum payout amount." msgstr "%s Mindestauszahlungsbetrag." -#: templates/forms/affiliation.php:162 +#: templates/forms/affiliation.php:167 msgid "Payouts are in USD and processed monthly via PayPal." -msgstr "Die Auszahlungen erfolgen in USD und werden monatlich über PayPal abgewickelt." +msgstr "" +"Die Auszahlungen erfolgen in USD und werden monatlich über PayPal " +"abgewickelt." -#: templates/forms/affiliation.php:163 -msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." -msgstr "Da wir 30 Tage für mögliche Rückzahlungen reservieren, zahlen wir nur Provisionen aus, die älter als 30 Tage sind." +#: templates/forms/affiliation.php:168 +msgid "" +"As we reserve 30 days for potential refunds, we only pay commissions that " +"are older than 30 days." +msgstr "" +"Da wir 30 Tage für mögliche Rückzahlungen reservieren, zahlen wir nur " +"Provisionen aus, die älter als 30 Tage sind." -#: templates/forms/affiliation.php:166 +#: templates/forms/affiliation.php:171 msgid "Affiliate" msgstr "Affiliate" -#: templates/forms/affiliation.php169, templates/forms/resend-key.php:23 +#: templates/forms/affiliation.php174, templates/forms/resend-key.php:23 msgid "Email address" msgstr "E-Mail-Adresse" -#: templates/forms/affiliation.php:173 +#: templates/forms/affiliation.php:178 msgid "Full name" msgstr "Vollständiger Name" -#: templates/forms/affiliation.php:177 +#: templates/forms/affiliation.php:182 msgid "PayPal account email address" msgstr "PayPal Konto E-Mail Adresse" -#: templates/forms/affiliation.php:181 +#: templates/forms/affiliation.php:186 msgid "Where are you going to promote the %s?" msgstr "Wo wirst du %s bewerben?" -#: templates/forms/affiliation.php:183 -msgid "Enter the domain of your website or other websites from where you plan to promote the %s." -msgstr "Gib die Domain deiner Website oder anderer Webseiten an, von denen aus du planst, %s zu bewerben." +#: templates/forms/affiliation.php:188 +msgid "" +"Enter the domain of your website or other websites from where you plan to " +"promote the %s." +msgstr "" +"Gib die Domain deiner Website oder anderer Webseiten an, von denen aus du " +"planst, %s zu bewerben." -#: templates/forms/affiliation.php:185 +#: templates/forms/affiliation.php:190 msgid "Add another domain" msgstr "Weitere Domain hinzufügen" -#: templates/forms/affiliation.php:189 +#: templates/forms/affiliation.php:194 msgid "Extra Domains" msgstr "Extra Domains" -#: templates/forms/affiliation.php:190 +#: templates/forms/affiliation.php:195 msgid "Extra domains where you will be marketing the product from." msgstr "Zusätzliche Domains, von denen aus du das Produkt vermarkten wirst." -#: templates/forms/affiliation.php:200 +#: templates/forms/affiliation.php:205 msgid "Promotion methods" msgstr "Promotion Methoden" -#: templates/forms/affiliation.php:203 +#: templates/forms/affiliation.php:208 msgid "Social media (Facebook, Twitter, etc.)" msgstr "Soziale Medien (Facebook, Twitter, etc.)" -#: templates/forms/affiliation.php:207 +#: templates/forms/affiliation.php:212 msgid "Mobile apps" msgstr "Mobile Apps" -#: templates/forms/affiliation.php:211 +#: templates/forms/affiliation.php:216 msgid "Website, email, and social media statistics (optional)" msgstr "Website-, E-Mail- und Social Media-Statistiken (optional)" -#: templates/forms/affiliation.php:214 -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)." -msgstr "Du kannst uns gerne relevante Statistiken über deine Website oder soziale Medien zur Verfügung stellen, z.B. monatliche Besuche der Website, Anzahl der E-Mail-Abonnenten, Follower, etc. (wir werden diese Informationen vertraulich behandeln)." +#: templates/forms/affiliation.php:219 +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)." +msgstr "" +"Du kannst uns gerne relevante Statistiken über deine Website oder soziale " +"Medien zur Verfügung stellen, z.B. monatliche Besuche der Website, Anzahl " +"der E-Mail-Abonnenten, Follower, etc. (wir werden diese Informationen " +"vertraulich behandeln)." -#: templates/forms/affiliation.php:218 +#: templates/forms/affiliation.php:223 msgid "How will you promote us?" msgstr "Wie wirst du uns bewerben?" -#: templates/forms/affiliation.php:221 -msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." -msgstr "Bitte gib Details an, wie du beabsichtigst, %s zu fördern (bitte sei so genau wie möglich)." +#: templates/forms/affiliation.php:226 +msgid "" +"Please provide details on how you intend to promote %s (please be as " +"specific as possible)." +msgstr "" +"Bitte gib Details an, wie du beabsichtigst, %s zu fördern (bitte sei so " +"genau wie möglich)." -#: templates/forms/affiliation.php233, templates/forms/resend-key.php22, +#: templates/forms/affiliation.php238, templates/forms/resend-key.php22, #: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Abbrechen" -#: templates/forms/affiliation.php:235 +#: templates/forms/affiliation.php:240 msgid "Become an affiliate" msgstr "Partner werden" @@ -2559,8 +2641,14 @@ msgid "Please enter the license key to enable the debug mode:" msgstr "Bitte gib den Lizenzschlüssel ein, um den Debug-Modus zu aktivieren:" #: templates/forms/data-debug-mode.php:27 -msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" -msgstr "Um in den Debug-Modus zu gelangen, gib bitte den geheimen Schlüssel des Lizenzinhabers (UserID = %d) ein, den du in deinem \"Mein Profil\"-Bereich deines \"Benutzer Dashboards\" findest:" +msgid "" +"To enter the debug mode, please enter the secret key of the license owner " +"(UserID = %d), which you can find in your \"My Profile\" section of your " +"User Dashboard:" +msgstr "" +"Um in den Debug-Modus zu gelangen, gib bitte den geheimen Schlüssel des " +"Lizenzinhabers (UserID = %d) ein, den du in deinem \"Mein Profil\"-Bereich " +"deines \"Benutzer Dashboards\" findest:" #: templates/forms/data-debug-mode.php:32 msgid "Submit" @@ -2574,12 +2662,6 @@ msgstr "Benutzerschlüssel" msgid "Email address update" msgstr "E-Mail-Adresse aktualisieren" -#: templates/forms/email-address-update.php33, -#: templates/forms/user-change.php:81 -msgctxt "close window" -msgid "Dismiss" -msgstr "Schließen" - #: templates/forms/email-address-update.php:38 msgid "Enter the new email address" msgstr "Gib die neue E-Mail-Adresse ein" @@ -2618,25 +2700,39 @@ msgid "Update" msgstr "Update" #: templates/forms/license-activation.php:23 -msgid "Please enter the license key that you received in the email right after the purchase:" -msgstr "Bitte gib den Lizenzschlüssel ein, den du in der E-Mail direkt nach dem Kauf erhalten hast:" +msgid "" +"Please enter the license key that you received in the email right after the " +"purchase:" +msgstr "" +"Bitte gib den Lizenzschlüssel ein, den du in der E-Mail direkt nach dem " +"Kauf erhalten hast:" #: templates/forms/license-activation.php:28 msgid "Update License" msgstr "Lizenz aktualisieren" #: templates/forms/license-activation.php:34 -msgid "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." -msgstr "%1$swird regelmäßig wichtige Lizenzdaten an %2$ssenden, um nach Sicherheits- und Funktionsaktualisierungen zu suchen und die Gültigkeit Ihrer Lizenz zu überprüfen." +msgid "" +"The %1$s will be periodically sending essential license data to %2$s to " +"check for security and feature updates, and verify the validity of your " +"license." +msgstr "" +"%1$swird regelmäßig wichtige Lizenzdaten an %2$ssenden, um nach " +"Sicherheits- und Funktionsaktualisierungen zu suchen und die Gültigkeit " +"Ihrer Lizenz zu überprüfen." #: templates/forms/license-activation.php:39 msgid "Agree & Activate License" msgstr "Zustimmen & Lizenz aktivieren" -#: templates/forms/license-activation.php:204 +#: templates/forms/license-activation.php:206 msgid "Associate with the license owner's account." msgstr "Mit dem Konto des Lizenzinhabers verknüpfen." +#: templates/forms/optout.php:104 +msgid "Keep automatic updates" +msgstr "Automatische Updates beibehalten" + #: templates/forms/optout.php:44 msgid "Communication" msgstr "Kommunikation" @@ -2657,58 +2753,81 @@ msgstr "Weiter teilen" msgid "Extensions" msgstr "Erweiterungen" -#: templates/forms/optout.php:104 -msgid "Keep automatic updates" -msgstr "Behalten automatische Updates bei" - #: templates/forms/premium-versions-upgrade-handler.php:40 msgid "There is a new version of %s available." msgstr "Es ist eine neue Version von %s verfügbar." #: templates/forms/premium-versions-upgrade-handler.php:41 msgid " %s to access version %s security & feature updates, and support." -msgstr " %s, um auf die Sicherheits- und Funktionsupdates der Version %s und den Support zuzugreifen." +msgstr "" +" %s, um auf die Sicherheits- und Funktionsupdates der Version %s und den " +"Support zuzugreifen." #: templates/forms/premium-versions-upgrade-handler.php:54 msgid "New Version Available" msgstr "Neue Version verfügbar" -#: templates/forms/premium-versions-upgrade-handler.php:75 -msgctxt "close a window" -msgid "Dismiss" -msgstr "Schließen" - #: templates/forms/resend-key.php:21 msgid "Send License Key" msgstr "Lizenzschlüssel senden" #: templates/forms/resend-key.php:58 -msgid "Enter the email address you've used during the purchase and we will resend you the license key." -msgstr "Gib die E-Mail-Adresse ein, die Du beim Kauf verwendet hast, und wir senden Dir den Lizenzschlüssel erneut zu." +msgid "" +"Enter the email address you've used during the purchase and we will resend " +"you the license key." +msgstr "" +"Gib die E-Mail-Adresse ein, die du beim Kauf verwendet hast, und wir senden " +"Dir den Lizenzschlüssel erneut zu." #: templates/forms/resend-key.php:59 -msgid "Enter the email address you've used for the upgrade below and we will resend you the license key." -msgstr "Gib unten die E-Mail-Adresse ein, die du für das Upgrade verwendet hast und wir senden dir den Lizenzschlüssel erneut zu." +msgid "" +"Enter the email address you've used for the upgrade below and we will " +"resend you the license key." +msgstr "" +"Gib unten die E-Mail-Adresse ein, die du für das Upgrade verwendet hast und " +"wir senden dir den Lizenzschlüssel erneut zu." #: templates/forms/subscription-cancellation.php:37 -msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." -msgstr "Wenn du das %s deaktivierst oder deinstallierst, wird die Lizenz hier automatisch deaktiviert und du kannst sie auf einer anderen Seite verwenden." +msgid "" +"Deactivating or uninstalling the %s will automatically disable the license, " +"which you'll be able to use on another site." +msgstr "" +"Wenn du das %s deaktivierst oder deinstallierst, wird die Lizenz hier " +"automatisch deaktiviert und du kannst sie auf einer anderen Seite verwenden." #: templates/forms/subscription-cancellation.php:47 -msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" -msgstr "Für den Fall, dass du NICHT vorhast, diesen %s auf dieser Seite (oder einer anderen Seite) zu verwenden - möchtest du den %s auch löschen?" +msgid "" +"In case you are NOT planning on using this %s on this site (or any other " +"site) - would you like to cancel the %s as well?" +msgstr "" +"Für den Fall, dass du NICHT vorhast, diesen %s auf dieser Seite (oder einer " +"anderen Seite) zu verwenden - möchtest du den %s auch löschen?" #: templates/forms/subscription-cancellation.php:57 -msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." -msgstr "Abbrechen %s - Ich benötige keine Sicherheits- und Funktionsupdates mehr und auch keinen Support für %s, da ich nicht vorhabe, das %s auf dieser oder einer anderen Seite zu verwenden." +msgid "" +"Cancel %s - I no longer need any security & feature updates, nor support " +"for %s because I'm not planning to use the %s on this, or any other site." +msgstr "" +"Abbrechen %s - Ich benötige keine Sicherheits- und Funktionsupdates mehr " +"und auch keinen Support für %s, da ich nicht vorhabe, das %s auf dieser " +"oder einer anderen Seite zu verwenden." #: templates/forms/subscription-cancellation.php:68 -msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." -msgstr "%s bitte nicht stornieren - ich bin immer noch daran interessiert, Sicherheits- und Funktionsupdates zu erhalten, sowie den Support kontaktieren zu können." +msgid "" +"Don't cancel %s - I'm still interested in getting security & feature " +"updates, as well as be able to contact support." +msgstr "" +"%s bitte nicht stornieren - ich bin immer noch daran interessiert, " +"Sicherheits- und Funktionsupdates zu erhalten, sowie den Support " +"kontaktieren zu können." #: templates/forms/subscription-cancellation.php:103 -msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." -msgstr "Sobald deine Lizenz abläuft, kannst du das %s nicht mehr nutzen. Es sei denn, du aktivierst ihn erneut mit einer gültigen Premiumlizenz." +msgid "" +"Once your license expires you will no longer be able to use the %s, unless " +"you activate it again with a valid premium license." +msgstr "" +"Sobald deine Lizenz abläuft, kannst du das %s nicht mehr nutzen. Es sei " +"denn, du aktivierst ihn erneut mit einer gültigen Premiumlizenz." #: templates/forms/subscription-cancellation.php:136 msgid "Cancel %s?" @@ -2724,16 +2843,32 @@ msgid "Cancel %s & Proceed" msgstr "%s abbrechen & fortfahren" #: templates/forms/trial-start.php:22 -msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." -msgstr "Du bist einen Klick davon entfernt, deinen kostenlosen %1$s-Tage Testzeitraum des %2$s-Planes zu starten." +#. translators: %1$s: Number of trial days; %2$s: Plan name; +msgid "" +"You are 1-click away from starting your %1$s-day free trial of the %2$s " +"plan." +msgstr "" +"Du bist einen Klick davon entfernt, deinen kostenlosen %1$s-Tage " +"Testzeitraum des %2$s-Planes zu starten." #: templates/forms/trial-start.php:28 -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." -msgstr "Um die Richtlinien von WordPress.org einzuhalten, bitten wir dich vor dem Start der Testversion um ein Opt-In mit deinen Benutzer- und nicht sensiblen Seite-Informationen, damit %s regelmäßig Daten an %s senden kann, um nach Versions-Updates zu suchen und um deine Testversion zu validieren." +#. translators: %s: Link to freemius.com +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." +msgstr "" +"Um die Richtlinien von WordPress.org einzuhalten, bitten wir dich vor dem " +"Start der Testversion um ein Opt-In mit deinen Benutzer- und nicht " +"sensiblen Seite-Informationen, damit %s regelmäßig Daten an %s senden kann, " +"um nach Versions-Updates zu suchen und um deine Testversion zu validieren." #: templates/forms/user-change.php:26 msgid "By changing the user, you agree to transfer the account ownership to:" -msgstr "Indem du den Benutzer wechselst, stimmst du zu, den Besitz des Accounts zu übertragen:" +msgstr "" +"Indem du den Benutzer wechselst, stimmst du zu, den Besitz des Accounts zu " +"übertragen:" #: templates/forms/user-change.php:28 msgid "I Agree - Change User" @@ -2755,14 +2890,6 @@ msgstr "Premium" msgid "Beta" msgstr "Beta" -#: templates/partials/network-activation.php:32 -msgid "Activate license on all sites in the network." -msgstr "Aktiviere die Lizenz auf allen Seiten im Netzwerk." - -#: templates/partials/network-activation.php:33 -msgid "Apply on all sites in the network." -msgstr "Auf alle Seiten im Netzwerk anwenden." - #: templates/partials/network-activation.php:36 msgid "Activate license on all pending sites." msgstr "Aktiviere die Lizenz auf allen ausstehenden Seiten." @@ -2771,6 +2898,14 @@ msgstr "Aktiviere die Lizenz auf allen ausstehenden Seiten." msgid "Apply on all pending sites." msgstr "Auf alle ausstehenden Webseiten anwenden." +#: templates/partials/network-activation.php:32 +msgid "Activate license on all sites in the network." +msgstr "Aktiviere die Lizenz auf allen Seiten im Netzwerk." + +#: templates/partials/network-activation.php:33 +msgid "Apply on all sites in the network." +msgstr "Auf alle Seiten im Netzwerk anwenden." + #: templates/partials/network-activation.php45, #: templates/partials/network-activation.php:79 msgid "allow" @@ -2786,8 +2921,8 @@ msgstr "delegiere" msgid "skip" msgstr "überspringen" -#: templates/plugin-info/description.php72, -#: templates/plugin-info/screenshots.php:31 +#: templates/plugin-info/description.php67, +#: templates/plugin-info/screenshots.php:26 msgid "Click to view full-size screenshot %d" msgstr "Klicke, um den Screenshot in voller Größe zu sehen %d" @@ -2799,40 +2934,54 @@ msgstr "Unbegrenzte Updates" msgid "Localhost" msgstr "Localhost" -#: templates/account/partials/activate-license-button.php:50 -msgctxt "as 5 licenses left" -msgid "%s left" -msgstr "%s übrig" - #: templates/account/partials/activate-license-button.php:51 msgid "Last license" msgstr "Letzte Lizenz" +#: templates/account/partials/addon.php:34 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account/partials/addon.php:34 -msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "%1$s wird sofort alle zukünftigen wiederkehrenden Zahlungen stoppen und deine %s Plan-Lizenz wird in %s auslaufen." - -#: templates/account/partials/addon.php:190 -msgid "Cancelled" -msgstr "Abgebrochen" +msgid "" +"%1$s will immediately stop all future recurring payments and your %s plan " +"license will expire in %s." +msgstr "" +"%1$s wird sofort alle zukünftigen wiederkehrenden Zahlungen stoppen und " +"deine %s Plan-Lizenz wird in %s auslaufen." #: templates/account/partials/addon.php:200 msgid "No expiration" msgstr "Kein Ablaufdatum" -#: templates/account/partials/disconnect-button.php:74 -msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." -msgstr "Durch das Trennen der Website werden zuvor geteilte Diagnosedaten über %1$sgelöscht und sind für %2$snicht mehr sichtbar." +#: templates/account/partials/addon.php:190 +msgid "Cancelled" +msgstr "Abgebrochen" #: templates/account/partials/disconnect-button.php:78 -msgid "Disconnecting the website will permanently remove %s from your User Dashboard's account." -msgstr "Das Trennen der Website wird %sdauerhaft aus dem Konto Ihres Benutzer-Dashboards entfernt." +#. translators: %s is replaced with the website's homepage address. +msgid "" +"Disconnecting the website will permanently remove %s from your User " +"Dashboard's account." +msgstr "" +"Das Trennen der Website wird %sdauerhaft aus dem Konto Ihres " +"Benutzer-Dashboards entfernt." + +#: templates/account/partials/disconnect-button.php:74 +msgid "" +"By disconnecting the website, previously shared diagnostic data about %1$s " +"will be deleted and no longer visible to %2$s." +msgstr "" +"Durch das Trennen der Website werden zuvor geteilte Diagnosedaten über " +"%1$sgelöscht und sind für %2$snicht mehr sichtbar." #: templates/account/partials/disconnect-button.php:84 -msgid "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." -msgstr "Wenn Du stattdessen das Abonnement deines %1$sPlans kündigen möchtest, navigiere bitte zu %2$sund kündige es dort." +#. translators: %1$s is replaced by the paid plan name, %2$s is replaced with +#. an anchor link with the text "User Dashboard". +msgid "" +"If you wish to cancel your %1$s plan's subscription instead, please " +"navigate to the %2$s and cancel it there." +msgstr "" +"Wenn Du stattdessen das Abonnement deines %1$sPlans kündigen möchtest, " +"navigiere bitte zu %2$sund kündige es dort." #: templates/account/partials/disconnect-button.php:88 msgid "Are you sure you would like to proceed with the disconnection?" @@ -2856,7 +3005,9 @@ msgstr "Abonnement" #: templates/forms/deactivation/contact.php:19 msgid "Sorry for the inconvenience and we are here to help if you give us a chance." -msgstr "Wir entschuldigen uns für die Unannehmlichkeiten und sind hier, um zu helfen, wenn du uns eine Chance gibst." +msgstr "" +"Wir entschuldigen uns für die Unannehmlichkeiten und sind hier, um zu " +"helfen, wenn du uns eine Chance gibst." #: templates/forms/deactivation/contact.php:22 msgid "Contact Support" @@ -2897,7 +3048,7 @@ msgstr "Schnelles Feedback" #: templates/forms/deactivation/form.php:134 msgid "If you have a moment, please let us know why you are %s" -msgstr "Wenn du einen Moment Zeit hast, lass uns bitte wissen, warum du das Plugin deaktivieren willst:" +msgstr "Wenn du einen Moment Zeit hast, lass uns bitte wissen, warum du %s" #: templates/forms/deactivation/form.php:134 msgid "deactivating" @@ -2928,5 +3079,457 @@ msgid "Click here to use the plugin anonymously" msgstr "Klicke hier, um das Plugin anonym zu nutzen" #: templates/forms/deactivation/retry-skip.php:23 -msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in." -msgstr "Du hast es vielleicht übersehen: du musst keine Daten teilen und kannst einfach das Opt-in %s." +msgid "" +"You might have missed it, but you don't have to share any data and can just " +"%s the opt-in." +msgstr "" +"Du hast es vielleicht übersehen: du musst keine Daten teilen und kannst " +"einfach das Opt-in %s." + +#: includes/class-freemius.php4842, includes/class-freemius.php21166, +#: includes/class-freemius.php:24835 +msgctxt "interjection expressing joy or exuberance" +msgid "Yee-haw" +msgstr "Hurra" + +#: includes/class-freemius.php:4856 +msgctxt "addonX cannot run without pluginY" +msgid "%s cannot run without %s." +msgstr "%s kann nicht ohne %s laufen." + +#: includes/class-freemius.php:4857 +msgctxt "addonX cannot run..." +msgid "%s cannot run without the plugin." +msgstr "%s kann ohne das Plugin nicht laufen." + +#: includes/class-freemius.php4859, includes/class-freemius.php6051, +#: includes/class-freemius.php13828, includes/class-freemius.php14567, +#: includes/class-freemius.php18322, includes/class-freemius.php18435, +#: includes/class-freemius.php18612, includes/class-freemius.php20897, +#: includes/class-freemius.php21996, includes/class-freemius.php23012, +#: includes/class-freemius.php23142, includes/class-freemius.php23285, +#: templates/add-ons.php:57 +msgctxt "exclamation" +msgid "Oops" +msgstr "Hoppla" + +#: includes/class-freemius.php:24141 +msgctxt "exclamation" +msgid "Hey" +msgstr "Hallo" + +#: includes/class-freemius.php5728, includes/class-freemius.php:7765 +msgctxt "" +"Used to express elation, enthusiasm, or triumph (especially in electronic " +"communication)." +msgid "W00t" +msgstr "W00t" + +#: includes/class-freemius.php:7062 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "a license key" +msgstr "ein Lizenzschlüssel" + +#: includes/class-freemius.php:7056 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "the installation instructions" +msgstr "die Installationsanleitung" + +#: includes/class-freemius.php:7078 +msgctxt "Part of an activation link message." +msgid "Click here" +msgstr "Hier klicken" + +#: includes/class-freemius.php:7085 +msgctxt "" +"Part of the message that tells the user to check their spam folder for a " +"specific email." +msgid "the product's support email address" +msgstr "die Support-E-Mail-Adresse des Produkts" + +#: includes/class-freemius.php:7232 +msgctxt "%s - plugin name. As complete \"PluginX\" activation now" +msgid "Complete \"%s\" Activation Now" +msgstr "Schließe jetzt die \"%s\"-Aktivierung ab" + +#: includes/class-freemius.php:19155 +msgctxt "ASCII arrow left icon" +msgid "←" +msgstr "←" + +#: includes/class-freemius.php:19155 +msgctxt "ASCII arrow right icon" +msgid "➤" +msgstr "➤" + +#: includes/class-freemius.php19157, templates/pricing.php:110 +msgctxt "noun" +msgid "Pricing" +msgstr "Preise" + +#: includes/fs-plugin-info-dialog.php:1239 +msgctxt "noun" +msgid "Price" +msgstr "Preis" + +#: includes/class-freemius.php:20392 +msgctxt "a positive response" +msgid "Right on" +msgstr "Direkt an" + +#: includes/class-freemius.php21511, includes/class-freemius.php21783, +#: includes/class-freemius.php21836, includes/class-freemius.php:21943 +msgctxt "" +"something somebody says when they are thinking about what you have just " +"said." +msgid "Hmm" +msgstr "Hmm" + +#: includes/class-freemius.php21525, templates/account.php132, +#: templates/add-ons.php250, templates/account/partials/addon.php:51 +msgctxt "trial period" +msgid "Trial" +msgstr "Test" + +#: includes/class-freemius.php:23247 +msgctxt "as congratulations" +msgid "Congrats" +msgstr "Herzlichen Glückwunsch" + +#: includes/class-freemius.php:23512 +msgctxt "advance notice of something that will need attention." +msgid "Heads up" +msgstr "Kopf hoch" + +#: includes/class-freemius.php24157, templates/forms/trial-start.php:53 +msgctxt "call to action" +msgid "Start free trial" +msgstr "Starte die kostenlose Testversion" + +#: includes/fs-plugin-info-dialog.php543, +#: templates/account/partials/addon.php:390 +msgctxt "verb" +msgid "Purchase" +msgstr "Kaufen" + +#: templates/account.php129, templates/account/partials/addon.php:48 +msgctxt "verb" +msgid "Upgrade" +msgstr "Upgrade" + +#: templates/account.php131, templates/account/partials/addon.php50, +#: templates/account/partials/site.php:320 +msgctxt "verb" +msgid "Downgrade" +msgstr "Downgrade" + +#: templates/account.php684, templates/account/billing.php:21 +msgctxt "verb" +msgid "Edit" +msgstr "Bearbeiten" + +#: templates/account.php660, templates/account.php923, +#: templates/account/partials/site.php250, +#: templates/account/partials/site.php:272 +msgctxt "verb" +msgid "Show" +msgstr "Anzeigen" + +#: templates/account.php:917 +msgctxt "verb" +msgid "Hide" +msgstr "Verstecken" + +#: templates/connect.php360, templates/connect.php690, +#: templates/forms/deactivation/retry-skip.php:20 +msgctxt "verb" +msgid "Skip" +msgstr "Überspringen" + +#: templates/debug.php497, templates/debug.php603, +#: templates/account/partials/addon.php:440 +msgctxt "verb" +msgid "Delete" +msgstr "Löschen" + +#: templates/account/billing.php:22 +msgctxt "verb" +msgid "Update" +msgstr "Update" + +#: templates/connect/permissions-group.php31, templates/forms/optout.php26, +#: templates/js/permissions.php:78 +msgctxt "verb" +msgid "Opt Out" +msgstr "Abmelden" + +#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 +msgctxt "verb" +msgid "Opt In" +msgstr "Anmelden" + +#: includes/fs-plugin-info-dialog.php:772 +msgctxt "as download latest version" +msgid "Download Latest Free Version" +msgstr "Neueste kostenlose Version herunterladen" + +#: includes/fs-plugin-info-dialog.php773, templates/account.php110, +#: templates/add-ons.php37, templates/account/partials/addon.php:30 +msgctxt "as download latest version" +msgid "Download Latest" +msgstr "Neuester Download" + +#: includes/fs-plugin-info-dialog.php:999 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "Beschreibung" + +#: includes/fs-plugin-info-dialog.php:1000 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "Installation" + +#: includes/fs-plugin-info-dialog.php:1001 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "FAQ" + +#: includes/fs-plugin-info-dialog.php:1003 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "Changelog" + +#: includes/fs-plugin-info-dialog.php:1004 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "Bewertungen" + +#: includes/fs-plugin-info-dialog.php:1005 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "Weitere Notizen" + +#: includes/fs-plugin-info-dialog.php:1020 +msgctxt "Plugin installer section title" +msgid "Features & Pricing" +msgstr "Funktionen & Preise" + +#: includes/fs-plugin-info-dialog.php:1102 +msgctxt "e.g. Professional Plan" +msgid "%s Plan" +msgstr "%s Plan" + +#: includes/fs-plugin-info-dialog.php:1128 +msgctxt "e.g. the best product" +msgid "Best" +msgstr "Beste" + +#: includes/fs-plugin-info-dialog.php1134, +#: includes/fs-plugin-info-dialog.php:1154 +msgctxt "as every month" +msgid "Monthly" +msgstr "Monatlich" + +#: includes/fs-plugin-info-dialog.php:1137 +msgctxt "as once a year" +msgid "Annual" +msgstr "Jährlich" + +#: includes/fs-plugin-info-dialog.php:1156 +msgctxt "as once a year" +msgid "Annually" +msgstr "Jährlich" + +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "as once a year" +msgid "Once" +msgstr "Einmal" + +#: includes/fs-plugin-info-dialog.php1154, +#: includes/fs-plugin-info-dialog.php1156, +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "e.g. billed monthly" +msgid "Billed %s" +msgstr "Abgerechnet wird %s" + +#: includes/fs-plugin-info-dialog.php1178, +#: templates/plugin-info/features.php:82 +msgctxt "as monthly period" +msgid "mo" +msgstr "mtl." + +#: includes/fs-plugin-info-dialog.php1185, +#: templates/plugin-info/features.php:80 +msgctxt "as annual period" +msgid "year" +msgstr "Jahr" + +#: includes/fs-plugin-info-dialog.php1315, templates/account.php121, +#: templates/debug.php232, templates/debug.php269, templates/debug.php518, +#: templates/account/partials/addon.php:41 +msgctxt "product version" +msgid "Version" +msgstr "Version" + +#: includes/fs-plugin-info-dialog.php:1322 +msgctxt "as the plugin author" +msgid "Author" +msgstr "Autor" + +#: includes/fs-plugin-info-dialog.php1334, templates/account.php:540 +#. translators: %s: time period (e.g. "2 hours" ago) +msgctxt "x-ago" +msgid "%s ago" +msgstr "vor %s" + +#: templates/account.php:126 +msgctxt "as synchronize license" +msgid "Sync License" +msgstr "Synchronisiere Lizenz" + +#: templates/account.php135, templates/debug.php412, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:54 +msgctxt "as product pricing plan" +msgid "Plan" +msgstr "Plan" + +#: templates/account.php370, templates/account/partials/addon.php:345 +msgctxt "as synchronize" +msgid "Sync" +msgstr "Sync" + +#: templates/account.php:440 +msgctxt "as secret encryption key missing" +msgid "No Secret" +msgstr "Kein geheimer Schlüssel" + +#: templates/account.php:788 +msgctxt "as software license" +msgid "License" +msgstr "Lizenz" + +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "Aktiv" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "Installiert" + +#: templates/admin-notice.php17, templates/forms/license-activation.php245, +#: templates/forms/resend-key.php:80 +msgctxt "as close a window" +msgid "Dismiss" +msgstr "Verwerfen" + +#: templates/connect.php:118 +#. translators: %s: name (e.g. Hey John,) +msgctxt "greeting" +msgid "Hey %s," +msgstr "Hallo %s," + +#: templates/connect.php:876 +msgctxt "as in the process of sending an email" +msgid "Sending email" +msgstr "E-Mail senden" + +#: templates/connect.php:877 +msgctxt "as activating plugin" +msgid "Activating" +msgstr "Aktivieren von" + +#: templates/debug.php:17 +msgctxt "as turned off" +msgid "Off" +msgstr "Aus" + +#: templates/debug.php:18 +msgctxt "as turned on" +msgid "On" +msgstr "An" + +#: templates/debug.php:28 +msgctxt "as code debugging" +msgid "Debugging" +msgstr "Fehlersuche" + +#: templates/debug.php:228 +msgctxt "as software development kit versions" +msgid "SDK Versions" +msgstr "SDK Versionen" + +#: templates/debug.php:271 +msgctxt "as application program interface" +msgid "API" +msgstr "API" + +#: templates/debug.php:323 +msgctxt "as connection was successful" +msgid "Connected" +msgstr "Verbunden" + +#: templates/debug.php:325 +msgctxt "as connection blocked" +msgid "Blocked" +msgstr "Blockiert" + +#: templates/debug.php:326 +msgctxt "API connectivity state is unknown" +msgid "Unknown" +msgstr "Unbekannt" + +#: templates/debug.php:400 +msgctxt "like websites" +msgid "Sites" +msgstr "Webseiten" + +#: templates/debug.php:632 +msgctxt "as expiration date" +msgid "Expiration" +msgstr "Verfalls" + +#: includes/debug/class-fs-debug-bar-panel.php51, +#: templates/debug/api-calls.php54, templates/debug/logger.php:62 +msgctxt "milliseconds" +msgid "ms" +msgstr "ms" + +#: includes/managers/class-fs-clone-manager.php:1319 +msgctxt "Clone resolution admin notice products list label" +msgid "Products" +msgstr "Produkte" + +#: includes/managers/class-fs-clone-manager.php:1426 +msgctxt "\"The \", e.g.: \"The plugin\"" +msgid "The %s's" +msgstr "Die %s" + +#: templates/debug/api-calls.php:71 +msgctxt "as file/folder path" +msgid "Path" +msgstr "Pfad" + +#: templates/debug/plugins-themes-sync.php21, +#: templates/debug/scheduled-crons.php:74 +msgctxt "seconds" +msgid "sec" +msgstr "s" + +#: templates/forms/email-address-update.php33, +#: templates/forms/user-change.php:81 +msgctxt "close window" +msgid "Dismiss" +msgstr "Schließen" + +#: templates/forms/premium-versions-upgrade-handler.php:75 +msgctxt "close a window" +msgid "Dismiss" +msgstr "Schließen" + +#: templates/account/partials/activate-license-button.php:50 +msgctxt "as 5 licenses left" +msgid "%s left" +msgstr "%s übrig" diff --git a/languages/freemius-en.mo b/languages/freemius-en.mo deleted file mode 100644 index cecd3e5d587e4dc43d74a4039ed3e3f7fa022251..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 68519 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 T(}F>MtsuV;s`9xO2>Sm321YV( diff --git a/languages/freemius-en.po b/languages/freemius-en.po deleted file mode 100644 index 927e10cb..00000000 --- a/languages/freemius-en.po +++ /dev/null @@ -1,2936 +0,0 @@ -# Copyright (C) 2022 freemius -# This file is distributed under the same license as the freemius package. -msgid "" -msgstr "" -"Project-Id-Version: freemius\n" -"Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: \n" -"Last-Translator: Vova Feldman \n" -"Language-Team: Freemius Team \n" -"Language: en\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Poedit-Basepath: ..\n" -"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" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 3.2.2\n" -"X-Poedit-SearchPath-0: .\n" -"X-Poedit-SearchPathExcluded-0: *.js\n" - -#: includes/class-freemius.php:1744, templates/account.php:947 -msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." -msgstr "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." - -#: includes/class-freemius.php:1751 -msgid "Would you like to proceed with the update?" -msgstr "Would you like to proceed with the update?" - -#: includes/class-freemius.php:1976 -msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." -msgstr "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." - -#: includes/class-freemius.php:1978, includes/fs-plugin-info-dialog.php:1517 -msgid "Error" -msgstr "Error" - -#: includes/class-freemius.php:2424 -msgid "I found a better %s" -msgstr "I found a better %s" - -#: includes/class-freemius.php:2426 -msgid "What's the %s's name?" -msgstr "What's the %s's name?" - -#: includes/class-freemius.php:2432 -msgid "It's a temporary %s - I'm troubleshooting an issue" -msgstr "It's a temporary %s - I'm troubleshooting an issue" - -#: includes/class-freemius.php:2434 -msgid "Deactivation" -msgstr "Deactivation" - -#: includes/class-freemius.php:2435 -msgid "Theme Switch" -msgstr "Theme Switch" - -#: includes/class-freemius.php:2444, templates/forms/resend-key.php:24, -#: templates/forms/user-change.php:29 -msgid "Other" -msgstr "Other" - -#: includes/class-freemius.php:2452 -msgid "I no longer need the %s" -msgstr "I no longer need the %s" - -#: includes/class-freemius.php:2459 -msgid "I only needed the %s for a short period" -msgstr "I only needed the %s for a short period" - -#: includes/class-freemius.php:2465 -msgid "The %s broke my site" -msgstr "The %s broke my site" - -#: includes/class-freemius.php:2472 -msgid "The %s suddenly stopped working" -msgstr "The %s suddenly stopped working" - -#: includes/class-freemius.php:2482 -msgid "I can't pay for it anymore" -msgstr "I can't pay for it anymore" - -#: includes/class-freemius.php:2484 -msgid "What price would you feel comfortable paying?" -msgstr "What price would you feel comfortable paying?" - -#: includes/class-freemius.php:2490 -msgid "I don't like to share my information with you" -msgstr "I don't like to share my information with you" - -#: includes/class-freemius.php:2511 -msgid "The %s didn't work" -msgstr "The %s didn't work" - -#: includes/class-freemius.php:2521 -msgid "I couldn't understand how to make it work" -msgstr "I couldn't understand how to make it work" - -#: includes/class-freemius.php:2529 -msgid "The %s is great, but I need specific feature that you don't support" -msgstr "The %s is great, but I need specific feature that you don't support" - -#: includes/class-freemius.php:2531 -msgid "What feature?" -msgstr "What feature?" - -#: includes/class-freemius.php:2535 -msgid "The %s is not working" -msgstr "The %s is not working" - -#: includes/class-freemius.php:2537 -msgid "Kindly share what didn't work so we can fix it for future users..." -msgstr "Kindly share what didn't work so we can fix it for future users..." - -#: includes/class-freemius.php:2541 -msgid "It's not what I was looking for" -msgstr "It's not what I was looking for" - -#: includes/class-freemius.php:2543 -msgid "What you've been looking for?" -msgstr "What you've been looking for?" - -#: includes/class-freemius.php:2547 -msgid "The %s didn't work as expected" -msgstr "The %s didn't work as expected" - -#: includes/class-freemius.php:2549 -msgid "What did you expect?" -msgstr "What did you expect?" - -#: includes/class-freemius.php:3637, templates/debug.php:24 -msgid "Freemius Debug" -msgstr "Freemius Debug" - -#: includes/class-freemius.php:4444 -msgid "I don't know what is cURL or how to install it, help me!" -msgstr "I don't know what is cURL or how to install it, help me!" - -#: includes/class-freemius.php:4446 -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." -msgstr "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." - -#: includes/class-freemius.php:4453 -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." -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." - -#: includes/class-freemius.php:4558 -msgid "Yes - do your thing" -msgstr "Yes - do your thing" - -#: includes/class-freemius.php:4563 -msgid "No - just deactivate" -msgstr "No - just deactivate" - -#: includes/class-freemius.php:4608, includes/class-freemius.php:5139, -#: includes/class-freemius.php:6334, includes/class-freemius.php:13998, -#: includes/class-freemius.php:14747, includes/class-freemius.php:18513, -#: includes/class-freemius.php:18618, includes/class-freemius.php:18795, -#: includes/class-freemius.php:21078, includes/class-freemius.php:21456, -#: includes/class-freemius.php:21470, includes/class-freemius.php:22158, -#: includes/class-freemius.php:23174, includes/class-freemius.php:23304, -#: includes/class-freemius.php:23434, templates/add-ons.php:57 -msgctxt "exclamation" -msgid "Oops" -msgstr "Oops" - -#: includes/class-freemius.php:4683 -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." -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." - -#: includes/class-freemius.php:5108 -msgid "You have purchased a %s license." -msgstr "You have purchased a %s license." - -#: includes/class-freemius.php:5112 -msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." -msgstr " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." - -#: includes/class-freemius.php:5122, includes/class-freemius.php:6031, -#: includes/class-freemius.php:17889, includes/class-freemius.php:17900, -#: includes/class-freemius.php:21347, includes/class-freemius.php:21738, -#: includes/class-freemius.php:21807, includes/class-freemius.php:21979 -msgctxt "interjection expressing joy or exuberance" -msgid "Yee-haw" -msgstr "Yee-haw" - -#: includes/class-freemius.php:5136 -msgctxt "addonX cannot run without pluginY" -msgid "%s cannot run without %s." -msgstr "%s cannot run without %s." - -#: includes/class-freemius.php:5137 -msgctxt "addonX cannot run..." -msgid "%s cannot run without the plugin." -msgstr "%s cannot run without the plugin." - -#: includes/class-freemius.php:5418 -msgid "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" -msgstr "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" - -#: includes/class-freemius.php:6000 -msgid "Premium %s version was successfully activated." -msgstr "Premium %s version was successfully activated." - -#: includes/class-freemius.php:6012, includes/class-freemius.php:7992 -msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)." -msgid "W00t" -msgstr "W00t" - -#: includes/class-freemius.php:6027 -msgid "You have a %s license." -msgstr "You have a %s license." - -#: includes/class-freemius.php:6317 -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." -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." - -#: includes/class-freemius.php:6321 -msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." -msgstr "%s is a premium only add-on. You have to purchase a license first before activating the plugin." - -#: includes/class-freemius.php:6330, templates/add-ons.php:186, -#: templates/account/partials/addon.php:386 -msgid "More information about %s" -msgstr "More information about %s" - -#: includes/class-freemius.php:6331 -msgid "Purchase License" -msgstr "Purchase License" - -#: includes/class-freemius.php:7318, templates/connect.php:216 -msgid "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." -msgstr "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." - -#: includes/class-freemius.php:7322 -msgid "start the trial" -msgstr "start the trial" - -#: includes/class-freemius.php:7323, templates/connect.php:220 -msgid "complete the opt-in" -msgstr "complete the opt-in" - -#: includes/class-freemius.php:7456 -msgid "You are just one step away - %s" -msgstr "You are just one step away - %s" - -#: includes/class-freemius.php:7459 -msgctxt "%s - plugin name. As complete \"PluginX\" activation now" -msgid "Complete \"%s\" Activation Now" -msgstr "Complete \"%s\" Activation Now" - -#: includes/class-freemius.php:7541 -msgid "We made a few tweaks to the %s, %s" -msgstr "We made a few tweaks to the %s, %s" - -#: includes/class-freemius.php:7545 -msgid "Opt in to make \"%s\" better!" -msgstr "Opt in to make \"%s\" better!" - -#: includes/class-freemius.php:7991 -msgid "The upgrade of %s was successfully completed." -msgstr "The upgrade of %s was successfully completed." - -#: includes/class-freemius.php:10709, -#: includes/class-fs-plugin-updater.php:1090, -#: includes/class-fs-plugin-updater.php:1305, -#: includes/class-fs-plugin-updater.php:1312, -#: templates/auto-installation.php:32 -msgid "Add-On" -msgstr "Add-On" - -#: includes/class-freemius.php:10711, templates/account.php:411, -#: templates/account.php:419, templates/debug.php:395, templates/debug.php:615 -msgid "Plugin" -msgstr "Plugin" - -#: includes/class-freemius.php:10712, templates/account.php:412, -#: templates/account.php:420, templates/debug.php:395, templates/debug.php:615, -#: templates/forms/deactivation/form.php:107 -msgid "Theme" -msgstr "Theme" - -#: includes/class-freemius.php:13817 -msgid "An unknown error has occurred while trying to toggle the license's white-label mode." -msgstr "An unknown error has occurred while trying to toggle the license's white-label mode." - -#: includes/class-freemius.php:13831 -msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s." -msgstr "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s." - -#: includes/class-freemius.php:13836, -#: templates/account/partials/disconnect-button.php:84 -msgid "User Dashboard" -msgstr "User Dashboard" - -#: includes/class-freemius.php:13837 -msgid "revert it now" -msgstr "revert it now" - -#: includes/class-freemius.php:13895 -msgid "An unknown error has occurred while trying to set the user's beta mode." -msgstr "An unknown error has occurred while trying to set the user's beta mode." - -#: includes/class-freemius.php:13969 -msgid "Invalid new user ID or email address." -msgstr "Invalid new user ID or email address." - -#: includes/class-freemius.php:13999 -msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." -msgstr "Sorry, we could not complete the email update. Another user with the same email is already registered." - -#: includes/class-freemius.php:14000 -msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." -msgstr "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." - -#: includes/class-freemius.php:14007 -msgid "Change Ownership" -msgstr "Change Ownership" - -#: includes/class-freemius.php:14614 -msgid "Invalid site details collection." -msgstr "Invalid site details collection." - -#: includes/class-freemius.php:14734 -msgid "We couldn't find your email address in the system, are you sure it's the right address?" -msgstr "We couldn't find your email address in the system, are you sure it's the right address?" - -#: includes/class-freemius.php:14736 -msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" -msgstr "We can't see any active licenses associated with that email address, are you sure it's the right address?" - -#: includes/class-freemius.php:15034 -msgid "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." -msgstr "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." - -#: includes/class-freemius.php:15148, -#: templates/forms/premium-versions-upgrade-handler.php:47 -msgid "Buy a license now" -msgstr "Buy a license now" - -#: includes/class-freemius.php:15160, -#: templates/forms/premium-versions-upgrade-handler.php:46 -msgid "Renew your license now" -msgstr "Renew your license now" - -#: includes/class-freemius.php:15164 -msgid "%s to access version %s security & feature updates, and support." -msgstr "%s to access version %s security & feature updates, and support." - -#: includes/class-freemius.php:17871 -msgid "%s opt-in was successfully completed." -msgstr "%s opt-in was successfully completed." - -#: includes/class-freemius.php:17885 -msgid "Your account was successfully activated with the %s plan." -msgstr "Your account was successfully activated with the %s plan." - -#: includes/class-freemius.php:17896, includes/class-freemius.php:21803 -msgid "Your trial has been successfully started." -msgstr "Your trial has been successfully started." - -#: includes/class-freemius.php:18511, includes/class-freemius.php:18616, -#: includes/class-freemius.php:18793 -msgid "Couldn't activate %s." -msgstr "Couldn't activate %s." - -#: includes/class-freemius.php:18512, includes/class-freemius.php:18617, -#: includes/class-freemius.php:18794 -msgid "Please contact us with the following message:" -msgstr "Please contact us with the following message:" - -#: includes/class-freemius.php:18613, templates/forms/data-debug-mode.php:162 -msgid "An unknown error has occurred." -msgstr "An unknown error has occurred." - -#: includes/class-freemius.php:19153, includes/class-freemius.php:24542 -msgid "Upgrade" -msgstr "Upgrade" - -#: includes/class-freemius.php:19159 -msgid "Start Trial" -msgstr "Start Trial" - -#: includes/class-freemius.php:19161 -msgid "Pricing" -msgstr "Pricing" - -#: includes/class-freemius.php:19241, includes/class-freemius.php:19243 -msgid "Affiliation" -msgstr "Affiliation" - -#: includes/class-freemius.php:19271, includes/class-freemius.php:19273, -#: templates/account.php:264, templates/debug.php:362 -msgid "Account" -msgstr "Account" - -#: includes/class-freemius.php:19287, includes/class-freemius.php:19289, -#: includes/customizer/class-fs-customizer-support-section.php:60 -msgid "Contact Us" -msgstr "Contact Us" - -#: includes/class-freemius.php:19300, includes/class-freemius.php:19302, -#: includes/class-freemius.php:24556, templates/account.php:134, -#: templates/account/partials/addon.php:49 -msgid "Add-Ons" -msgstr "Add-Ons" - -#: includes/class-freemius.php:19336 -msgctxt "ASCII arrow left icon" -msgid "←" -msgstr "←" - -#: includes/class-freemius.php:19336 -msgctxt "ASCII arrow right icon" -msgid "➤" -msgstr "➤" - -#: includes/class-freemius.php:19338, templates/pricing.php:110 -msgctxt "noun" -msgid "Pricing" -msgstr "Pricing" - -#: includes/class-freemius.php:19551, -#: includes/customizer/class-fs-customizer-support-section.php:67 -msgid "Support Forum" -msgstr "Support Forum" - -#: includes/class-freemius.php:20572 -msgid "Your email has been successfully verified - you are AWESOME!" -msgstr "Your email has been successfully verified - you are AWESOME!" - -#: includes/class-freemius.php:20573 -msgctxt "a positive response" -msgid "Right on" -msgstr "Right on" - -#: includes/class-freemius.php:21079 -msgid "seems like the key you entered doesn't match our records." -msgstr "seems like the key you entered doesn't match our records." - -#: includes/class-freemius.php:21103 -msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." -msgstr "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." - -#: includes/class-freemius.php:21338 -msgid "Your %s Add-on plan was successfully upgraded." -msgstr "Your %s Add-on plan was successfully upgraded." - -#: includes/class-freemius.php:21340 -msgid "%s Add-on was successfully purchased." -msgstr "%s Add-on was successfully purchased." - -#: includes/class-freemius.php:21343 -msgid "Download the latest version" -msgstr "Download the latest version" - -#: includes/class-freemius.php:21449 -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" -msgstr "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" - -#: includes/class-freemius.php:21455, includes/class-freemius.php:21469, -#: includes/class-freemius.php:21938, includes/class-freemius.php:22027 -msgid "Error received from the server:" -msgstr "Error received from the server:" - -#: includes/class-freemius.php:21469 -msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." -msgstr "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." - -#: includes/class-freemius.php:21700, includes/class-freemius.php:21943, -#: includes/class-freemius.php:21998, includes/class-freemius.php:22105 -msgctxt "something somebody says when they are thinking about what you have just said." -msgid "Hmm" -msgstr "Hmm" - -#: includes/class-freemius.php:21713 -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." -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." - -#: includes/class-freemius.php:21714, templates/account.php:136, -#: templates/add-ons.php:250, templates/account/partials/addon.php:51 -msgctxt "trial period" -msgid "Trial" -msgstr "Trial" - -#: includes/class-freemius.php:21719 -msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." -msgstr "I have upgraded my account but when I try to Sync the License, the plan remains %s." - -#: includes/class-freemius.php:21723, includes/class-freemius.php:21782 -msgid "Please contact us here" -msgstr "Please contact us here" - -#: includes/class-freemius.php:21734 -msgid "Your plan was successfully activated." -msgstr "Your plan was successfully activated." - -#: includes/class-freemius.php:21735 -msgid "Your plan was successfully upgraded." -msgstr "Your plan was successfully upgraded." - -#: includes/class-freemius.php:21752 -msgid "Your plan was successfully changed to %s." -msgstr "Your plan was successfully changed to %s." - -#: includes/class-freemius.php:21768 -msgid "Your license has expired. You can still continue using the free %s forever." -msgstr "Your license has expired. You can still continue using the free %s forever." - -#: includes/class-freemius.php:21770 -msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." - -#: includes/class-freemius.php:21778 -msgid "Your license has been cancelled. If you think it's a mistake, please contact support." -msgstr "Your license has been cancelled. If you think it's a mistake, please contact support." - -#: includes/class-freemius.php:21791 -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." -msgstr "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." - -#: includes/class-freemius.php:21817 -msgid "Your free trial has expired. You can still continue using all our free features." -msgstr "Your free trial has expired. You can still continue using all our free features." - -#: includes/class-freemius.php:21819 -msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." - -#: includes/class-freemius.php:21934 -msgid "It looks like the license could not be activated." -msgstr "It looks like the license could not be activated." - -#: includes/class-freemius.php:21976 -msgid "Your license was successfully activated." -msgstr "Your license was successfully activated." - -#: includes/class-freemius.php:22002 -msgid "It looks like your site currently doesn't have an active license." -msgstr "It looks like your site currently doesn't have an active license." - -#: includes/class-freemius.php:22026 -msgid "It looks like the license deactivation failed." -msgstr "It looks like the license deactivation failed." - -#: includes/class-freemius.php:22055 -msgid "Your %s license was successfully deactivated." -msgstr "Your %s license was successfully deactivated." - -#: includes/class-freemius.php:22056 -msgid "Your license was successfully deactivated, you are back to the %s plan." -msgstr "Your license was successfully deactivated, you are back to the %s plan." - -#: includes/class-freemius.php:22059 -msgid "O.K" -msgstr "O.K" - -#: includes/class-freemius.php:22112 -msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." -msgstr "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." - -#: includes/class-freemius.php:22121 -msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." -msgstr "Your subscription was successfully cancelled. Your %s plan license will expire in %s." - -#: includes/class-freemius.php:22163 -msgid "You are already running the %s in a trial mode." -msgstr "You are already running the %s in a trial mode." - -#: includes/class-freemius.php:22174 -msgid "You already utilized a trial before." -msgstr "You already utilized a trial before." - -#: includes/class-freemius.php:22188 -msgid "Plan %s do not exist, therefore, can't start a trial." -msgstr "Plan %s do not exist, therefore, can't start a trial." - -#: includes/class-freemius.php:22199 -msgid "Plan %s does not support a trial period." -msgstr "Plan %s does not support a trial period." - -#: includes/class-freemius.php:22210 -msgid "None of the %s's plans supports a trial period." -msgstr "None of the %s's plans supports a trial period." - -#: includes/class-freemius.php:22259 -msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" -msgstr "It looks like you are not in trial mode anymore so there's nothing to cancel :)" - -#: includes/class-freemius.php:22295 -msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." -msgstr "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." - -#: includes/class-freemius.php:22314 -msgid "Your %s free trial was successfully cancelled." -msgstr "Your %s free trial was successfully cancelled." - -#: includes/class-freemius.php:22641 -msgid "Version %s was released." -msgstr "Version %s was released." - -#: includes/class-freemius.php:22641 -msgid "Please download %s." -msgstr "Please download %s." - -#: includes/class-freemius.php:22648 -msgid "the latest %s version here" -msgstr "the latest %s version here" - -#: includes/class-freemius.php:22653 -msgid "New" -msgstr "New" - -#: includes/class-freemius.php:22658 -msgid "Seems like you got the latest release." -msgstr "Seems like you got the latest release." - -#: includes/class-freemius.php:22659 -msgid "You are all good!" -msgstr "You are all good!" - -#: includes/class-freemius.php:23062 -msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." -msgstr "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." - -#: includes/class-freemius.php:23202 -msgid "Site successfully opted in." -msgstr "Site successfully opted in." - -#: includes/class-freemius.php:23203, includes/class-freemius.php:24252 -msgid "Awesome" -msgstr "Awesome" - -#: includes/class-freemius.php:23219 -msgid "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." -msgstr "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." - -#: includes/class-freemius.php:23220 -msgid "Thank you!" -msgstr "Thank you!" - -#: includes/class-freemius.php:23229 -msgid "Diagnostic data will no longer be sent from %s to %s." -msgstr "Diagnostic data will no longer be sent from %s to %s." - -#: includes/class-freemius.php:23384 -msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." -msgstr "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." - -#: includes/class-freemius.php:23386 -msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." -msgstr "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." - -#: includes/class-freemius.php:23393 -msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." -msgstr "Thanks for confirming the ownership change. An email was just sent to %s for final approval." - -#: includes/class-freemius.php:23398 -msgid "%s is the new owner of the account." -msgstr "%s is the new owner of the account." - -#: includes/class-freemius.php:23400 -msgctxt "as congratulations" -msgid "Congrats" -msgstr "Congrats" - -#: includes/class-freemius.php:23417 -msgid "Please provide your full name." -msgstr "Please provide your full name." - -#: includes/class-freemius.php:23422 -msgid "Your name was successfully updated." -msgstr "Your name was successfully updated." - -#: includes/class-freemius.php:23483 -msgid "You have successfully updated your %s." -msgstr "You have successfully updated your %s." - -#: includes/class-freemius.php:23542 -msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." -msgstr "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." - -#: includes/class-freemius.php:23545 -msgid "Click here" -msgstr "Click here" - -#: includes/class-freemius.php:23582, includes/class-freemius.php:23579 -msgid "Bundle" -msgstr "Bundle" - -#: includes/class-freemius.php:23662 -msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." -msgstr "Just letting you know that the add-ons information of %s is being pulled from an external server." - -#: includes/class-freemius.php:23663 -msgctxt "advance notice of something that will need attention." -msgid "Heads up" -msgstr "Heads up" - -#: includes/class-freemius.php:24292 -msgctxt "exclamation" -msgid "Hey" -msgstr "Hey" - -#: includes/class-freemius.php:24292 -msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." -msgstr "How do you like %s so far? Test all our %s premium features with a %d-day free trial." - -#: includes/class-freemius.php:24300 -msgid "No commitment for %s days - cancel anytime!" -msgstr "No commitment for %s days - cancel anytime!" - -#: includes/class-freemius.php:24301 -msgid "No credit card required" -msgstr "No credit card required" - -#: includes/class-freemius.php:24308, templates/forms/trial-start.php:53 -msgctxt "call to action" -msgid "Start free trial" -msgstr "Start free trial" - -#: includes/class-freemius.php:24385 -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!" -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!" - -#: includes/class-freemius.php:24394 -msgid "Learn more" -msgstr "Learn more" - -#: includes/class-freemius.php:24580, templates/account.php:573, -#: templates/account.php:725, templates/connect.php:223, -#: templates/connect.php:449, -#: includes/managers/class-fs-clone-manager.php:1295, -#: templates/forms/license-activation.php:27, -#: templates/account/partials/addon.php:326 -msgid "Activate License" -msgstr "Activate License" - -#: includes/class-freemius.php:24581, templates/account.php:667, -#: templates/account.php:724, templates/account/partials/addon.php:327, -#: templates/account/partials/site.php:273 -msgid "Change License" -msgstr "Change License" - -#: includes/class-freemius.php:24688, templates/account/partials/site.php:170 -msgid "Opt Out" -msgstr "Opt Out" - -#: includes/class-freemius.php:24690, includes/class-freemius.php:24696, -#: templates/account/partials/site.php:49, -#: templates/account/partials/site.php:170 -msgid "Opt In" -msgstr "Opt In" - -#: includes/class-freemius.php:24931 -msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -msgstr " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" - -#: includes/class-freemius.php:24941 -msgid "Activate %s features" -msgstr "Activate %s features" - -#: includes/class-freemius.php:24954 -msgid "Please follow these steps to complete the upgrade" -msgstr "Please follow these steps to complete the upgrade" - -#: includes/class-freemius.php:24958 -msgid "Download the latest %s version" -msgstr "Download the latest %s version" - -#: includes/class-freemius.php:24962 -msgid "Upload and activate the downloaded version" -msgstr "Upload and activate the downloaded version" - -#: includes/class-freemius.php:24964 -msgid "How to upload and activate?" -msgstr "How to upload and activate?" - -#: includes/class-freemius.php:25098 -msgid "%sClick here%s to choose the sites where you'd like to activate the license on." -msgstr "%sClick here%s to choose the sites where you'd like to activate the license on." - -#: includes/class-freemius.php:25267 -msgid "Auto installation only works for opted-in users." -msgstr "Auto installation only works for opted-in users." - -#: includes/class-freemius.php:25277, includes/class-freemius.php:25310, -#: includes/class-fs-plugin-updater.php:1284, -#: includes/class-fs-plugin-updater.php:1298 -msgid "Invalid module ID." -msgstr "Invalid module ID." - -#: includes/class-freemius.php:25286, includes/class-fs-plugin-updater.php:1320 -msgid "Premium version already active." -msgstr "Premium version already active." - -#: includes/class-freemius.php:25293 -msgid "You do not have a valid license to access the premium version." -msgstr "You do not have a valid license to access the premium version." - -#: includes/class-freemius.php:25300 -msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." -msgstr "Plugin is a \"Serviceware\" which means it does not have a premium code version." - -#: includes/class-freemius.php:25318, includes/class-fs-plugin-updater.php:1319 -msgid "Premium add-on version already installed." -msgstr "Premium add-on version already installed." - -#: includes/class-freemius.php:25672 -msgid "View paid features" -msgstr "View paid features" - -#: includes/class-freemius.php:25994 -msgid "Thank you so much for using %s and its add-ons!" -msgstr "Thank you so much for using %s and its add-ons!" - -#: includes/class-freemius.php:25995 -msgid "Thank you so much for using %s!" -msgstr "Thank you so much for using %s!" - -#: includes/class-freemius.php:26001 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." -msgstr "You've already opted-in to our usage-tracking, which helps us keep improving the %s." - -#: includes/class-freemius.php:26005 -msgid "Thank you so much for using our products!" -msgstr "Thank you so much for using our products!" - -#: includes/class-freemius.php:26006 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." -msgstr "You've already opted-in to our usage-tracking, which helps us keep improving them." - -#: includes/class-freemius.php:26025 -msgid "%s and its add-ons" -msgstr "%s and its add-ons" - -#: includes/class-freemius.php:26034 -msgid "Products" -msgstr "Products" - -#: includes/class-freemius.php:26041, templates/connect.php:324 -msgid "Yes" -msgstr "Yes" - -#: includes/class-freemius.php:26042, templates/connect.php:325 -msgid "send me security & feature updates, educational content and offers." -msgstr "send me security & feature updates, educational content and offers." - -#: includes/class-freemius.php:26043, templates/connect.php:330 -msgid "No" -msgstr "No" - -#: includes/class-freemius.php:26045, templates/connect.php:332 -msgid "do %sNOT%s send me security & feature updates, educational content and offers." -msgstr "do %sNOT%s send me security & feature updates, educational content and offers." - -#: includes/class-freemius.php:26055 -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 :-)" -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 :-)" - -#: includes/class-freemius.php:26057, templates/connect.php:339 -msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" -msgstr "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" - -#: includes/class-freemius.php:26339 -msgid "License key is empty." -msgstr "License key is empty." - -#: includes/class-fs-plugin-updater.php:206, -#: templates/forms/premium-versions-upgrade-handler.php:57 -msgid "Renew license" -msgstr "Renew license" - -#: includes/class-fs-plugin-updater.php:211, -#: templates/forms/premium-versions-upgrade-handler.php:58 -msgid "Buy license" -msgstr "Buy license" - -#: includes/class-fs-plugin-updater.php:331, -#: includes/class-fs-plugin-updater.php:364 -msgid "There is a %s of %s available." -msgstr "There is a %s of %s available." - -#: includes/class-fs-plugin-updater.php:333, -#: includes/class-fs-plugin-updater.php:369 -msgid "new Beta version" -msgstr "new Beta version" - -#: includes/class-fs-plugin-updater.php:334, -#: includes/class-fs-plugin-updater.php:370 -msgid "new version" -msgstr "new version" - -#: includes/class-fs-plugin-updater.php:393 -msgid "Important Upgrade Notice:" -msgstr "Important Upgrade Notice:" - -#: includes/class-fs-plugin-updater.php:1349 -msgid "Installing plugin: %s" -msgstr "Installing plugin: %s" - -#: includes/class-fs-plugin-updater.php:1390 -msgid "Unable to connect to the filesystem. Please confirm your credentials." -msgstr "Unable to connect to the filesystem. Please confirm your credentials." - -#: includes/class-fs-plugin-updater.php:1572 -msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." -msgstr "The remote plugin package does not contain a folder with the desired slug and renaming did not work." - -#: includes/fs-plugin-info-dialog.php:542 -msgid "Purchase More" -msgstr "Purchase More" - -#: includes/fs-plugin-info-dialog.php:543, -#: templates/account/partials/addon.php:390 -msgctxt "verb" -msgid "Purchase" -msgstr "Purchase" - -#: includes/fs-plugin-info-dialog.php:547 -msgid "Start my free %s" -msgstr "Start my free %s" - -#: includes/fs-plugin-info-dialog.php:745 -msgid "Install Free Version Update Now" -msgstr "Install Free Version Update Now" - -#: includes/fs-plugin-info-dialog.php:746, templates/account.php:656 -msgid "Install Update Now" -msgstr "Install Update Now" - -#: includes/fs-plugin-info-dialog.php:755 -msgid "Install Free Version Now" -msgstr "Install Free Version Now" - -#: includes/fs-plugin-info-dialog.php:756, templates/add-ons.php:323, -#: templates/auto-installation.php:111, -#: templates/account/partials/addon.php:370, -#: templates/account/partials/addon.php:423 -msgid "Install Now" -msgstr "Install Now" - -#: includes/fs-plugin-info-dialog.php:772 -msgctxt "as download latest version" -msgid "Download Latest Free Version" -msgstr "Download Latest Free Version" - -#: includes/fs-plugin-info-dialog.php:773, templates/account.php:114, -#: templates/add-ons.php:37, templates/account/partials/addon.php:30 -msgctxt "as download latest version" -msgid "Download Latest" -msgstr "Download Latest" - -#: includes/fs-plugin-info-dialog.php:788, templates/add-ons.php:329, -#: templates/account/partials/addon.php:361, -#: templates/account/partials/addon.php:417 -msgid "Activate this add-on" -msgstr "Activate this add-on" - -#: includes/fs-plugin-info-dialog.php:790, templates/connect.php:446 -msgid "Activate Free Version" -msgstr "Activate Free Version" - -#: includes/fs-plugin-info-dialog.php:791, templates/account.php:138, -#: templates/add-ons.php:330, templates/account/partials/addon.php:53 -msgid "Activate" -msgstr "Activate" - -#: includes/fs-plugin-info-dialog.php:1003 -msgctxt "Plugin installer section title" -msgid "Description" -msgstr "Description" - -#: includes/fs-plugin-info-dialog.php:1004 -msgctxt "Plugin installer section title" -msgid "Installation" -msgstr "Installation" - -#: includes/fs-plugin-info-dialog.php:1005 -msgctxt "Plugin installer section title" -msgid "FAQ" -msgstr "FAQ" - -#: includes/fs-plugin-info-dialog.php:1006, -#: templates/plugin-info/description.php:55 -msgid "Screenshots" -msgstr "Screenshots" - -#: includes/fs-plugin-info-dialog.php:1007 -msgctxt "Plugin installer section title" -msgid "Changelog" -msgstr "Changelog" - -#: includes/fs-plugin-info-dialog.php:1008 -msgctxt "Plugin installer section title" -msgid "Reviews" -msgstr "Reviews" - -#: includes/fs-plugin-info-dialog.php:1009 -msgctxt "Plugin installer section title" -msgid "Other Notes" -msgstr "Other Notes" - -#: includes/fs-plugin-info-dialog.php:1024 -msgctxt "Plugin installer section title" -msgid "Features & Pricing" -msgstr "Features & Pricing" - -#: includes/fs-plugin-info-dialog.php:1034 -msgid "Plugin Install" -msgstr "Plugin Install" - -#: includes/fs-plugin-info-dialog.php:1106 -msgctxt "e.g. Professional Plan" -msgid "%s Plan" -msgstr "%s Plan" - -#: includes/fs-plugin-info-dialog.php:1132 -msgctxt "e.g. the best product" -msgid "Best" -msgstr "Best" - -#: includes/fs-plugin-info-dialog.php:1138, -#: includes/fs-plugin-info-dialog.php:1158 -msgctxt "as every month" -msgid "Monthly" -msgstr "Monthly" - -#: includes/fs-plugin-info-dialog.php:1141 -msgctxt "as once a year" -msgid "Annual" -msgstr "Annual" - -#: includes/fs-plugin-info-dialog.php:1144 -msgid "Lifetime" -msgstr "Lifetime" - -#: includes/fs-plugin-info-dialog.php:1158, -#: includes/fs-plugin-info-dialog.php:1160, -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "e.g. billed monthly" -msgid "Billed %s" -msgstr "Billed %s" - -#: includes/fs-plugin-info-dialog.php:1160 -msgctxt "as once a year" -msgid "Annually" -msgstr "Annually" - -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "as once a year" -msgid "Once" -msgstr "Once" - -#: includes/fs-plugin-info-dialog.php:1168 -msgid "Single Site License" -msgstr "Single Site License" - -#: includes/fs-plugin-info-dialog.php:1170 -msgid "Unlimited Licenses" -msgstr "Unlimited Licenses" - -#: includes/fs-plugin-info-dialog.php:1172 -msgid "Up to %s Sites" -msgstr "Up to %s Sites" - -#: includes/fs-plugin-info-dialog.php:1182, -#: templates/plugin-info/features.php:82 -msgctxt "as monthly period" -msgid "mo" -msgstr "mo" - -#: includes/fs-plugin-info-dialog.php:1189, -#: templates/plugin-info/features.php:80 -msgctxt "as annual period" -msgid "year" -msgstr "year" - -#: includes/fs-plugin-info-dialog.php:1243 -msgctxt "noun" -msgid "Price" -msgstr "Price" - -#: includes/fs-plugin-info-dialog.php:1291 -msgid "Save %s" -msgstr "Save %s" - -#: includes/fs-plugin-info-dialog.php:1301 -msgid "No commitment for %s - cancel anytime" -msgstr "No commitment for %s - cancel anytime" - -#: includes/fs-plugin-info-dialog.php:1304 -msgid "After your free %s, pay as little as %s" -msgstr "After your free %s, pay as little as %s" - -#: includes/fs-plugin-info-dialog.php:1315 -msgid "Details" -msgstr "Details" - -#: includes/fs-plugin-info-dialog.php:1319, templates/account.php:125, -#: templates/debug.php:232, templates/debug.php:269, templates/debug.php:514, -#: templates/account/partials/addon.php:41 -msgctxt "product version" -msgid "Version" -msgstr "Version" - -#: includes/fs-plugin-info-dialog.php:1326 -msgctxt "as the plugin author" -msgid "Author" -msgstr "Author" - -#: includes/fs-plugin-info-dialog.php:1333 -msgid "Last Updated" -msgstr "Last Updated" - -#: includes/fs-plugin-info-dialog.php:1338, templates/account.php:544 -msgctxt "x-ago" -msgid "%s ago" -msgstr "%s ago" - -#: includes/fs-plugin-info-dialog.php:1347 -msgid "Requires WordPress Version" -msgstr "Requires WordPress Version" - -#: includes/fs-plugin-info-dialog.php:1350, -#: includes/fs-plugin-info-dialog.php:1370 -msgid "%s or higher" -msgstr "%s or higher" - -#: includes/fs-plugin-info-dialog.php:1358 -msgid "Compatible up to" -msgstr "Compatible up to" - -#: includes/fs-plugin-info-dialog.php:1366 -msgid "Requires PHP Version" -msgstr "Requires PHP Version" - -#: includes/fs-plugin-info-dialog.php:1379 -msgid "Downloaded" -msgstr "Downloaded" - -#: includes/fs-plugin-info-dialog.php:1383 -msgid "%s time" -msgstr "%s time" - -#: includes/fs-plugin-info-dialog.php:1385 -msgid "%s times" -msgstr "%s times" - -#: includes/fs-plugin-info-dialog.php:1396 -msgid "WordPress.org Plugin Page" -msgstr "WordPress.org Plugin Page" - -#: includes/fs-plugin-info-dialog.php:1405 -msgid "Plugin Homepage" -msgstr "Plugin Homepage" - -#: includes/fs-plugin-info-dialog.php:1414, -#: includes/fs-plugin-info-dialog.php:1498 -msgid "Donate to this plugin" -msgstr "Donate to this plugin" - -#: includes/fs-plugin-info-dialog.php:1421 -msgid "Average Rating" -msgstr "Average Rating" - -#: includes/fs-plugin-info-dialog.php:1428 -msgid "based on %s" -msgstr "based on %s" - -#: includes/fs-plugin-info-dialog.php:1432 -msgid "%s rating" -msgstr "%s rating" - -#: includes/fs-plugin-info-dialog.php:1434 -msgid "%s ratings" -msgstr "%s ratings" - -#: includes/fs-plugin-info-dialog.php:1449 -msgid "%s star" -msgstr "%s star" - -#: includes/fs-plugin-info-dialog.php:1451 -msgid "%s stars" -msgstr "%s stars" - -#: includes/fs-plugin-info-dialog.php:1463 -msgid "Click to see reviews that provided a rating of %s" -msgstr "Click to see reviews that provided a rating of %s" - -#: includes/fs-plugin-info-dialog.php:1476 -msgid "Contributors" -msgstr "Contributors" - -#: includes/fs-plugin-info-dialog.php:1517 -msgid "This plugin requires a newer version of PHP." -msgstr "This plugin requires a newer version of PHP." - -#: includes/fs-plugin-info-dialog.php:1526 -msgid "Click here to learn more about updating PHP." -msgstr "Click here to learn more about updating PHP." - -#: includes/fs-plugin-info-dialog.php:1540, -#: includes/fs-plugin-info-dialog.php:1542 -msgid "Warning" -msgstr "Warning" - -#: includes/fs-plugin-info-dialog.php:1540 -msgid "This plugin has not been tested with your current version of WordPress." -msgstr "This plugin has not been tested with your current version of WordPress." - -#: includes/fs-plugin-info-dialog.php:1542 -msgid "This plugin has not been marked as compatible with your version of WordPress." -msgstr "This plugin has not been marked as compatible with your version of WordPress." - -#: includes/fs-plugin-info-dialog.php:1561 -msgid "Paid add-on must be deployed to Freemius." -msgstr "Paid add-on must be deployed to Freemius." - -#: includes/fs-plugin-info-dialog.php:1562 -msgid "Add-on must be deployed to WordPress.org or Freemius." -msgstr "Add-on must be deployed to WordPress.org or Freemius." - -#: includes/fs-plugin-info-dialog.php:1583 -msgid "Newer Version (%s) Installed" -msgstr "Newer Version (%s) Installed" - -#: includes/fs-plugin-info-dialog.php:1584 -msgid "Newer Free Version (%s) Installed" -msgstr "Newer Free Version (%s) Installed" - -#: includes/fs-plugin-info-dialog.php:1591 -msgid "Latest Version Installed" -msgstr "Latest Version Installed" - -#: includes/fs-plugin-info-dialog.php:1592 -msgid "Latest Free Version Installed" -msgstr "Latest Free Version Installed" - -#: templates/account.php:115, templates/forms/subscription-cancellation.php:96, -#: templates/account/partials/addon.php:31, -#: templates/account/partials/site.php:313 -msgid "Downgrading your plan" -msgstr "Downgrading your plan" - -#: templates/account.php:116, templates/forms/subscription-cancellation.php:97, -#: templates/account/partials/addon.php:32, -#: templates/account/partials/site.php:314 -msgid "Cancelling the subscription" -msgstr "Cancelling the subscription" - -#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription' -#: templates/account.php:118, templates/forms/subscription-cancellation.php:99, -#: templates/account/partials/site.php:316 -msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." -msgstr "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." - -#: templates/account.php:119, -#: templates/forms/subscription-cancellation.php:100, -#: templates/account/partials/addon.php:35, -#: templates/account/partials/site.php:317 -msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." -msgstr "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." - -#: templates/account.php:120, -#: templates/forms/subscription-cancellation.php:106, -#: templates/account/partials/addon.php:36 -msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" -msgstr "Cancelling the trial will immediately block access to all premium features. Are you sure?" - -#: templates/account.php:121, -#: templates/forms/subscription-cancellation.php:101, -#: templates/account/partials/addon.php:37, -#: templates/account/partials/site.php:318 -msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." -msgstr "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." - -#: templates/account.php:122, -#: templates/forms/subscription-cancellation.php:102, -#: templates/account/partials/addon.php:38, -#: templates/account/partials/site.php:319 -msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." -msgstr "Once your license expires you can still use the Free version but you will NOT have access to the %s features." - -#. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php:124, -#: templates/account/partials/activate-license-button.php:31, -#: templates/account/partials/addon.php:40 -msgid "Activate %s Plan" -msgstr "Activate %s Plan" - -#. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php:127, templates/account/partials/addon.php:43, -#: templates/account/partials/site.php:293 -msgid "Auto renews in %s" -msgstr "Auto renews in %s" - -#. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php:129, templates/account/partials/addon.php:45, -#: templates/account/partials/site.php:295 -msgid "Expires in %s" -msgstr "Expires in %s" - -#: templates/account.php:130 -msgctxt "as synchronize license" -msgid "Sync License" -msgstr "Sync License" - -#: templates/account.php:131, templates/account/partials/addon.php:46 -msgid "Cancel Trial" -msgstr "Cancel Trial" - -#: templates/account.php:132, templates/account/partials/addon.php:47 -msgid "Change Plan" -msgstr "Change Plan" - -#: templates/account.php:133, templates/account/partials/addon.php:48 -msgctxt "verb" -msgid "Upgrade" -msgstr "Upgrade" - -#: templates/account.php:135, templates/account/partials/addon.php:50, -#: templates/account/partials/site.php:320 -msgctxt "verb" -msgid "Downgrade" -msgstr "Downgrade" - -#: templates/account.php:137, templates/add-ons.php:246, -#: templates/plugin-info/features.php:72, -#: templates/account/partials/addon.php:52, -#: templates/account/partials/site.php:33 -msgid "Free" -msgstr "Free" - -#: templates/account.php:139, templates/debug.php:408, -#: includes/customizer/class-fs-customizer-upsell-control.php:110, -#: templates/account/partials/addon.php:54 -msgctxt "as product pricing plan" -msgid "Plan" -msgstr "Plan" - -#: templates/account.php:140 -msgid "Bundle Plan" -msgstr "Bundle Plan" - -#: templates/account.php:272 -msgid "Free Trial" -msgstr "Free Trial" - -#: templates/account.php:283 -msgid "Account Details" -msgstr "Account Details" - -#: templates/account.php:290, templates/forms/data-debug-mode.php:33 -msgid "Start Debug" -msgstr "Start Debug" - -#: templates/account.php:292 -msgid "Stop Debug" -msgstr "Stop Debug" - -#: templates/account.php:299 -msgid "Billing & Invoices" -msgstr "Billing & Invoices" - -#: templates/account.php:322, templates/account/partials/addon.php:236, -#: templates/account/partials/deactivate-license-button.php:35 -msgid "Deactivate License" -msgstr "Deactivate License" - -#: templates/account.php:345, templates/forms/subscription-cancellation.php:125 -msgid "Are you sure you want to proceed?" -msgstr "Are you sure you want to proceed?" - -#: templates/account.php:345, templates/account/partials/addon.php:260 -msgid "Cancel Subscription" -msgstr "Cancel Subscription" - -#: templates/account.php:374, templates/account/partials/addon.php:345 -msgctxt "as synchronize" -msgid "Sync" -msgstr "Sync" - -#: templates/account.php:389, templates/debug.php:571 -msgid "Name" -msgstr "Name" - -#: templates/account.php:395, templates/debug.php:572 -msgid "Email" -msgstr "Email" - -#: templates/account.php:402, templates/debug.php:406, templates/debug.php:621 -msgid "User ID" -msgstr "User ID" - -#: templates/account.php:420, templates/account.php:738, -#: templates/account.php:789, templates/debug.php:267, templates/debug.php:400, -#: templates/debug.php:511, templates/debug.php:570, templates/debug.php:619, -#: templates/debug.php:698, templates/account/payments.php:35, -#: templates/debug/logger.php:21 -msgid "ID" -msgstr "ID" - -#: templates/account.php:427 -msgid "Site ID" -msgstr "Site ID" - -#: templates/account.php:430 -msgid "No ID" -msgstr "No ID" - -#: templates/account.php:435, templates/debug.php:274, templates/debug.php:409, -#: templates/debug.php:515, templates/debug.php:574, -#: templates/account/partials/site.php:228 -msgid "Public Key" -msgstr "Public Key" - -#: templates/account.php:441, templates/debug.php:410, templates/debug.php:516, -#: templates/debug.php:575, templates/account/partials/site.php:241 -msgid "Secret Key" -msgstr "Secret Key" - -#: templates/account.php:444 -msgctxt "as secret encryption key missing" -msgid "No Secret" -msgstr "No Secret" - -#: templates/account.php:471, templates/account/partials/site.php:120, -#: templates/account/partials/site.php:122 -msgid "Trial" -msgstr "Trial" - -#: templates/account.php:498, templates/debug.php:627, -#: templates/account/partials/site.php:262 -msgid "License Key" -msgstr "License Key" - -#: templates/account.php:529 -msgid "Join the Beta program" -msgstr "Join the Beta program" - -#: templates/account.php:535 -msgid "not verified" -msgstr "not verified" - -#: templates/account.php:544, templates/account/partials/addon.php:195 -msgid "Expired" -msgstr "Expired" - -#: templates/account.php:602 -msgid "Premium version" -msgstr "Premium version" - -#: templates/account.php:604 -msgid "Free version" -msgstr "Free version" - -#: templates/account.php:616 -msgid "Verify Email" -msgstr "Verify Email" - -#: templates/account.php:630 -msgid "Download %s Version" -msgstr "Download %s Version" - -#: templates/account.php:646 -msgid "Download Paid Version" -msgstr "Download Paid Version" - -#: templates/account.php:664, templates/account.php:927, -#: templates/account/partials/site.php:250, -#: templates/account/partials/site.php:272 -msgctxt "verb" -msgid "Show" -msgstr "Show" - -#: templates/account.php:680 -msgid "What is your %s?" -msgstr "What is your %s?" - -#: templates/account.php:688, templates/account/billing.php:21 -msgctxt "verb" -msgid "Edit" -msgstr "Edit" - -#: templates/account.php:693, templates/forms/user-change.php:27 -msgid "Change User" -msgstr "Change User" - -#: templates/account.php:717 -msgid "Sites" -msgstr "Sites" - -#: templates/account.php:730 -msgid "Search by address" -msgstr "Search by address" - -#: templates/account.php:739, templates/debug.php:403 -msgid "Address" -msgstr "Address" - -#: templates/account.php:740 -msgid "License" -msgstr "License" - -#: templates/account.php:741 -msgid "Plan" -msgstr "Plan" - -#: templates/account.php:792 -msgctxt "as software license" -msgid "License" -msgstr "License" - -#: templates/account.php:921 -msgctxt "verb" -msgid "Hide" -msgstr "Hide" - -#: templates/account.php:943, templates/forms/data-debug-mode.php:31, -#: templates/forms/deactivation/form.php:358, -#: templates/forms/deactivation/form.php:389 -msgid "Processing" -msgstr "Processing" - -#: templates/account.php:946 -msgid "Get updates for bleeding edge Beta versions of %s." -msgstr "Get updates for bleeding edge Beta versions of %s." - -#: templates/account.php:1004 -msgid "Cancelling %s" -msgstr "Cancelling %s" - -#: templates/account.php:1004, templates/account.php:1021, -#: templates/forms/subscription-cancellation.php:27, -#: templates/forms/deactivation/form.php:178 -msgid "trial" -msgstr "trial" - -#: templates/account.php:1019, templates/forms/deactivation/form.php:195 -msgid "Cancelling %s..." -msgstr "Cancelling %s..." - -#: templates/account.php:1022, -#: templates/forms/subscription-cancellation.php:28, -#: templates/forms/deactivation/form.php:179 -msgid "subscription" -msgstr "subscription" - -#: templates/account.php:1036 -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?" -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?" - -#: templates/account.php:1110 -msgid "Disabling white-label mode" -msgstr "Disabling white-label mode" - -#: templates/account.php:1111 -msgid "Enabling white-label mode" -msgstr "Enabling white-label mode" - -#: templates/add-ons.php:38 -msgid "View details" -msgstr "View details" - -#: templates/add-ons.php:48 -msgid "Add Ons for %s" -msgstr "Add Ons for %s" - -#: templates/add-ons.php:58 -msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." - -#: templates/add-ons.php:229 -msgctxt "active add-on" -msgid "Active" -msgstr "Active" - -#: templates/add-ons.php:230 -msgctxt "installed add-on" -msgid "Installed" -msgstr "Installed" - -#: templates/admin-notice.php:13, templates/forms/license-activation.php:243, -#: templates/forms/resend-key.php:80 -msgctxt "as close a window" -msgid "Dismiss" -msgstr "Dismiss" - -#: templates/auto-installation.php:45 -msgid "%s sec" -msgstr "%s sec" - -#: templates/auto-installation.php:83 -msgid "Automatic Installation" -msgstr "Automatic Installation" - -#: templates/auto-installation.php:93 -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." -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." - -#: templates/auto-installation.php:104 -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." -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." - -#: templates/auto-installation.php:109 -msgid "Cancel Installation" -msgstr "Cancel Installation" - -#: templates/checkout.php:180 -msgid "Checkout" -msgstr "Checkout" - -#: templates/checkout.php:180 -msgid "PCI compliant" -msgstr "PCI compliant" - -#. translators: %s: name (e.g. Hey John,) -#: templates/connect.php:121 -msgctxt "greeting" -msgid "Hey %s," -msgstr "Hey %s," - -#: templates/connect.php:189 -msgid "Never miss an important update" -msgstr "Never miss an important update" - -#: templates/connect.php:197 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Thank you for updating to %1$s v%2$s!" - -#: templates/connect.php:207 -msgid "Allow & Continue" -msgstr "Allow & Continue" - -#: templates/connect.php:211 -msgid "Re-send activation email" -msgstr "Re-send activation email" - -#: templates/connect.php:215 -msgid "Thanks %s!" -msgstr "Thanks %s!" - -#: templates/connect.php:227 -msgid "Welcome to %s! To get started, please enter your license key:" -msgstr "Welcome to %s! To get started, please enter your license key:" - -#: templates/connect.php:237 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." - -#: templates/connect.php:239 -msgid "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." - -#. translators: %s: module type (plugin, theme, or add-on) -#: templates/connect.php:245 -msgid "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." - -#: templates/connect.php:248 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." -msgstr "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." - -#: templates/connect.php:249 -msgid "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info." -msgstr "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info." - -#: templates/connect.php:252 -msgid "If you skip this, that's okay! %1$s will still work just fine." -msgstr "If you skip this, that's okay! %1$s will still work just fine." - -#: templates/connect.php:282 -msgid "We're excited to introduce the Freemius network-level integration." -msgstr "We're excited to introduce the Freemius network-level integration." - -#: templates/connect.php:285 -msgid "During the update process we detected %d site(s) that are still pending license activation." -msgstr "During the update process we detected %d site(s) that are still pending license activation." - -#: templates/connect.php:287 -msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." -msgstr "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." - -#: templates/connect.php:289 -msgid "%s's paid features" -msgstr "%s's paid features" - -#: templates/connect.php:294 -msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." -msgstr "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." - -#: templates/connect.php:296 -msgid "During the update process we detected %s site(s) in the network that are still pending your attention." -msgstr "During the update process we detected %s site(s) in the network that are still pending your attention." - -#: templates/connect.php:305, templates/forms/data-debug-mode.php:35, -#: templates/forms/license-activation.php:42 -msgid "License key" -msgstr "License key" - -#: templates/connect.php:308, templates/forms/license-activation.php:22 -msgid "Can't find your license key?" -msgstr "Can't find your license key?" - -#: templates/connect.php:371, templates/connect.php:695, -#: templates/forms/deactivation/retry-skip.php:20 -msgctxt "verb" -msgid "Skip" -msgstr "Skip" - -#: templates/connect.php:374 -msgid "Delegate to Site Admins" -msgstr "Delegate to Site Admins" - -#: templates/connect.php:374 -msgid "If you click it, this decision will be delegated to the sites administrators." -msgstr "If you click it, this decision will be delegated to the sites administrators." - -#: templates/connect.php:401 -msgid "License issues?" -msgstr "License issues?" - -#: templates/connect.php:425 -msgid "For delivery of security & feature updates, and license management, %s needs to" -msgstr "For delivery of security & feature updates, and license management, %s needs to" - -#: templates/connect.php:430 -msgid "This will allow %s to" -msgstr "This will allow %s to" - -#: templates/connect.php:445 -msgid "Don't have a license key?" -msgstr "Don't have a license key?" - -#: templates/connect.php:448 -msgid "Have a license key?" -msgstr "Have a license key?" - -#: templates/connect.php:456 -msgid "Freemius is our licensing and software updates engine" -msgstr "Freemius is our licensing and software updates engine" - -#: templates/connect.php:459 -msgid "Privacy Policy" -msgstr "Privacy Policy" - -#: templates/connect.php:461 -msgid "License Agreement" -msgstr "License Agreement" - -#: templates/connect.php:461 -msgid "Terms of Service" -msgstr "Terms of Service" - -#: templates/connect.php:881 -msgctxt "as in the process of sending an email" -msgid "Sending email" -msgstr "Sending email" - -#: templates/connect.php:882 -msgctxt "as activating plugin" -msgid "Activating" -msgstr "Activating" - -#: templates/contact.php:78 -msgid "Contact" -msgstr "Contact" - -#: templates/debug.php:17 -msgctxt "as turned off" -msgid "Off" -msgstr "Off" - -#: templates/debug.php:18 -msgctxt "as turned on" -msgid "On" -msgstr "On" - -#: templates/debug.php:24 -msgid "SDK" -msgstr "SDK" - -#: templates/debug.php:28 -msgctxt "as code debugging" -msgid "Debugging" -msgstr "Debugging" - -#: templates/debug.php:58, templates/debug.php:279, templates/debug.php:411, -#: templates/debug.php:576 -msgid "Actions" -msgstr "Actions" - -#: templates/debug.php:68 -msgid "Are you sure you want to delete all Freemius data?" -msgstr "Are you sure you want to delete all Freemius data?" - -#: templates/debug.php:68 -msgid "Delete All Accounts" -msgstr "Delete All Accounts" - -#: templates/debug.php:75 -msgid "Clear API Cache" -msgstr "Clear API Cache" - -#: templates/debug.php:83 -msgid "Clear Updates Transients" -msgstr "Clear Updates Transients" - -#: templates/debug.php:92 -msgid "Reset Deactivation Snoozing" -msgstr "Reset Deactivation Snoozing" - -#: templates/debug.php:100 -msgid "Sync Data From Server" -msgstr "Sync Data From Server" - -#: templates/debug.php:109 -msgid "Migrate Options to Network" -msgstr "Migrate Options to Network" - -#: templates/debug.php:114 -msgid "Load DB Option" -msgstr "Load DB Option" - -#: templates/debug.php:117 -msgid "Set DB Option" -msgstr "Set DB Option" - -#: templates/debug.php:211 -msgid "Key" -msgstr "Key" - -#: templates/debug.php:212 -msgid "Value" -msgstr "Value" - -#: templates/debug.php:228 -msgctxt "as software development kit versions" -msgid "SDK Versions" -msgstr "SDK Versions" - -#: templates/debug.php:233 -msgid "SDK Path" -msgstr "SDK Path" - -#: templates/debug.php:234, templates/debug.php:273 -msgid "Module Path" -msgstr "Module Path" - -#: templates/debug.php:235 -msgid "Is Active" -msgstr "Is Active" - -#: templates/debug.php:263, templates/debug/plugins-themes-sync.php:35 -msgid "Plugins" -msgstr "Plugins" - -#: templates/debug.php:263, templates/debug/plugins-themes-sync.php:56 -msgid "Themes" -msgstr "Themes" - -#: templates/debug.php:268, templates/debug.php:405, templates/debug.php:513, -#: templates/debug/scheduled-crons.php:80 -msgid "Slug" -msgstr "Slug" - -#: templates/debug.php:270, templates/debug.php:512 -msgid "Title" -msgstr "Title" - -#: templates/debug.php:271 -msgctxt "as application program interface" -msgid "API" -msgstr "API" - -#: templates/debug.php:272 -msgid "Freemius State" -msgstr "Freemius State" - -#: templates/debug.php:276 -msgid "Network Blog" -msgstr "Network Blog" - -#: templates/debug.php:277 -msgid "Network User" -msgstr "Network User" - -#: templates/debug.php:321 -msgctxt "as connection was successful" -msgid "Connected" -msgstr "Connected" - -#: templates/debug.php:322 -msgctxt "as connection blocked" -msgid "Blocked" -msgstr "Blocked" - -#: templates/debug.php:358 -msgid "Simulate Trial Promotion" -msgstr "Simulate Trial Promotion" - -#: templates/debug.php:370 -msgid "Simulate Network Upgrade" -msgstr "Simulate Network Upgrade" - -#: templates/debug.php:394 -msgid "%s Installs" -msgstr "%s Installs" - -#: templates/debug.php:396 -msgctxt "like websites" -msgid "Sites" -msgstr "Sites" - -#: templates/debug.php:402, templates/account/partials/site.php:156 -msgid "Blog ID" -msgstr "Blog ID" - -#: templates/debug.php:407 -msgid "License ID" -msgstr "License ID" - -#: templates/debug.php:493, templates/debug.php:599, -#: templates/account/partials/addon.php:440 -msgctxt "verb" -msgid "Delete" -msgstr "Delete" - -#: templates/debug.php:507 -msgid "Add Ons of module %s" -msgstr "Add Ons of module %s" - -#: templates/debug.php:566 -msgid "Users" -msgstr "Users" - -#: templates/debug.php:573 -msgid "Verified" -msgstr "Verified" - -#: templates/debug.php:615 -msgid "%s Licenses" -msgstr "%s Licenses" - -#: templates/debug.php:620 -msgid "Plugin ID" -msgstr "Plugin ID" - -#: templates/debug.php:622 -msgid "Plan ID" -msgstr "Plan ID" - -#: templates/debug.php:623 -msgid "Quota" -msgstr "Quota" - -#: templates/debug.php:624 -msgid "Activated" -msgstr "Activated" - -#: templates/debug.php:625 -msgid "Blocking" -msgstr "Blocking" - -#: templates/debug.php:626, templates/debug.php:697, -#: templates/debug/logger.php:22 -msgid "Type" -msgstr "Type" - -#: templates/debug.php:628 -msgctxt "as expiration date" -msgid "Expiration" -msgstr "Expiration" - -#: templates/debug.php:656 -msgid "Debug Log" -msgstr "Debug Log" - -#: templates/debug.php:660 -msgid "All Types" -msgstr "All Types" - -#: templates/debug.php:667 -msgid "All Requests" -msgstr "All Requests" - -#: templates/debug.php:672, templates/debug.php:701, -#: templates/debug/logger.php:25 -msgid "File" -msgstr "File" - -#: templates/debug.php:673, templates/debug.php:699, -#: templates/debug/logger.php:23 -msgid "Function" -msgstr "Function" - -#: templates/debug.php:674 -msgid "Process ID" -msgstr "Process ID" - -#: templates/debug.php:675 -msgid "Logger" -msgstr "Logger" - -#: templates/debug.php:676, templates/debug.php:700, -#: templates/debug/logger.php:24 -msgid "Message" -msgstr "Message" - -#: templates/debug.php:678 -msgid "Filter" -msgstr "Filter" - -#: templates/debug.php:686 -msgid "Download" -msgstr "Download" - -#: templates/debug.php:702, templates/debug/logger.php:26 -msgid "Timestamp" -msgstr "Timestamp" - -#: templates/secure-https-header.php:28 -msgid "Secure HTTPS %s page, running from an external domain" -msgstr "Secure HTTPS %s page, running from an external domain" - -#: includes/customizer/class-fs-customizer-support-section.php:55, -#: templates/plugin-info/features.php:43 -msgid "Support" -msgstr "Support" - -#: includes/debug/class-fs-debug-bar-panel.php:48, -#: templates/debug/api-calls.php:54, templates/debug/logger.php:62 -msgctxt "milliseconds" -msgid "ms" -msgstr "ms" - -#: includes/debug/debug-bar-start.php:41 -msgid "Freemius API" -msgstr "Freemius API" - -#: includes/debug/debug-bar-start.php:42 -msgid "Requests" -msgstr "Requests" - -#: includes/managers/class-fs-clone-manager.php:839 -msgid "Invalid clone resolution action." -msgstr "Invalid clone resolution action." - -#: includes/managers/class-fs-clone-manager.php:1024 -msgid "products" -msgstr "products" - -#: includes/managers/class-fs-clone-manager.php:1205 -msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." -msgstr "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." - -#: includes/managers/class-fs-clone-manager.php:1211 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" -msgstr "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" - -#: includes/managers/class-fs-clone-manager.php:1212 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" -msgstr "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" - -#: includes/managers/class-fs-clone-manager.php:1238 -msgid "the above-mentioned sites" -msgstr "the above-mentioned sites" - -#: includes/managers/class-fs-clone-manager.php:1251 -msgid "Is %2$s a duplicate of %4$s?" -msgstr "Is %2$s a duplicate of %4$s?" - -#: includes/managers/class-fs-clone-manager.php:1252 -msgid "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." -msgstr "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." - -#: includes/managers/class-fs-clone-manager.php:1257 -msgid "Long-Term Duplicate" -msgstr "Long-Term Duplicate" - -#: includes/managers/class-fs-clone-manager.php:1262 -msgid "Duplicate Website" -msgstr "Duplicate Website" - -#: includes/managers/class-fs-clone-manager.php:1268 -msgid "Is %2$s the new home of %4$s?" -msgstr "Is %2$s the new home of %4$s?" - -#: includes/managers/class-fs-clone-manager.php:1270 -msgid "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." -msgstr "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." - -#: includes/managers/class-fs-clone-manager.php:1271, -#: templates/forms/subscription-cancellation.php:52 -msgid "license" -msgstr "license" - -#: includes/managers/class-fs-clone-manager.php:1271 -msgid "data" -msgstr "data" - -#: includes/managers/class-fs-clone-manager.php:1277 -msgid "Migrate License" -msgstr "Migrate License" - -#: includes/managers/class-fs-clone-manager.php:1278 -msgid "Migrate" -msgstr "Migrate" - -#: includes/managers/class-fs-clone-manager.php:1284 -msgid "Is %2$s a new website?" -msgstr "Is %2$s a new website?" - -#: includes/managers/class-fs-clone-manager.php:1285 -msgid "Yes, %2$s is a new and different website that is separate from %4$s." -msgstr "Yes, %2$s is a new and different website that is separate from %4$s." - -#: includes/managers/class-fs-clone-manager.php:1287 -msgid "It requires license activation." -msgstr "It requires license activation." - -#: includes/managers/class-fs-clone-manager.php:1294 -msgid "New Website" -msgstr "New Website" - -#: includes/managers/class-fs-clone-manager.php:1319 -msgctxt "Clone resolution admin notice products list label" -msgid "Products" -msgstr "Products" - -#: includes/managers/class-fs-clone-manager.php:1408 -msgid "You marked this website, %s, as a temporary duplicate of %s." -msgstr "You marked this website, %s, as a temporary duplicate of %s." - -#: includes/managers/class-fs-clone-manager.php:1409 -msgid "You marked this website, %s, as a temporary duplicate of these sites" -msgstr "You marked this website, %s, as a temporary duplicate of these sites" - -#: includes/managers/class-fs-clone-manager.php:1423 -msgid "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." -msgstr "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." - -#: includes/managers/class-fs-clone-manager.php:1426 -msgctxt "\"The \", e.g.: \"The plugin\"" -msgid "The %s's" -msgstr "The %s's" - -#: includes/managers/class-fs-clone-manager.php:1429 -msgid "The following products'" -msgstr "The following products'" - -#: includes/managers/class-fs-clone-manager.php:1437 -msgid "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." -msgstr "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." - -#: includes/managers/class-fs-clone-manager.php:1439 -msgid "activate a license here" -msgstr "activate a license here" - -#: includes/managers/class-fs-permission-manager.php:182 -msgid "View Basic Website Info" -msgstr "View Basic Website Info" - -#: includes/managers/class-fs-permission-manager.php:183 -msgid "Homepage URL & title, WP & PHP versions, and site language" -msgstr "Homepage URL & title, WP & PHP versions, and site language" - -#: includes/managers/class-fs-permission-manager.php:186 -msgid "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." -msgstr "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." - -#: includes/managers/class-fs-permission-manager.php:198 -msgid "View Basic %s Info" -msgstr "View Basic %s Info" - -#: includes/managers/class-fs-permission-manager.php:201 -msgid "Current %s & SDK versions, and if active or uninstalled" -msgstr "Current %s & SDK versions, and if active or uninstalled" - -#: includes/managers/class-fs-permission-manager.php:252 -msgid "View License Essentials" -msgstr "View License Essentials" - -#: includes/managers/class-fs-permission-manager.php:253 -#: includes/managers/class-fs-permission-manager.php:263 -msgid "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." -msgstr "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." - -#: includes/managers/class-fs-permission-manager.php:275 -msgid "View %s State" -msgstr "View %s State" - -#: includes/managers/class-fs-permission-manager.php:278 -msgid "Is active, deactivated, or uninstalled" -msgstr "Is active, deactivated, or uninstalled" - -#: includes/managers/class-fs-permission-manager.php:281 -msgid "So you can reuse the license when the %s is no longer active." -msgstr "So you can reuse the license when the %s is no longer active." - -#: includes/managers/class-fs-permission-manager.php:317 -msgid "View Diagnostic Info" -msgstr "View Diagnostic Info" - -#: includes/managers/class-fs-permission-manager.php:317, -#: includes/managers/class-fs-permission-manager.php:354 -msgid "optional" -msgstr "optional" - -#: includes/managers/class-fs-permission-manager.php:318 -msgid "WordPress & PHP versions, site language & title" -msgstr "WordPress & PHP versions, site language & title" - -#: includes/managers/class-fs-permission-manager.php:321 -msgid "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." -msgstr "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." - -#: includes/managers/class-fs-permission-manager.php:354 -msgid "View Plugins & Themes List" -msgstr "View Plugins & Themes List" - -#: includes/managers/class-fs-permission-manager.php:355 -msgid "Names, slugs, versions, and if active or not" -msgstr "Names, slugs, versions, and if active or not" - -#: includes/managers/class-fs-permission-manager.php:356 -msgid "To ensure compatibility and avoid conflicts with your installed plugins and themes." -msgstr "To ensure compatibility and avoid conflicts with your installed plugins and themes." - -#: includes/managers/class-fs-permission-manager.php:373 -msgid "View Basic Profile Info" -msgstr "View Basic Profile Info" - -#: includes/managers/class-fs-permission-manager.php:374 -msgid "Your WordPress user's: first & last name, and email address" -msgstr "Your WordPress user's: first & last name, and email address" - -#: includes/managers/class-fs-permission-manager.php:375 -msgid "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." -msgstr "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." - -#: includes/managers/class-fs-permission-manager.php:396 -msgid "Newsletter" -msgstr "Newsletter" - -#: includes/managers/class-fs-permission-manager.php:397 -msgid "Updates, announcements, marketing, no spam" -msgstr "Updates, announcements, marketing, no spam" - -#: templates/account/billing.php:22 -msgctxt "verb" -msgid "Update" -msgstr "Update" - -#: templates/account/billing.php:33 -msgid "Billing" -msgstr "Billing" - -#: templates/account/billing.php:38, templates/account/billing.php:38 -msgid "Business name" -msgstr "Business name" - -#: templates/account/billing.php:39, templates/account/billing.php:39 -msgid "Tax / VAT ID" -msgstr "Tax / VAT ID" - -#: templates/account/billing.php:42, templates/account/billing.php:43, -#: templates/account/billing.php:43 -msgid "Address Line %d" -msgstr "Address Line %d" - -#: templates/account/billing.php:46, templates/account/billing.php:46 -msgid "City" -msgstr "City" - -#: templates/account/billing.php:46, templates/account/billing.php:46 -msgid "Town" -msgstr "Town" - -#: templates/account/billing.php:47, templates/account/billing.php:47 -msgid "ZIP / Postal Code" -msgstr "ZIP / Postal Code" - -#: templates/account/billing.php:302 -msgid "Country" -msgstr "Country" - -#: templates/account/billing.php:304 -msgid "Select Country" -msgstr "Select Country" - -#: templates/account/billing.php:311, templates/account/billing.php:312 -msgid "State" -msgstr "State" - -#: templates/account/billing.php:311, templates/account/billing.php:312 -msgid "Province" -msgstr "Province" - -#: templates/account/payments.php:29 -msgid "Payments" -msgstr "Payments" - -#: templates/account/payments.php:36 -msgid "Date" -msgstr "Date" - -#: templates/account/payments.php:37 -msgid "Amount" -msgstr "Amount" - -#: templates/account/payments.php:38, templates/account/payments.php:50 -msgid "Invoice" -msgstr "Invoice" - -#: templates/connect/permissions-group.php:31, templates/forms/optout.php:26, -#: templates/js/permissions.php:78 -msgctxt "verb" -msgid "Opt Out" -msgstr "Opt Out" - -#: templates/connect/permissions-group.php:32, templates/js/permissions.php:77 -msgctxt "verb" -msgid "Opt In" -msgstr "Opt In" - -#: templates/debug/api-calls.php:56 -msgid "API" -msgstr "API" - -#: templates/debug/api-calls.php:68 -msgid "Method" -msgstr "Method" - -#: templates/debug/api-calls.php:69 -msgid "Code" -msgstr "Code" - -#: templates/debug/api-calls.php:70 -msgid "Length" -msgstr "Length" - -#: templates/debug/api-calls.php:71 -msgctxt "as file/folder path" -msgid "Path" -msgstr "Path" - -#: templates/debug/api-calls.php:73 -msgid "Body" -msgstr "Body" - -#: templates/debug/api-calls.php:75 -msgid "Result" -msgstr "Result" - -#: templates/debug/api-calls.php:76 -msgid "Start" -msgstr "Start" - -#: templates/debug/api-calls.php:77 -msgid "End" -msgstr "End" - -#: templates/debug/logger.php:15 -msgid "Log" -msgstr "Log" - -#. translators: %s: time period (e.g. In "2 hours") -#: templates/debug/plugins-themes-sync.php:18, -#: templates/debug/scheduled-crons.php:91 -msgid "In %s" -msgstr "In %s" - -#. translators: %s: time period (e.g. "2 hours" ago) -#: templates/debug/plugins-themes-sync.php:20, -#: templates/debug/scheduled-crons.php:93 -msgid "%s ago" -msgstr "%s ago" - -#: templates/debug/plugins-themes-sync.php:21, -#: templates/debug/scheduled-crons.php:74 -msgctxt "seconds" -msgid "sec" -msgstr "sec" - -#: templates/debug/plugins-themes-sync.php:23 -msgid "Plugins & Themes Sync" -msgstr "Plugins & Themes Sync" - -#: templates/debug/plugins-themes-sync.php:28 -msgid "Total" -msgstr "Total" - -#: templates/debug/plugins-themes-sync.php:29, -#: templates/debug/scheduled-crons.php:84 -msgid "Last" -msgstr "Last" - -#: templates/debug/scheduled-crons.php:76 -msgid "Scheduled Crons" -msgstr "Scheduled Crons" - -#: templates/debug/scheduled-crons.php:81 -msgid "Module" -msgstr "Module" - -#: templates/debug/scheduled-crons.php:82 -msgid "Module Type" -msgstr "Module Type" - -#: templates/debug/scheduled-crons.php:83 -msgid "Cron Type" -msgstr "Cron Type" - -#: templates/debug/scheduled-crons.php:85 -msgid "Next" -msgstr "Next" - -#: templates/forms/affiliation.php:83 -msgid "Non-expiring" -msgstr "Non-expiring" - -#: templates/forms/affiliation.php:86 -msgid "Apply to become an affiliate" -msgstr "Apply to become an affiliate" - -#: templates/forms/affiliation.php:108 -msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." -msgstr "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." - -#: templates/forms/affiliation.php:123 -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." -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." - -#: templates/forms/affiliation.php:126 -msgid "Your affiliation account was temporarily suspended." -msgstr "Your affiliation account was temporarily suspended." - -#: templates/forms/affiliation.php:129 -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." -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." - -#: templates/forms/affiliation.php:132 -msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." -msgstr "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." - -#: templates/forms/affiliation.php:145 -msgid "Like the %s? Become our ambassador and earn cash ;-)" -msgstr "Like the %s? Become our ambassador and earn cash ;-)" - -#: templates/forms/affiliation.php:146 -msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" -msgstr "Refer new customers to our %s and earn %s commission on each successful sale you refer!" - -#: templates/forms/affiliation.php:149 -msgid "Program Summary" -msgstr "Program Summary" - -#: templates/forms/affiliation.php:151 -msgid "%s commission when a customer purchases a new license." -msgstr "%s commission when a customer purchases a new license." - -#: templates/forms/affiliation.php:153 -msgid "Get commission for automated subscription renewals." -msgstr "Get commission for automated subscription renewals." - -#: templates/forms/affiliation.php:156 -msgid "%s tracking cookie after the first visit to maximize earnings potential." -msgstr "%s tracking cookie after the first visit to maximize earnings potential." - -#: templates/forms/affiliation.php:159 -msgid "Unlimited commissions." -msgstr "Unlimited commissions." - -#: templates/forms/affiliation.php:161 -msgid "%s minimum payout amount." -msgstr "%s minimum payout amount." - -#: templates/forms/affiliation.php:162 -msgid "Payouts are in USD and processed monthly via PayPal." -msgstr "Payouts are in USD and processed monthly via PayPal." - -#: templates/forms/affiliation.php:163 -msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." -msgstr "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." - -#: templates/forms/affiliation.php:166 -msgid "Affiliate" -msgstr "Affiliate" - -#: templates/forms/affiliation.php:169, templates/forms/resend-key.php:23 -msgid "Email address" -msgstr "Email address" - -#: templates/forms/affiliation.php:173 -msgid "Full name" -msgstr "Full name" - -#: templates/forms/affiliation.php:177 -msgid "PayPal account email address" -msgstr "PayPal account email address" - -#: templates/forms/affiliation.php:181 -msgid "Where are you going to promote the %s?" -msgstr "Where are you going to promote the %s?" - -#: templates/forms/affiliation.php:183 -msgid "Enter the domain of your website or other websites from where you plan to promote the %s." -msgstr "Enter the domain of your website or other websites from where you plan to promote the %s." - -#: templates/forms/affiliation.php:185 -msgid "Add another domain" -msgstr "Add another domain" - -#: templates/forms/affiliation.php:189 -msgid "Extra Domains" -msgstr "Extra Domains" - -#: templates/forms/affiliation.php:190 -msgid "Extra domains where you will be marketing the product from." -msgstr "Extra domains where you will be marketing the product from." - -#: templates/forms/affiliation.php:200 -msgid "Promotion methods" -msgstr "Promotion methods" - -#: templates/forms/affiliation.php:203 -msgid "Social media (Facebook, Twitter, etc.)" -msgstr "Social media (Facebook, Twitter, etc.)" - -#: templates/forms/affiliation.php:207 -msgid "Mobile apps" -msgstr "Mobile apps" - -#: templates/forms/affiliation.php:211 -msgid "Website, email, and social media statistics (optional)" -msgstr "Website, email, and social media statistics (optional)" - -#: templates/forms/affiliation.php:214 -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)." -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)." - -#: templates/forms/affiliation.php:218 -msgid "How will you promote us?" -msgstr "How will you promote us?" - -#: templates/forms/affiliation.php:221 -msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." -msgstr "Please provide details on how you intend to promote %s (please be as specific as possible)." - -#: templates/forms/affiliation.php:233, templates/forms/resend-key.php:22, -#: templates/account/partials/disconnect-button.php:92 -msgid "Cancel" -msgstr "Cancel" - -#: templates/forms/affiliation.php:235 -msgid "Become an affiliate" -msgstr "Become an affiliate" - -#: templates/forms/data-debug-mode.php:25 -msgid "Please enter the license key to enable the debug mode:" -msgstr "Please enter the license key to enable the debug mode:" - -#: templates/forms/data-debug-mode.php:27 -msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" -msgstr "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" - -#: templates/forms/data-debug-mode.php:32 -msgid "Submit" -msgstr "Submit" - -#: templates/forms/data-debug-mode.php:36 -msgid "User key" -msgstr "User key" - -#: templates/forms/email-address-update.php:32 -msgid "Email address update" -msgstr "Email address update" - -#: templates/forms/email-address-update.php:33, -#: templates/forms/user-change.php:81 -msgctxt "close window" -msgid "Dismiss" -msgstr "Dismiss" - -#: templates/forms/email-address-update.php:38 -msgid "Enter the new email address" -msgstr "Enter the new email address" - -#: templates/forms/email-address-update.php:42 -msgid "Are both %s and %s your email addresses?" -msgstr "Are both %s and %s your email addresses?" - -#: templates/forms/email-address-update.php:50 -msgid "Yes - both addresses are mine" -msgstr "Yes - both addresses are mine" - -#: templates/forms/email-address-update.php:57 -msgid "%s is my client's email address" -msgstr "%s is my client's email address" - -#: templates/forms/email-address-update.php:66 -msgid "%s is my email address" -msgstr "%s is my email address" - -#: templates/forms/email-address-update.php:75 -msgid "Would you like to merge %s into %s?" -msgstr "Would you like to merge %s into %s?" - -#: templates/forms/email-address-update.php:84 -msgid "Yes - move all my data and assets from %s to %s" -msgstr "Yes - move all my data and assets from %s to %s" - -#: templates/forms/email-address-update.php:94 -msgid "No - only move this site's data to %s" -msgstr "No - only move this site's data to %s" - -#: templates/forms/email-address-update.php:292, -#: templates/forms/email-address-update.php:298 -msgid "Update" -msgstr "Update" - -#: templates/forms/license-activation.php:23 -msgid "Please enter the license key that you received in the email right after the purchase:" -msgstr "Please enter the license key that you received in the email right after the purchase:" - -#: templates/forms/license-activation.php:28 -msgid "Update License" -msgstr "Update License" - -#: templates/forms/license-activation.php:34 -msgid "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." -msgstr "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." - -#: templates/forms/license-activation.php:39 -msgid "Agree & Activate License" -msgstr "Agree & Activate License" - -#: templates/forms/license-activation.php:204 -msgid "Associate with the license owner's account." -msgstr "Associate with the license owner's account." - -#: templates/forms/optout.php:44 -msgid "Communication" -msgstr "Communication" - -#: templates/forms/optout.php:56 -msgid "Stay Connected" -msgstr "Stay Connected" - -#: templates/forms/optout.php:61 -msgid "Diagnostic Info" -msgstr "Diagnostic Info" - -#: templates/forms/optout.php:77 -msgid "Keep Sharing" -msgstr "Keep Sharing" - -#: templates/forms/optout.php:82 -msgid "Extensions" -msgstr "Extensions" - -#: templates/forms/optout.php:104 -msgid "Keep automatic updates" -msgstr "Keep automatic updates" - -#: templates/forms/premium-versions-upgrade-handler.php:40 -msgid "There is a new version of %s available." -msgstr "There is a new version of %s available." - -#: templates/forms/premium-versions-upgrade-handler.php:41 -msgid " %s to access version %s security & feature updates, and support." -msgstr " %s to access version %s security & feature updates, and support." - -#: templates/forms/premium-versions-upgrade-handler.php:54 -msgid "New Version Available" -msgstr "New Version Available" - -#: templates/forms/premium-versions-upgrade-handler.php:75 -msgctxt "close a window" -msgid "Dismiss" -msgstr "Dismiss" - -#: templates/forms/resend-key.php:21 -msgid "Send License Key" -msgstr "Send License Key" - -#: templates/forms/resend-key.php:58 -msgid "Enter the email address you've used during the purchase and we will resend you the license key." -msgstr "Enter the email address you've used during the purchase and we will resend you the license key." - -#: templates/forms/resend-key.php:59 -msgid "Enter the email address you've used for the upgrade below and we will resend you the license key." -msgstr "Enter the email address you've used for the upgrade below and we will resend you the license key." - -#: templates/forms/subscription-cancellation.php:37 -msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." -msgstr "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." - -#: templates/forms/subscription-cancellation.php:47 -msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" -msgstr "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" - -#: templates/forms/subscription-cancellation.php:57 -msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." -msgstr "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." - -#: templates/forms/subscription-cancellation.php:68 -msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." -msgstr "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." - -#: templates/forms/subscription-cancellation.php:103 -msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." -msgstr "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." - -#: templates/forms/subscription-cancellation.php:136 -msgid "Cancel %s?" -msgstr "Cancel %s?" - -#: templates/forms/subscription-cancellation.php:143 -msgid "Proceed" -msgstr "Proceed" - -#: templates/forms/subscription-cancellation.php:191, -#: templates/forms/deactivation/form.php:216 -msgid "Cancel %s & Proceed" -msgstr "Cancel %s & Proceed" - -#: templates/forms/trial-start.php:22 -msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." -msgstr "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." - -#: templates/forms/trial-start.php:28 -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." -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." - -#: templates/forms/user-change.php:26 -msgid "By changing the user, you agree to transfer the account ownership to:" -msgstr "By changing the user, you agree to transfer the account ownership to:" - -#: templates/forms/user-change.php:28 -msgid "I Agree - Change User" -msgstr "I Agree - Change User" - -#: templates/forms/user-change.php:30 -msgid "Enter email address" -msgstr "Enter email address" - -#: templates/js/permissions.php:337, templates/js/permissions.php:485 -msgid "Saved" -msgstr "Saved" - -#: templates/js/style-premium-theme.php:39 -msgid "Premium" -msgstr "Premium" - -#: templates/js/style-premium-theme.php:42 -msgid "Beta" -msgstr "Beta" - -#: templates/partials/network-activation.php:32 -msgid "Activate license on all sites in the network." -msgstr "Activate license on all sites in the network." - -#: templates/partials/network-activation.php:33 -msgid "Apply on all sites in the network." -msgstr "Apply on all sites in the network." - -#: templates/partials/network-activation.php:36 -msgid "Activate license on all pending sites." -msgstr "Activate license on all pending sites." - -#: templates/partials/network-activation.php:37 -msgid "Apply on all pending sites." -msgstr "Apply on all pending sites." - -#: templates/partials/network-activation.php:45, -#: templates/partials/network-activation.php:79 -msgid "allow" -msgstr "allow" - -#: templates/partials/network-activation.php:48, -#: templates/partials/network-activation.php:82 -msgid "delegate" -msgstr "delegate" - -#: templates/partials/network-activation.php:52, -#: templates/partials/network-activation.php:86 -msgid "skip" -msgstr "skip" - -#: templates/plugin-info/description.php:72, -#: templates/plugin-info/screenshots.php:31 -msgid "Click to view full-size screenshot %d" -msgstr "Click to view full-size screenshot %d" - -#: templates/plugin-info/features.php:56 -msgid "Unlimited Updates" -msgstr "Unlimited Updates" - -#: templates/account/partials/activate-license-button.php:46 -msgid "Localhost" -msgstr "Localhost" - -#: templates/account/partials/activate-license-button.php:50 -msgctxt "as 5 licenses left" -msgid "%s left" -msgstr "%s left" - -#: templates/account/partials/activate-license-button.php:51 -msgid "Last license" -msgstr "Last license" - -#. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription' -#: templates/account/partials/addon.php:34 -msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." - -#: templates/account/partials/addon.php:190 -msgid "Cancelled" -msgstr "Cancelled" - -#: templates/account/partials/addon.php:200 -msgid "No expiration" -msgstr "No expiration" - -#: templates/account/partials/disconnect-button.php:74 -msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." -msgstr "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." - -#: templates/account/partials/disconnect-button.php:78 -msgid "Disconnecting the website will permanently remove %s from your User Dashboard's account." -msgstr "Disconnecting the website will permanently remove %s from your User Dashboard's account." - -#: templates/account/partials/disconnect-button.php:84 -msgid "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." -msgstr "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." - -#: templates/account/partials/disconnect-button.php:88 -msgid "Are you sure you would like to proceed with the disconnection?" -msgstr "Are you sure you would like to proceed with the disconnection?" - -#: templates/account/partials/site.php:190 -msgid "Owner Name" -msgstr "Owner Name" - -#: templates/account/partials/site.php:202 -msgid "Owner Email" -msgstr "Owner Email" - -#: templates/account/partials/site.php:214 -msgid "Owner ID" -msgstr "Owner ID" - -#: templates/account/partials/site.php:288 -msgid "Subscription" -msgstr "Subscription" - -#: templates/forms/deactivation/contact.php:19 -msgid "Sorry for the inconvenience and we are here to help if you give us a chance." -msgstr "Sorry for the inconvenience and we are here to help if you give us a chance." - -#: templates/forms/deactivation/contact.php:22 -msgid "Contact Support" -msgstr "Contact Support" - -#: templates/forms/deactivation/form.php:65 -msgid "Anonymous feedback" -msgstr "Anonymous feedback" - -#: templates/forms/deactivation/form.php:71 -msgid "hour" -msgstr "hour" - -#: templates/forms/deactivation/form.php:76 -msgid "hours" -msgstr "hours" - -#: templates/forms/deactivation/form.php:81, -#: templates/forms/deactivation/form.php:86 -msgid "days" -msgstr "days" - -#: templates/forms/deactivation/form.php:106 -msgid "Deactivate" -msgstr "Deactivate" - -#: templates/forms/deactivation/form.php:108 -msgid "Activate %s" -msgstr "Activate %s" - -#: templates/forms/deactivation/form.php:111 -msgid "Submit & %s" -msgstr "Submit & %s" - -#: templates/forms/deactivation/form.php:130 -msgid "Quick Feedback" -msgstr "Quick Feedback" - -#: templates/forms/deactivation/form.php:134 -msgid "If you have a moment, please let us know why you are %s" -msgstr "If you have a moment, please let us know why you are %s" - -#: templates/forms/deactivation/form.php:134 -msgid "deactivating" -msgstr "deactivating" - -#: templates/forms/deactivation/form.php:134 -msgid "switching" -msgstr "switching" - -#: templates/forms/deactivation/form.php:448 -msgid "Kindly tell us the reason so we can improve." -msgstr "Kindly tell us the reason so we can improve." - -#: templates/forms/deactivation/form.php:478 -msgid "Snooze & %s" -msgstr "Snooze & %s" - -#: templates/forms/deactivation/form.php:638 -msgid "Yes - %s" -msgstr "Yes - %s" - -#: templates/forms/deactivation/form.php:645 -msgid "Skip & %s" -msgstr "Skip & %s" - -#: templates/forms/deactivation/retry-skip.php:21 -msgid "Click here to use the plugin anonymously" -msgstr "Click here to use the plugin anonymously" - -#: templates/forms/deactivation/retry-skip.php:23 -msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in." -msgstr "You might have missed it, but you don't have to share any data and can just %s the opt-in." diff --git a/languages/freemius-es_ES.mo b/languages/freemius-es_ES.mo index 445e10db060d2e214ce97f9f2289029792da21ea..44b97afd8681f50c8436cefebbfb2089a03ffafd 100644 GIT binary patch delta 10606 zcmZ|U2Y3}#`p5B^Bm@G15LyWJh89X72~`1+fT2lmN;8CTNdjr+-cY1mK&7Zi8A321 zgc4R1X@ejrii&`MfWpeks*CLp0)i-tiokw<%1D zn&7|}RYD34{^=BC7;ch*}t*2vG+Vij%?m$i8cO1a@M#W}^5lq7vtcR&sA7`UFF2M+V$*sSR<)|M( zt?&b^jDN*y_h)y+lI| z+=rF$Bh-q|V^zF}A^3;eZt}Dy5Qf@{I;i^_qwZ^o6|gl{#4f0D`nv6pVKViJ3B+GB z-cG~4P@@JsgUj$DmdELdPWwF9VpK@CqC)xxYM}SAGM+|7<{KP=3WpXp5_LTjHNhtW zZebp3CCe}ZSE2Uq71RU{A_;4pMEW#-MIE!|Z49F$4n(c|S=0baP!U;&>TffupS`Gw zA4DZ-;3EpU@d9ck*H9h(hI-%*R>82ghA|cE;BqWPb<~`U)N>tB?MWDgpI}wIit0az z!(I!^qaPb1$2(vYQ>aeEF4v=|NSsG?@SWR!80ZyNZ0Q(j8XUs zPQbGF8%7z-L2Z#Aqj4?<>-?{#pn*zo1nxp*YbD~U2lG(xgUP6stUz_N#&rvJqP`Cm zxnEGZbPMlb5Es>Mc6KHlii%vM)cLPRLCMhqCt^ppUW!D|*o6x5B~)Z?AiHARM$*7Y ze85@2c$`IjDh|V&s3h#y#mS{iRHWx(EnJC#W)y4+E%9?yBq}`Uyvyrj6m=iQ;A^|MKg{V_ezq?`Zjxh$|0Gy2hJcV>^41CC$$THLf!jrkG0ppUL zJ@1CW)Hfo18ZTiSUPkR<%^uF))pc!-b!qQ_TG=pEQs!VNPD4$2Hb&wC)b(Q2!b<}b zbUt^u4ey{P^dV}mzeY})aRrqlF+H7?C!i+U5ks*Hmc?YZ-Ve3MLs0|ey6w~5`drt* z^AxmK#i$kTLS^S(*F&g*PNODv7Gv;xtb-A~oE62Pp6`G`*cr>-hmy9ZM-F#Kou;oWyo`2Ag8}hn)f2U=8Y>uq6&gotD`+43{JCDB}_y!I-{I zQeHwWpiV#jGkLY+DC)2G=jbattC6bO!#1c~=!jw12es!zQ4>kS=J*^oz&)s}KZh+a ze4umvK5Rlg4H?6D1{JYSQCs+>Tfd2cRy5qDpwP4$iQ9e=b^mp&jDMiEq~c)Wua0XEcJ{D2>KG;9BiI{t<2qF6x1k0) zgv#!dsK{MH<;->W`p>9|-$CU@=n!XO;aGus9gM`LLx{g-){zG7c{2KNI%eTDR47Le zbt3R2Y6Z(s6Wf5A@DA6bSe5$Ms0rLeCFxz%L~4^L+S(XYuC)kI;5BU|pa#l8^2I2` z3HTN2!QR82nGbLsg_=k@>iSgFLS~^NvJkb>B^ZvYQ4`vXn)nW^j)Aw`8~%#w@GC6D zpKt{(WFO+u^Qe;(15vq>hZ?ZhwG>BF-;UL=;t1yz-T>=SZ-?D+C~Dx9NR9=JtrVW7 z;RKG?4I`c7wHLLr3#b)*k6PL9s18leP%L_|ANInYxB?a8FHp~4#1g#f))zBNg}xBW z==>ME4JDY&g;K17mr+S_2Ww#EF-{J|q9)Sbtv`UxsrN;Nc#2yO;A7NZMkRR|6BzYl}k&pKE5-K_~%mil7=ogD9s7=67*323u?e4$hI5TkdtKeAxs=?V=d|h z_M>Zzmw`;a^QZ-kn_w9C;}X>KN3jhyPUm}oBhraKV;d`I7>K{&Fzl1z{1`34V(N|gQ;sxx9l_xqsRv*R2)MsEbT#t&taa4cT-S(c7oJc&5b!dMwKtWqjf}QX+)E-?& zMWkt#lN;$+i+VOHbPG^h@)ByGw@_R1HP*)4uF=`f7Pdo0atJoZC$IwsN+~G2KS%BL z4OFsK$#Fu}0yV)D)PR1B!e>x#y7j1)>_&Bb8WZsjY9a~jukP!M4RI{0{V60T0!9gi z2pV=`1$-B^!V{>8T}4fxOrCQZYN3)W7W-oY*24g50c%i^dJ`k?ELO$~uD_zLhdr)| zvj2@Jl%-)fYNn5&9?VBQI2ScB3&U|Omd7n_eGh6v2T_sv5G&%hsONq{CE;D{j`!y~ zFQAz?i1CfN6g1!&)BxXL7+y!s^cL#ZE zaj1TMs0hzS<!MK|H$xpm{jSi2Q!oMZFdo;TPS;1M@h$}@D7$|`bx>}$Q*VS?+5M=MC1Vl}Mh(0i zl^bhO9qmKi{~or%lUNsn=Q#bvpeEYht@l9E$_R|2aBth{iuWRcI%b1Wk(h{Dc>#vv9Mq{;fQoDpYD>1D`a6UV<5_H>^WTt^Rs;s1 zUO10p5$2*gD!ag0aShiv)K+yv9lOU+$14Lhz+}|c%tsD}vEFU3yUrfNjiW=ul z3~1mp?hWTq^$S=YzejD!ub6@1&+=Zt0@TDBKj(DZ7WYt3!iM-8YD?=bawgIq8&H1` z`PUfd)_+(;{53$;=bh|~Ma{eeD#^N{l4>}5(C^j@Q4_TBb9@W;;_AiD@B86Pm?ZU6 zsQ!B_b$+yt#QM}{V6g6AO8h+(N@#c#-$89jtz}Lmicw#;64b=@V>lkdN_ZOE<5#FH zh_;+0jKNMOpKrH5ez}t~lQ5F|=A-&~AwWSLZ9*l>Yp8RYP-qwrVOLcBY19M?u?Mcf zZul)~MNL;YKQen^0rkVEi9bLlD;YwBmqJdWDx z^QauShBX5e%ymvfEz};xp*k9X+T)R^t#}c`a3==in;41*P?0(8dJ=0=KZ_Od2enPf*aFZbc=>=ctul#ZWB& zs`IgkMD2AmRBp6JC210B@B5;XbU11ulic>XsQaHo^}hX9T9jrketL>;4)dyG?|AE?y+itz)4re0mQ4{Tsili4SU=}LZreZ&x z|Ctmt&@mi{KVl(v-|0N~DJlofV?Dfq%J! zi!e}$!VU^r(E(hGpWsHEyvuo|)_%=d$v{k`Js%a~jaU)4VGi!csu;K1u`AZ6J`|JC zkCC_=8{v`N#Gmhl@jVTbaQ+_Wc>RP5QKQ$L6*NQTNPE<~yE8V$5!e^!Vs|`=%89Cb zofX%`cd0iw~Dh9D~s~5!Jy{ zxC$5HQf#*0`Rcua3DkSN<-E|QVQ=b(u`5Qt?JOuTm_if{<4}9^1nR-(uomve+W0rT zmwb3H`3^YW@eUZo^;A@njmPGgg@dsOl@pgR7Vn_?Yw`}CdY%7n6uQx{3pJ6OsACoJ zu9GA!F`fEg9EST)9anzONzOEEO?@Q}GdV?=NIm9#=i@U3m7LFD2mB3_F!7N7|3ZLY zrxeE1@FiwqkHh@cIc~?zSnY`O2a2~)E2#8=(?NS|N_{FSGV4&s_yES>1ss84N1ceK zp-$U!ERP#dzax#U6zbz^s1E*$VfY7Xk3)|+^$6E!RB|=MU~KBP$GNu03bc21>wR5^ zqmp|pYMcTLl%=rRyZ+Z4AOwSO!mHdHfXh+&8HEuV5rzM`d~NacAO@Sb=&i z)WA(p{d7V-pLCq~Yo)zu2*)9)5RXN*FK}Ik;nY{79^8!SxWlbSf9PC~K}D<;Dl#2V z6YPX~t}CkFUT*u~4~f4Xc!Y*f9E)0UIx1@?qV{YSR>Vc9`&PNGM?JsUbtme4zk!;- zaeNq0;bU0mg!BA#)b+Um3QC@Ns1=r?X1Eiz1#e;%{1kO;uAnAR?xZtt1gc&WwZi(S zkjG+0Y~!{kx%NigKM1vzH6C>fY3>aVp_`|zG=PCcY@uaU)3OM$$(mR z@WA;&*6P8Zm^s$c0X40XAuFsELm#xR5A9-i95%$XKOa8MwC0Q`v<8j5Voe@(#@adh z8T-32UzygGlrf=6Y5vT~Ui-+{ib2-T<7QYJ(+ce|>=0)rKSqH551M{rbbAGfwnp;>YGu!L)r)K9FLo@wZUTf!58|_o`>X@U( zd;GZ`@6^0}ug~Z4W~KTWGS1`8@n;nHGE;roah}|Kk3T=NAUiL^)70zB^QL8{W@SzD zWaeTNmdavU@Ik#I(9U+t9xB>~zyAT-4C| zY*DN|c<}|(dSmGbyKq^rAUnEnT!UtG4ZRxoP4)R(4$V)^@v;8g{EnU>Q&N5O zlIrQ1k?YHd^R!NA-PYQ)p>bJX$N2cvygcip4K=Izy{Xy0_{96#wrQ6b@Aai54~cJP zMQv;sT;QKz4cOQ)qHk(WdO>Qsx1;CYRqOGMORRaNQGrHG*w?a4y4RoL_fGYvWaeaL z=6E~(ck@*DLdV3o)@lE`nlj;kKl$ft|L@~^I`BUR{!`EY_4J>v{cFB|YW%MUoF%5@ zu|GNfKd&|FKNkC+H&|;+qpXtBGFDjWOzXwcx2!Fj!mQPsnp=Z5)w54-I$&DkH;=IU zZmwn8;jg5d*2`PE*;QVhZCV$$wYOj1zPyZ;zT0b8*t6KQ*1f*U-o3Y5kbU=!s;1@H zpKBl9KO!i|>$6_nRo^~;;AW7OcCeuxe$X_n2Jf%6Vh+u=_8+=$=i#NM{pFE^rgi?< zT6^E|x~5g(#3gIY$whY2sg^<3w;wMHPxkrWTjxpDG0wIBINd$SO8KPFialFu|8TZZ zP((j(jxTkh*XZ}&W`FMZTx-BNpLOkA9qaht>svSfKFMD5SyYg{W?zL27#s^+>q1FM-=&7#pY%q>M#qfB4X;wbZQ8BUCmW_|ZV Vy`qAeW>is3b+cO0zMAHye*%KCSB?Mx delta 28461 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, 2017-2019 -# David Perez , 2020-2021 -# Leo Fajardo , 2022 +# Swashata Ghosh, 2024 +# msgid "" msgstr "" -"Project-Id-Version: WordPress SDK\n" +"Project-Id-Version: freemius\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2023-04-19 18:31+0530\n" -"Last-Translator: Leo Fajardo , 2022\n" -"Language-Team: Spanish (Spain) (http://www.transifex.com/freemius/wordpress-sdk/language/es_ES/)\n" -"Language: es_ES\n" +"POT-Creation-Date: 2024-01-30 15:07+0000\n" +"Last-Translator: Swashata Ghosh, 2024\n" +"Language-Team: Spanish (Spain) " +"(https://app.transifex.com/freemius/teams/184351/es_ES/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? " +"1 : 2;\n" "X-Poedit-Basepath: ..\n" -"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" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 3.2.2\n" +"X-Poedit-KeywordsList: " +"get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_" +"text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_" +"inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$" +"fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_" +"inline;$this->_parent->get_text_x_inline:1,2c;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;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" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php1744, templates/account.php:947 -msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." -msgstr "Una actualización a una versión Beta reemplazará tu versión instalada de %s con la última versión Beta - úsalo con precaución, y no en sitios de producción. Te hemos avisado." +#: includes/class-freemius.php1781, templates/account.php:943 +msgid "" +"An update to a Beta version will replace your installed version of %s with " +"the latest Beta release - use with caution, and not on production sites. " +"You have been warned." +msgstr "" +"Una actualización a una versión Beta reemplazará tu versión instalada de %s " +"con la última versión Beta - úsalo con precaución, y no en sitios de " +"producción. Te hemos avisado." -#: includes/class-freemius.php:1751 +#: includes/class-freemius.php:1788 msgid "Would you like to proceed with the update?" msgstr "¿Deseas continuar con la actualización?" -#: includes/class-freemius.php:1976 -msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." -msgstr "Freemius SDK no pudo encontrar el archivo principal del plugin. Por favor contacta a sdk@freemius.com con el error actual." +#: includes/class-freemius.php:2013 +msgid "" +"Freemius SDK couldn't find the plugin's main file. Please contact " +"sdk@freemius.com with the current error." +msgstr "" +"Freemius SDK no pudo encontrar el archivo principal del plugin. Por favor " +"contacta a sdk@freemius.com con el error actual." -#: includes/class-freemius.php1978, includes/fs-plugin-info-dialog.php:1517 +#: includes/class-freemius.php2015, includes/fs-plugin-info-dialog.php:1513 msgid "Error" msgstr "Error" -#: includes/class-freemius.php:2424 +#: includes/class-freemius.php:2461 msgid "I found a better %s" msgstr "He encontrado un %s mejor" -#: includes/class-freemius.php:2426 +#: includes/class-freemius.php:2463 msgid "What's the %s's name?" msgstr "¿Cuál es el nombre de %s?" -#: includes/class-freemius.php:2432 +#: includes/class-freemius.php:2469 msgid "It's a temporary %s - I'm troubleshooting an issue" -msgstr "It's a temporary %s - I'm troubleshooting an issue" +msgstr "" -#: includes/class-freemius.php:2434 +#: includes/class-freemius.php:2471 msgid "Deactivation" msgstr "Desactivación" -#: includes/class-freemius.php:2435 +#: includes/class-freemius.php:2472 msgid "Theme Switch" msgstr "Cambiar tema" -#: includes/class-freemius.php2444, templates/forms/resend-key.php24, +#: includes/class-freemius.php2481, templates/forms/resend-key.php24, #: templates/forms/user-change.php:29 msgid "Other" msgstr "Otra" -#: includes/class-freemius.php:2452 +#: includes/class-freemius.php:2489 msgid "I no longer need the %s" msgstr "Ya no necesito el %s" -#: includes/class-freemius.php:2459 +#: includes/class-freemius.php:2496 msgid "I only needed the %s for a short period" msgstr "Sólo necesitaba la %s por un corto período" -#: includes/class-freemius.php:2465 +#: includes/class-freemius.php:2502 msgid "The %s broke my site" msgstr "%s ha roto mi sitio" -#: includes/class-freemius.php:2472 +#: includes/class-freemius.php:2509 msgid "The %s suddenly stopped working" msgstr "%s de repente ha dejado de funcionar" -#: includes/class-freemius.php:2482 +#: includes/class-freemius.php:2519 msgid "I can't pay for it anymore" msgstr "No puedo pagarlo durante más tiempo" -#: includes/class-freemius.php:2484 +#: includes/class-freemius.php:2521 msgid "What price would you feel comfortable paying?" msgstr "¿Con qué precio te sentirías cómodo pagando?" -#: includes/class-freemius.php:2490 +#: includes/class-freemius.php:2527 msgid "I don't like to share my information with you" msgstr "No me gusta compartir mi información contigo" -#: includes/class-freemius.php:2511 +#: includes/class-freemius.php:2548 msgid "The %s didn't work" msgstr "El %s no funcionaba" -#: includes/class-freemius.php:2521 +#: includes/class-freemius.php:2558 msgid "I couldn't understand how to make it work" msgstr "No entiendo cómo hacerlo funcionar" -#: includes/class-freemius.php:2529 +#: includes/class-freemius.php:2566 msgid "The %s is great, but I need specific feature that you don't support" msgstr "%s es genial, pero necesito una característica que no soportáis" -#: includes/class-freemius.php:2531 +#: includes/class-freemius.php:2568 msgid "What feature?" msgstr "¿Qué característica?" -#: includes/class-freemius.php:2535 +#: includes/class-freemius.php:2572 msgid "The %s is not working" msgstr "El %s no funciona" -#: includes/class-freemius.php:2537 +#: includes/class-freemius.php:2574 msgid "Kindly share what didn't work so we can fix it for future users..." -msgstr "Por favor, comparte lo que no funcionó para que podamos arreglarlo para los futuros usuarios..." +msgstr "" +"Por favor, comparte lo que no funcionó para que podamos arreglarlo para los " +"futuros usuarios..." -#: includes/class-freemius.php:2541 +#: includes/class-freemius.php:2578 msgid "It's not what I was looking for" msgstr "No es lo que estaba buscando" -#: includes/class-freemius.php:2543 +#: includes/class-freemius.php:2580 msgid "What you've been looking for?" msgstr "¿Que has estado buscando?" -#: includes/class-freemius.php:2547 +#: includes/class-freemius.php:2584 msgid "The %s didn't work as expected" msgstr "El %s no funciona como esperaba" -#: includes/class-freemius.php:2549 +#: includes/class-freemius.php:2586 msgid "What did you expect?" msgstr "¿Qué esperas?" -#: includes/class-freemius.php3637, templates/debug.php:24 +#: includes/class-freemius.php3685, templates/debug.php:24 msgid "Freemius Debug" msgstr "Debug Freemius" -#: includes/class-freemius.php:4444 -msgid "I don't know what is cURL or how to install it, help me!" -msgstr "No sé qué es cURL o cómo instalarlo, ¡ayúdame!" - -#: includes/class-freemius.php:4446 -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." -msgstr "Nos aseguraremos de ponernos en contacto con tu empresa de alojamiento web y resolver el problema. Recibirás un correo electrónico de seguimiento a %s tan pronto tengamos una actualización." - -#: includes/class-freemius.php:4453 -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." -msgstr "Genial, por favor instala cURL y habilítalo en el archivo php.ini. Además, busca la directiva 'disable_functions' en el archivo php.ini y quita cualquier método que comienza con 'curl_'. Para asegurarte de que se activó con éxito, utiliza 'phpinfo()'. Una vez activado, desactiva el %s y reactívalo de nuevo." - -#: includes/class-freemius.php:4558 -msgid "Yes - do your thing" -msgstr "Vamos, adelante" - -#: includes/class-freemius.php:4563 -msgid "No - just deactivate" -msgstr "No - sólo desactivar" - -#: includes/class-freemius.php4608, includes/class-freemius.php5139, -#: includes/class-freemius.php6334, includes/class-freemius.php13998, -#: includes/class-freemius.php14747, includes/class-freemius.php18513, -#: includes/class-freemius.php18618, includes/class-freemius.php18795, -#: includes/class-freemius.php21078, includes/class-freemius.php21456, -#: includes/class-freemius.php21470, includes/class-freemius.php22158, -#: includes/class-freemius.php23174, includes/class-freemius.php23304, -#: includes/class-freemius.php23434, templates/add-ons.php:57 -msgctxt "exclamation" -msgid "Oops" -msgstr "Oops" - -#: includes/class-freemius.php:4683 -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." -msgstr "¡Gracias por darnos la oportunidad de arreglarlo! Acabamos de enviar un mensaje a nuestro personal técnico. Nos pondremos en contacto contigo tan pronto como tengamos una actualización de %s. Apreciamos tu paciencia." - -#: includes/class-freemius.php:5108 +#: includes/class-freemius.php:4828 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have purchased a %s license." msgstr "Has comprado una licencia %s." -#: includes/class-freemius.php:5112 -msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." -msgstr " El %s de %s enlace de descarga de %s, la clave de licencia y las instrucciones de instalación se han enviado a %s. Si no encuentras el correo electrónico después de 5 minutos, comprueba tu bandeja de correo no deseado." - -#: includes/class-freemius.php5122, includes/class-freemius.php6031, -#: includes/class-freemius.php17889, includes/class-freemius.php17900, -#: includes/class-freemius.php21347, includes/class-freemius.php21738, -#: includes/class-freemius.php21807, includes/class-freemius.php:21979 -msgctxt "interjection expressing joy or exuberance" -msgid "Yee-haw" -msgstr "Vaya" - -#: includes/class-freemius.php:5136 -msgctxt "addonX cannot run without pluginY" -msgid "%s cannot run without %s." -msgstr "%s no se puede ejecutar sin %s." +#: includes/class-freemius.php:4832 +msgid "" +" The %s's %sdownload link%s, license key, and installation instructions " +"have been sent to %s. If you can't find the email after 5 min, please check " +"your spam box." +msgstr "" +" El %s de %s enlace de descarga de %s, la clave de licencia y las " +"instrucciones de instalación se han enviado a %s. Si no encuentras el " +"correo electrónico después de 5 minutos, comprueba tu bandeja de correo no " +"deseado." -#: includes/class-freemius.php:5137 -msgctxt "addonX cannot run..." -msgid "%s cannot run without the plugin." -msgstr "%s no se puede ejecutar sin el plugin." +#: includes/class-freemius.php:5138 +msgid "" +"There was an unexpected API error while processing your request. Please try " +"again in a few minutes and if it still doesn't work, contact the %s's " +"author with the following:" +msgstr "" -#: includes/class-freemius.php:5418 -msgid "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" -msgstr "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" +#: includes/class-freemius.php:5743 +#. translators: %s: License type (e.g. you have a professional license) +msgid "You have a %s license." +msgstr "Tienes una licencia %s." -#: includes/class-freemius.php:6000 +#: includes/class-freemius.php:5716 msgid "Premium %s version was successfully activated." msgstr "La versión Premium %s ha sido activada con éxito." -#: includes/class-freemius.php6012, includes/class-freemius.php:7992 -msgctxt "" -msgid "W00t" -msgstr "W00t" - -#: includes/class-freemius.php:6027 -msgid "You have a %s license." -msgstr "Tienes una licencia %s." - -#: includes/class-freemius.php:6317 -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." -msgstr "la prueba gratuita de %s fue cancelada con éxito. Puesto que el complemento es sólo premium se desactivó automáticamente. Si quieres utilizarlo en el futuro, deberás comprar una licencia." +#: includes/class-freemius.php:6034 +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." +msgstr "" +"la prueba gratuita de %s fue cancelada con éxito. Puesto que el complemento " +"es sólo premium se desactivó automáticamente. Si quieres utilizarlo en el " +"futuro, deberás comprar una licencia." -#: includes/class-freemius.php:6321 -msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." -msgstr "%s es un complemento único de premium. Tienes que comprar una licencia primero antes de activar el plugin." +#: includes/class-freemius.php:6038 +msgid "" +"%s is a premium only add-on. You have to purchase a license first before " +"activating the plugin." +msgstr "" +"%s es un complemento único de premium. Tienes que comprar una licencia " +"primero antes de activar el plugin." -#: includes/class-freemius.php6330, templates/add-ons.php186, +#: includes/class-freemius.php6047, templates/add-ons.php186, #: templates/account/partials/addon.php:386 msgid "More information about %s" msgstr "Más información sobre %s" -#: includes/class-freemius.php:6331 +#: includes/class-freemius.php:6048 msgid "Purchase License" msgstr "Comprar licencia" -#: includes/class-freemius.php7318, templates/connect.php:216 -msgid "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." -msgstr "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." +#: includes/class-freemius.php:7053 +#. translators: %3$s: What the user is expected to receive via email (e.g.: +#. "the installation instructions" or "a license key") +msgid "" +"You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 " +"minutes." +msgstr "" + +#: includes/class-freemius.php:7070 +#. translators: %s: activation link (e.g.: Click here) +msgid "%s to activate the license once you get it." +msgstr "" + +#: includes/class-freemius.php:7091 +msgid "" +"If you didn't get the email, try checking your spam folder or search for " +"emails from %4$s." +msgstr "" + +#: includes/class-freemius.php:7093 +msgid "Thanks for upgrading." +msgstr "" + +#: includes/class-freemius.php:7044 +msgid "" +"You should receive a confirmation email for %1$s to your mailbox at %2$s. " +"Please make sure you click the button in that email to %3$s." +msgstr "" -#: includes/class-freemius.php:7322 +#: includes/class-freemius.php:7047 msgid "start the trial" msgstr "comenzar el período de prueba" -#: includes/class-freemius.php7323, templates/connect.php:220 +#: includes/class-freemius.php7048, templates/connect.php:209 msgid "complete the opt-in" -msgstr "complete the opt-in" +msgstr "" -#: includes/class-freemius.php:7456 +#: includes/class-freemius.php:7050 +msgid "Thanks!" +msgstr "" + +#: includes/class-freemius.php:7229 msgid "You are just one step away - %s" msgstr "Estás a sólo un paso - %s" -#: includes/class-freemius.php:7459 -msgctxt "%s - plugin name. As complete \"PluginX\" activation now" -msgid "Complete \"%s\" Activation Now" -msgstr "Completar la activación de \"%s\" ahora" - -#: includes/class-freemius.php:7541 +#: includes/class-freemius.php:7314 msgid "We made a few tweaks to the %s, %s" msgstr "Hemos realizado algunas optimizaciones al %s, %s" -#: includes/class-freemius.php:7545 +#: includes/class-freemius.php:7318 msgid "Opt in to make \"%s\" better!" msgstr "¡Inscríbite para hacer \"%s\" Mejor!" -#: includes/class-freemius.php:7991 +#: includes/class-freemius.php:7764 msgid "The upgrade of %s was successfully completed." msgstr "La actualización de %s se completó con éxito." -#: includes/class-freemius.php10709, includes/class-fs-plugin-updater.php1090, -#: includes/class-fs-plugin-updater.php1305, -#: includes/class-fs-plugin-updater.php1312, templates/auto-installation.php:32 +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, +#: includes/class-fs-plugin-updater.php1317, +#: includes/class-fs-plugin-updater.php1310, +#: templates/auto-installation.php:32 msgid "Add-On" msgstr "Complemento" -#: includes/class-freemius.php10711, templates/account.php411, -#: templates/account.php419, templates/debug.php395, templates/debug.php:615 +#: includes/class-freemius.php10529, templates/account.php407, +#: templates/account.php415, templates/debug.php399, templates/debug.php:619 msgid "Plugin" msgstr "Plugin" -#: includes/class-freemius.php10712, templates/account.php412, -#: templates/account.php420, templates/debug.php395, templates/debug.php615, +#: includes/class-freemius.php10530, templates/account.php408, +#: templates/account.php416, templates/debug.php399, templates/debug.php619, #: templates/forms/deactivation/form.php:107 msgid "Theme" msgstr "Tema" -#: includes/class-freemius.php:13817 -msgid "An unknown error has occurred while trying to toggle the license's white-label mode." -msgstr "Se ha producido un error desconocido al intentar activar el modo de marca blanca de la licencia." +#: includes/class-freemius.php:13635 +msgid "" +"An unknown error has occurred while trying to toggle the license's " +"white-label mode." +msgstr "" +"Se ha producido un error desconocido al intentar activar el modo de marca " +"blanca de la licencia." -#: includes/class-freemius.php:13831 -msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s." -msgstr "Tu licencia %s ha sido marcada como etiqueta blanca para ocultar información sensible del administrador de WP (por ejemplo, tu correo electrónico, clave de licencia, precios, dirección de facturación y facturas). Si alguna vez deseas revertirlo, puedes hacerlo fácilmente a través de tu %s. Si se trata de un error, también puedes %s." +#: includes/class-freemius.php:13649 +msgid "" +"Your %s license was flagged as white-labeled to hide sensitive information " +"from the WP Admin (e.g. your email, license key, prices, billing address & " +"invoices). If you ever wish to revert it back, you can easily do it through " +"your %s. If this was a mistake you can also %s." +msgstr "" +"Tu licencia %s ha sido marcada como etiqueta blanca para ocultar " +"información sensible del administrador de WP (por ejemplo, tu correo " +"electrónico, clave de licencia, precios, dirección de facturación y " +"facturas). Si alguna vez deseas revertirlo, puedes hacerlo fácilmente a " +"través de tu %s. Si se trata de un error, también puedes %s." -#: includes/class-freemius.php13836, +#: includes/class-freemius.php13654, #: templates/account/partials/disconnect-button.php:84 msgid "User Dashboard" msgstr "Panel de escritorio del usuario" -#: includes/class-freemius.php:13837 +#: includes/class-freemius.php:13655 msgid "revert it now" msgstr "revertirlo ahora" -#: includes/class-freemius.php:13895 +#: includes/class-freemius.php:13713 msgid "An unknown error has occurred while trying to set the user's beta mode." -msgstr "Se ha producido un error desconocido al intentar establecer el modo beta del usuario." +msgstr "" +"Se ha producido un error desconocido al intentar establecer el modo beta " +"del usuario." -#: includes/class-freemius.php:13969 +#: includes/class-freemius.php:13799 msgid "Invalid new user ID or email address." msgstr "Nuevo ID de usuario o dirección de correo electrónico no válido." -#: includes/class-freemius.php:13999 -msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." -msgstr "Lo sentimos, no podemos completar la actualización de correo electrónico. Ya hay registrado otro usuario con esa dirección de correo electrónico." +#: includes/class-freemius.php:13829 +msgid "" +"Sorry, we could not complete the email update. Another user with the same " +"email is already registered." +msgstr "" +"Lo sentimos, no podemos completar la actualización de correo electrónico. " +"Ya hay registrado otro usuario con esa dirección de correo electrónico." -#: includes/class-freemius.php:14000 -msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." -msgstr "Si deseas renunciar a la titularidad de la cuenta de %s a %s haz clic en el botón de cambio de titularidad." +#: includes/class-freemius.php:13830 +msgid "" +"If you would like to give up the ownership of the %s's account to %s click " +"the Change Ownership button." +msgstr "" +"Si deseas renunciar a la titularidad de la cuenta de %s a %s haz clic en el " +"botón de cambio de titularidad." -#: includes/class-freemius.php:14007 +#: includes/class-freemius.php:13837 msgid "Change Ownership" msgstr "Cambiar propietario" -#: includes/class-freemius.php:14614 +#: includes/class-freemius.php:14434 msgid "Invalid site details collection." msgstr "Colección de detalles del sitio no válida." -#: includes/class-freemius.php:14734 -msgid "We couldn't find your email address in the system, are you sure it's the right address?" -msgstr "No podemos encontrar tu dirección de correo electrónico en el sistema, ¿estás seguro de que es la dirección de correo electrónico correcta?" - -#: includes/class-freemius.php:14736 -msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" -msgstr "No vemos ninguna licencia activa asociada a esa dirección de correo electrónico, ¿estás seguro de que es la dirección de correo electrónico correcta?" +#: includes/class-freemius.php:14556 +msgid "" +"We can't see any active licenses associated with that email address, are " +"you sure it's the right address?" +msgstr "" +"No vemos ninguna licencia activa asociada a esa dirección de correo " +"electrónico, ¿estás seguro de que es la dirección de correo electrónico " +"correcta?" -#: includes/class-freemius.php:15034 -msgid "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." -msgstr "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." +#: includes/class-freemius.php:14554 +msgid "" +"We couldn't find your email address in the system, are you sure it's the " +"right address?" +msgstr "" +"No podemos encontrar tu dirección de correo electrónico en el sistema, " +"¿estás seguro de que es la dirección de correo electrónico correcta?" -#: includes/class-freemius.php15148, -#: templates/forms/premium-versions-upgrade-handler.php:47 -msgid "Buy a license now" -msgstr "Compra una licencia ahora" +#: includes/class-freemius.php:14860 +msgid "" +"Account is pending activation. Please check your email and click the link " +"to activate your account and then submit the affiliate form again." +msgstr "" -#: includes/class-freemius.php15160, +#: includes/class-freemius.php14986, #: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Renueva tu licencia ahora" -#: includes/class-freemius.php:15164 +#: includes/class-freemius.php14974, +#: templates/forms/premium-versions-upgrade-handler.php:47 +msgid "Buy a license now" +msgstr "Compra una licencia ahora" + +#: includes/class-freemius.php:14990 msgid "%s to access version %s security & feature updates, and support." -msgstr "%s para acceder a la versión %s de actualizaciones de funciones, seguridad y soporte." +msgstr "" +"%s para acceder a la versión %s de actualizaciones de funciones, seguridad " +"y soporte." -#: includes/class-freemius.php:17871 +#: includes/class-freemius.php:17662 msgid "%s opt-in was successfully completed." -msgstr "%s opt-in was successfully completed." - -#: includes/class-freemius.php:17885 -msgid "Your account was successfully activated with the %s plan." -msgstr "Tu cuenta se ha activado correctamente con el plan %s." +msgstr "" -#: includes/class-freemius.php17896, includes/class-freemius.php:21803 +#: includes/class-freemius.php17686, includes/class-freemius.php:21607 msgid "Your trial has been successfully started." msgstr "Tu versión de prueba se ha iniciado con éxito." -#: includes/class-freemius.php18511, includes/class-freemius.php18616, -#: includes/class-freemius.php:18793 +#: includes/class-freemius.php:17676 +msgid "Your account was successfully activated with the %s plan." +msgstr "Tu cuenta se ha activado correctamente con el plan %s." + +#: includes/class-freemius.php18320, includes/class-freemius.php18433, +#: includes/class-freemius.php:18610 msgid "Couldn't activate %s." msgstr "No se puede activar %s." -#: includes/class-freemius.php18512, includes/class-freemius.php18617, -#: includes/class-freemius.php:18794 +#: includes/class-freemius.php18321, includes/class-freemius.php18434, +#: includes/class-freemius.php:18611 msgid "Please contact us with the following message:" msgstr "Por favor contáctanos con el siguiente mensaje:" -#: includes/class-freemius.php18613, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php18430, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "Se ha producido un error desconocido." -#: includes/class-freemius.php19153, includes/class-freemius.php:24542 +#: includes/class-freemius.php18972, includes/class-freemius.php:24391 msgid "Upgrade" msgstr "Actualizar" -#: includes/class-freemius.php:19159 -msgid "Start Trial" -msgstr "Comenzar el período de prueba" - -#: includes/class-freemius.php:19161 +#: includes/class-freemius.php:18980 msgid "Pricing" msgstr "Precio" -#: includes/class-freemius.php19241, includes/class-freemius.php:19243 +#: includes/class-freemius.php:18978 +msgid "Start Trial" +msgstr "Comenzar el período de prueba" + +#: includes/class-freemius.php19060, includes/class-freemius.php:19062 msgid "Affiliation" msgstr "Afiliación" -#: includes/class-freemius.php19271, includes/class-freemius.php19273, -#: templates/account.php264, templates/debug.php:362 +#: includes/class-freemius.php19090, includes/class-freemius.php19092, +#: templates/account.php260, templates/debug.php:366 msgid "Account" msgstr "Cuenta" -#: includes/class-freemius.php19287, includes/class-freemius.php19289, +#: includes/class-freemius.php19106, includes/class-freemius.php19108, #: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Contáctanos" -#: includes/class-freemius.php19300, includes/class-freemius.php19302, -#: includes/class-freemius.php24556, templates/account.php134, +#: includes/class-freemius.php19119, includes/class-freemius.php19121, +#: includes/class-freemius.php24405, templates/account.php130, #: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Complementos" -#: includes/class-freemius.php:19336 -msgctxt "ASCII arrow left icon" -msgid "←" -msgstr "←" - -#: includes/class-freemius.php:19336 -msgctxt "ASCII arrow right icon" -msgid "➤" -msgstr "➤" - -#: includes/class-freemius.php19338, templates/pricing.php:110 -msgctxt "noun" -msgid "Pricing" -msgstr "Precio" - -#: includes/class-freemius.php19551, +#: includes/class-freemius.php19370, #: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Foro de soporte" -#: includes/class-freemius.php:20572 +#: includes/class-freemius.php:20391 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Tu email ha sido verificado correctamente - ¡Eres IMPRESIONANTE!" -#: includes/class-freemius.php:20573 -msgctxt "a positive response" -msgid "Right on" -msgstr "Bien hecho" - -#: includes/class-freemius.php:21079 +#: includes/class-freemius.php:20898 msgid "seems like the key you entered doesn't match our records." msgstr "parece que la clave que has introducido no coincide con nuestros registros." -#: includes/class-freemius.php:21103 -msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." -msgstr "El modo de depuración se ha activado con éxito y se desactivará automáticamente en 60 minutos. También puedes desactivarlo antes haciendo clic en el enlace \"Detener depuración\"." +#: includes/class-freemius.php:20922 +msgid "" +"Debug mode was successfully enabled and will be automatically disabled in " +"60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +msgstr "" +"El modo de depuración se ha activado con éxito y se desactivará " +"automáticamente en 60 minutos. También puedes desactivarlo antes haciendo " +"clic en el enlace \"Detener depuración\"." -#: includes/class-freemius.php:21338 +#: includes/class-freemius.php:21157 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Tu complemento %s del plan se actualizó con éxito." -#: includes/class-freemius.php:21340 +#: includes/class-freemius.php:21159 +#. translators: %s:product name, e.g. Facebook add-on was successfully... msgid "%s Add-on was successfully purchased." msgstr "El complemento %s ha sido comprado correctamente." -#: includes/class-freemius.php:21343 +#: includes/class-freemius.php:21162 msgid "Download the latest version" msgstr "Descargar la última versión" -#: includes/class-freemius.php:21449 -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist %2$s" -msgstr "Tu servidor está bloqueando el acceso al API de Freemius, que es crucial para sincronizar %1$s. Por favor, contacta a tu proveedor de hosting para permitir el acceso de %2$s" +#: includes/class-freemius.php:21280 +msgid "" +"It seems like one of the authentication parameters is wrong. Update your " +"Public Key, Secret Key & User ID, and try again." +msgstr "" +"Parece que uno de los parámetros de autenticación es incorrecto. Actualiza " +"tu clave pública, clave secreta e ID de usuario e inténtelo de nuevo." -#: includes/class-freemius.php21455, includes/class-freemius.php21469, -#: includes/class-freemius.php21938, includes/class-freemius.php:22027 +#: includes/class-freemius.php21280, includes/class-freemius.php21677, +#: includes/class-freemius.php21778, includes/class-freemius.php:21865 msgid "Error received from the server:" msgstr "Error recibido del servidor:" -#: includes/class-freemius.php:21469 -msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." -msgstr "Parece que uno de los parámetros de autenticación es incorrecto. Actualiza tu clave pública, clave secreta e ID de usuario e inténtelo de nuevo." - -#: includes/class-freemius.php21700, includes/class-freemius.php21943, -#: includes/class-freemius.php21998, includes/class-freemius.php:22105 -msgctxt "" -msgid "Hmm" -msgstr "Hmm" - -#: includes/class-freemius.php:21713 -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." -msgstr "Parece que todavía estás en el plan %s. Si actualizaste o cambiaste tu plan, probablemente sea un problema de nuestra parte - lo sentimos." - -#: includes/class-freemius.php21714, templates/account.php136, -#: templates/add-ons.php250, templates/account/partials/addon.php:51 -msgctxt "trial period" -msgid "Trial" -msgstr "Período de Prueba Gratuito" +#: includes/class-freemius.php:21524 +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." +msgstr "" +"Parece que todavía estás en el plan %s. Si actualizaste o cambiaste tu " +"plan, probablemente sea un problema de nuestra parte - lo sentimos." -#: includes/class-freemius.php:21719 -msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." -msgstr "He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el plan sigue siendo %s." +#: includes/class-freemius.php:21530 +msgid "" +"I have upgraded my account but when I try to Sync the License, the plan " +"remains %s." +msgstr "" +"He actualizado mi cuenta, pero cuando intento sincronizar la licencia, el " +"plan sigue siendo %s." -#: includes/class-freemius.php21723, includes/class-freemius.php:21782 +#: includes/class-freemius.php21534, includes/class-freemius.php:21586 msgid "Please contact us here" msgstr "Contacta aquí con nosotros" -#: includes/class-freemius.php:21734 -msgid "Your plan was successfully activated." -msgstr "Tu plan se activó con éxito." - -#: includes/class-freemius.php:21735 -msgid "Your plan was successfully upgraded." -msgstr "Tu plan se actualizó con éxito." - -#: includes/class-freemius.php:21752 +#: includes/class-freemius.php:21556 msgid "Your plan was successfully changed to %s." msgstr "Tu plan se cambió correctamente a %s." -#: includes/class-freemius.php:21768 +#: includes/class-freemius.php:21572 msgid "Your license has expired. You can still continue using the free %s forever." -msgstr "Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para siempre." +msgstr "" +"Tu licencia ha caducado. Puedes seguir usando el plan gratuito %s para " +"siempre." + +#: includes/class-freemius.php:21574 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"Tu licencia ha caducado. %1$sActualiza ahora %2$s para continuar usando el " +"%3$s sin interrupciones." + +#: includes/class-freemius.php:21582 +msgid "" +"Your license has been cancelled. If you think it's a mistake, please " +"contact support." +msgstr "" +"Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto " +"con el servicio de asistencia." -#: includes/class-freemius.php:21770 -msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Tu licencia ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones." +#: includes/class-freemius.php:21595 +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." +msgstr "" +"Tu licencia ha caducado. Todavía puedes seguir usando todas las funciones " +"de %s, pero tendrás que renovar tu licencia para seguir recibiendo " +"actualizaciones y soporte." -#: includes/class-freemius.php:21778 -msgid "Your license has been cancelled. If you think it's a mistake, please contact support." -msgstr "Tu licencia ha sido cancelada. Si crees que es un error, ponte en contacto con el servicio de asistencia." +#: includes/class-freemius.php:21621 +msgid "" +"Your free trial has expired. You can still continue using all our free " +"features." +msgstr "" +"Tu período de prueba ha caducado. Todavía puedes seguir usando todas " +"nuestras funciones gratuitas." -#: includes/class-freemius.php:21791 -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." -msgstr "Tu licencia ha caducado. Todavía puedes seguir usando todas las funciones de %s, pero tendrás que renovar tu licencia para seguir recibiendo actualizaciones y soporte." +#: includes/class-freemius.php:21623 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"Tu período de prueba ha caducado. %1$sActualiza ahora %2$s para continuar " +"usando el %3$s sin interrupciones." -#: includes/class-freemius.php:21817 -msgid "Your free trial has expired. You can still continue using all our free features." -msgstr "Tu período de prueba ha caducado. Todavía puedes seguir usando todas nuestras funciones gratuitas." +#: includes/class-freemius.php:21669 +msgid "" +"Your server is blocking the access to Freemius' API, which is crucial for " +"%1$s synchronization. Please contact your host to whitelist the following " +"domains:%2$s" +msgstr "" -#: includes/class-freemius.php:21819 -msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Tu período de prueba ha caducado. %1$sActualiza ahora %2$s para continuar usando el %3$s sin interrupciones." +#: includes/class-freemius.php:21671 +msgid "Show error details" +msgstr "" -#: includes/class-freemius.php:21934 +#: includes/class-freemius.php:21774 msgid "It looks like the license could not be activated." msgstr "Parece que la licencia no se pudo activar." -#: includes/class-freemius.php:21976 +#: includes/class-freemius.php:21816 msgid "Your license was successfully activated." msgstr "Tu licencia fue activada correctamente." -#: includes/class-freemius.php:22002 +#: includes/class-freemius.php:21840 msgid "It looks like your site currently doesn't have an active license." msgstr "Parece que tu sitio actualmente no tiene una licencia activa." -#: includes/class-freemius.php:22026 +#: includes/class-freemius.php:21864 msgid "It looks like the license deactivation failed." msgstr "Parece que la desactivación de licencia ha fallado." -#: includes/class-freemius.php:22055 +#: includes/class-freemius.php:21893 msgid "Your %s license was successfully deactivated." msgstr "Tu licencia %s ha sido desactivada correctamente." -#: includes/class-freemius.php:22056 +#: includes/class-freemius.php:21894 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Tu licencia fue desactivada correctamente, has vuelto al plan %s." -#: includes/class-freemius.php:22059 +#: includes/class-freemius.php:21897 msgid "O.K" msgstr "O.K" -#: includes/class-freemius.php:22112 -msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." -msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de la suscripción. Vuelve a intentarlo en unos minutos." +#: includes/class-freemius.php:21950 +msgid "" +"Seems like we are having some temporary issue with your subscription " +"cancellation. Please try again in few minutes." +msgstr "" +"Parece que estamos teniendo algún problema temporal con tu cancelación de " +"la suscripción. Vuelve a intentarlo en unos minutos." -#: includes/class-freemius.php:22121 -msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." -msgstr "Tu suscripción ha sido cancelada correctamente. Tu %s licencia del plan caducará en %s." +#: includes/class-freemius.php:21959 +msgid "" +"Your subscription was successfully cancelled. Your %s plan license will " +"expire in %s." +msgstr "" +"Tu suscripción ha sido cancelada correctamente. Tu %s licencia del plan " +"caducará en %s." -#: includes/class-freemius.php:22163 +#: includes/class-freemius.php:22001 msgid "You are already running the %s in a trial mode." msgstr "Estás ejecutando %s en modo de prueba." -#: includes/class-freemius.php:22174 +#: includes/class-freemius.php:22012 msgid "You already utilized a trial before." msgstr "Ya utilizaste un período de prueba antes." -#: includes/class-freemius.php:22188 +#: includes/class-freemius.php:22048 +msgid "None of the %s's plans supports a trial period." +msgstr "Ninguno de los planes de %s soportan un período de prueba." + +#: includes/class-freemius.php:22026 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "El plan %s no existe, por lo tanto, no puedes comenzar un período de prueba." -#: includes/class-freemius.php:22199 +#: includes/class-freemius.php:22037 msgid "Plan %s does not support a trial period." msgstr "El plan %s no admite un período de prueba." -#: includes/class-freemius.php:22210 -msgid "None of the %s's plans supports a trial period." -msgstr "Ninguno de los planes de %s soportan un período de prueba." - -#: includes/class-freemius.php:22259 -msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" -msgstr "Parece que ya no estás en modo de prueba, así que no hay nada que cancelar :)" +#: includes/class-freemius.php:22097 +msgid "" +"It looks like you are not in trial mode anymore so there's nothing to " +"cancel :)" +msgstr "" +"Parece que ya no estás en modo de prueba, así que no hay nada que cancelar " +":)" -#: includes/class-freemius.php:22295 -msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." -msgstr "Parece que estamos teniendo algún problema temporal con tu cancelación de prueba. Vuelve a intentarlo en unos minutos." +#: includes/class-freemius.php:22133 +msgid "" +"Seems like we are having some temporary issue with your trial cancellation. " +"Please try again in few minutes." +msgstr "" +"Parece que estamos teniendo algún problema temporal con tu cancelación de " +"prueba. Vuelve a intentarlo en unos minutos." -#: includes/class-freemius.php:22314 +#: includes/class-freemius.php:22152 msgid "Your %s free trial was successfully cancelled." msgstr "Tu prueba gratuita de %s fue cancelada con éxito." -#: includes/class-freemius.php:22641 +#: includes/class-freemius.php:22496 +msgid "Seems like you got the latest release." +msgstr "Parece que tienes la última versión." + +#: includes/class-freemius.php:22497 +msgid "You are all good!" +msgstr "¡Está todo listo!" + +#: includes/class-freemius.php:22479 msgid "Version %s was released." msgstr "La versión %s se ha lanzado." -#: includes/class-freemius.php:22641 +#: includes/class-freemius.php:22479 msgid "Please download %s." msgstr "Por favor descarga %s." -#: includes/class-freemius.php:22648 +#: includes/class-freemius.php:22486 msgid "the latest %s version here" msgstr "la última versión %s aquí" -#: includes/class-freemius.php:22653 +#: includes/class-freemius.php:22491 msgid "New" msgstr "Nuevo" -#: includes/class-freemius.php:22658 -msgid "Seems like you got the latest release." -msgstr "Parece que tienes la última versión." - -#: includes/class-freemius.php:22659 -msgid "You are all good!" -msgstr "¡Está todo listo!" - -#: includes/class-freemius.php:23062 -msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." -msgstr "El correo de verificación se acaba de enviar a %s. Si no puedes encontrarlo después de 5 min, comprueba tu carpeta de spam." +#: includes/class-freemius.php:22900 +msgid "" +"Verification mail was just sent to %s. If you can't find it after 5 min, " +"please check your spam box." +msgstr "" +"El correo de verificación se acaba de enviar a %s. Si no puedes encontrarlo " +"después de 5 min, comprueba tu carpeta de spam." -#: includes/class-freemius.php:23202 +#: includes/class-freemius.php:23040 msgid "Site successfully opted in." msgstr "Sitio dado de alta correctamente." -#: includes/class-freemius.php23203, includes/class-freemius.php:24252 +#: includes/class-freemius.php23041, includes/class-freemius.php:24101 msgid "Awesome" msgstr "Increíble" -#: includes/class-freemius.php:23219 -msgid "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." -msgstr "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." +#: includes/class-freemius.php:23067 +msgid "Diagnostic data will no longer be sent from %s to %s." +msgstr "" + +#: includes/class-freemius.php:23057 +msgid "" +"Sharing diagnostic data with %s helps to provide functionality that's more " +"relevant to your website, avoid WordPress or PHP version incompatibilities " +"that can break your website, and recognize which languages & regions the " +"plugin should be translated and tailored to." +msgstr "" -#: includes/class-freemius.php:23220 +#: includes/class-freemius.php:23058 msgid "Thank you!" msgstr "¡Gracias!" -#: includes/class-freemius.php:23229 -msgid "Diagnostic data will no longer be sent from %s to %s." -msgstr "Diagnostic data will no longer be sent from %s to %s." - -#: includes/class-freemius.php:23384 -msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." -msgstr "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." +#: includes/class-freemius.php:23227 +msgid "" +"A confirmation email was just sent to %s. You must confirm the update " +"within the next 4 hours. If you cannot find the email, please check your " +"spam folder." +msgstr "" -#: includes/class-freemius.php:23386 -msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." -msgstr "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." +#: includes/class-freemius.php:23225 +msgid "" +"A confirmation email was just sent to %s. The email owner must confirm the " +"update within the next 4 hours." +msgstr "" -#: includes/class-freemius.php:23393 -msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." -msgstr "Gracias por confirmar el cambio de propiedad. Se envió un correo electrónico a %s para su aprobación final." +#: includes/class-freemius.php:23239 +msgid "" +"Thanks for confirming the ownership change. An email was just sent to %s " +"for final approval." +msgstr "" +"Gracias por confirmar el cambio de propiedad. Se envió un correo " +"electrónico a %s para su aprobación final." -#: includes/class-freemius.php:23398 +#: includes/class-freemius.php:23245 msgid "%s is the new owner of the account." msgstr "%s es el nuevo dueño de la cuenta." -#: includes/class-freemius.php:23400 -msgctxt "as congratulations" -msgid "Congrats" -msgstr "Felicidades" +#: includes/class-freemius.php:23269 +msgid "Your name was successfully updated." +msgstr "Tu nombre fue actualizado correctamente." -#: includes/class-freemius.php:23417 +#: includes/class-freemius.php:23264 msgid "Please provide your full name." msgstr "Por favor, dinos tu nombre completo." -#: includes/class-freemius.php:23422 -msgid "Your name was successfully updated." -msgstr "Tu nombre fue actualizado correctamente." - -#: includes/class-freemius.php:23483 +#: includes/class-freemius.php:23334 +#. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Has actualizado correctamente tu %s." -#: includes/class-freemius.php:23542 -msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." -msgstr "¿Es este el sitio de clientes? %s si deseas ocultar información sensible como tu correo electrónico, clave de licencia, precios, dirección de facturación y facturas de la administración de WP." +#: includes/class-freemius.php:23398 +msgid "" +"Is this your client's site? %s if you wish to hide sensitive info like your " +"email, license key, prices, billing address & invoices from the WP Admin." +msgstr "" +"¿Es este el sitio de clientes? %s si deseas ocultar información sensible " +"como tu correo electrónico, clave de licencia, precios, dirección de " +"facturación y facturas de la administración de WP." -#: includes/class-freemius.php:23545 +#: includes/class-freemius.php:23401 msgid "Click here" msgstr "Haz clic aquí" -#: includes/class-freemius.php23582, includes/class-freemius.php:23579 +#: includes/class-freemius.php:23438 msgid "Bundle" -msgstr "Bundle" - -#: includes/class-freemius.php:23662 -msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." -msgstr "Sólo déjanos informarte que la información de complementos de %s se está extrayendo de un servidor externo." - -#: includes/class-freemius.php:23663 -msgctxt "advance notice of something that will need attention." -msgid "Heads up" -msgstr "Atención" +msgstr "" -#: includes/class-freemius.php:24292 -msgctxt "exclamation" -msgid "Hey" -msgstr "Hey" +#: includes/class-freemius.php:23511 +msgid "" +"Just letting you know that the add-ons information of %s is being pulled " +"from an external server." +msgstr "" +"Sólo déjanos informarte que la información de complementos de %s se está " +"extrayendo de un servidor externo." -#: includes/class-freemius.php:24292 -msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." -msgstr "¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de %s con una prueba gratuita de %d-días." +#: includes/class-freemius.php:24141 +msgid "" +"How do you like %s so far? Test all our %s premium features with a %d-day " +"free trial." +msgstr "" +"¿Qué te pareció %s hasta ahora? Prueba todas nuestras funciones premium de " +"%s con una prueba gratuita de %d-días." -#: includes/class-freemius.php:24300 +#: includes/class-freemius.php:24149 msgid "No commitment for %s days - cancel anytime!" msgstr "Sin compromiso por %s días - ¡cancelar en cualquier momento!" -#: includes/class-freemius.php:24301 +#: includes/class-freemius.php:24150 msgid "No credit card required" msgstr "No se necesita tarjeta de crédito" -#: includes/class-freemius.php24308, templates/forms/trial-start.php:53 -msgctxt "call to action" -msgid "Start free trial" -msgstr "Comenzar el período de prueba gratuito" - -#: includes/class-freemius.php:24385 -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!" -msgstr "Hey, ¿sabías que %s tiene un programa de afiliados? ¡Si te gusta %s puedes convertirte en nuestro embajador y ganar dinero!" +#: includes/class-freemius.php:24234 +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!" +msgstr "" +"Hey, ¿sabías que %s tiene un programa de afiliados? ¡Si te gusta %s puedes " +"convertirte en nuestro embajador y ganar dinero!" -#: includes/class-freemius.php:24394 +#: includes/class-freemius.php:24243 msgid "Learn more" msgstr "Saber más" -#: includes/class-freemius.php24580, templates/account.php573, -#: templates/account.php725, templates/connect.php223, -#: templates/connect.php449, includes/managers/class-fs-clone-manager.php1295, +#: includes/class-freemius.php24429, templates/account.php569, +#: templates/account.php721, templates/connect.php212, +#: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, #: templates/forms/license-activation.php27, #: templates/account/partials/addon.php:326 msgid "Activate License" msgstr "Activar licencia" -#: includes/class-freemius.php24581, templates/account.php667, -#: templates/account.php724, templates/account/partials/addon.php327, +#: includes/class-freemius.php24430, templates/account.php663, +#: templates/account.php720, templates/account/partials/addon.php327, #: templates/account/partials/site.php:273 msgid "Change License" msgstr "Cambiar licencia" -#: includes/class-freemius.php24688, templates/account/partials/site.php:170 -msgid "Opt Out" -msgstr "Darse de baja" - -#: includes/class-freemius.php24690, includes/class-freemius.php24696, +#: includes/class-freemius.php24545, includes/class-freemius.php24539, #: templates/account/partials/site.php49, #: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Inscribirse" -#: includes/class-freemius.php:24931 -msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -msgstr " La versión de pago de %1$s ya está instalada. Por favor, actívala para empezar a beneficiarte de las características de %2$s. %3$s" - -#: includes/class-freemius.php:24941 -msgid "Activate %s features" -msgstr "Activar características %s" +#: includes/class-freemius.php24537, templates/account/partials/site.php:170 +msgid "Opt Out" +msgstr "Darse de baja" -#: includes/class-freemius.php:24954 +#: includes/class-freemius.php:24803 msgid "Please follow these steps to complete the upgrade" msgstr "Por favor, sigue estos pasos para completar la actualización" -#: includes/class-freemius.php:24958 +#: includes/class-freemius.php:24807 +#. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Descargar la última versión %s" -#: includes/class-freemius.php:24962 +#: includes/class-freemius.php:24811 msgid "Upload and activate the downloaded version" msgstr "Cargar y activar la versión descargada" -#: includes/class-freemius.php:24964 +#: includes/class-freemius.php:24813 msgid "How to upload and activate?" msgstr "¿Cómo subirlo y activarlo?" -#: includes/class-freemius.php:25098 -msgid "%sClick here%s to choose the sites where you'd like to activate the license on." -msgstr "%sClick aquí %s para elegir los sitios sobre los que te gustaría activar la licencia." - -#: includes/class-freemius.php:25267 -msgid "Auto installation only works for opted-in users." -msgstr "La instalación automática sólo funciona para usuarios que aceptaron." +#: includes/class-freemius.php:24780 +msgid "" +" The paid version of %1$s is already installed. Please activate it to start " +"benefiting the %2$s features. %3$s" +msgstr "" +" La versión de pago de %1$s ya está instalada. Por favor, actívala para " +"empezar a beneficiarte de las características de %2$s. %3$s" -#: includes/class-freemius.php25277, includes/class-freemius.php25310, -#: includes/class-fs-plugin-updater.php1284, -#: includes/class-fs-plugin-updater.php:1298 -msgid "Invalid module ID." -msgstr "Id de módulo no válido." +#: includes/class-freemius.php:24790 +msgid "Activate %s features" +msgstr "Activar características %s" -#: includes/class-freemius.php25286, includes/class-fs-plugin-updater.php:1320 -msgid "Premium version already active." -msgstr "Versión premium ya activa." +#: includes/class-freemius.php:24848 +msgid "Your plan was successfully upgraded." +msgstr "Tu plan se actualizó con éxito." -#: includes/class-freemius.php:25293 -msgid "You do not have a valid license to access the premium version." -msgstr "No tienes una licencia válida para acceder a la versión premium." +#: includes/class-freemius.php:24849 +msgid "Your plan was successfully activated." +msgstr "Tu plan se activó con éxito." + +#: includes/class-freemius.php:24979 +msgid "" +"%sClick here%s to choose the sites where you'd like to activate the license " +"on." +msgstr "" +"%sClick aquí %s para elegir los sitios sobre los que te gustaría activar la " +"licencia." + +#: includes/class-freemius.php:25148 +msgid "Auto installation only works for opted-in users." +msgstr "La instalación automática sólo funciona para usuarios que aceptaron." -#: includes/class-freemius.php:25300 -msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." -msgstr "El plugin es un \"Serviceware\" lo que significa que no tiene una versión de código premium." +#: includes/class-freemius.php25158, includes/class-freemius.php25191, +#: includes/class-fs-plugin-updater.php1289, +#: includes/class-fs-plugin-updater.php:1303 +msgid "Invalid module ID." +msgstr "Id de módulo no válido." -#: includes/class-freemius.php25318, includes/class-fs-plugin-updater.php:1319 +#: includes/class-freemius.php25199, includes/class-fs-plugin-updater.php:1324 msgid "Premium add-on version already installed." msgstr "Versión del complemento premium ya instalada." -#: includes/class-freemius.php:25672 -msgid "View paid features" -msgstr "Ver las funciones de pago" +#: includes/class-freemius.php25167, includes/class-fs-plugin-updater.php:1325 +msgid "Premium version already active." +msgstr "Versión premium ya activa." -#: includes/class-freemius.php:25994 -msgid "Thank you so much for using %s and its add-ons!" -msgstr "¡Muchas gracias por utilizar %s y sus complementos!" +#: includes/class-freemius.php:25174 +msgid "You do not have a valid license to access the premium version." +msgstr "No tienes una licencia válida para acceder a la versión premium." -#: includes/class-freemius.php:25995 -msgid "Thank you so much for using %s!" -msgstr "¡Muchas gracias por utilizar %s!" +#: includes/class-freemius.php:25181 +msgid "" +"Plugin is a \"Serviceware\" which means it does not have a premium code " +"version." +msgstr "" +"El plugin es un \"Serviceware\" lo que significa que no tiene una versión " +"de código premium." -#: includes/class-freemius.php:26001 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." -msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando %s." +#: includes/class-freemius.php:25559 +msgid "View paid features" +msgstr "Ver las funciones de pago" -#: includes/class-freemius.php:26005 +#: includes/class-freemius.php:25874 msgid "Thank you so much for using our products!" msgstr "¡Muchas gracias por utilizar nuestros productos!" -#: includes/class-freemius.php:26006 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." -msgstr "Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir mejorando." +#: includes/class-freemius.php:25875 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving them." +msgstr "" +"Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir " +"mejorando." -#: includes/class-freemius.php:26025 +#: includes/class-freemius.php:25894 msgid "%s and its add-ons" msgstr "%s y sus complementos" -#: includes/class-freemius.php:26034 +#: includes/class-freemius.php:25903 msgid "Products" msgstr "Productos" -#: includes/class-freemius.php26041, templates/connect.php:324 +#: includes/class-freemius.php:25863 +msgid "Thank you so much for using %s and its add-ons!" +msgstr "¡Muchas gracias por utilizar %s y sus complementos!" + +#: includes/class-freemius.php:25864 +msgid "Thank you so much for using %s!" +msgstr "¡Muchas gracias por utilizar %s!" + +#: includes/class-freemius.php:25870 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving the %s." +msgstr "" +"Ya has optado por nuestro seguimiento de uso, lo que nos ayuda a seguir " +"mejorando %s." + +#: includes/class-freemius.php25910, templates/connect.php:313 msgid "Yes" msgstr "Si" -#: includes/class-freemius.php26042, templates/connect.php:325 +#: includes/class-freemius.php25911, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." -msgstr "envíame actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas." +msgstr "" +"envíame actualizaciones de seguridad y nuevas funcionalidades, contenido " +"educativo y ofertas." -#: includes/class-freemius.php26043, templates/connect.php:330 +#: includes/class-freemius.php25912, templates/connect.php:319 msgid "No" msgstr "No" -#: includes/class-freemius.php26045, templates/connect.php:332 -msgid "do %sNOT%s send me security & feature updates, educational content and offers." -msgstr "%sNO%s me envíes actualizaciones de seguridad y nuevas funcionalidades, contenido educativo y ofertas." +#: includes/class-freemius.php25914, templates/connect.php:321 +msgid "" +"do %sNOT%s send me security & feature updates, educational content and " +"offers." +msgstr "" +"%sNO%s me envíes actualizaciones de seguridad y nuevas funcionalidades, " +"contenido educativo y ofertas." -#: includes/class-freemius.php:26055 -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 :-)" -msgstr "Debido al nuevo %sEU Reglamento General de Protección de Datos (RGPD)%s los requisitos de obligado cumplimiento requieren que proporciones tu consentimiento explícito, una vez más, confirmando que estás de acuerdo :-)" +#: includes/class-freemius.php:25924 +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 :-)" +msgstr "" +"Debido al nuevo %sEU Reglamento General de Protección de Datos (RGPD)%s los " +"requisitos de obligado cumplimiento requieren que proporciones tu " +"consentimiento explícito, una vez más, confirmando que estás de acuerdo :-)" -#: includes/class-freemius.php26057, templates/connect.php:339 -msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" -msgstr "Indica si deseas que te contactemos para actualizaciones de seguridad y nuevas funciones, contenido educativo y ofertas ocasionales:" +#: includes/class-freemius.php25926, templates/connect.php:328 +msgid "" +"Please let us know if you'd like us to contact you for security & feature " +"updates, educational content, and occasional offers:" +msgstr "" +"Indica si deseas que te contactemos para actualizaciones de seguridad y " +"nuevas funciones, contenido educativo y ofertas ocasionales:" -#: includes/class-freemius.php:26339 +#: includes/class-freemius.php:26216 msgid "License key is empty." msgstr "La clave de licencia está vacía." -#: includes/class-fs-plugin-updater.php206, +#: includes/class-fs-plugin-updater.php210, #: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Renovar la licencia" -#: includes/class-fs-plugin-updater.php211, +#: includes/class-fs-plugin-updater.php215, #: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Comprar licencia" -#: includes/class-fs-plugin-updater.php331, -#: includes/class-fs-plugin-updater.php:364 +#: includes/class-fs-plugin-updater.php368, +#: includes/class-fs-plugin-updater.php:335 msgid "There is a %s of %s available." msgstr "Hay una %s de %s disponible." -#: includes/class-fs-plugin-updater.php333, -#: includes/class-fs-plugin-updater.php:369 +#: includes/class-fs-plugin-updater.php373, +#: includes/class-fs-plugin-updater.php:337 msgid "new Beta version" msgstr "nueva versión Beta" -#: includes/class-fs-plugin-updater.php334, -#: includes/class-fs-plugin-updater.php:370 +#: includes/class-fs-plugin-updater.php374, +#: includes/class-fs-plugin-updater.php:338 msgid "new version" msgstr "nueva versión" -#: includes/class-fs-plugin-updater.php:393 +#: includes/class-fs-plugin-updater.php:397 msgid "Important Upgrade Notice:" msgstr "Aviso importante de actualización:" -#: includes/class-fs-plugin-updater.php:1349 +#: includes/class-fs-plugin-updater.php:1354 msgid "Installing plugin: %s" msgstr "Instalando plugin: %s" -#: includes/class-fs-plugin-updater.php:1390 +#: includes/class-fs-plugin-updater.php:1395 msgid "Unable to connect to the filesystem. Please confirm your credentials." -msgstr "No es posible conectarse al sistema de archivos. Por favor, confirma tus credenciales." +msgstr "" +"No es posible conectarse al sistema de archivos. Por favor, confirma tus " +"credenciales." -#: includes/class-fs-plugin-updater.php:1572 -msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." -msgstr "El paquete de plugin remoto no contiene una carpeta con el Slug deseado y el cambio de nombre no funcionó." +#: includes/class-fs-plugin-updater.php:1577 +msgid "" +"The remote plugin package does not contain a folder with the desired slug " +"and renaming did not work." +msgstr "" +"El paquete de plugin remoto no contiene una carpeta con el Slug deseado y " +"el cambio de nombre no funcionó." #: includes/fs-plugin-info-dialog.php:542 msgid "Purchase More" msgstr "Comprar más" -#: includes/fs-plugin-info-dialog.php543, -#: templates/account/partials/addon.php:390 -msgctxt "verb" -msgid "Purchase" -msgstr "Comprar" - #: includes/fs-plugin-info-dialog.php:547 +#. translators: %s: N-days trial msgid "Start my free %s" msgstr "Comenzar mi período gratuito de %s" -#: includes/fs-plugin-info-dialog.php:745 -msgid "Install Free Version Update Now" -msgstr "Instalar la actualización gratuita ahora" - -#: includes/fs-plugin-info-dialog.php746, templates/account.php:656 -msgid "Install Update Now" -msgstr "Instalar actualización ahora" - #: includes/fs-plugin-info-dialog.php:755 msgid "Install Free Version Now" msgstr "Instalar la versión gratuita ahora" #: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, -#: templates/auto-installation.php111, templates/account/partials/addon.php370, -#: templates/account/partials/addon.php:423 +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php423, +#: templates/account/partials/addon.php:370 msgid "Install Now" msgstr "Instalar ahora" -#: includes/fs-plugin-info-dialog.php:772 -msgctxt "as download latest version" -msgid "Download Latest Free Version" -msgstr "Descargar la última versión gratuita" +#: includes/fs-plugin-info-dialog.php:745 +msgid "Install Free Version Update Now" +msgstr "Instalar la actualización gratuita ahora" -#: includes/fs-plugin-info-dialog.php773, templates/account.php114, -#: templates/add-ons.php37, templates/account/partials/addon.php:30 -msgctxt "as download latest version" -msgid "Download Latest" -msgstr "Descargar la última" +#: includes/fs-plugin-info-dialog.php746, templates/account.php:652 +msgid "Install Update Now" +msgstr "Instalar actualización ahora" #: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, -#: templates/account/partials/addon.php361, -#: templates/account/partials/addon.php:417 +#: templates/account/partials/addon.php417, +#: templates/account/partials/addon.php:361 msgid "Activate this add-on" msgstr "Activar este complemento" -#: includes/fs-plugin-info-dialog.php790, templates/connect.php:446 +#: includes/fs-plugin-info-dialog.php790, templates/connect.php:437 msgid "Activate Free Version" msgstr "Activar versión gratuita" -#: includes/fs-plugin-info-dialog.php791, templates/account.php138, +#: includes/fs-plugin-info-dialog.php791, templates/account.php134, #: templates/add-ons.php330, templates/account/partials/addon.php:53 msgid "Activate" msgstr "Activar" -#: includes/fs-plugin-info-dialog.php:1003 -msgctxt "Plugin installer section title" -msgid "Description" -msgstr "Descripción" - -#: includes/fs-plugin-info-dialog.php:1004 -msgctxt "Plugin installer section title" -msgid "Installation" -msgstr "Instalación" - -#: includes/fs-plugin-info-dialog.php:1005 -msgctxt "Plugin installer section title" -msgid "FAQ" -msgstr "FAQ" - -#: includes/fs-plugin-info-dialog.php1006, +#: includes/fs-plugin-info-dialog.php1002, #: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "Capturas de pantalla" -#: includes/fs-plugin-info-dialog.php:1007 -msgctxt "Plugin installer section title" -msgid "Changelog" -msgstr "Registro de cambios" - -#: includes/fs-plugin-info-dialog.php:1008 -msgctxt "Plugin installer section title" -msgid "Reviews" -msgstr "Valoraciones" - -#: includes/fs-plugin-info-dialog.php:1009 -msgctxt "Plugin installer section title" -msgid "Other Notes" -msgstr "Otras notas" - -#: includes/fs-plugin-info-dialog.php:1024 -msgctxt "Plugin installer section title" -msgid "Features & Pricing" -msgstr "Características y precios" - -#: includes/fs-plugin-info-dialog.php:1034 +#: includes/fs-plugin-info-dialog.php:1030 msgid "Plugin Install" msgstr "Instalar plugin" -#: includes/fs-plugin-info-dialog.php:1106 -msgctxt "e.g. Professional Plan" -msgid "%s Plan" -msgstr "Plan %s" - -#: includes/fs-plugin-info-dialog.php:1132 -msgctxt "e.g. the best product" -msgid "Best" -msgstr "El mejor" - -#: includes/fs-plugin-info-dialog.php1138, -#: includes/fs-plugin-info-dialog.php:1158 -msgctxt "as every month" -msgid "Monthly" -msgstr "Mensual" - -#: includes/fs-plugin-info-dialog.php:1141 -msgctxt "as once a year" -msgid "Annual" -msgstr "Anual" - -#: includes/fs-plugin-info-dialog.php:1144 +#: includes/fs-plugin-info-dialog.php:1140 msgid "Lifetime" msgstr "Permanente" -#: includes/fs-plugin-info-dialog.php1158, -#: includes/fs-plugin-info-dialog.php1160, -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "e.g. billed monthly" -msgid "Billed %s" -msgstr "Facturado %s" - -#: includes/fs-plugin-info-dialog.php:1160 -msgctxt "as once a year" -msgid "Annually" -msgstr "Anualmente" - -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "as once a year" -msgid "Once" -msgstr "Una vez" - -#: includes/fs-plugin-info-dialog.php:1168 +#: includes/fs-plugin-info-dialog.php:1164 msgid "Single Site License" msgstr "Licencia para un único sitio" -#: includes/fs-plugin-info-dialog.php:1170 +#: includes/fs-plugin-info-dialog.php:1166 msgid "Unlimited Licenses" msgstr "Licencias ilimitadas" -#: includes/fs-plugin-info-dialog.php:1172 +#: includes/fs-plugin-info-dialog.php:1168 msgid "Up to %s Sites" msgstr "Hasta %s sitios" -#: includes/fs-plugin-info-dialog.php1182, -#: templates/plugin-info/features.php:82 -msgctxt "as monthly period" -msgid "mo" -msgstr "me" - -#: includes/fs-plugin-info-dialog.php1189, -#: templates/plugin-info/features.php:80 -msgctxt "as annual period" -msgid "year" -msgstr "año" - -#: includes/fs-plugin-info-dialog.php:1243 -msgctxt "noun" -msgid "Price" -msgstr "Precio" - -#: includes/fs-plugin-info-dialog.php:1291 +#: includes/fs-plugin-info-dialog.php:1287 +#. translators: %s: Discount (e.g. discount of $5 or 10%) msgid "Save %s" msgstr "Guardar %s" -#: includes/fs-plugin-info-dialog.php:1301 +#: includes/fs-plugin-info-dialog.php:1297 msgid "No commitment for %s - cancel anytime" msgstr "Sin compromiso para %s - cancelar en cualquier momento" -#: includes/fs-plugin-info-dialog.php:1304 +#: includes/fs-plugin-info-dialog.php:1300 msgid "After your free %s, pay as little as %s" msgstr "Después de su período gratuito %s, pague sólo %s" -#: includes/fs-plugin-info-dialog.php:1315 +#: includes/fs-plugin-info-dialog.php:1311 msgid "Details" msgstr "Detalles" -#: includes/fs-plugin-info-dialog.php1319, templates/account.php125, -#: templates/debug.php232, templates/debug.php269, templates/debug.php514, -#: templates/account/partials/addon.php:41 -msgctxt "product version" -msgid "Version" -msgstr "Versión" - -#: includes/fs-plugin-info-dialog.php:1326 -msgctxt "as the plugin author" -msgid "Author" -msgstr "Autor" - -#: includes/fs-plugin-info-dialog.php:1333 +#: includes/fs-plugin-info-dialog.php:1329 msgid "Last Updated" msgstr "Última actualización" -#: includes/fs-plugin-info-dialog.php1338, templates/account.php:544 -msgctxt "x-ago" -msgid "%s ago" -msgstr "hace %s" - -#: includes/fs-plugin-info-dialog.php:1347 +#: includes/fs-plugin-info-dialog.php:1343 msgid "Requires WordPress Version" msgstr "Necesita la versión de WordPress" -#: includes/fs-plugin-info-dialog.php1350, -#: includes/fs-plugin-info-dialog.php:1370 +#: includes/fs-plugin-info-dialog.php1346, +#: includes/fs-plugin-info-dialog.php:1366 +#. translators: %s: Version number. msgid "%s or higher" msgstr "%s o mayor" -#: includes/fs-plugin-info-dialog.php:1358 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Compatible up to" msgstr "Compatible hasta" -#: includes/fs-plugin-info-dialog.php:1366 +#: includes/fs-plugin-info-dialog.php:1362 msgid "Requires PHP Version" -msgstr "Requires PHP Version" +msgstr "" -#: includes/fs-plugin-info-dialog.php:1379 +#: includes/fs-plugin-info-dialog.php:1375 msgid "Downloaded" msgstr "Descargado" -#: includes/fs-plugin-info-dialog.php:1383 +#: includes/fs-plugin-info-dialog.php:1379 +#. translators: %s: 1 or One (Number of times downloaded) msgid "%s time" msgstr "%s vez" -#: includes/fs-plugin-info-dialog.php:1385 +#: includes/fs-plugin-info-dialog.php:1381 +#. translators: %s: Number of times downloaded msgid "%s times" msgstr "%s veces" -#: includes/fs-plugin-info-dialog.php:1396 +#: includes/fs-plugin-info-dialog.php:1392 msgid "WordPress.org Plugin Page" msgstr "Página del plugin en WordPress.org" -#: includes/fs-plugin-info-dialog.php:1405 +#: includes/fs-plugin-info-dialog.php:1401 msgid "Plugin Homepage" msgstr "Página web del plugin" -#: includes/fs-plugin-info-dialog.php1414, -#: includes/fs-plugin-info-dialog.php:1498 +#: includes/fs-plugin-info-dialog.php1410, +#: includes/fs-plugin-info-dialog.php:1494 msgid "Donate to this plugin" msgstr "Donar a este plugin" -#: includes/fs-plugin-info-dialog.php:1421 +#: includes/fs-plugin-info-dialog.php:1417 msgid "Average Rating" msgstr "Calificación media" -#: includes/fs-plugin-info-dialog.php:1428 +#: includes/fs-plugin-info-dialog.php:1424 msgid "based on %s" msgstr "basado en %s" -#: includes/fs-plugin-info-dialog.php:1432 +#: includes/fs-plugin-info-dialog.php:1428 +#. translators: %s: 1 or One msgid "%s rating" msgstr "%s calificación" -#: includes/fs-plugin-info-dialog.php:1434 +#: includes/fs-plugin-info-dialog.php:1430 +#. translators: %s: Number larger than 1 msgid "%s ratings" msgstr "%s calificaciones" -#: includes/fs-plugin-info-dialog.php:1449 +#: includes/fs-plugin-info-dialog.php:1445 +#. translators: %s: 1 or One msgid "%s star" msgstr "%s estrella" -#: includes/fs-plugin-info-dialog.php:1451 +#: includes/fs-plugin-info-dialog.php:1447 +#. translators: %s: Number larger than 1 msgid "%s stars" msgstr "%s estrellas" -#: includes/fs-plugin-info-dialog.php:1463 +#: includes/fs-plugin-info-dialog.php:1459 +#. translators: %s: # of stars (e.g. 5 stars) msgid "Click to see reviews that provided a rating of %s" msgstr "Haz clic para ver los comentarios con una valoración de %s" -#: includes/fs-plugin-info-dialog.php:1476 +#: includes/fs-plugin-info-dialog.php:1472 msgid "Contributors" msgstr "Colaboradores" -#: includes/fs-plugin-info-dialog.php:1517 +#: includes/fs-plugin-info-dialog.php:1513 msgid "This plugin requires a newer version of PHP." -msgstr "This plugin requires a newer version of PHP." +msgstr "" -#: includes/fs-plugin-info-dialog.php:1526 -msgid "Click here to learn more about updating PHP." -msgstr "Click here to learn more about updating PHP." +#: includes/fs-plugin-info-dialog.php:1522 +#. translators: %s: URL to Update PHP page. +msgid "" +"Click here to learn more about updating " +"PHP." +msgstr "" -#: includes/fs-plugin-info-dialog.php1540, -#: includes/fs-plugin-info-dialog.php:1542 +#: includes/fs-plugin-info-dialog.php1538, +#: includes/fs-plugin-info-dialog.php:1536 msgid "Warning" msgstr "Atencion" -#: includes/fs-plugin-info-dialog.php:1540 +#: includes/fs-plugin-info-dialog.php:1538 +msgid "" +"This plugin has not been marked as compatible with your version of " +"WordPress." +msgstr "Este puglin no ha sido marcado como compatible con tu versión de WordPress." + +#: includes/fs-plugin-info-dialog.php:1536 msgid "This plugin has not been tested with your current version of WordPress." msgstr "Este plugin no ha sido probado con tu versión actual de WordPress." -#: includes/fs-plugin-info-dialog.php:1542 -msgid "This plugin has not been marked as compatible with your version of WordPress." -msgstr "Este puglin no ha sido marcado como compatible con tu versión de WordPress." - -#: includes/fs-plugin-info-dialog.php:1561 +#: includes/fs-plugin-info-dialog.php:1557 msgid "Paid add-on must be deployed to Freemius." msgstr "El complemento de pago se debe implementar en Freemius." -#: includes/fs-plugin-info-dialog.php:1562 +#: includes/fs-plugin-info-dialog.php:1558 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "El complemento debe implementarse en WordPress.org o en Freemius." -#: includes/fs-plugin-info-dialog.php:1583 -msgid "Newer Version (%s) Installed" -msgstr "Versión más reciente (%s) instalada" - -#: includes/fs-plugin-info-dialog.php:1584 -msgid "Newer Free Version (%s) Installed" -msgstr "Versión gratuita más reciente (%s) instalada" - -#: includes/fs-plugin-info-dialog.php:1591 +#: includes/fs-plugin-info-dialog.php:1587 msgid "Latest Version Installed" msgstr "Última versión instalada" -#: includes/fs-plugin-info-dialog.php:1592 +#: includes/fs-plugin-info-dialog.php:1588 msgid "Latest Free Version Installed" msgstr "Última versión gratuita instalada" -#: templates/account.php115, templates/forms/subscription-cancellation.php96, +#: includes/fs-plugin-info-dialog.php:1579 +msgid "Newer Version (%s) Installed" +msgstr "Versión más reciente (%s) instalada" + +#: includes/fs-plugin-info-dialog.php:1580 +msgid "Newer Free Version (%s) Installed" +msgstr "Versión gratuita más reciente (%s) instalada" + +#: templates/account.php111, templates/forms/subscription-cancellation.php96, #: templates/account/partials/addon.php31, #: templates/account/partials/site.php:313 msgid "Downgrading your plan" msgstr "Bajando tu plan" -#: templates/account.php116, templates/forms/subscription-cancellation.php97, +#: templates/account.php112, templates/forms/subscription-cancellation.php97, #: templates/account/partials/addon.php32, #: templates/account/partials/site.php:314 msgid "Cancelling the subscription" msgstr "Cancelando la suscripción" +#: templates/account.php114, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/site.php:316 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php118, templates/forms/subscription-cancellation.php99, -#: templates/account/partials/site.php:316 -msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." -msgstr "%1$s detendrá inmediatamente todos los pagos recurrentes futuros y tu licencia del plan %2$s caducará en %3$s." +msgid "" +"%1$s will immediately stop all future recurring payments and your %2$s plan " +"license will expire in %3$s." +msgstr "" +"%1$s detendrá inmediatamente todos los pagos recurrentes futuros y tu " +"licencia del plan %2$s caducará en %3$s." -#: templates/account.php119, templates/forms/subscription-cancellation.php100, +#: templates/account.php115, templates/forms/subscription-cancellation.php100, #: templates/account/partials/addon.php35, #: templates/account/partials/site.php:317 -msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." -msgstr "Ten en cuenta que no podremos abaratar los precios desactualizados para renovaciones/nuevas suscripciones después de una cancelación. Si eliges renovar la suscripción manualmente en el futuro, después de un aumento de precio, que generalmente ocurre una vez al año, se te cobrará el precio actualizado." +msgid "" +"Please note that we will not be able to grandfather outdated pricing for " +"renewals/new subscriptions after a cancellation. If you choose to renew the " +"subscription manually in the future, after a price increase, which " +"typically occurs once a year, you will be charged the updated price." +msgstr "" +"Ten en cuenta que no podremos abaratar los precios desactualizados para " +"renovaciones/nuevas suscripciones después de una cancelación. Si eliges " +"renovar la suscripción manualmente en el futuro, después de un aumento de " +"precio, que generalmente ocurre una vez al año, se te cobrará el precio " +"actualizado." -#: templates/account.php120, templates/forms/subscription-cancellation.php106, +#: templates/account.php116, templates/forms/subscription-cancellation.php106, #: templates/account/partials/addon.php:36 -msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" -msgstr "La cancelación del período de prueba bloqueará inmediatamente el acceso a todas las funciones premium. ¿Estás seguro?" +msgid "" +"Cancelling the trial will immediately block access to all premium features. " +"Are you sure?" +msgstr "" +"La cancelación del período de prueba bloqueará inmediatamente el acceso a " +"todas las funciones premium. ¿Estás seguro?" -#: templates/account.php121, templates/forms/subscription-cancellation.php101, +#: templates/account.php117, templates/forms/subscription-cancellation.php101, #: templates/account/partials/addon.php37, #: templates/account/partials/site.php:318 -msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." -msgstr "Todavía puedes disfrutar de todas las funciones de %s pero no tendrás acceso a soporte y actualizaciones de %s." +msgid "" +"You can still enjoy all %s features but you will not have access to %s " +"security & feature updates, nor support." +msgstr "" +"Todavía puedes disfrutar de todas las funciones de %s pero no tendrás " +"acceso a soporte y actualizaciones de %s." -#: templates/account.php122, templates/forms/subscription-cancellation.php102, +#: templates/account.php118, templates/forms/subscription-cancellation.php102, #: templates/account/partials/addon.php38, #: templates/account/partials/site.php:319 -msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." -msgstr "Una vez que caduque tu licencia todavía puedes utilizar la versión gratuita pero NO tendrás acceso a las funciones de %s." +msgid "" +"Once your license expires you can still use the Free version but you will " +"NOT have access to the %s features." +msgstr "" +"Una vez que caduque tu licencia todavía puedes utilizar la versión gratuita " +"pero NO tendrás acceso a las funciones de %s." -#. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php124, +#: templates/account.php120, #: templates/account/partials/activate-license-button.php31, #: templates/account/partials/addon.php:40 +#. translators: %s: Plan title (e.g. "Professional") msgid "Activate %s Plan" msgstr "Activar plan %s" -#. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php127, templates/account/partials/addon.php43, +#: templates/account.php123, templates/account/partials/addon.php43, #: templates/account/partials/site.php:293 +#. translators: %s: Time period (e.g. Auto renews in "2 months") msgid "Auto renews in %s" msgstr "Auto renovaciones en %s" -#. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php129, templates/account/partials/addon.php45, +#: templates/account.php125, templates/account/partials/addon.php45, #: templates/account/partials/site.php:295 +#. translators: %s: Time period (e.g. Expires in "2 months") msgid "Expires in %s" msgstr "Caduca en %s" -#: templates/account.php:130 -msgctxt "as synchronize license" -msgid "Sync License" -msgstr "Sincronizar licencia" - -#: templates/account.php131, templates/account/partials/addon.php:46 +#: templates/account.php127, templates/account/partials/addon.php:46 msgid "Cancel Trial" msgstr "Cancelar período de prueba" -#: templates/account.php132, templates/account/partials/addon.php:47 +#: templates/account.php128, templates/account/partials/addon.php:47 msgid "Change Plan" msgstr "Cambiar Plan" -#: templates/account.php133, templates/account/partials/addon.php:48 -msgctxt "verb" -msgid "Upgrade" -msgstr "Actualizar" - -#: templates/account.php135, templates/account/partials/addon.php50, -#: templates/account/partials/site.php:320 -msgctxt "verb" -msgid "Downgrade" -msgstr "Degradar" - -#: templates/account.php137, templates/add-ons.php246, +#: templates/account.php133, templates/add-ons.php246, #: templates/plugin-info/features.php72, #: templates/account/partials/addon.php52, #: templates/account/partials/site.php:33 msgid "Free" msgstr "Gratis" -#: templates/account.php139, templates/debug.php408, -#: includes/customizer/class-fs-customizer-upsell-control.php110, -#: templates/account/partials/addon.php:54 -msgctxt "as product pricing plan" -msgid "Plan" -msgstr "Plan" - -#: templates/account.php:140 +#: templates/account.php:136 msgid "Bundle Plan" msgstr "Plan combinado" -#: templates/account.php:272 +#: templates/account.php:268 msgid "Free Trial" msgstr "Período de prueba gratuito" -#: templates/account.php:283 +#: templates/account.php:279 msgid "Account Details" msgstr "Detalles de la cuenta" -#: templates/account.php290, templates/forms/data-debug-mode.php:33 -msgid "Start Debug" -msgstr "Iniciar Depuración" - -#: templates/account.php:292 +#: templates/account.php:288 msgid "Stop Debug" msgstr "Detener la depuración" -#: templates/account.php:299 +#: templates/account.php286, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" +msgstr "Iniciar Depuración" + +#: templates/account.php:295 msgid "Billing & Invoices" msgstr "Facturación y facturas" -#: templates/account.php322, templates/account/partials/addon.php236, +#: templates/account.php318, templates/account/partials/addon.php236, #: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "Desactivar licencia" -#: templates/account.php345, templates/forms/subscription-cancellation.php:125 +#: templates/account.php341, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "¿Estás seguro que quieres proceder?" -#: templates/account.php345, templates/account/partials/addon.php:260 +#: templates/account.php341, templates/account/partials/addon.php:260 msgid "Cancel Subscription" msgstr "Cancelar suscripción" -#: templates/account.php374, templates/account/partials/addon.php:345 -msgctxt "as synchronize" -msgid "Sync" -msgstr "Sincronizar" - -#: templates/account.php389, templates/debug.php:571 +#: templates/account.php385, templates/debug.php:575 msgid "Name" msgstr "Nombre" -#: templates/account.php395, templates/debug.php:572 +#: templates/account.php391, templates/debug.php:576 msgid "Email" msgstr "Correo electrónico" -#: templates/account.php402, templates/debug.php406, templates/debug.php:621 +#: templates/account.php398, templates/debug.php410, templates/debug.php:625 msgid "User ID" msgstr "ID de usuario" -#: templates/account.php420, templates/account.php738, -#: templates/account.php789, templates/debug.php267, templates/debug.php400, -#: templates/debug.php511, templates/debug.php570, templates/debug.php619, -#: templates/debug.php698, templates/account/payments.php35, +#: templates/account.php416, templates/account.php734, +#: templates/account.php785, templates/debug.php267, templates/debug.php404, +#: templates/debug.php515, templates/debug.php574, templates/debug.php623, +#: templates/debug.php702, templates/account/payments.php35, #: templates/debug/logger.php:21 msgid "ID" msgstr "ID" -#: templates/account.php:427 +#: templates/account.php:423 msgid "Site ID" msgstr "ID del sitio" -#: templates/account.php:430 +#: templates/account.php:426 msgid "No ID" msgstr "Sin ID" -#: templates/account.php435, templates/debug.php274, templates/debug.php409, -#: templates/debug.php515, templates/debug.php574, +#: templates/account.php431, templates/debug.php274, templates/debug.php413, +#: templates/debug.php519, templates/debug.php578, #: templates/account/partials/site.php:228 msgid "Public Key" msgstr "Clave pública" -#: templates/account.php441, templates/debug.php410, templates/debug.php516, -#: templates/debug.php575, templates/account/partials/site.php:241 +#: templates/account.php437, templates/debug.php414, templates/debug.php520, +#: templates/debug.php579, templates/account/partials/site.php:241 msgid "Secret Key" msgstr "Clave secreta" -#: templates/account.php:444 -msgctxt "as secret encryption key missing" -msgid "No Secret" -msgstr "Sin clave secreta" - -#: templates/account.php471, templates/account/partials/site.php120, -#: templates/account/partials/site.php:122 -msgid "Trial" -msgstr "Período de prueba gratuito" - -#: templates/account.php498, templates/debug.php627, +#: templates/account.php494, templates/debug.php631, #: templates/account/partials/site.php:262 msgid "License Key" msgstr "Clave de licencia" -#: templates/account.php:529 +#: templates/account.php467, templates/account/partials/site.php122, +#: templates/account/partials/site.php:120 +msgid "Trial" +msgstr "Período de prueba gratuito" + +#: templates/account.php:525 msgid "Join the Beta program" msgstr "Únete al programa Beta" -#: templates/account.php:535 +#: templates/account.php:531 msgid "not verified" msgstr "no verificado" -#: templates/account.php544, templates/account/partials/addon.php:195 -msgid "Expired" -msgstr "Caducado" +#: templates/account.php:600 +msgid "Free version" +msgstr "Versión gratuita" -#: templates/account.php:602 +#: templates/account.php:598 msgid "Premium version" msgstr "Versión premium" -#: templates/account.php:604 -msgid "Free version" -msgstr "Versión gratuita" +#: templates/account.php540, templates/account/partials/addon.php:195 +msgid "Expired" +msgstr "Caducado" -#: templates/account.php:616 +#: templates/account.php:612 msgid "Verify Email" msgstr "Verificar correo electrónico" -#: templates/account.php:630 -msgid "Download %s Version" -msgstr "Descargar versión %s" - -#: templates/account.php:646 -msgid "Download Paid Version" -msgstr "Descargar la versión de pago" - -#: templates/account.php664, templates/account.php927, -#: templates/account/partials/site.php250, -#: templates/account/partials/site.php:272 -msgctxt "verb" -msgid "Show" -msgstr "Mostrar" +#: templates/account.php689, templates/forms/user-change.php:27 +msgid "Change User" +msgstr "Cambiar usuario" -#: templates/account.php:680 +#: templates/account.php:676 msgid "What is your %s?" msgstr "¿Cual es tú %s?" -#: templates/account.php688, templates/account/billing.php:21 -msgctxt "verb" -msgid "Edit" -msgstr "Editar" +#: templates/account.php:626 +msgid "Download %s Version" +msgstr "Descargar versión %s" -#: templates/account.php693, templates/forms/user-change.php:27 -msgid "Change User" -msgstr "Cambiar usuario" +#: templates/account.php:642 +msgid "Download Paid Version" +msgstr "Descargar la versión de pago" -#: templates/account.php:717 +#: templates/account.php:713 msgid "Sites" msgstr "Sitios" -#: templates/account.php:730 +#: templates/account.php:726 msgid "Search by address" msgstr "Buscar por dirección" -#: templates/account.php739, templates/debug.php:403 +#: templates/account.php735, templates/debug.php:407 msgid "Address" msgstr "Dirección" -#: templates/account.php:740 +#: templates/account.php:736 msgid "License" msgstr "Licencia" -#: templates/account.php:741 +#: templates/account.php:737 msgid "Plan" msgstr "Plan" -#: templates/account.php:792 -msgctxt "as software license" -msgid "License" -msgstr "Licencia" - -#: templates/account.php:921 -msgctxt "verb" -msgid "Hide" -msgstr "Ocultar" - -#: templates/account.php943, templates/forms/data-debug-mode.php31, +#: templates/account.php939, templates/forms/data-debug-mode.php31, #: templates/forms/deactivation/form.php358, #: templates/forms/deactivation/form.php:389 msgid "Processing" msgstr "Procesando" -#: templates/account.php:946 +#: templates/account.php:942 msgid "Get updates for bleeding edge Beta versions of %s." msgstr "Obten actualizaciones para las versiones Beta de vanguardia de %s." -#: templates/account.php:1004 +#: templates/account.php:1000 msgid "Cancelling %s" msgstr "Cancelando %s" -#: templates/account.php1004, templates/account.php1021, +#: templates/account.php1000, templates/account.php1017, #: templates/forms/subscription-cancellation.php27, #: templates/forms/deactivation/form.php:178 msgid "trial" msgstr "período de prueba" -#: templates/account.php1019, templates/forms/deactivation/form.php:195 +#: templates/account.php1015, templates/forms/deactivation/form.php:195 msgid "Cancelling %s..." msgstr "Cancelando %s..." -#: templates/account.php1022, templates/forms/subscription-cancellation.php28, +#: templates/account.php1018, templates/forms/subscription-cancellation.php28, #: templates/forms/deactivation/form.php:179 msgid "subscription" msgstr "suscripción" -#: templates/account.php:1036 -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?" -msgstr "Al desactivar tu licencia todas las características premium se bloquearán, pero posibilitará poder activar tu licencia en otro sitio. ¿Estás seguro que quieres continuar?" +#: templates/account.php:1032 +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?" +msgstr "" +"Al desactivar tu licencia todas las características premium se bloquearán, " +"pero posibilitará poder activar tu licencia en otro sitio. ¿Estás seguro " +"que quieres continuar?" -#: templates/account.php:1110 +#: templates/account.php:1106 msgid "Disabling white-label mode" msgstr "Desactivar el modo de marca blanca" -#: templates/account.php:1111 +#: templates/account.php:1107 msgid "Enabling white-label mode" msgstr "Activar el modo de marca blanca" @@ -1565,26 +1571,15 @@ msgid "Add Ons for %s" msgstr "Complementos para %s" #: templates/add-ons.php:58 -msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "No pudimos cargar la lista de complementos. Probablemente sea un problema por nuestra parte, por favor, inténtalo de nuevo en unos minutos." - -#: templates/add-ons.php:229 -msgctxt "active add-on" -msgid "Active" -msgstr "Activo" - -#: templates/add-ons.php:230 -msgctxt "installed add-on" -msgid "Installed" -msgstr "Instalado" - -#: templates/admin-notice.php13, templates/forms/license-activation.php243, -#: templates/forms/resend-key.php:80 -msgctxt "as close a window" -msgid "Dismiss" -msgstr "Descartar" +msgid "" +"We couldn't load the add-ons list. It's probably an issue on our side, " +"please try to come back in few minutes." +msgstr "" +"No pudimos cargar la lista de complementos. Probablemente sea un problema " +"por nuestra parte, por favor, inténtalo de nuevo en unos minutos." #: templates/auto-installation.php:45 +#. translators: %s: Number of seconds msgid "%s sec" msgstr "%s seg" @@ -1593,198 +1588,204 @@ msgid "Automatic Installation" msgstr "Instalación automática" #: templates/auto-installation.php:93 -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." -msgstr "Una descarga automatizada y la instalación de %s (versión de pago) de %s comenzará en %s. Si quieres hacerlo manualmente - haz clic en el botón de cancelación." +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." +msgstr "" +"Una descarga automatizada y la instalación de %s (versión de pago) de %s " +"comenzará en %s. Si quieres hacerlo manualmente - haz clic en el botón de " +"cancelación." #: templates/auto-installation.php:104 -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." -msgstr "El proceso de instalación ha comenzado y puede tardar unos minutos en completarse. Por favor, espera hasta que se finalice - no actualices esta página." +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." +msgstr "" +"El proceso de instalación ha comenzado y puede tardar unos minutos en " +"completarse. Por favor, espera hasta que se finalice - no actualices esta " +"página." #: templates/auto-installation.php:109 msgid "Cancel Installation" msgstr "Cancelar instalación" -#: templates/checkout.php:180 +#: templates/checkout.php:181 msgid "Checkout" msgstr "Pagar" -#: templates/checkout.php:180 +#: templates/checkout.php:181 msgid "PCI compliant" msgstr "Compatible con PCI" -#. translators: %s: name (e.g. Hey John,) -#: templates/connect.php:121 -msgctxt "greeting" -msgid "Hey %s," -msgstr "Hey %s," +#: templates/connect.php:186 +#. translators: %1$s: plugin name (e.g., "Awesome Plugin"); %2$s: version +#. (e.g., "1.2.3") +msgid "Thank you for updating to %1$s v%2$s!" +msgstr "" -#: templates/connect.php:189 +#: templates/connect.php:178 msgid "Never miss an important update" -msgstr "Never miss an important update" - -#: templates/connect.php:197 -msgid "Thank you for updating to %1$s v%2$s!" -msgstr "Thank you for updating to %1$s v%2$s!" +msgstr "" -#: templates/connect.php:207 +#: templates/connect.php:196 msgid "Allow & Continue" msgstr "Permitir y continuar" -#: templates/connect.php:211 -msgid "Re-send activation email" -msgstr "Reenviar correo electrónico de activación" +#: templates/connect.php:236 +#. translators: %s: module type (plugin, theme, or add-on) +msgid "" +"We have introduced this opt-in so you never miss an important update and " +"help us make the %s more compatible with your site and better at doing what " +"you need it to." +msgstr "" -#: templates/connect.php:215 -msgid "Thanks %s!" -msgstr "¡Gracias %s!" +#: templates/connect.php:238 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info." +msgstr "" + +#: templates/connect.php:241 +msgid "If you skip this, that's okay! %1$s will still work just fine." +msgstr "" #: templates/connect.php:227 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info. This will help us make the %s more compatible " +"with your site and better at doing what you need it to." +msgstr "" + +#: templates/connect.php:216 msgid "Welcome to %s! To get started, please enter your license key:" msgstr "¡Bienvenido a %s! Para empezar, introduce tu clave de licencia:" -#: templates/connect.php:237 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." - -#: templates/connect.php:239 -msgid "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." - -#. translators: %s: module type (plugin, theme, or add-on) -#: templates/connect.php:245 -msgid "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." - -#: templates/connect.php:248 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." -msgstr "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." +#: templates/connect.php:200 +msgid "Re-send activation email" +msgstr "Reenviar correo electrónico de activación" -#: templates/connect.php:249 -msgid "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info." -msgstr "Opt in to get email notifications for security & feature updates, and to share some basic WordPress environment info." +#: templates/connect.php:204 +msgid "Thanks %s!" +msgstr "¡Gracias %s!" -#: templates/connect.php:252 -msgid "If you skip this, that's okay! %1$s will still work just fine." -msgstr "If you skip this, that's okay! %1$s will still work just fine." +#: templates/connect.php:205 +msgid "" +"You should receive a confirmation email for %s to your mailbox at %s. " +"Please make sure you click the button in that email to %s." +msgstr "" -#: templates/connect.php:282 +#: templates/connect.php:271 msgid "We're excited to introduce the Freemius network-level integration." msgstr "Estamos emocionados de introducir la integración de Freemius a nivel de red." #: templates/connect.php:285 -msgid "During the update process we detected %d site(s) that are still pending license activation." -msgstr "Durante el proceso de actualización hemos detectado%d sitio(s) que aún están pendientes de la activación de licencia." +msgid "" +"During the update process we detected %s site(s) in the network that are " +"still pending your attention." +msgstr "" +"Durante el proceso de actualización detectamos %s sitio(s) en la red que " +"todavía están pendientes de tu atención." -#: templates/connect.php:287 -msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." -msgstr "Si quieres utilizar %s en estos sitios, introduce por favor tu clave de licencia abajo y haz click en el botón de activación." +#: templates/connect.php:274 +msgid "" +"During the update process we detected %d site(s) that are still pending " +"license activation." +msgstr "" +"Durante el proceso de actualización hemos detectado%d sitio(s) que aún " +"están pendientes de la activación de licencia." + +#: templates/connect.php:276 +msgid "" +"If you'd like to use the %s on those sites, please enter your license key " +"below and click the activation button." +msgstr "" +"Si quieres utilizar %s en estos sitios, introduce por favor tu clave de " +"licencia abajo y haz click en el botón de activación." -#: templates/connect.php:289 +#: templates/connect.php:278 msgid "%s's paid features" msgstr "%s características de pago" -#: templates/connect.php:294 -msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." -msgstr "Alternativamente, puedes saltarlo ahora y activar la licencia después, en tu %s página de cuenta a nivel de red." - -#: templates/connect.php:296 -msgid "During the update process we detected %s site(s) in the network that are still pending your attention." -msgstr "Durante el proceso de actualización detectamos %s sitio(s) en la red que todavía están pendientes de tu atención." +#: templates/connect.php:283 +msgid "" +"Alternatively, you can skip it for now and activate the license later, in " +"your %s's network-level Account page." +msgstr "" +"Alternativamente, puedes saltarlo ahora y activar la licencia después, en " +"tu %s página de cuenta a nivel de red." -#: templates/connect.php305, templates/forms/data-debug-mode.php35, +#: templates/connect.php294, templates/forms/data-debug-mode.php35, #: templates/forms/license-activation.php:42 msgid "License key" msgstr "Clave de licencia" -#: templates/connect.php308, templates/forms/license-activation.php:22 +#: templates/connect.php297, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "¿No puedes encontrar tu clave de licencia?" -#: templates/connect.php371, templates/connect.php695, -#: templates/forms/deactivation/retry-skip.php:20 -msgctxt "verb" -msgid "Skip" -msgstr "Saltar" - -#: templates/connect.php:374 +#: templates/connect.php:363 msgid "Delegate to Site Admins" msgstr "Delegar a administradores del sitio" -#: templates/connect.php:374 -msgid "If you click it, this decision will be delegated to the sites administrators." -msgstr "Si haces click, esta decisión será delegada a los administradores de los sitios." +#: templates/connect.php:363 +msgid "" +"If you click it, this decision will be delegated to the sites " +"administrators." +msgstr "" +"Si haces click, esta decisión será delegada a los administradores de los " +"sitios." -#: templates/connect.php:401 +#: templates/connect.php:392 msgid "License issues?" msgstr "¿Problemas de licencia?" -#: templates/connect.php:425 -msgid "For delivery of security & feature updates, and license management, %s needs to" -msgstr "For delivery of security & feature updates, and license management, %s needs to" - -#: templates/connect.php:430 +#: templates/connect.php:421 msgid "This will allow %s to" -msgstr "This will allow %s to" +msgstr "" -#: templates/connect.php:445 -msgid "Don't have a license key?" -msgstr "¿No tienes una clave de licencia?" +#: templates/connect.php:416 +msgid "" +"For delivery of security & feature updates, and license management, %s " +"needs to" +msgstr "" -#: templates/connect.php:448 +#: templates/connect.php:439 msgid "Have a license key?" msgstr "¿Tienes una clave de licencia?" -#: templates/connect.php:456 +#: templates/connect.php:436 +msgid "Don't have a license key?" +msgstr "¿No tienes una clave de licencia?" + +#: templates/connect.php:447 msgid "Freemius is our licensing and software updates engine" msgstr "Freemius es nuestro motor de licencias y actualizaciones de software" -#: templates/connect.php:459 +#: templates/connect.php:450 msgid "Privacy Policy" msgstr "Política de privacidad" -#: templates/connect.php:461 -msgid "License Agreement" -msgstr "Acuerdo de licencia" - -#: templates/connect.php:461 +#: templates/connect.php:455 msgid "Terms of Service" msgstr "Términos de servicio" -#: templates/connect.php:881 -msgctxt "as in the process of sending an email" -msgid "Sending email" -msgstr "Enviando correo electrónico" - -#: templates/connect.php:882 -msgctxt "as activating plugin" -msgid "Activating" -msgstr "Activando" +#: templates/connect.php:453 +msgid "License Agreement" +msgstr "Acuerdo de licencia" #: templates/contact.php:78 msgid "Contact" msgstr "Contacto" -#: templates/debug.php:17 -msgctxt "as turned off" -msgid "Off" -msgstr "Apagado" - -#: templates/debug.php:18 -msgctxt "as turned on" -msgid "On" -msgstr "Encendido" - #: templates/debug.php:24 msgid "SDK" msgstr "SDK" -#: templates/debug.php:28 -msgctxt "as code debugging" -msgid "Debugging" -msgstr "Depurando" - -#: templates/debug.php58, templates/debug.php279, templates/debug.php411, -#: templates/debug.php:576 +#: templates/debug.php58, templates/debug.php279, templates/debug.php415, +#: templates/debug.php:580 msgid "Actions" msgstr "Acciones" @@ -1806,7 +1807,7 @@ msgstr "Borrar transients de actualizaciones" #: templates/debug.php:92 msgid "Reset Deactivation Snoozing" -msgstr "Reset Deactivation Snoozing" +msgstr "" #: templates/debug.php:100 msgid "Sync Data From Server" @@ -1832,11 +1833,6 @@ msgstr "Clave" msgid "Value" msgstr "Valor" -#: templates/debug.php:228 -msgctxt "as software development kit versions" -msgid "SDK Versions" -msgstr "Versiones SDK" - #: templates/debug.php:233 msgid "SDK Path" msgstr "Ruta del SDK" @@ -1857,20 +1853,15 @@ msgstr "Plugins" msgid "Themes" msgstr "Temas" -#: templates/debug.php268, templates/debug.php405, templates/debug.php513, +#: templates/debug.php268, templates/debug.php409, templates/debug.php517, #: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "Ruta" -#: templates/debug.php270, templates/debug.php:512 +#: templates/debug.php270, templates/debug.php:516 msgid "Title" msgstr "Título" -#: templates/debug.php:271 -msgctxt "as application program interface" -msgid "API" -msgstr "API" - #: templates/debug.php:272 msgid "Freemius State" msgstr "Estado Freemius" @@ -1883,141 +1874,117 @@ msgstr "Blog de red" msgid "Network User" msgstr "Usuario de red" -#: templates/debug.php:321 -msgctxt "as connection was successful" -msgid "Connected" -msgstr "Conectado" - -#: templates/debug.php:322 -msgctxt "as connection blocked" -msgid "Blocked" -msgstr "Bloqueado" - -#: templates/debug.php:358 +#: templates/debug.php:362 msgid "Simulate Trial Promotion" msgstr "Simular período de prueba" -#: templates/debug.php:370 +#: templates/debug.php:374 msgid "Simulate Network Upgrade" msgstr "Simular actualización de red" -#: templates/debug.php:394 +#: templates/debug.php:398 +#. translators: %s: 'plugin' or 'theme' msgid "%s Installs" msgstr "%s Instalaciones" -#: templates/debug.php:396 -msgctxt "like websites" -msgid "Sites" -msgstr "Sitios" - -#: templates/debug.php402, templates/account/partials/site.php:156 +#: templates/debug.php406, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "ID del blog" -#: templates/debug.php:407 +#: templates/debug.php:411 msgid "License ID" msgstr "ID de licencia" -#: templates/debug.php493, templates/debug.php599, -#: templates/account/partials/addon.php:440 -msgctxt "verb" -msgid "Delete" -msgstr "Borrar" - -#: templates/debug.php:507 +#: templates/debug.php:511 msgid "Add Ons of module %s" msgstr "Complementos del módulo %s" -#: templates/debug.php:566 +#: templates/debug.php:570 msgid "Users" msgstr "Usuarios" -#: templates/debug.php:573 +#: templates/debug.php:577 msgid "Verified" msgstr "Verificado" -#: templates/debug.php:615 +#: templates/debug.php:619 msgid "%s Licenses" msgstr "%s Licencias" -#: templates/debug.php:620 +#: templates/debug.php:624 msgid "Plugin ID" msgstr "ID del plugin" -#: templates/debug.php:622 +#: templates/debug.php:626 msgid "Plan ID" msgstr "ID del plan" -#: templates/debug.php:623 +#: templates/debug.php:627 msgid "Quota" msgstr "Cuota" -#: templates/debug.php:624 +#: templates/debug.php:628 msgid "Activated" msgstr "Activado" -#: templates/debug.php:625 +#: templates/debug.php:629 msgid "Blocking" msgstr "Bloqueando" -#: templates/debug.php626, templates/debug.php697, +#: templates/debug.php630, templates/debug.php701, #: templates/debug/logger.php:22 msgid "Type" msgstr "Tipo" -#: templates/debug.php:628 -msgctxt "as expiration date" -msgid "Expiration" -msgstr "Caducidad" - -#: templates/debug.php:656 +#: templates/debug.php:660 msgid "Debug Log" msgstr "Log de Debug" -#: templates/debug.php:660 +#: templates/debug.php:664 msgid "All Types" msgstr "Todos los Tipos" -#: templates/debug.php:667 +#: templates/debug.php:671 msgid "All Requests" msgstr "Todas las peticiones" -#: templates/debug.php672, templates/debug.php701, +#: templates/debug.php676, templates/debug.php705, #: templates/debug/logger.php:25 msgid "File" msgstr "Archivo" -#: templates/debug.php673, templates/debug.php699, +#: templates/debug.php677, templates/debug.php703, #: templates/debug/logger.php:23 msgid "Function" msgstr "Función" -#: templates/debug.php:674 +#: templates/debug.php:678 msgid "Process ID" msgstr "ID del proceso" -#: templates/debug.php:675 +#: templates/debug.php:679 msgid "Logger" msgstr "Logger" -#: templates/debug.php676, templates/debug.php700, +#: templates/debug.php680, templates/debug.php704, #: templates/debug/logger.php:24 msgid "Message" msgstr "Mensaje" -#: templates/debug.php:678 +#: templates/debug.php:682 msgid "Filter" msgstr "Filtro" -#: templates/debug.php:686 +#: templates/debug.php:690 msgid "Download" msgstr "Descarga" -#: templates/debug.php702, templates/debug/logger.php:26 +#: templates/debug.php706, templates/debug/logger.php:26 msgid "Timestamp" msgstr "Timestamp" #: templates/secure-https-header.php:28 +#. translators: %s: Page name msgid "Secure HTTPS %s page, running from an external domain" msgstr "Página segura HTTPS %s, desde un dominio externo" @@ -2026,12 +1993,6 @@ msgstr "Página segura HTTPS %s, desde un dominio externo" msgid "Support" msgstr "Soporte" -#: includes/debug/class-fs-debug-bar-panel.php48, -#: templates/debug/api-calls.php54, templates/debug/logger.php:62 -msgctxt "milliseconds" -msgid "ms" -msgstr "ms" - #: includes/debug/debug-bar-start.php:41 msgid "Freemius API" msgstr "API Freemius" @@ -2042,51 +2003,61 @@ msgstr "Peticiones" #: includes/managers/class-fs-clone-manager.php:839 msgid "Invalid clone resolution action." -msgstr "Invalid clone resolution action." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1024 msgid "products" -msgstr "products" - -#: includes/managers/class-fs-clone-manager.php:1205 -msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." -msgstr "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1211 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" -msgstr "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of %3$s:%1$s" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1212 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" -msgstr "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of these sites:%3$s%1$s" +msgstr "" + +#: includes/managers/class-fs-clone-manager.php:1205 +msgid "" +"%1$s has been placed into safe mode because we noticed that %2$s is an " +"exact copy of %3$s." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1238 msgid "the above-mentioned sites" -msgstr "the above-mentioned sites" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1251 msgid "Is %2$s a duplicate of %4$s?" -msgstr "Is %2$s a duplicate of %4$s?" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1252 -msgid "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." -msgstr "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." +msgid "" +"Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or " +"development." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1257 msgid "Long-Term Duplicate" -msgstr "Long-Term Duplicate" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1262 msgid "Duplicate Website" -msgstr "Duplicate Website" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1268 msgid "Is %2$s the new home of %4$s?" -msgstr "Is %2$s the new home of %4$s?" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1270 -msgid "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." -msgstr "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." +msgid "" +"Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to " +"%%2$s." +msgstr "" #: includes/managers/class-fs-clone-manager.php1271, #: templates/forms/subscription-cancellation.php:52 @@ -2095,161 +2066,169 @@ msgstr "licencia" #: includes/managers/class-fs-clone-manager.php:1271 msgid "data" -msgstr "data" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1277 msgid "Migrate License" -msgstr "Migrate License" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1278 msgid "Migrate" -msgstr "Migrate" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1284 msgid "Is %2$s a new website?" -msgstr "Is %2$s a new website?" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1285 msgid "Yes, %2$s is a new and different website that is separate from %4$s." -msgstr "Yes, %2$s is a new and different website that is separate from %4$s." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1287 msgid "It requires license activation." -msgstr "It requires license activation." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1294 msgid "New Website" -msgstr "New Website" - -#: includes/managers/class-fs-clone-manager.php:1319 -msgctxt "Clone resolution admin notice products list label" -msgid "Products" -msgstr "Productos" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1408 msgid "You marked this website, %s, as a temporary duplicate of %s." -msgstr "You marked this website, %s, as a temporary duplicate of %s." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1409 msgid "You marked this website, %s, as a temporary duplicate of these sites" -msgstr "You marked this website, %s, as a temporary duplicate of these sites" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1423 -msgid "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." -msgstr "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." - -#: includes/managers/class-fs-clone-manager.php:1426 -msgctxt "\"The \", e.g.: \"The plugin\"" -msgid "The %s's" -msgstr "The %s's" +msgid "" +"%s automatic security & feature updates and paid functionality will keep " +"working without interruptions until %s (or when your license expires, " +"whatever comes first)." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1429 msgid "The following products'" -msgstr "The following products'" +msgstr "" #: includes/managers/class-fs-clone-manager.php:1437 -msgid "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." -msgstr "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." +msgid "" +"If this is a long term duplicate, to keep automatic updates and paid " +"functionality after %s, please %s." +msgstr "" #: includes/managers/class-fs-clone-manager.php:1439 msgid "activate a license here" -msgstr "activate a license here" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:182 +#: includes/managers/class-fs-permission-manager.php:191 msgid "View Basic Website Info" -msgstr "View Basic Website Info" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:183 +#: includes/managers/class-fs-permission-manager.php:192 msgid "Homepage URL & title, WP & PHP versions, and site language" -msgstr "Homepage URL & title, WP & PHP versions, and site language" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:186 -msgid "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." -msgstr "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." +#: includes/managers/class-fs-permission-manager.php:195 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To provide additional functionality that's relevant to your website, avoid " +"WordPress or PHP version incompatibilities that can break your website, and " +"recognize which languages & regions the %s should be translated and " +"tailored to." +msgstr "" -#: includes/managers/class-fs-permission-manager.php:198 +#: includes/managers/class-fs-permission-manager.php:207 msgid "View Basic %s Info" -msgstr "View Basic %s Info" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:201 +#: includes/managers/class-fs-permission-manager.php:210 +#. translators: %s: 'Plugin' or 'Theme' msgid "Current %s & SDK versions, and if active or uninstalled" -msgstr "Current %s & SDK versions, and if active or uninstalled" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:252 +#: includes/managers/class-fs-permission-manager.php:261 msgid "View License Essentials" -msgstr "View License Essentials" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:253 -#: includes/managers/class-fs-permission-manager.php:263 -msgid "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." -msgstr "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." +#: includes/managers/class-fs-permission-manager.php:272 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To let you manage & control where the license is activated and ensure %s " +"security & feature updates are only delivered to websites you authorize." +msgstr "" -#: includes/managers/class-fs-permission-manager.php:275 +#: includes/managers/class-fs-permission-manager.php:284 msgid "View %s State" -msgstr "View %s State" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:278 +#: includes/managers/class-fs-permission-manager.php:287 +#. translators: %s: 'Plugin' or 'Theme' msgid "Is active, deactivated, or uninstalled" -msgstr "Is active, deactivated, or uninstalled" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:281 +#: includes/managers/class-fs-permission-manager.php:290 msgid "So you can reuse the license when the %s is no longer active." msgstr "De este modo, podrás reutilizar la licencia cuando el %s ya no esté activo." -#: includes/managers/class-fs-permission-manager.php:317 +#: includes/managers/class-fs-permission-manager.php:326 msgid "View Diagnostic Info" -msgstr "View Diagnostic Info" +msgstr "" -#: includes/managers/class-fs-permission-manager.php317, -#: includes/managers/class-fs-permission-manager.php:354 +#: includes/managers/class-fs-permission-manager.php326, +#: includes/managers/class-fs-permission-manager.php:363 msgid "optional" msgstr "opcional" -#: includes/managers/class-fs-permission-manager.php:318 +#: includes/managers/class-fs-permission-manager.php:327 msgid "WordPress & PHP versions, site language & title" -msgstr "WordPress & PHP versions, site language & title" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:321 -msgid "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." -msgstr "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." +#: includes/managers/class-fs-permission-manager.php:330 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To avoid breaking your website due to WordPress or PHP version " +"incompatibilities, and recognize which languages & regions the %s should be " +"translated and tailored to." +msgstr "" -#: includes/managers/class-fs-permission-manager.php:354 +#: includes/managers/class-fs-permission-manager.php:363 msgid "View Plugins & Themes List" -msgstr "View Plugins & Themes List" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:355 +#: includes/managers/class-fs-permission-manager.php:364 msgid "Names, slugs, versions, and if active or not" -msgstr "Names, slugs, versions, and if active or not" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:356 -msgid "To ensure compatibility and avoid conflicts with your installed plugins and themes." -msgstr "To ensure compatibility and avoid conflicts with your installed plugins and themes." +#: includes/managers/class-fs-permission-manager.php:365 +msgid "" +"To ensure compatibility and avoid conflicts with your installed plugins and " +"themes." +msgstr "" -#: includes/managers/class-fs-permission-manager.php:373 +#: includes/managers/class-fs-permission-manager.php:382 msgid "View Basic Profile Info" -msgstr "View Basic Profile Info" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:374 +#: includes/managers/class-fs-permission-manager.php:383 msgid "Your WordPress user's: first & last name, and email address" -msgstr "Your WordPress user's: first & last name, and email address" +msgstr "" -#: includes/managers/class-fs-permission-manager.php:375 -msgid "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." -msgstr "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." +#: includes/managers/class-fs-permission-manager.php:384 +msgid "" +"Never miss important updates, get security warnings before they become " +"public knowledge, and receive notifications about special offers and " +"awesome new features." +msgstr "" -#: includes/managers/class-fs-permission-manager.php:396 +#: includes/managers/class-fs-permission-manager.php:405 msgid "Newsletter" msgstr "Boletín" -#: includes/managers/class-fs-permission-manager.php:397 +#: includes/managers/class-fs-permission-manager.php:406 msgid "Updates, announcements, marketing, no spam" msgstr "Actualizaciones, anuncios, marketing, sin spam" -#: templates/account/billing.php:22 -msgctxt "verb" -msgid "Update" -msgstr "Actualizar" - #: templates/account/billing.php:33 msgid "Billing" msgstr "Facturación" @@ -2262,14 +2241,14 @@ msgstr "Nombre de la empresa" msgid "Tax / VAT ID" msgstr "Tax / Núm IVA" -#: templates/account/billing.php42, templates/account/billing.php43, -#: templates/account/billing.php:43 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "Línea de la dirección %d" #: templates/account/billing.php46, templates/account/billing.php:46 msgid "City" -msgstr "Ciudad" +msgstr "" #: templates/account/billing.php46, templates/account/billing.php:46 msgid "Town" @@ -2311,17 +2290,6 @@ msgstr "Cantidad" msgid "Invoice" msgstr "Factura" -#: templates/connect/permissions-group.php31, templates/forms/optout.php26, -#: templates/js/permissions.php:78 -msgctxt "verb" -msgid "Opt Out" -msgstr "Darse de baja" - -#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 -msgctxt "verb" -msgid "Opt In" -msgstr "Inscribirse" - #: templates/debug/api-calls.php:56 msgid "API" msgstr "API" @@ -2338,11 +2306,6 @@ msgstr "Código" msgid "Length" msgstr "Longitud" -#: templates/debug/api-calls.php:71 -msgctxt "as file/folder path" -msgid "Path" -msgstr "Ruta" - #: templates/debug/api-calls.php:73 msgid "Body" msgstr "Cuerpo" @@ -2363,24 +2326,18 @@ msgstr "Fin" msgid "Log" msgstr "Log" -#. translators: %s: time period (e.g. In "2 hours") #: templates/debug/plugins-themes-sync.php18, #: templates/debug/scheduled-crons.php:91 +#. translators: %s: time period (e.g. In "2 hours") msgid "In %s" msgstr "En %s" -#. translators: %s: time period (e.g. "2 hours" ago) #: templates/debug/plugins-themes-sync.php20, #: templates/debug/scheduled-crons.php:93 +#. translators: %s: time period (e.g. "2 hours" ago) msgid "%s ago" msgstr "hace %s" -#: templates/debug/plugins-themes-sync.php21, -#: templates/debug/scheduled-crons.php:74 -msgctxt "seconds" -msgid "sec" -msgstr "seg" - #: templates/debug/plugins-themes-sync.php:23 msgid "Plugins & Themes Sync" msgstr "Sincronizar plugins y temas" @@ -2414,154 +2371,206 @@ msgstr "Tipo de cron" msgid "Next" msgstr "Siguiente" -#: templates/forms/affiliation.php:83 +#: templates/forms/affiliation.php:86 msgid "Non-expiring" msgstr "Sin caducidad" -#: templates/forms/affiliation.php:86 +#: templates/forms/affiliation.php:89 msgid "Apply to become an affiliate" msgstr "Aceptar para hacerse afiliado" -#: templates/forms/affiliation.php:108 -msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." -msgstr "¡Tu aplicación al programa de afiliación para %s ha sido aceptada! Entra en tu área de afiliado desde: %s." +#: templates/forms/affiliation.php:137 +msgid "" +"Due to violation of our affiliation terms, we decided to temporarily block " +"your affiliation account. If you have any questions, please contact support." +msgstr "" +"Debido a la violación de nuestros términos de afiliados, hemos decidido " +"bloquear temporalmente tu cuenta de afiliación. Si tienes alguna pregunta, " +"por favor contacta nuestro soporte." -#: templates/forms/affiliation.php:123 -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." -msgstr "Gracias por aplicar a nuestro programa de afiliados, revisaremos tu petición durante los próximos 14 días y te volveremos a contactar con información adicional." +#: templates/forms/affiliation.php:134 +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." +msgstr "" +"Gracias por aplicar a nuestro programa de asociados, infortunadamente, de " +"momento hemos decidido rechazar tu petición. Por favor, prueba de nuevo en " +"30 días." -#: templates/forms/affiliation.php:126 +#: templates/forms/affiliation.php:131 msgid "Your affiliation account was temporarily suspended." msgstr "Tu cuenta de afiliado ha sido suspendida temporalmente." -#: templates/forms/affiliation.php:129 -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." -msgstr "Gracias por aplicar a nuestro programa de asociados, infortunadamente, de momento hemos decidido rechazar tu petición. Por favor, prueba de nuevo en 30 días." +#: templates/forms/affiliation.php:128 +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." +msgstr "" +"Gracias por aplicar a nuestro programa de afiliados, revisaremos tu " +"petición durante los próximos 14 días y te volveremos a contactar con " +"información adicional." -#: templates/forms/affiliation.php:132 -msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." -msgstr "Debido a la violación de nuestros términos de afiliados, hemos decidido bloquear temporalmente tu cuenta de afiliación. Si tienes alguna pregunta, por favor contacta nuestro soporte." +#: templates/forms/affiliation.php:113 +msgid "" +"Your affiliate application for %s has been accepted! Log in to your " +"affiliate area at: %s." +msgstr "" +"¡Tu aplicación al programa de afiliación para %s ha sido aceptada! Entra en " +"tu área de afiliado desde: %s." -#: templates/forms/affiliation.php:145 +#: templates/forms/affiliation.php:150 msgid "Like the %s? Become our ambassador and earn cash ;-)" msgstr "¿Te gusta %s? Conviértete en nuestro embajador y gana dinero ;-)" -#: templates/forms/affiliation.php:146 -msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" -msgstr "¡Envíanos nuevos usuarios a nuestro %s y gana %s de comisión en cada venta satisfactoria que nos hayas referido!" +#: templates/forms/affiliation.php:151 +msgid "" +"Refer new customers to our %s and earn %s commission on each successful " +"sale you refer!" +msgstr "" +"¡Envíanos nuevos usuarios a nuestro %s y gana %s de comisión en cada venta " +"satisfactoria que nos hayas referido!" -#: templates/forms/affiliation.php:149 +#: templates/forms/affiliation.php:154 msgid "Program Summary" msgstr "Sumario del programa" -#: templates/forms/affiliation.php:151 +#: templates/forms/affiliation.php:156 msgid "%s commission when a customer purchases a new license." msgstr "%s comisión cuando un cliente compra una nueva licencia." -#: templates/forms/affiliation.php:153 +#: templates/forms/affiliation.php:158 msgid "Get commission for automated subscription renewals." msgstr "Obtén comisiones por renovaciones automatizadas de las suscripciones." -#: templates/forms/affiliation.php:156 +#: templates/forms/affiliation.php:161 msgid "%s tracking cookie after the first visit to maximize earnings potential." -msgstr "%s tracking cookie después de la primera visita para maximizar las ganancias potenciales." +msgstr "" +"%s tracking cookie después de la primera visita para maximizar las " +"ganancias potenciales." -#: templates/forms/affiliation.php:159 +#: templates/forms/affiliation.php:164 msgid "Unlimited commissions." msgstr "Comisiones Ilimitadas." -#: templates/forms/affiliation.php:161 +#: templates/forms/affiliation.php:166 msgid "%s minimum payout amount." msgstr "%s cantidad mínima a pagar." -#: templates/forms/affiliation.php:162 +#: templates/forms/affiliation.php:167 msgid "Payouts are in USD and processed monthly via PayPal." msgstr "Los pagos son en USD y se procesan mensualmente por medio de PayPal." -#: templates/forms/affiliation.php:163 -msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." -msgstr "Como aplazamos 30 días para posible devoluciones, sólo pagamos comisiones que son de más de 30 días." +#: templates/forms/affiliation.php:168 +msgid "" +"As we reserve 30 days for potential refunds, we only pay commissions that " +"are older than 30 days." +msgstr "" +"Como aplazamos 30 días para posible devoluciones, sólo pagamos comisiones " +"que son de más de 30 días." -#: templates/forms/affiliation.php:166 +#: templates/forms/affiliation.php:171 msgid "Affiliate" msgstr "Afiliado" -#: templates/forms/affiliation.php169, templates/forms/resend-key.php:23 +#: templates/forms/affiliation.php174, templates/forms/resend-key.php:23 msgid "Email address" msgstr "Dirección de correo electrónico" -#: templates/forms/affiliation.php:173 +#: templates/forms/affiliation.php:178 msgid "Full name" msgstr "Nombre completo" -#: templates/forms/affiliation.php:177 +#: templates/forms/affiliation.php:182 msgid "PayPal account email address" msgstr "Dirección de correo electrónico de PayPal" -#: templates/forms/affiliation.php:181 +#: templates/forms/affiliation.php:186 msgid "Where are you going to promote the %s?" msgstr "¿Dónde vas a promocionar %s?" -#: templates/forms/affiliation.php:183 -msgid "Enter the domain of your website or other websites from where you plan to promote the %s." -msgstr "Introduce el dominio de tu sitio web o de otros sitios web donde planeas promocionar %s." +#: templates/forms/affiliation.php:188 +msgid "" +"Enter the domain of your website or other websites from where you plan to " +"promote the %s." +msgstr "" +"Introduce el dominio de tu sitio web o de otros sitios web donde planeas " +"promocionar %s." -#: templates/forms/affiliation.php:185 +#: templates/forms/affiliation.php:190 msgid "Add another domain" msgstr "Añadir otro dominio" -#: templates/forms/affiliation.php:189 +#: templates/forms/affiliation.php:194 msgid "Extra Domains" msgstr "Dominios extra" -#: templates/forms/affiliation.php:190 +#: templates/forms/affiliation.php:195 msgid "Extra domains where you will be marketing the product from." msgstr "Dominios extra desde donde promocionarás el producto." -#: templates/forms/affiliation.php:200 +#: templates/forms/affiliation.php:205 msgid "Promotion methods" msgstr "Métodos de promoción" -#: templates/forms/affiliation.php:203 +#: templates/forms/affiliation.php:208 msgid "Social media (Facebook, Twitter, etc.)" msgstr "Social media (Facebook, Twitter, etc.)" -#: templates/forms/affiliation.php:207 +#: templates/forms/affiliation.php:212 msgid "Mobile apps" msgstr "Apps móviles" -#: templates/forms/affiliation.php:211 +#: templates/forms/affiliation.php:216 msgid "Website, email, and social media statistics (optional)" msgstr "Sitio web, correo electrónico y estadísticas de social media (opcional)" -#: templates/forms/affiliation.php:214 -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)." -msgstr "Siéntete libre de proporcionarnos estadísticas de tu sitio web o social media, p.ej. visitas únicas mensuales, número de suscriptores de correo electrónico, seguidores, etc. (mantendremos esta información confidencial)" +#: templates/forms/affiliation.php:219 +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)." +msgstr "" +"Siéntete libre de proporcionarnos estadísticas de tu sitio web o social " +"media, p.ej. visitas únicas mensuales, número de suscriptores de correo " +"electrónico, seguidores, etc. (mantendremos esta información confidencial)" -#: templates/forms/affiliation.php:218 +#: templates/forms/affiliation.php:223 msgid "How will you promote us?" msgstr "¿Como nos promocionarás?" -#: templates/forms/affiliation.php:221 -msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." -msgstr "Por favor, danos detalles de como pretendes promocionar %s (por favor, se lo más específico que puedas)" +#: templates/forms/affiliation.php:226 +msgid "" +"Please provide details on how you intend to promote %s (please be as " +"specific as possible)." +msgstr "" +"Por favor, danos detalles de como pretendes promocionar %s (por favor, se " +"lo más específico que puedas)" -#: templates/forms/affiliation.php233, templates/forms/resend-key.php22, +#: templates/forms/affiliation.php238, templates/forms/resend-key.php22, #: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Cancelar" -#: templates/forms/affiliation.php:235 +#: templates/forms/affiliation.php:240 msgid "Become an affiliate" msgstr "Hacerse afiliado" #: templates/forms/data-debug-mode.php:25 msgid "Please enter the license key to enable the debug mode:" -msgstr "Por favor, introduce la clave de licencia para activar el modo de depuración:" +msgstr "" +"Por favor, introduce la clave de licencia para activar el modo de " +"depuración:" #: templates/forms/data-debug-mode.php:27 -msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" -msgstr "Para entrar en el modo de depuración, introduce la clave secreta del propietario de la licencia (UserID = %d), que puedes encontrar en la sección \"Mi perfil\" de tu panel de control de usuario:" +msgid "" +"To enter the debug mode, please enter the secret key of the license owner " +"(UserID = %d), which you can find in your \"My Profile\" section of your " +"User Dashboard:" +msgstr "" +"Para entrar en el modo de depuración, introduce la clave secreta del " +"propietario de la licencia (UserID = %d), que puedes encontrar en la " +"sección \"Mi perfil\" de tu panel de control de usuario:" #: templates/forms/data-debug-mode.php:32 msgid "Submit" @@ -2573,45 +2582,39 @@ msgstr "Clave de usuario" #: templates/forms/email-address-update.php:32 msgid "Email address update" -msgstr "Email address update" - -#: templates/forms/email-address-update.php33, -#: templates/forms/user-change.php:81 -msgctxt "close window" -msgid "Dismiss" -msgstr "Descartar" +msgstr "" #: templates/forms/email-address-update.php:38 msgid "Enter the new email address" -msgstr "Enter the new email address" +msgstr "" #: templates/forms/email-address-update.php:42 msgid "Are both %s and %s your email addresses?" -msgstr "Are both %s and %s your email addresses?" +msgstr "" #: templates/forms/email-address-update.php:50 msgid "Yes - both addresses are mine" -msgstr "Yes - both addresses are mine" +msgstr "" #: templates/forms/email-address-update.php:57 msgid "%s is my client's email address" -msgstr "%s is my client's email address" +msgstr "" #: templates/forms/email-address-update.php:66 msgid "%s is my email address" -msgstr "%s is my email address" +msgstr "" #: templates/forms/email-address-update.php:75 msgid "Would you like to merge %s into %s?" -msgstr "Would you like to merge %s into %s?" +msgstr "" #: templates/forms/email-address-update.php:84 msgid "Yes - move all my data and assets from %s to %s" -msgstr "Yes - move all my data and assets from %s to %s" +msgstr "" #: templates/forms/email-address-update.php:94 msgid "No - only move this site's data to %s" -msgstr "No - only move this site's data to %s" +msgstr "" #: templates/forms/email-address-update.php292, #: templates/forms/email-address-update.php:298 @@ -2619,48 +2622,55 @@ msgid "Update" msgstr "Actualizar" #: templates/forms/license-activation.php:23 -msgid "Please enter the license key that you received in the email right after the purchase:" -msgstr "Por favor, introduce la clave de licencia que recibiste en el correo electrónico al realizar la compra:" +msgid "" +"Please enter the license key that you received in the email right after the " +"purchase:" +msgstr "" +"Por favor, introduce la clave de licencia que recibiste en el correo " +"electrónico al realizar la compra:" #: templates/forms/license-activation.php:28 msgid "Update License" msgstr "Activar licencia" #: templates/forms/license-activation.php:34 -msgid "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." -msgstr "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." +msgid "" +"The %1$s will be periodically sending essential license data to %2$s to " +"check for security and feature updates, and verify the validity of your " +"license." +msgstr "" #: templates/forms/license-activation.php:39 msgid "Agree & Activate License" msgstr "De acuerdo y activar licencia" -#: templates/forms/license-activation.php:204 +#: templates/forms/license-activation.php:206 msgid "Associate with the license owner's account." msgstr "Asocia con la cuenta del propietario de la licencia." +#: templates/forms/optout.php:104 +msgid "Keep automatic updates" +msgstr "" + #: templates/forms/optout.php:44 msgid "Communication" -msgstr "Communication" +msgstr "" #: templates/forms/optout.php:56 msgid "Stay Connected" -msgstr "Stay Connected" +msgstr "" #: templates/forms/optout.php:61 msgid "Diagnostic Info" -msgstr "Diagnostic Info" +msgstr "" #: templates/forms/optout.php:77 msgid "Keep Sharing" -msgstr "Keep Sharing" +msgstr "" #: templates/forms/optout.php:82 msgid "Extensions" -msgstr "Extensions" - -#: templates/forms/optout.php:104 -msgid "Keep automatic updates" -msgstr "Keep automatic updates" +msgstr "" #: templates/forms/premium-versions-upgrade-handler.php:40 msgid "There is a new version of %s available." @@ -2668,48 +2678,72 @@ msgstr "Hay una nueva versión de %s disponible." #: templates/forms/premium-versions-upgrade-handler.php:41 msgid " %s to access version %s security & feature updates, and support." -msgstr " %s para acceder a la versión %s de actualizaciones de funciones, seguridad y soporte." +msgstr "" +" %s para acceder a la versión %s de actualizaciones de funciones, seguridad " +"y soporte." #: templates/forms/premium-versions-upgrade-handler.php:54 msgid "New Version Available" msgstr "Nueva versión disponible" -#: templates/forms/premium-versions-upgrade-handler.php:75 -msgctxt "close a window" -msgid "Dismiss" -msgstr "Descartar" - #: templates/forms/resend-key.php:21 msgid "Send License Key" msgstr "Enviar clave de licencia" #: templates/forms/resend-key.php:58 -msgid "Enter the email address you've used during the purchase and we will resend you the license key." -msgstr "Enter the email address you've used during the purchase and we will resend you the license key." +msgid "" +"Enter the email address you've used during the purchase and we will resend " +"you the license key." +msgstr "" #: templates/forms/resend-key.php:59 -msgid "Enter the email address you've used for the upgrade below and we will resend you the license key." -msgstr "Escribe abajo la dirección de correo electrónico que has usado para la actualización y te reenviaremos la clave de licencia." +msgid "" +"Enter the email address you've used for the upgrade below and we will " +"resend you the license key." +msgstr "" +"Escribe abajo la dirección de correo electrónico que has usado para la " +"actualización y te reenviaremos la clave de licencia." #: templates/forms/subscription-cancellation.php:37 -msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." -msgstr "Desactivar o desinstalar %s deshabilitará automáticamente la licencia, que podrás usar en otro sitio." +msgid "" +"Deactivating or uninstalling the %s will automatically disable the license, " +"which you'll be able to use on another site." +msgstr "" +"Desactivar o desinstalar %s deshabilitará automáticamente la licencia, que " +"podrás usar en otro sitio." #: templates/forms/subscription-cancellation.php:47 -msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" -msgstr "En caso de que NO estés planeando utilizar este %s en este sitio (o en cualquier otro sitio), ¿te gustaría cancelar también %s?" +msgid "" +"In case you are NOT planning on using this %s on this site (or any other " +"site) - would you like to cancel the %s as well?" +msgstr "" +"En caso de que NO estés planeando utilizar este %s en este sitio (o en " +"cualquier otro sitio), ¿te gustaría cancelar también %s?" #: templates/forms/subscription-cancellation.php:57 -msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." -msgstr "Cancelar %s - No necesito más actualizaciones de características y seguridad, ni soporte para %s porque no pretendo utilizar%s en este, u otro sitio." +msgid "" +"Cancel %s - I no longer need any security & feature updates, nor support " +"for %s because I'm not planning to use the %s on this, or any other site." +msgstr "" +"Cancelar %s - No necesito más actualizaciones de características y " +"seguridad, ni soporte para %s porque no pretendo utilizar%s en este, u otro " +"sitio." #: templates/forms/subscription-cancellation.php:68 -msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." -msgstr "No cancelar %s - Todavía estoy interesado en obtener actualizaciones de características y seguridad, así como poder contactar con soporte." +msgid "" +"Don't cancel %s - I'm still interested in getting security & feature " +"updates, as well as be able to contact support." +msgstr "" +"No cancelar %s - Todavía estoy interesado en obtener actualizaciones de " +"características y seguridad, así como poder contactar con soporte." #: templates/forms/subscription-cancellation.php:103 -msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." -msgstr "Una vez que tu licencia caduque no podrás seguir utilizando %s, a no ser que lo actives de nuevo con una licencia premium válida." +msgid "" +"Once your license expires you will no longer be able to use the %s, unless " +"you activate it again with a valid premium license." +msgstr "" +"Una vez que tu licencia caduque no podrás seguir utilizando %s, a no ser " +"que lo actives de nuevo con una licencia premium válida." #: templates/forms/subscription-cancellation.php:136 msgid "Cancel %s?" @@ -2725,12 +2759,27 @@ msgid "Cancel %s & Proceed" msgstr "Cancelar %s y proceder" #: templates/forms/trial-start.php:22 -msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." -msgstr "Estás a sólo 1-click de comenzar tu %1$s días de prueba gratuita del plan %2$s." +#. translators: %1$s: Number of trial days; %2$s: Plan name; +msgid "" +"You are 1-click away from starting your %1$s-day free trial of the %2$s " +"plan." +msgstr "" +"Estás a sólo 1-click de comenzar tu %1$s días de prueba gratuita del plan " +"%2$s." #: templates/forms/trial-start.php:28 -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." -msgstr "Para el cumplimiento de las directrices de WordPress.org, antes de empezar el período de prueba te pedimos que aceptes con tu usuario e información no sensible del sitio web, permitiendo a %s enviar datos periódicamente a %s para comprobar si hay actualizaciones de versión y para validar la versión de prueba." +#. translators: %s: Link to freemius.com +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." +msgstr "" +"Para el cumplimiento de las directrices de WordPress.org, antes de empezar " +"el período de prueba te pedimos que aceptes con tu usuario e información no " +"sensible del sitio web, permitiendo a %s enviar datos periódicamente a %s " +"para comprobar si hay actualizaciones de versión y para validar la versión " +"de prueba." #: templates/forms/user-change.php:26 msgid "By changing the user, you agree to transfer the account ownership to:" @@ -2756,14 +2805,6 @@ msgstr "Premium" msgid "Beta" msgstr "Beta" -#: templates/partials/network-activation.php:32 -msgid "Activate license on all sites in the network." -msgstr "Activar licencia en todos los sitios de la red." - -#: templates/partials/network-activation.php:33 -msgid "Apply on all sites in the network." -msgstr "Aplicar en todos los sitios de la red." - #: templates/partials/network-activation.php:36 msgid "Activate license on all pending sites." msgstr "Aplicar licencia en todos los sitios pendientes." @@ -2772,6 +2813,14 @@ msgstr "Aplicar licencia en todos los sitios pendientes." msgid "Apply on all pending sites." msgstr "Aplicar en todos los sitios pendientes." +#: templates/partials/network-activation.php:32 +msgid "Activate license on all sites in the network." +msgstr "Activar licencia en todos los sitios de la red." + +#: templates/partials/network-activation.php:33 +msgid "Apply on all sites in the network." +msgstr "Aplicar en todos los sitios de la red." + #: templates/partials/network-activation.php45, #: templates/partials/network-activation.php:79 msgid "allow" @@ -2787,8 +2836,8 @@ msgstr "delegar" msgid "skip" msgstr "saltar" -#: templates/plugin-info/description.php72, -#: templates/plugin-info/screenshots.php:31 +#: templates/plugin-info/description.php67, +#: templates/plugin-info/screenshots.php:26 msgid "Click to view full-size screenshot %d" msgstr "Click para ver la captura de pantalla a tamaño completo %d" @@ -2800,44 +2849,52 @@ msgstr "Actualizaciones Ilimitadas" msgid "Localhost" msgstr "Localhost" -#: templates/account/partials/activate-license-button.php:50 -msgctxt "as 5 licenses left" -msgid "%s left" -msgstr "quedan %s" - #: templates/account/partials/activate-license-button.php:51 msgid "Last license" msgstr "Última licencia" +#: templates/account/partials/addon.php:34 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account/partials/addon.php:34 -msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." -msgstr "%1$s detendrá inmediatamente todos los pagos recurrentes futuros y tu licencia del plan caducará en %s." - -#: templates/account/partials/addon.php:190 -msgid "Cancelled" -msgstr "Cancelado" +msgid "" +"%1$s will immediately stop all future recurring payments and your %s plan " +"license will expire in %s." +msgstr "" +"%1$s detendrá inmediatamente todos los pagos recurrentes futuros y tu " +"licencia del plan caducará en %s." #: templates/account/partials/addon.php:200 msgid "No expiration" msgstr "Sin caducidad" -#: templates/account/partials/disconnect-button.php:74 -msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." -msgstr "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." +#: templates/account/partials/addon.php:190 +msgid "Cancelled" +msgstr "Cancelado" #: templates/account/partials/disconnect-button.php:78 -msgid "Disconnecting the website will permanently remove %s from your User Dashboard's account." -msgstr "Disconnecting the website will permanently remove %s from your User Dashboard's account." +#. translators: %s is replaced with the website's homepage address. +msgid "" +"Disconnecting the website will permanently remove %s from your User " +"Dashboard's account." +msgstr "" + +#: templates/account/partials/disconnect-button.php:74 +msgid "" +"By disconnecting the website, previously shared diagnostic data about %1$s " +"will be deleted and no longer visible to %2$s." +msgstr "" #: templates/account/partials/disconnect-button.php:84 -msgid "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." -msgstr "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." +#. translators: %1$s is replaced by the paid plan name, %2$s is replaced with +#. an anchor link with the text "User Dashboard". +msgid "" +"If you wish to cancel your %1$s plan's subscription instead, please " +"navigate to the %2$s and cancel it there." +msgstr "" #: templates/account/partials/disconnect-button.php:88 msgid "Are you sure you would like to proceed with the disconnection?" -msgstr "Are you sure you would like to proceed with the disconnection?" +msgstr "" #: templates/account/partials/site.php:190 msgid "Owner Name" @@ -2857,7 +2914,9 @@ msgstr "Suscripción" #: templates/forms/deactivation/contact.php:19 msgid "Sorry for the inconvenience and we are here to help if you give us a chance." -msgstr "Disculpa las molestias y estamos aquí para ayudarte si nos das una oportunidad." +msgstr "" +"Disculpa las molestias y estamos aquí para ayudarte si nos das una " +"oportunidad." #: templates/forms/deactivation/contact.php:22 msgid "Contact Support" @@ -2869,16 +2928,16 @@ msgstr "Comentarios anónimos" #: templates/forms/deactivation/form.php:71 msgid "hour" -msgstr "hour" +msgstr "" #: templates/forms/deactivation/form.php:76 msgid "hours" -msgstr "hours" +msgstr "" #: templates/forms/deactivation/form.php81, #: templates/forms/deactivation/form.php:86 msgid "days" -msgstr "days" +msgstr "" #: templates/forms/deactivation/form.php:106 msgid "Deactivate" @@ -2914,7 +2973,7 @@ msgstr "Por favor, dínos la razón para que podamos mejorar." #: templates/forms/deactivation/form.php:478 msgid "Snooze & %s" -msgstr "Snooze & %s" +msgstr "" #: templates/forms/deactivation/form.php:638 msgid "Yes - %s" @@ -2929,5 +2988,457 @@ msgid "Click here to use the plugin anonymously" msgstr "Haz click aquí para utilizar el plugin de forma anónima" #: templates/forms/deactivation/retry-skip.php:23 -msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in." -msgstr "Es posible que te lo hayas perdido, pero no tienes que compartir ningún dato y puedes solo aceptar %s." +msgid "" +"You might have missed it, but you don't have to share any data and can just " +"%s the opt-in." +msgstr "" +"Es posible que te lo hayas perdido, pero no tienes que compartir ningún " +"dato y puedes solo aceptar %s." + +#: includes/class-freemius.php4842, includes/class-freemius.php21166, +#: includes/class-freemius.php:24835 +msgctxt "interjection expressing joy or exuberance" +msgid "Yee-haw" +msgstr "Vaya" + +#: includes/class-freemius.php:4856 +msgctxt "addonX cannot run without pluginY" +msgid "%s cannot run without %s." +msgstr "%s no se puede ejecutar sin %s." + +#: includes/class-freemius.php:4857 +msgctxt "addonX cannot run..." +msgid "%s cannot run without the plugin." +msgstr "%s no se puede ejecutar sin el plugin." + +#: includes/class-freemius.php4859, includes/class-freemius.php6051, +#: includes/class-freemius.php13828, includes/class-freemius.php14567, +#: includes/class-freemius.php18322, includes/class-freemius.php18435, +#: includes/class-freemius.php18612, includes/class-freemius.php20897, +#: includes/class-freemius.php21996, includes/class-freemius.php23012, +#: includes/class-freemius.php23142, includes/class-freemius.php23285, +#: templates/add-ons.php:57 +msgctxt "exclamation" +msgid "Oops" +msgstr "Oops" + +#: includes/class-freemius.php:24141 +msgctxt "exclamation" +msgid "Hey" +msgstr "Hey" + +#: includes/class-freemius.php5728, includes/class-freemius.php:7765 +msgctxt "" +"Used to express elation, enthusiasm, or triumph (especially in electronic " +"communication)." +msgid "W00t" +msgstr "W00t" + +#: includes/class-freemius.php:7062 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "a license key" +msgstr "" + +#: includes/class-freemius.php:7056 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "the installation instructions" +msgstr "" + +#: includes/class-freemius.php:7078 +msgctxt "Part of an activation link message." +msgid "Click here" +msgstr "" + +#: includes/class-freemius.php:7085 +msgctxt "" +"Part of the message that tells the user to check their spam folder for a " +"specific email." +msgid "the product's support email address" +msgstr "" + +#: includes/class-freemius.php:7232 +msgctxt "%s - plugin name. As complete \"PluginX\" activation now" +msgid "Complete \"%s\" Activation Now" +msgstr "Completar la activación de \"%s\" ahora" + +#: includes/class-freemius.php:19155 +msgctxt "ASCII arrow left icon" +msgid "←" +msgstr "←" + +#: includes/class-freemius.php:19155 +msgctxt "ASCII arrow right icon" +msgid "➤" +msgstr "➤" + +#: includes/class-freemius.php19157, templates/pricing.php:110 +msgctxt "noun" +msgid "Pricing" +msgstr "Precio" + +#: includes/fs-plugin-info-dialog.php:1239 +msgctxt "noun" +msgid "Price" +msgstr "Precio" + +#: includes/class-freemius.php:20392 +msgctxt "a positive response" +msgid "Right on" +msgstr "Bien hecho" + +#: includes/class-freemius.php21511, includes/class-freemius.php21783, +#: includes/class-freemius.php21836, includes/class-freemius.php:21943 +msgctxt "" +"something somebody says when they are thinking about what you have just " +"said." +msgid "Hmm" +msgstr "Hmm" + +#: includes/class-freemius.php21525, templates/account.php132, +#: templates/add-ons.php250, templates/account/partials/addon.php:51 +msgctxt "trial period" +msgid "Trial" +msgstr "Período de Prueba Gratuito" + +#: includes/class-freemius.php:23247 +msgctxt "as congratulations" +msgid "Congrats" +msgstr "Felicidades" + +#: includes/class-freemius.php:23512 +msgctxt "advance notice of something that will need attention." +msgid "Heads up" +msgstr "Atención" + +#: includes/class-freemius.php24157, templates/forms/trial-start.php:53 +msgctxt "call to action" +msgid "Start free trial" +msgstr "Comenzar el período de prueba gratuito" + +#: includes/fs-plugin-info-dialog.php543, +#: templates/account/partials/addon.php:390 +msgctxt "verb" +msgid "Purchase" +msgstr "Comprar" + +#: templates/account.php129, templates/account/partials/addon.php:48 +msgctxt "verb" +msgid "Upgrade" +msgstr "Actualizar" + +#: templates/account.php131, templates/account/partials/addon.php50, +#: templates/account/partials/site.php:320 +msgctxt "verb" +msgid "Downgrade" +msgstr "Degradar" + +#: templates/account.php684, templates/account/billing.php:21 +msgctxt "verb" +msgid "Edit" +msgstr "Editar" + +#: templates/account.php660, templates/account.php923, +#: templates/account/partials/site.php250, +#: templates/account/partials/site.php:272 +msgctxt "verb" +msgid "Show" +msgstr "Mostrar" + +#: templates/account.php:917 +msgctxt "verb" +msgid "Hide" +msgstr "Ocultar" + +#: templates/connect.php360, templates/connect.php690, +#: templates/forms/deactivation/retry-skip.php:20 +msgctxt "verb" +msgid "Skip" +msgstr "Saltar" + +#: templates/debug.php497, templates/debug.php603, +#: templates/account/partials/addon.php:440 +msgctxt "verb" +msgid "Delete" +msgstr "Borrar" + +#: templates/account/billing.php:22 +msgctxt "verb" +msgid "Update" +msgstr "Actualizar" + +#: templates/connect/permissions-group.php31, templates/forms/optout.php26, +#: templates/js/permissions.php:78 +msgctxt "verb" +msgid "Opt Out" +msgstr "Darse de baja" + +#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 +msgctxt "verb" +msgid "Opt In" +msgstr "Inscribirse" + +#: includes/fs-plugin-info-dialog.php:772 +msgctxt "as download latest version" +msgid "Download Latest Free Version" +msgstr "Descargar la última versión gratuita" + +#: includes/fs-plugin-info-dialog.php773, templates/account.php110, +#: templates/add-ons.php37, templates/account/partials/addon.php:30 +msgctxt "as download latest version" +msgid "Download Latest" +msgstr "Descargar la última" + +#: includes/fs-plugin-info-dialog.php:999 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "Descripción" + +#: includes/fs-plugin-info-dialog.php:1000 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "Instalación" + +#: includes/fs-plugin-info-dialog.php:1001 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "FAQ" + +#: includes/fs-plugin-info-dialog.php:1003 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "Registro de cambios" + +#: includes/fs-plugin-info-dialog.php:1004 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "Valoraciones" + +#: includes/fs-plugin-info-dialog.php:1005 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "Otras notas" + +#: includes/fs-plugin-info-dialog.php:1020 +msgctxt "Plugin installer section title" +msgid "Features & Pricing" +msgstr "Características y precios" + +#: includes/fs-plugin-info-dialog.php:1102 +msgctxt "e.g. Professional Plan" +msgid "%s Plan" +msgstr "Plan %s" + +#: includes/fs-plugin-info-dialog.php:1128 +msgctxt "e.g. the best product" +msgid "Best" +msgstr "El mejor" + +#: includes/fs-plugin-info-dialog.php1134, +#: includes/fs-plugin-info-dialog.php:1154 +msgctxt "as every month" +msgid "Monthly" +msgstr "Mensual" + +#: includes/fs-plugin-info-dialog.php:1137 +msgctxt "as once a year" +msgid "Annual" +msgstr "Anual" + +#: includes/fs-plugin-info-dialog.php:1156 +msgctxt "as once a year" +msgid "Annually" +msgstr "Anualmente" + +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "as once a year" +msgid "Once" +msgstr "Una vez" + +#: includes/fs-plugin-info-dialog.php1154, +#: includes/fs-plugin-info-dialog.php1156, +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "e.g. billed monthly" +msgid "Billed %s" +msgstr "Facturado %s" + +#: includes/fs-plugin-info-dialog.php1178, +#: templates/plugin-info/features.php:82 +msgctxt "as monthly period" +msgid "mo" +msgstr "me" + +#: includes/fs-plugin-info-dialog.php1185, +#: templates/plugin-info/features.php:80 +msgctxt "as annual period" +msgid "year" +msgstr "año" + +#: includes/fs-plugin-info-dialog.php1315, templates/account.php121, +#: templates/debug.php232, templates/debug.php269, templates/debug.php518, +#: templates/account/partials/addon.php:41 +msgctxt "product version" +msgid "Version" +msgstr "Versión" + +#: includes/fs-plugin-info-dialog.php:1322 +msgctxt "as the plugin author" +msgid "Author" +msgstr "Autor" + +#: includes/fs-plugin-info-dialog.php1334, templates/account.php:540 +#. translators: %s: time period (e.g. "2 hours" ago) +msgctxt "x-ago" +msgid "%s ago" +msgstr "hace %s" + +#: templates/account.php:126 +msgctxt "as synchronize license" +msgid "Sync License" +msgstr "Sincronizar licencia" + +#: templates/account.php135, templates/debug.php412, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:54 +msgctxt "as product pricing plan" +msgid "Plan" +msgstr "Plan" + +#: templates/account.php370, templates/account/partials/addon.php:345 +msgctxt "as synchronize" +msgid "Sync" +msgstr "Sincronizar" + +#: templates/account.php:440 +msgctxt "as secret encryption key missing" +msgid "No Secret" +msgstr "Sin clave secreta" + +#: templates/account.php:788 +msgctxt "as software license" +msgid "License" +msgstr "Licencia" + +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "Activo" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "Instalado" + +#: templates/admin-notice.php17, templates/forms/license-activation.php245, +#: templates/forms/resend-key.php:80 +msgctxt "as close a window" +msgid "Dismiss" +msgstr "Descartar" + +#: templates/connect.php:118 +#. translators: %s: name (e.g. Hey John,) +msgctxt "greeting" +msgid "Hey %s," +msgstr "Hey %s," + +#: templates/connect.php:876 +msgctxt "as in the process of sending an email" +msgid "Sending email" +msgstr "Enviando correo electrónico" + +#: templates/connect.php:877 +msgctxt "as activating plugin" +msgid "Activating" +msgstr "Activando" + +#: templates/debug.php:17 +msgctxt "as turned off" +msgid "Off" +msgstr "Apagado" + +#: templates/debug.php:18 +msgctxt "as turned on" +msgid "On" +msgstr "Encendido" + +#: templates/debug.php:28 +msgctxt "as code debugging" +msgid "Debugging" +msgstr "Depurando" + +#: templates/debug.php:228 +msgctxt "as software development kit versions" +msgid "SDK Versions" +msgstr "Versiones SDK" + +#: templates/debug.php:271 +msgctxt "as application program interface" +msgid "API" +msgstr "API" + +#: templates/debug.php:323 +msgctxt "as connection was successful" +msgid "Connected" +msgstr "Conectado" + +#: templates/debug.php:325 +msgctxt "as connection blocked" +msgid "Blocked" +msgstr "Bloqueado" + +#: templates/debug.php:326 +msgctxt "API connectivity state is unknown" +msgid "Unknown" +msgstr "" + +#: templates/debug.php:400 +msgctxt "like websites" +msgid "Sites" +msgstr "Sitios" + +#: templates/debug.php:632 +msgctxt "as expiration date" +msgid "Expiration" +msgstr "Caducidad" + +#: includes/debug/class-fs-debug-bar-panel.php51, +#: templates/debug/api-calls.php54, templates/debug/logger.php:62 +msgctxt "milliseconds" +msgid "ms" +msgstr "ms" + +#: includes/managers/class-fs-clone-manager.php:1319 +msgctxt "Clone resolution admin notice products list label" +msgid "Products" +msgstr "Productos" + +#: includes/managers/class-fs-clone-manager.php:1426 +msgctxt "\"The \", e.g.: \"The plugin\"" +msgid "The %s's" +msgstr "" + +#: templates/debug/api-calls.php:71 +msgctxt "as file/folder path" +msgid "Path" +msgstr "Ruta" + +#: templates/debug/plugins-themes-sync.php21, +#: templates/debug/scheduled-crons.php:74 +msgctxt "seconds" +msgid "sec" +msgstr "seg" + +#: templates/forms/email-address-update.php33, +#: templates/forms/user-change.php:81 +msgctxt "close window" +msgid "Dismiss" +msgstr "Descartar" + +#: templates/forms/premium-versions-upgrade-handler.php:75 +msgctxt "close a window" +msgid "Dismiss" +msgstr "Descartar" + +#: templates/account/partials/activate-license-button.php:50 +msgctxt "as 5 licenses left" +msgid "%s left" +msgstr "quedan %s" diff --git a/languages/freemius-fr_FR.mo b/languages/freemius-fr_FR.mo index bc2889ccc8b8a88ef020b5aae1df2e67b93323a6..db982c1e50864727c186d0b60588304d5a52b49f 100644 GIT binary patch delta 8741 zcmaLbd0duN`p5BG1w=pr1r08_jooZN#rB6_U&hlh6`w-|a1qn+IyS&QQH~Ra z{V*IKN4<9;`r|U&-x$UEHPKcEw8GsOfNx?Dp2lGO(vJU#?djJiEwR`Eb>Dc@ii)ra z&avZ5Pytq>7Wg_UkVDuNkGbu@PpHW5pkCy|ED9(HqcH+oVk#qv%b4wC!i02mNepjQObd%|RCEc9zjlBEW~j_{LIse5`~-XB zUs0K8MP;fc!tp+~M~$~jGJ$nOWumLKKQ^JChJ`rQ_TNWk>H=!PUnBo@t|gKGW;DVd zcAN#6gyXOVl>u)KscIk!TVWsUfD@4HJBv}z@5eFt4r(h}@;QvgE?6HY;0VmX?zkKC z@b7LKvuF%uRC`p5O4VmL4=-RM%(ez3hd-7{Z0os1+5VR#a+TfSTx8RA8&I4Q|I!JcC-{ zWz_RGP|{l4U1k$0w{8;7D&JQ}rvrAR?LD=-F6p(ebB z&GBc9MIQ=Br=SOp!{PWIzJe;c85E2H--4m__}>8Y9qBoc{SV{9`hjLehtQw?QPkd^ zMeX%@Q~;N;BQ_pnev0)#O^|^~=}Oe~BiJ4<<4E)!YyzKz+PZ1BUoqHij>AF*l#+d@ z0KUL*ylQW3G{giFh{`|&Dy1>jBvb~IQO^%S74>*KUVys43luDy$VV-scws!peO1>)E~WY3aUnO&>QoyA(o;7nTM){<*0zxqXOB9+FExF4Hu0o zScH>@n$*3Iitq)Dp^uUeS9=G6do&R@e zOlKf)n0cTA74ZVp#J{uSFWB*yQK#f})P%LDz)qp|_7i*k8`SeZ<9hU9whdT~@t80| zTg?7v(dfXyBJ{yM*26fN{z(kNFe*u(+$2=d4n_*u$wf`P8&xwWa0&hmb96n;oRSYv z8TmJA0r%01`5oVM^TMVWO+Nvd)0v1va3?B-H&8G5)%pOHQqNIl+y~VUz(E*{3OEA; zu^4r17h)599^ERU9d_V#>`4C@Dz)F*{tcW;ztw0nJ`WYhBI{DrN>`#c{)AfLT~twf z^P^GyHrN#7Q19A9#=;zkAd6h`5SapYgAKEOaAKEQYke9Y`+KP;i2g~|9SHpc*>)dbNv z2}dF^IJ=QWJNGdTM@_Kb7vu-5vk!IuRZPNx?um}W4=Seur{SB(wmL1ji&&fj%)}E| zjo}%NLqR*W7=vC^sA?o0BXKUOm|sAx@LkkdRP}N<8!MFl7!7CVoXHe(<@78$Rq}EHQ0I#E}KRlZN zncs<~p$B@S0vU#ya6IaRlwLIoCv+R~n= zW0-<&y=XKIeGsOiJ~T6}b5Yk9pDX8~6ihlSQ z>I0XJK3IslJ{z?Ki;Bp<8p|0VIOjQ>gm+Oder%@sFwMaR^glw?z&Y!es0l8kQhE*b zzWY|MVl#0QR1t@u-W!i9#xyq#JvakZ91E=b?fBQI7v4hc?LAacHZC#8t}QBnM^N_- z!2USQ_E(`YyaBcHoz{cck-qx`4IQKJP{*p_EK>^)p(5^x3$QP0f)jWQ&!Fyqy40NS zjTo!z*aolTVDv9D{l{=V{R-sc=iJ6fo&PkKIrlE~q-)Xiv?>#Vx3u&mm$w5815Cd=- z>cyK-FM1u>4d*mA#jbPAbE&9)4l3ZesAIR#jz5D@^fzHV^E=0BB;xnj6Wh!+4`!fN zn1hrD%E8mQbaStl6BdF)jp)&es+rNy;^#pL z!`|4Q{vgx`qzJX5rC5z?P%G*5gxTYC)O}^BjIBgv@k7#@jHV#cov_+E>x7N{}6V@qo@pBK`rD548aGOh9Ok4t{0%5 zD_ubT$JV1N?S((m*M#R$EBFU0g*Q=KP;a66Q%o=h(qDy2=~h%`_Tn&n6T`9IBL1C- zZEy-6z&7Z=*c`tEHw{(oWbA^Ks9M;IO5NWu5AUK@lFhOca6Z<@eVC3l*c%%>&8jd3 zm*D}7!Cp(u%CnIeoEfNb_jMZGX*7SvRR2hfqMwZlU>T~YwqZQJjY{El)TjCuD&Pm$ z6BC!3UpR{JCHkkZD^4St*Ki|7;DF_ITjF+dXm~Ji2wivtM_}yl%tV!_YJCco@@iBd zdodI*q4xS$^hWPz&2xdMV;F+|*xC9B>bc?QrSo4vBZYxk7>oO{5&jh$;1%@3f1y_X zGisu{*cLrjn9N0^?t28aRRd6gO~FVkLcMPdDxh^3%>2$a8hUXp>c&&3lzoE{7`oDY z5&NL-OGUjX9er^ucEiUp8J|b3@N-lV|BRZ@W0m>meGuyTq3C8ioDnqS=cpHEt~L+M zz;^U2(Gy=rZN*O1X*iDhVxGe$_${iIZlj7iZjH(02vm`dM=f9%j>Y|J$iJ%D^Ene~ zcT~}(qQ-Nu6>h)@cmTgcpS9*sueWeN{Vr9cxgNiKVln-c^`?m5KyAsNP_=Lo{qQqP^pPV?O`X>1A|a29&P*6aT0wOYDFJm2mIXj_2*J$!W+9{U-ZX0 zsLVWr3T(TZMr#^-(FZ?3-FO}~;XhHu_A3Ts{f#E_mZ*v2u`zZ>-9HGmB@B>`Os%=2XlQ~|RMCt=WuzFDi3)6vPonm?3Ip*K>mgKNr%{1iLKWe6$T!RB zP|Z(1+>5ao`+`|u1`?RtnL(oq7nY-rQ!Ofxzn~_(gIZ~$&88LtQ7h|=D%M2Q_ahlQ z;sDIRVl2TAP^s><#RS+7m4P($)cMb+p*=1}y|5BB;Zh91)fk6cQJMM}+u#K}h<9)w zzVV`2;nbJR9TP*IT zKMCif$1CPvN{dk|JdE1=w^0+G!*INaTEHF5!Va&Re=|OdZteA-XegzBvHrt)6_tS- zs1!TfOkkcELO0Vo50%m?RBh}~KZ#T!g?RN67NXIfDC!-$BL9M71 zmtX}d(EF$fymy!nQ!7-zFSfb3A(PGAkI5 zI!3dwJwA=9?meijIEgB-yln=K#BNxN1Mx>(h27rZ7g2l{ z^RN#UtG;_X4c_gv-f#ByeTS7q#~#*a_F#>&MZD z{%O>EKSh1WE}#eAs2gYhZ`vE~qV}-9~2Hf+ND&K??yv=&S8UEA;erb%gkRKz1u6O6I_@u*BpMo-MK{X*L> zLj_WS0a%IJf))09HP-$8Zz~PGXeVldeW*we+I}szrhgn2=q2m7sM`1m6+qx&Gf@lF zmc^hlkcfJJ3hKQ>P_;7hFh3-f+DZ0?Lev(N*&8cSFIa3{je7Cs!v`01DjMiLy(~9( zX2EP%)h{Kf?S^N$%45ftWfi-MvdT-!dPR(xo8`*SD$j}-l3(J=?;MfXCGp{^ZL``n zboGjl&zd!>>f>20gUWNWX1d}NdOV!eH6ea_S?1u;@g1syOS?9hT|T{PL}{e|@T}sz z*;#qHy&~$aR+W@)u3A&pA}p#rzrYonoR?dkS)N-_o>@>_R8XAT+YalN7~9UA{@?Gb zyQZ7l+nfK#y}G1ZTSfi9H~n_G%Wu=p$|}n(F8{9~X8v}acZOFrE1O@nv+Q`)7FSYL NhAZsgC$2^#{tue*3tOY>S>+W_=00DaT?l?2ipF5#Prw9EAOX9H$B%#4?zJ1@R&JqIa<4 zcJh-H2{sQbhxsU1Mjxzg%i*>hi7ly*!VWkK)q&438n2=khK4v!1&qLo*aP+46!gQX zwmd(?Z5moeg+`c(MQ{ri#{*ab&)NE)u{!0ykwG}+>zV61qDC|r3*#tTKMB>rg{T=@ zkLt)~jKH04TX6&ZsQ3-_pr@z~`Gh)74J?kOu_ zXUox;hjK40g#A&^8-)ze?Mx+6Pv)R{z6tffcX25mL+z37%$Mp1T9Z&SF&i}#>8J)W zQ8Tg)HR40q2QQ*J9>z}9`Bqqf_ML7d>hVBSPe-7ZA^|n!Q?Vv4M`qJGf_f|NVG}Ib z(A?J*_28bUH6DR_P9kamZd8ZoVF}E@e6;UuC(#J@pgM3Ab;C(4hUai1{)Ef0UnBFN zd#L-KU@6Sk*vwExR0qN_1tYNx?nE{Gsr5&6Yvg~EXlkFKUK@XgrKt-;b)*YsU?1#< z_i;FOj&z*7_&#dt51?MZQ`iU3p!QPrrsldisMm2Js)N~0nSb55mkN0jxyShmH4}xK znLXi;Pbrs0)t6~*I#vNSrM0XLP;1-G#V=RrOThcg&VlC{1L70lVevY1-7>%r=lZhkn8#l=~ zl4h;V8fBxV^b}6Q&ru!d(8f$%9O}D}hT0noP;2^@E$_uZ%BN9NdcO`#AKtg+ zhp45~4-7rO9O}9no-#uZwkMik8BVlAjc71xL@sL*sv$S3V>7W5uEYR5h%eH#+({(h(i<1qwNQ4MC{7~G25q@`arBgjCFbS-MLW}zB7 zjvDDH^uez&KVC+)^9$C(ztOFp2X-_UHbYHuJJblKU<6Lbnz$F$U=EhVn;3*oQEx%r zPUh`tiKi&9KyA7~olVD=U_dUul3mPqBq*BoufPR!qs@pmqdu8C&=-%Q*7`K60~fJ2 z=87>t#pB zpgNMbo4K(#=BFHBt$~{AFx35#SQIvKqCt?ktjIk{>VuV|tjW zJB;e#bySc4Ky@fjtm$YmYaR5bJ_^-vZ`5WSj2hTf)Kbns?Wy^wrCEY(54W?AWH=Rh zdzu>(P(4mUHTlaXJ2rD{vvx8-mq(Yl&I^ zSQ4%Mc+}Lavu?%yl=on9EXI$tVps#UX`5gh?1O4J6SZe{<19Rn!*sr{c}tFU~iijz+Eh z5G;u)sHJ@a-P%N}Y{h!4O?fA3YQMMTYdDZ{;Q^+845}mJty54VO+#(c8>kWfj-~Oj zEtlXS>QH6W^CJc_|M4WvsL-x|2P@+<)DM};gUl}$F4PjNL9O+BsI@(cLHGrh$ET>J z2pDWOSs0d~+z0iRB%?Yw0juKl!EQ6vo2bwf{ejvXdHIo75hE}WW3f4Ygqp%ULreqZ zkkxZqBQJ=PiM+Ya0}RHtL+$qk8&lqZy8beTVl| z75ek4@U?Zau_iu3?U5=Y%&%IbQJZ-YYJ~eS7O&X)`XkLi2VwyA?r|iMBnz+so<@yS z>!LMofn~8RYDNa5rg%E4ffcAJK8WS;8|!`4k`x+cW~vTqZ*@cc4QLuNlWu1Zi7q^Y z+AOzFQ{y$-ta(FJgPpJx4ncizCZk5M5NqQ$48?Cz9q~yp*Hy(TlpCSy`=ge6BKqn5 zpGQ)FidCo)W}(*jW7MX*j0N!l`rtF{f<9x+YugJofK=2>Ekk{Jcc5pJTE9Sb@G9m* z|FHz^JLO1pLkOxPEl>@1#QfOXmWQHdU>xeYIhY5RVOLybgVL)A-1XB|)~8^JTJm zy_=+%zc~#^Vg5BmZYuPE#i$OfL9J01YBTP`Gx!hcEjc;fta*)8vt->+GnIsT&NNg< z=At*Qu;(-F`OT;$ct4f-S8|97Hmq|J`(p3}^WeGIi}Ds^AWp7{W)I}G7DhEt3N@t_ zP|pjsHb!-<6?!%?YL5*;ZN?dH65Y5KwK?9iUbFQjCYcA;L_f~g!{XQy%U~?31Bs}H zQ?WI^YRey@X81H}W-eK8pxzqy0}{PP;bV2oa0KSUJs0JS3A$){-4L_J- z-tW&aNawK<22N#PVQW-*E>6R3*c)q6;I(u+Ge}BPk%d~bqo^r6gKFRcs^_;+uirnY zj;L4K{XVD;7s3h{fVwXd>tHnM`YEV(X5xpq1`F!_A4rs>Vl--MXQ0+519jtW)D#{> zJ@^djK|dmInDY>|gd?Y$`=+4E8K@3#MZI>rQT6*#U(PeAe}8iBlZ0WVH1k8E2kOR! zs1atM8eW6y&`wl`_n}694)t1IL3Qj7>b|@)%#7wol}n*!G5~ddP1OE#T99PnKGXvT z%`~s!SgcNYB9_Hu`>G4G97L(i}^oF zMHCgum}j>6O=lu%%5I=Wb_c!i5e~zrNZZcP*Uj#~iFGOehMJ*rbId@hU>V9`7>%7! z=hvV&Zk)sX_sGSrv?rW-ra>Rn2uh+hWewC4)JM%&2h<1ZL)4U>M<2|=j`#~!#QJaW zqZoVO0KATsu=RZN`VDiFRG?xJ*28SnUdTaBU9kn`9}0p|BUyp^PVB_o_!Gw9&lrgf z7V^slCLv>Tu47FcLoYP)70C8*)}rd&fs4)0OMDm>-}Ft(t?T&7=+hQKZJ^|Fq^I% zYO_>CJ-9lmpS?_40!gYTj){0k$n zOoo}NXv|M}9O}9$s0Yo&0{A*Mz;tYmpQ1+S`=;5%)lm&L#QNACb^la!&moykB7Iky z2QEe3uom^+W}{xmudyUvLVvuE8hKtm1{!HuY>2f`n>r3PlhZK<=b;AhJ@&wBtC;^# zl18gdPe-9P-4s-P2A0Ls*c-3oEo`>N{L^dAOx^^_LvaAFaq+e0lbpoP(vL3x~8>+z_s5Sl=^%{O-y@~4B zLsUonHkwUX9%oSQkJB*+^>z*3WCpkp>6qJDOHz*$hp;lE6_Jsv@~FNt@y znbIQGlGXs!3{*xsQ*KJ1a_FXs%>%3?7*b3}U`4f!6 za=Tc6y&eg>%n0V8UZV}DrT74~yRV>@;!muN1zC7)(uU}TJ~o&9f{8#b0QiwlCii5m*6n0wAcLRGaGAB{uM*e{{y~;*ak;q8aBYY z7==~$@%KoK#|ii^j=*vIP1${sg#F~i958G97^_n5dC*MJ6x0{%3aEUfpxHHkkbx}w(Hg__a?TONm6(+S88P8w>j zEVlJ;qGs%Etb-rf^Y<}7<%g)}<~d?MWCc*0xiWfw{@3s%tQ%?#BTx-A$5Pl1{cxbI zAB)<>srLL#R0FF~9e*2hV;1VVEvUC;FY3B4tQW8_`_H*TqMqKxSMXn39(B}A>3CF+ z(@+h}w&i)~d23K##0*=`wB=2xj%>psn2lP3qxSq+^!)qZc@jP75~_ipP(8h2%XhIn z<@>0P`W-Wt#R`!qxMSLG1gyGyMPK^kcnD?O{fdA zQ4iQ-J&tW%5(5dVn{AGzeiG0op^q{Mc&|r z@&-;!Bg#{^lW0X~qdh19!rzJJT%&2$F`Z~cl-7M*(;9xU&sa`AgZP{B1AKl2Qf^9&wbvE3&O&!y{#a!z zbi*K@YZ`D93to)?ddx;tBB&v69f&tg*d`)OkmLaIB|p$qV%# zkw*{%IG2Lozi@8B3;Ca(yUqVkT4!^SsrFNd3o5;E93*dN%cZTq@xYNb|A+ib;(N*) za1OD6yb^v&93gLlo3JI3hxq@;Au8N^xTqn?1Y#t)j+uCu@U`Vk>lAa^(Wd=^SV-h1 zf{1aP3nG5D*NAgObz2^T{#>VHBTK`uS`e*>Nb24rwvi_icZvLzAK{C~H0mzfiVoygi4SeL4tWcr ztu4pnW}AC@znYV$h=xQ6p`$l`jr(ocQ^_B15aG7&s;#VRol1Re@>|4iVhNE%-814e z5l#6kB8GT=X!e|!IjQ3TRw43{KPC#0&&8hjDLy|+kPM(s$6S19Qs<<#557tL+e8jA z$=0tV*KwSvXL7gaAD&eiO2rXkunHU*X`m?SO-^3bWk@}YJ75h;@F_5xD;2Dz_5B@;X(E42Zc5c3~kgT zJhV=|i12#(JH;iZ1ocRY8=IUEmy(#&B(Qa2Qhah?o5X~~F+<{ANr6pMbTWRpYhv)w z#4#-=42cUKp47Z9j|**-KH62SQ, 2018 +# Swashata Ghosh, 2024 +# msgid "" msgstr "" -"Project-Id-Version: WordPress SDK\n" +"Project-Id-Version: freemius\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2023-04-19 18:31+0530\n" -"Last-Translator: Boris Colombier , 2018\n" -"Language-Team: French (France) (http://www.transifex.com/freemius/wordpress-sdk/language/fr_FR/)\n" -"Language: fr_FR\n" +"POT-Creation-Date: 2024-01-30 15:07+0000\n" +"Last-Translator: Swashata Ghosh, 2024\n" +"Language-Team: French (France) " +"(https://app.transifex.com/freemius/teams/184351/fr_FR/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % " +"1000000 == 0 ? 1 : 2;\n" "X-Poedit-Basepath: ..\n" -"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" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 3.2.2\n" +"X-Poedit-KeywordsList: " +"get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_" +"text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_" +"inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$" +"fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_" +"inline;$this->_parent->get_text_x_inline:1,2c;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;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" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php1748, templates/account.php:947 -msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." +#: includes/class-freemius.php1781, templates/account.php:943 +msgid "" +"An update to a Beta version will replace your installed version of %s with " +"the latest Beta release - use with caution, and not on production sites. " +"You have been warned." msgstr "" -#: includes/class-freemius.php:1755 +#: includes/class-freemius.php:1788 msgid "Would you like to proceed with the update?" msgstr "" -#: includes/class-freemius.php:1980 -msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." -msgstr "Le SDK Freemius ne trouve pas le fichier principal du plugin. Merci de contacter sdk@freemius.com en indiquant l'erreur." +#: includes/class-freemius.php:2013 +msgid "" +"Freemius SDK couldn't find the plugin's main file. Please contact " +"sdk@freemius.com with the current error." +msgstr "" +"Le SDK Freemius ne trouve pas le fichier principal du plugin. Merci de " +"contacter sdk@freemius.com en indiquant l'erreur." -#: includes/class-freemius.php1982, includes/fs-plugin-info-dialog.php:1517 +#: includes/class-freemius.php2015, includes/fs-plugin-info-dialog.php:1513 msgid "Error" msgstr "Erreur" -#: includes/class-freemius.php:2428 +#: includes/class-freemius.php:2461 msgid "I found a better %s" msgstr "J'ai trouvé un meilleur %s" -#: includes/class-freemius.php:2430 +#: includes/class-freemius.php:2463 msgid "What's the %s's name?" msgstr "Quel est le nom du %s ?" -#: includes/class-freemius.php:2436 +#: includes/class-freemius.php:2469 msgid "It's a temporary %s - I'm troubleshooting an issue" msgstr "" -#: includes/class-freemius.php:2438 +#: includes/class-freemius.php:2471 msgid "Deactivation" msgstr "Désactivation" -#: includes/class-freemius.php:2439 +#: includes/class-freemius.php:2472 msgid "Theme Switch" msgstr "Changement de Thème" -#: includes/class-freemius.php2448, templates/forms/resend-key.php24, templates/forms/user-change.php:29 +#: includes/class-freemius.php2481, templates/forms/resend-key.php24, +#: templates/forms/user-change.php:29 msgid "Other" msgstr "Autre" -#: includes/class-freemius.php:2456 +#: includes/class-freemius.php:2489 msgid "I no longer need the %s" msgstr "Je n'ai plus besoin du %s" -#: includes/class-freemius.php:2463 +#: includes/class-freemius.php:2496 msgid "I only needed the %s for a short period" msgstr "Je n'ai besoin de %s que pour une courte période" -#: includes/class-freemius.php:2469 +#: includes/class-freemius.php:2502 msgid "The %s broke my site" msgstr "Le %s a cassé mon site" -#: includes/class-freemius.php:2476 +#: includes/class-freemius.php:2509 msgid "The %s suddenly stopped working" msgstr "Le %s a soudainement arrêté de fonctionner" -#: includes/class-freemius.php:2486 +#: includes/class-freemius.php:2519 msgid "I can't pay for it anymore" msgstr "Je ne peux plus payer pour ça" -#: includes/class-freemius.php:2488 +#: includes/class-freemius.php:2521 msgid "What price would you feel comfortable paying?" msgstr "Quel prix seriez-vous prêt à payer ?" -#: includes/class-freemius.php:2494 +#: includes/class-freemius.php:2527 msgid "I don't like to share my information with you" msgstr "Je ne veux pas partager mes informations avec vous" -#: includes/class-freemius.php:2515 +#: includes/class-freemius.php:2548 msgid "The %s didn't work" msgstr "Le %s n'a pas fonctionné" -#: includes/class-freemius.php:2525 +#: includes/class-freemius.php:2558 msgid "I couldn't understand how to make it work" msgstr "Je ne comprends pas comment le faire fonctionner" -#: includes/class-freemius.php:2533 +#: includes/class-freemius.php:2566 msgid "The %s is great, but I need specific feature that you don't support" -msgstr "Le %s est bien mais j'ai besoin de fonctionnalités spécifiques que vous ne proposez pas" +msgstr "" +"Le %s est bien mais j'ai besoin de fonctionnalités spécifiques que vous ne " +"proposez pas" -#: includes/class-freemius.php:2535 +#: includes/class-freemius.php:2568 msgid "What feature?" msgstr "Quelle fonctionnalité ?" -#: includes/class-freemius.php:2539 +#: includes/class-freemius.php:2572 msgid "The %s is not working" msgstr "Le %s ne fonctionne pas" -#: includes/class-freemius.php:2541 +#: includes/class-freemius.php:2574 msgid "Kindly share what didn't work so we can fix it for future users..." -msgstr "Merci de nous indiquer ce qui ne fonctionne pas afin que nous puissions le corriger pour les futurs utilisateurs..." +msgstr "" +"Merci de nous indiquer ce qui ne fonctionne pas afin que nous puissions le " +"corriger pour les futurs utilisateurs..." -#: includes/class-freemius.php:2545 +#: includes/class-freemius.php:2578 msgid "It's not what I was looking for" msgstr "Ce n'est pas ce que je recherche" -#: includes/class-freemius.php:2547 +#: includes/class-freemius.php:2580 msgid "What you've been looking for?" msgstr "Que recherchez-vous ?" -#: includes/class-freemius.php:2551 +#: includes/class-freemius.php:2584 msgid "The %s didn't work as expected" msgstr "Le %s n'a pas fonctionné comme prévu" -#: includes/class-freemius.php:2553 +#: includes/class-freemius.php:2586 msgid "What did you expect?" msgstr "À quoi vous attendiez-vous ?" -#: includes/class-freemius.php3641, templates/debug.php:24 +#: includes/class-freemius.php3685, templates/debug.php:24 msgid "Freemius Debug" msgstr "Débuggage Freemius" -#: includes/class-freemius.php:4755 +#: includes/class-freemius.php:4828 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have purchased a %s license." msgstr "" -#: includes/class-freemius.php:4759 -msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." +#: includes/class-freemius.php:4832 +msgid "" +" The %s's %sdownload link%s, license key, and installation instructions " +"have been sent to %s. If you can't find the email after 5 min, please check " +"your spam box." msgstr "" -#: includes/class-freemius.php4769, includes/class-freemius.php21125, includes/class-freemius.php:24783 -msgctxt "interjection expressing joy or exuberance" -msgid "Yee-haw" -msgstr "Youpi" - -#: includes/class-freemius.php:4783 -msgctxt "addonX cannot run without pluginY" -msgid "%s cannot run without %s." -msgstr "%s ne peut pas fonctionner sans %s." - -#: includes/class-freemius.php:4784 -msgctxt "addonX cannot run..." -msgid "%s cannot run without the plugin." -msgstr "%s ne peut pas fonctionner sans le plugin." - -#: includes/class-freemius.php4786, includes/class-freemius.php5978, includes/class-freemius.php13730, includes/class-freemius.php14469, includes/class-freemius.php18281, includes/class-freemius.php18394, includes/class-freemius.php18571, includes/class-freemius.php20856, includes/class-freemius.php21955, includes/class-freemius.php22971, -#: includes/class-freemius.php23101, includes/class-freemius.php23231, templates/add-ons.php:57 -msgctxt "exclamation" -msgid "Oops" -msgstr "Oups" - -#: includes/class-freemius.php:5065 -msgid "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" +#: includes/class-freemius.php:5138 +msgid "" +"There was an unexpected API error while processing your request. Please try " +"again in a few minutes and if it still doesn't work, contact the %s's " +"author with the following:" msgstr "" -#: includes/class-freemius.php:5645 -msgid "Premium %s version was successfully activated." -msgstr "La version premium de %s a été activée avec succès." - -#: includes/class-freemius.php5657, includes/class-freemius.php:7692 -msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)." -msgid "W00t" -msgstr "Génial" - -#: includes/class-freemius.php:5672 +#: includes/class-freemius.php:5743 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have a %s license." msgstr "Vous avez une license pour %s." -#: includes/class-freemius.php:5961 -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." -msgstr "La période d'essai du %s a bien été annulé. L'add-on a été désactivé car il ne fonctionne qu'avec la version premium. Si vous souhaitez l'utiliser ultérieurement, vous devrez acheter une licence." +#: includes/class-freemius.php:5716 +msgid "Premium %s version was successfully activated." +msgstr "La version premium de %s a été activée avec succès." + +#: includes/class-freemius.php:6034 +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." +msgstr "" +"La période d'essai du %s a bien été annulé. L'add-on a été désactivé car il " +"ne fonctionne qu'avec la version premium. Si vous souhaitez l'utiliser " +"ultérieurement, vous devrez acheter une licence." -#: includes/class-freemius.php:5965 -msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." -msgstr "%sest un add-on pour la version premium. Vous devez acheter une licence avant d'activer le plugin." +#: includes/class-freemius.php:6038 +msgid "" +"%s is a premium only add-on. You have to purchase a license first before " +"activating the plugin." +msgstr "" +"%sest un add-on pour la version premium. Vous devez acheter une licence " +"avant d'activer le plugin." -#: includes/class-freemius.php5974, templates/add-ons.php186, templates/account/partials/addon.php:386 +#: includes/class-freemius.php6047, templates/add-ons.php186, +#: templates/account/partials/addon.php:386 msgid "More information about %s" msgstr "Plus d'informations à propos de %s" -#: includes/class-freemius.php:5975 +#: includes/class-freemius.php:6048 msgid "Purchase License" msgstr "Acheter une licence" -#. translators: %3$s: action (e.g.: "start the trial" or "complete the opt- -#. in") -#: includes/class-freemius.php:6971 -msgid "You should receive a confirmation email for %1$s to your mailbox at %2$s. Please make sure you click the button in that email to %3$s." -msgstr "" - -#: includes/class-freemius.php:6974 -msgid "start the trial" -msgstr "commencer la période d'essai" - -#: includes/class-freemius.php6975, templates/connect.php:218 -msgid "complete the opt-in" -msgstr "" - -#: includes/class-freemius.php:6977 -msgid "Thanks!" -msgstr "" - +#: includes/class-freemius.php:7053 #. translators: %3$s: What the user is expected to receive via email (e.g.: #. "the installation instructions" or "a license key") -#: includes/class-freemius.php:6980 -msgid "You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 minutes." +msgid "" +"You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 " +"minutes." msgstr "" -#: includes/class-freemius.php:6983 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "the installation instructions" +#: includes/class-freemius.php:7070 +#. translators: %s: activation link (e.g.: Click here) +msgid "%s to activate the license once you get it." msgstr "" -#: includes/class-freemius.php:6989 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "a license key" +#: includes/class-freemius.php:7091 +msgid "" +"If you didn't get the email, try checking your spam folder or search for " +"emails from %4$s." msgstr "" -#: includes/class-freemius.php:6997 -msgid "%s to activate the license once you get it." +#: includes/class-freemius.php:7093 +msgid "Thanks for upgrading." msgstr "" -#: includes/class-freemius.php:7005 -msgctxt "Part of an activation link message." -msgid "Click here" +#: includes/class-freemius.php:7044 +msgid "" +"You should receive a confirmation email for %1$s to your mailbox at %2$s. " +"Please make sure you click the button in that email to %3$s." msgstr "" -#: includes/class-freemius.php:7012 -msgctxt "Part of the message that tells the user to check their spam folder for a specific email." -msgid "the product's support email address" -msgstr "" +#: includes/class-freemius.php:7047 +msgid "start the trial" +msgstr "commencer la période d'essai" -#: includes/class-freemius.php:7018 -msgid "If you didn't get the email, try checking your spam folder or search for emails from %4$s." +#: includes/class-freemius.php7048, templates/connect.php:209 +msgid "complete the opt-in" msgstr "" -#: includes/class-freemius.php:7020 -msgid "Thanks for upgrading." +#: includes/class-freemius.php:7050 +msgid "Thanks!" msgstr "" -#: includes/class-freemius.php:7156 +#: includes/class-freemius.php:7229 msgid "You are just one step away - %s" msgstr "Il ne reste qu'une étape - %s" -#: includes/class-freemius.php:7159 -msgctxt "%s - plugin name. As complete \"PluginX\" activation now" -msgid "Complete \"%s\" Activation Now" -msgstr "Compléter \"%s\" Activer Maintenant" - -#: includes/class-freemius.php:7241 +#: includes/class-freemius.php:7314 msgid "We made a few tweaks to the %s, %s" msgstr "Nous avons fait quelques modifications au %s, %s" -#: includes/class-freemius.php:7245 +#: includes/class-freemius.php:7318 msgid "Opt in to make \"%s\" better!" msgstr "Inscrivez-vous pour améliorer \"%s\" !" -#: includes/class-freemius.php:7691 +#: includes/class-freemius.php:7764 msgid "The upgrade of %s was successfully completed." msgstr "La mise à jour du %s s'est terminée avec succès " -#: includes/class-freemius.php10441, includes/class-fs-plugin-updater.php1100, includes/class-fs-plugin-updater.php1315, includes/class-fs-plugin-updater.php1322, templates/auto-installation.php:32 +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, +#: includes/class-fs-plugin-updater.php1317, +#: includes/class-fs-plugin-updater.php1310, +#: templates/auto-installation.php:32 msgid "Add-On" msgstr "Add-On" -#: includes/class-freemius.php10443, templates/account.php411, templates/account.php419, templates/debug.php399, templates/debug.php:619 +#: includes/class-freemius.php10529, templates/account.php407, +#: templates/account.php415, templates/debug.php399, templates/debug.php:619 msgid "Plugin" msgstr "Plugin" -#: includes/class-freemius.php10444, templates/account.php412, templates/account.php420, templates/debug.php399, templates/debug.php619, templates/forms/deactivation/form.php:107 +#: includes/class-freemius.php10530, templates/account.php408, +#: templates/account.php416, templates/debug.php399, templates/debug.php619, +#: templates/forms/deactivation/form.php:107 msgid "Theme" msgstr "Thème" -#: includes/class-freemius.php:13549 -msgid "An unknown error has occurred while trying to toggle the license's white-label mode." +#: includes/class-freemius.php:13635 +msgid "" +"An unknown error has occurred while trying to toggle the license's " +"white-label mode." msgstr "" -#: includes/class-freemius.php:13563 -msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s." +#: includes/class-freemius.php:13649 +msgid "" +"Your %s license was flagged as white-labeled to hide sensitive information " +"from the WP Admin (e.g. your email, license key, prices, billing address & " +"invoices). If you ever wish to revert it back, you can easily do it through " +"your %s. If this was a mistake you can also %s." msgstr "" -#: includes/class-freemius.php13568, templates/account/partials/disconnect-button.php:84 +#: includes/class-freemius.php13654, +#: templates/account/partials/disconnect-button.php:84 msgid "User Dashboard" msgstr "" -#: includes/class-freemius.php:13569 +#: includes/class-freemius.php:13655 msgid "revert it now" msgstr "" -#: includes/class-freemius.php:13627 +#: includes/class-freemius.php:13713 msgid "An unknown error has occurred while trying to set the user's beta mode." msgstr "" -#: includes/class-freemius.php:13701 +#: includes/class-freemius.php:13799 msgid "Invalid new user ID or email address." msgstr "" -#: includes/class-freemius.php:13731 -msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." -msgstr "Désolé, nous ne pouvons pas mettre à jour l'email. Il existe déjà un autre utilisateur avec cette adresse." +#: includes/class-freemius.php:13829 +msgid "" +"Sorry, we could not complete the email update. Another user with the same " +"email is already registered." +msgstr "" +"Désolé, nous ne pouvons pas mettre à jour l'email. Il existe déjà un autre " +"utilisateur avec cette adresse." -#: includes/class-freemius.php:13732 -msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." -msgstr "Si vous voulez transférer la propriété du compte de %s à %s cliquez sur le bouton Changement De Propriétaire" +#: includes/class-freemius.php:13830 +msgid "" +"If you would like to give up the ownership of the %s's account to %s click " +"the Change Ownership button." +msgstr "" +"Si vous voulez transférer la propriété du compte de %s à %s cliquez sur le " +"bouton Changement De Propriétaire" -#: includes/class-freemius.php:13739 +#: includes/class-freemius.php:13837 msgid "Change Ownership" msgstr "Changement De Propriétaire" -#: includes/class-freemius.php:14336 +#: includes/class-freemius.php:14434 msgid "Invalid site details collection." msgstr "Récupération des détails du site non valide." -#: includes/class-freemius.php:14456 -msgid "We couldn't find your email address in the system, are you sure it's the right address?" -msgstr "Nous ne trouvons pas votre adresse mail dans notre système, êtes-vous qu'il s'agit de la bonne adresse ?" - -#: includes/class-freemius.php:14458 -msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" -msgstr "Nous ne trouvons aucune licence active associée avec cette adresse email, êtes-vous qu'il s'agit de la bonne adresse ?" +#: includes/class-freemius.php:14556 +msgid "" +"We can't see any active licenses associated with that email address, are " +"you sure it's the right address?" +msgstr "" +"Nous ne trouvons aucune licence active associée avec cette adresse email, " +"êtes-vous qu'il s'agit de la bonne adresse ?" -#: includes/class-freemius.php:14756 -msgid "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." +#: includes/class-freemius.php:14554 +msgid "" +"We couldn't find your email address in the system, are you sure it's the " +"right address?" msgstr "" +"Nous ne trouvons pas votre adresse mail dans notre système, êtes-vous qu'il " +"s'agit de la bonne adresse ?" -#: includes/class-freemius.php14870, templates/forms/premium-versions-upgrade-handler.php:47 -msgid "Buy a license now" -msgstr "Acheter une licence maintenant" +#: includes/class-freemius.php:14860 +msgid "" +"Account is pending activation. Please check your email and click the link " +"to activate your account and then submit the affiliate form again." +msgstr "" -#: includes/class-freemius.php14882, templates/forms/premium-versions-upgrade-handler.php:46 +#: includes/class-freemius.php14986, +#: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Renouvelez votre licence maintenant" -#: includes/class-freemius.php:14886 +#: includes/class-freemius.php14974, +#: templates/forms/premium-versions-upgrade-handler.php:47 +msgid "Buy a license now" +msgstr "Acheter une licence maintenant" + +#: includes/class-freemius.php:14990 msgid "%s to access version %s security & feature updates, and support." -msgstr "%s pour permettre les mises à jour de sécurité et de fonctionnalités de la version %s, et le support." +msgstr "" +"%s pour permettre les mises à jour de sécurité et de fonctionnalités de la " +"version %s, et le support." -#: includes/class-freemius.php:17621 +#: includes/class-freemius.php:17662 msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php:17635 -msgid "Your account was successfully activated with the %s plan." -msgstr "Votre compte a été activé avec succès avec la formule %s." - -#: includes/class-freemius.php17645, includes/class-freemius.php:21566 +#: includes/class-freemius.php17686, includes/class-freemius.php:21607 msgid "Your trial has been successfully started." msgstr "Votre période d'essai a bien démarré." -#: includes/class-freemius.php18279, includes/class-freemius.php18392, includes/class-freemius.php:18569 +#: includes/class-freemius.php:17676 +msgid "Your account was successfully activated with the %s plan." +msgstr "Votre compte a été activé avec succès avec la formule %s." + +#: includes/class-freemius.php18320, includes/class-freemius.php18433, +#: includes/class-freemius.php:18610 msgid "Couldn't activate %s." msgstr "Impossible d'activer %s." -#: includes/class-freemius.php18280, includes/class-freemius.php18393, includes/class-freemius.php:18570 +#: includes/class-freemius.php18321, includes/class-freemius.php18434, +#: includes/class-freemius.php:18611 msgid "Please contact us with the following message:" msgstr "Merci de nous contacter avec le message suivant :" -#: includes/class-freemius.php18389, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php18430, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "" -#: includes/class-freemius.php18931, includes/class-freemius.php:24339 +#: includes/class-freemius.php18972, includes/class-freemius.php:24391 msgid "Upgrade" msgstr "Mise à jour" -#: includes/class-freemius.php:18937 -msgid "Start Trial" -msgstr "Essai gratuit" - -#: includes/class-freemius.php:18939 +#: includes/class-freemius.php:18980 msgid "Pricing" msgstr "Tarifs" -#: includes/class-freemius.php19019, includes/class-freemius.php:19021 +#: includes/class-freemius.php:18978 +msgid "Start Trial" +msgstr "Essai gratuit" + +#: includes/class-freemius.php19060, includes/class-freemius.php:19062 msgid "Affiliation" msgstr "Affiliation" -#: includes/class-freemius.php19049, includes/class-freemius.php19051, templates/account.php264, templates/debug.php:366 +#: includes/class-freemius.php19090, includes/class-freemius.php19092, +#: templates/account.php260, templates/debug.php:366 msgid "Account" msgstr "Compte" -#: includes/class-freemius.php19065, includes/class-freemius.php19067, includes/customizer/class-fs-customizer-support-section.php:60 +#: includes/class-freemius.php19106, includes/class-freemius.php19108, +#: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Contactez Nous" -#: includes/class-freemius.php19078, includes/class-freemius.php19080, includes/class-freemius.php24353, templates/account.php134, templates/account/partials/addon.php:49 +#: includes/class-freemius.php19119, includes/class-freemius.php19121, +#: includes/class-freemius.php24405, templates/account.php130, +#: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Add-Ons" -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow left icon" -msgid "←" -msgstr "←" - -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow right icon" -msgid "➤" -msgstr "➤" - -#: includes/class-freemius.php19116, templates/pricing.php:110 -msgctxt "noun" -msgid "Pricing" -msgstr "Tarifs" - -#: includes/class-freemius.php19329, includes/customizer/class-fs-customizer-support-section.php:67 +#: includes/class-freemius.php19370, +#: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Forum de Support" -#: includes/class-freemius.php:20350 +#: includes/class-freemius.php:20391 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Votre email a été vérifié avec succès - vous êtes FORMIDABLE !" -#: includes/class-freemius.php:20351 -msgctxt "a positive response" -msgid "Right on" -msgstr "Directement" - -#: includes/class-freemius.php:20857 +#: includes/class-freemius.php:20898 msgid "seems like the key you entered doesn't match our records." msgstr "" -#: includes/class-freemius.php:20881 -msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +#: includes/class-freemius.php:20922 +msgid "" +"Debug mode was successfully enabled and will be automatically disabled in " +"60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." msgstr "" -#: includes/class-freemius.php:21116 +#: includes/class-freemius.php:21157 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Votre Add-on %s a bien été mis à jour." -#: includes/class-freemius.php:21118 +#: includes/class-freemius.php:21159 +#. translators: %s:product name, e.g. Facebook add-on was successfully... msgid "%s Add-on was successfully purchased." msgstr "L'Add-on %s a bien été acheté." -#: includes/class-freemius.php:21121 +#: includes/class-freemius.php:21162 msgid "Download the latest version" msgstr "Télécharger la dernière version" -#: includes/class-freemius.php:21239 -msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." -msgstr "Il semble que l'un des paramètres d'authentification soit faux. Veuillez mettre à jour votre Public Key, votre Secret Key ainsi que vote User ID et essayez à nouveau." +#: includes/class-freemius.php:21280 +msgid "" +"It seems like one of the authentication parameters is wrong. Update your " +"Public Key, Secret Key & User ID, and try again." +msgstr "" +"Il semble que l'un des paramètres d'authentification soit faux. Veuillez " +"mettre à jour votre Public Key, votre Secret Key ainsi que vote User ID et " +"essayez à nouveau." -#: includes/class-freemius.php21239, includes/class-freemius.php21636, includes/class-freemius.php21737, includes/class-freemius.php:21824 +#: includes/class-freemius.php21280, includes/class-freemius.php21677, +#: includes/class-freemius.php21778, includes/class-freemius.php:21865 msgid "Error received from the server:" msgstr "Une erreur a été reçu depuis le serveur :" -#: includes/class-freemius.php21470, includes/class-freemius.php21742, includes/class-freemius.php21795, includes/class-freemius.php:21902 -msgctxt "something somebody says when they are thinking about what you have just said." -msgid "Hmm" -msgstr "Hmm" - -#: includes/class-freemius.php:21483 -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." -msgstr "Il semble que vous soyez encore sur la formule %s. Si vous avez mis à jour ou changer votre formule, le problème est probablement de votre côté - désolé." - -#: includes/class-freemius.php21484, templates/account.php136, templates/add-ons.php250, templates/account/partials/addon.php:51 -msgctxt "trial period" -msgid "Trial" -msgstr "Période d'essai" +#: includes/class-freemius.php:21524 +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." +msgstr "" +"Il semble que vous soyez encore sur la formule %s. Si vous avez mis à jour " +"ou changer votre formule, le problème est probablement de votre côté - " +"désolé." -#: includes/class-freemius.php:21489 -msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." -msgstr "J'ai mis à jour mon compte mais quand j'essaie de synchroniser la licence, la formule est toujours %s." +#: includes/class-freemius.php:21530 +msgid "" +"I have upgraded my account but when I try to Sync the License, the plan " +"remains %s." +msgstr "" +"J'ai mis à jour mon compte mais quand j'essaie de synchroniser la licence, " +"la formule est toujours %s." -#: includes/class-freemius.php21493, includes/class-freemius.php:21545 +#: includes/class-freemius.php21534, includes/class-freemius.php:21586 msgid "Please contact us here" msgstr "Merci de nous contacter ici" -#: includes/class-freemius.php:21515 +#: includes/class-freemius.php:21556 msgid "Your plan was successfully changed to %s." msgstr "Votre formule a bien été modifié vers %s. " -#: includes/class-freemius.php:21531 +#: includes/class-freemius.php:21572 msgid "Your license has expired. You can still continue using the free %s forever." -msgstr "Votre licence a expiré. Vous pouvez toujours utiliser la version gratuite indéfiniment." +msgstr "" +"Votre licence a expiré. Vous pouvez toujours utiliser la version gratuite " +"indéfiniment." -#: includes/class-freemius.php:21533 -msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Votre licence a expiré.%1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption." +#: includes/class-freemius.php:21574 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"Votre licence a expiré.%1$sFaites la mise à jour maintenant%2$s pour " +"continuer à utiliser le %3$s sans interruption." -#: includes/class-freemius.php:21541 -msgid "Your license has been cancelled. If you think it's a mistake, please contact support." -msgstr "Votre licence a été annulé. Si vous pensez qu'il s'agit d'une erreur, merci de contacter le support." +#: includes/class-freemius.php:21582 +msgid "" +"Your license has been cancelled. If you think it's a mistake, please " +"contact support." +msgstr "" +"Votre licence a été annulé. Si vous pensez qu'il s'agit d'une erreur, merci " +"de contacter le support." -#: includes/class-freemius.php:21554 -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." -msgstr "Votre licence a expiré. Vous pouvez toujours utiliser les fonctionnalités %s mais vous devrez renouveler votre licence pour recevoir les mises à jour et une assistance." +#: includes/class-freemius.php:21595 +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." +msgstr "" +"Votre licence a expiré. Vous pouvez toujours utiliser les fonctionnalités " +"%s mais vous devrez renouveler votre licence pour recevoir les mises à jour " +"et une assistance." -#: includes/class-freemius.php:21580 -msgid "Your free trial has expired. You can still continue using all our free features." -msgstr "Votre période d'essai gratuite est terminée. Vous pouvez continuer à utiliser toutes nos fonctionnalités gratuites." +#: includes/class-freemius.php:21621 +msgid "" +"Your free trial has expired. You can still continue using all our free " +"features." +msgstr "" +"Votre période d'essai gratuite est terminée. Vous pouvez continuer à " +"utiliser toutes nos fonctionnalités gratuites." -#: includes/class-freemius.php:21582 -msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Votre période d'essai gratuite est terminée. %1$sFaites la mise à jour maintenant%2$s pour continuer à utiliser le %3$s sans interruption." +#: includes/class-freemius.php:21623 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"Votre période d'essai gratuite est terminée. %1$sFaites la mise à jour " +"maintenant%2$s pour continuer à utiliser le %3$s sans interruption." -#: includes/class-freemius.php:21628 -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist the following domains:%2$s" +#: includes/class-freemius.php:21669 +msgid "" +"Your server is blocking the access to Freemius' API, which is crucial for " +"%1$s synchronization. Please contact your host to whitelist the following " +"domains:%2$s" msgstr "" -#: includes/class-freemius.php:21630 +#: includes/class-freemius.php:21671 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21733 +#: includes/class-freemius.php:21774 msgid "It looks like the license could not be activated." msgstr "Il semble que la licence ne puisse être activée." -#: includes/class-freemius.php:21775 +#: includes/class-freemius.php:21816 msgid "Your license was successfully activated." msgstr "Votre licence a bien été activée." -#: includes/class-freemius.php:21799 +#: includes/class-freemius.php:21840 msgid "It looks like your site currently doesn't have an active license." msgstr "Il semble que votre site n'ait pas de licence active." -#: includes/class-freemius.php:21823 +#: includes/class-freemius.php:21864 msgid "It looks like the license deactivation failed." msgstr "Il semble que la désactivation de la licence a échoué." -#: includes/class-freemius.php:21852 +#: includes/class-freemius.php:21893 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21853 +#: includes/class-freemius.php:21894 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Votre licence a bien été désactivé, vous utilisez à présent la formule %s." -#: includes/class-freemius.php:21856 +#: includes/class-freemius.php:21897 msgid "O.K" msgstr "O.K" -#: includes/class-freemius.php:21909 -msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." -msgstr "Il semble que nous ayons un problème temporaire avec l'annulation de votre abonnement. Merci de réessayer dans quelques minutes." +#: includes/class-freemius.php:21950 +msgid "" +"Seems like we are having some temporary issue with your subscription " +"cancellation. Please try again in few minutes." +msgstr "" +"Il semble que nous ayons un problème temporaire avec l'annulation de votre " +"abonnement. Merci de réessayer dans quelques minutes." -#: includes/class-freemius.php:21918 -msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." -msgstr "Votre abonnement a bien été annulé. Votre licence de la formule %s expirera dans %s." +#: includes/class-freemius.php:21959 +msgid "" +"Your subscription was successfully cancelled. Your %s plan license will " +"expire in %s." +msgstr "" +"Votre abonnement a bien été annulé. Votre licence de la formule %s expirera " +"dans %s." -#: includes/class-freemius.php:21960 +#: includes/class-freemius.php:22001 msgid "You are already running the %s in a trial mode." msgstr "Vous utilisez déjà le %s en période d'essai. " -#: includes/class-freemius.php:21971 +#: includes/class-freemius.php:22012 msgid "You already utilized a trial before." msgstr "Vous avez déjà utilisé la période d'essai." -#: includes/class-freemius.php:21985 +#: includes/class-freemius.php:22048 +msgid "None of the %s's plans supports a trial period." +msgstr "Aucune formule du %s ne propose de période d'essai." + +#: includes/class-freemius.php:22026 msgid "Plan %s do not exist, therefore, can't start a trial." -msgstr "La formule %s n'existe pas, il n'est pas possible de commencer une période d'essai." +msgstr "" +"La formule %s n'existe pas, il n'est pas possible de commencer une période " +"d'essai." -#: includes/class-freemius.php:21996 +#: includes/class-freemius.php:22037 msgid "Plan %s does not support a trial period." msgstr "La formule %s ne propose pas de période d'essai." -#: includes/class-freemius.php:22007 -msgid "None of the %s's plans supports a trial period." -msgstr "Aucune formule du %s ne propose de période d'essai." - -#: includes/class-freemius.php:22056 -msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" -msgstr "Il semble que vous ne soyez plus en période d'essai donc il n'y a rien à annuler :)" +#: includes/class-freemius.php:22097 +msgid "" +"It looks like you are not in trial mode anymore so there's nothing to " +"cancel :)" +msgstr "" +"Il semble que vous ne soyez plus en période d'essai donc il n'y a rien à " +"annuler :)" -#: includes/class-freemius.php:22092 -msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." -msgstr "Il semble que nous ayons un problème temporaire pour annuler votre période d'essai. Merci de réessayer dans quelques minutes." +#: includes/class-freemius.php:22133 +msgid "" +"Seems like we are having some temporary issue with your trial cancellation. " +"Please try again in few minutes." +msgstr "" +"Il semble que nous ayons un problème temporaire pour annuler votre période " +"d'essai. Merci de réessayer dans quelques minutes." -#: includes/class-freemius.php:22111 +#: includes/class-freemius.php:22152 msgid "Your %s free trial was successfully cancelled." msgstr "Votre période d'essai %s a bien été annulé." -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22496 +msgid "Seems like you got the latest release." +msgstr "Il semble que vous ayez la dernière version." + +#: includes/class-freemius.php:22497 +msgid "You are all good!" +msgstr "Vous êtes tout bon !" + +#: includes/class-freemius.php:22479 msgid "Version %s was released." msgstr "La version %s vient d'être publiée." -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22479 msgid "Please download %s." msgstr "Merci de télécharger %s." -#: includes/class-freemius.php:22445 +#: includes/class-freemius.php:22486 msgid "the latest %s version here" msgstr "la dernière version de %s ici" -#: includes/class-freemius.php:22450 +#: includes/class-freemius.php:22491 msgid "New" msgstr "Nouveau" -#: includes/class-freemius.php:22455 -msgid "Seems like you got the latest release." -msgstr "Il semble que vous ayez la dernière version." - -#: includes/class-freemius.php:22456 -msgid "You are all good!" -msgstr "Vous êtes tout bon !" - -#: includes/class-freemius.php:22859 -msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." -msgstr "Un email de vérification vient d'être envoyé sur %s. Si vous ne le recevez pas d'ici 5 minutes, merci de vérifier dans vos spams." +#: includes/class-freemius.php:22900 +msgid "" +"Verification mail was just sent to %s. If you can't find it after 5 min, " +"please check your spam box." +msgstr "" +"Un email de vérification vient d'être envoyé sur %s. Si vous ne le recevez " +"pas d'ici 5 minutes, merci de vérifier dans vos spams." -#: includes/class-freemius.php:22999 +#: includes/class-freemius.php:23040 msgid "Site successfully opted in." msgstr "Site ajouté avec succès." -#: includes/class-freemius.php23000, includes/class-freemius.php:24049 +#: includes/class-freemius.php23041, includes/class-freemius.php:24101 msgid "Awesome" msgstr "Formidable" -#: includes/class-freemius.php:23016 -msgid "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." +#: includes/class-freemius.php:23067 +msgid "Diagnostic data will no longer be sent from %s to %s." +msgstr "" + +#: includes/class-freemius.php:23057 +msgid "" +"Sharing diagnostic data with %s helps to provide functionality that's more " +"relevant to your website, avoid WordPress or PHP version incompatibilities " +"that can break your website, and recognize which languages & regions the " +"plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23017 +#: includes/class-freemius.php:23058 msgid "Thank you!" msgstr "Merci !" -#: includes/class-freemius.php:23026 -msgid "Diagnostic data will no longer be sent from %s to %s." +#: includes/class-freemius.php:23227 +msgid "" +"A confirmation email was just sent to %s. You must confirm the update " +"within the next 4 hours. If you cannot find the email, please check your " +"spam folder." msgstr "" -#: includes/class-freemius.php:23181 -msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." +#: includes/class-freemius.php:23225 +msgid "" +"A confirmation email was just sent to %s. The email owner must confirm the " +"update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23183 -msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." +#: includes/class-freemius.php:23239 +msgid "" +"Thanks for confirming the ownership change. An email was just sent to %s " +"for final approval." msgstr "" +"Merci pour la confirmation du changement de propriétaire. Un email vient " +"d'être envoyé à %s pour la validation finale." -#: includes/class-freemius.php:23190 -msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." -msgstr "Merci pour la confirmation du changement de propriétaire. Un email vient d'être envoyé à %s pour la validation finale." - -#: includes/class-freemius.php:23195 +#: includes/class-freemius.php:23245 msgid "%s is the new owner of the account." msgstr "%s est le nouveau propriétaire du compte." -#: includes/class-freemius.php:23197 -msgctxt "as congratulations" -msgid "Congrats" -msgstr "Félicitations" +#: includes/class-freemius.php:23269 +msgid "Your name was successfully updated." +msgstr "Votre nom a été mis à jour." -#: includes/class-freemius.php:23214 +#: includes/class-freemius.php:23264 msgid "Please provide your full name." msgstr "Merci d'indiquer vos prénom et nom." -#: includes/class-freemius.php:23219 -msgid "Your name was successfully updated." -msgstr "Votre nom a été mis à jour." - -#: includes/class-freemius.php:23280 +#: includes/class-freemius.php:23334 +#. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Votre %s a bien été mis à jour." -#: includes/class-freemius.php:23339 -msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." +#: includes/class-freemius.php:23398 +msgid "" +"Is this your client's site? %s if you wish to hide sensitive info like your " +"email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23401 msgid "Click here" msgstr "" -#: includes/class-freemius.php23379, includes/class-freemius.php:23376 +#: includes/class-freemius.php:23438 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23459 -msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." -msgstr "Sachez que les informations de l'add-ons de %s sont issus d'un serveur externe." - -#: includes/class-freemius.php:23460 -msgctxt "advance notice of something that will need attention." -msgid "Heads up" -msgstr "Avertissement" - -#: includes/class-freemius.php:24089 -msgctxt "exclamation" -msgid "Hey" -msgstr "Hey" +#: includes/class-freemius.php:23511 +msgid "" +"Just letting you know that the add-ons information of %s is being pulled " +"from an external server." +msgstr "" +"Sachez que les informations de l'add-ons de %s sont issus d'un serveur " +"externe." -#: includes/class-freemius.php:24089 -msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." -msgstr "Que pensez-vous de %s ? Testez nos %s fonctionnalités premium avec %d jours d'essai gratuit." +#: includes/class-freemius.php:24141 +msgid "" +"How do you like %s so far? Test all our %s premium features with a %d-day " +"free trial." +msgstr "" +"Que pensez-vous de %s ? Testez nos %s fonctionnalités premium avec %d jours " +"d'essai gratuit." -#: includes/class-freemius.php:24097 +#: includes/class-freemius.php:24149 msgid "No commitment for %s days - cancel anytime!" msgstr "Pas d'engagement durant %s jours - annuler quand vous voulez !" -#: includes/class-freemius.php:24098 +#: includes/class-freemius.php:24150 msgid "No credit card required" msgstr "Pas besoin de carte bancaire" -#: includes/class-freemius.php24105, templates/forms/trial-start.php:53 -msgctxt "call to action" -msgid "Start free trial" -msgstr "Commencer l'essai gratuit" - -#: includes/class-freemius.php:24182 -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!" -msgstr "Dites, savez-vous que %s propose un système de affiliation ? Si vous aimez le %s vous pouvez devenir notre ambassadeur et gagner de l'argent !" +#: includes/class-freemius.php:24234 +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!" +msgstr "" +"Dites, savez-vous que %s propose un système de affiliation ? Si vous aimez " +"le %s vous pouvez devenir notre ambassadeur et gagner de l'argent !" -#: includes/class-freemius.php:24191 +#: includes/class-freemius.php:24243 msgid "Learn more" msgstr "En savoir plus" -#: includes/class-freemius.php24377, templates/account.php573, templates/account.php725, templates/connect.php221, templates/connect.php447, includes/managers/class-fs-clone-manager.php1295, templates/forms/license-activation.php27, templates/account/partials/addon.php:326 +#: includes/class-freemius.php24429, templates/account.php569, +#: templates/account.php721, templates/connect.php212, +#: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, +#: templates/forms/license-activation.php27, +#: templates/account/partials/addon.php:326 msgid "Activate License" msgstr "Activer la licence" -#: includes/class-freemius.php24378, templates/account.php667, templates/account.php724, templates/account/partials/addon.php327, templates/account/partials/site.php:273 +#: includes/class-freemius.php24430, templates/account.php663, +#: templates/account.php720, templates/account/partials/addon.php327, +#: templates/account/partials/site.php:273 msgid "Change License" msgstr "Changer la licence" -#: includes/class-freemius.php24485, templates/account/partials/site.php:170 -msgid "Opt Out" -msgstr "Désinscription" - -#: includes/class-freemius.php24487, includes/class-freemius.php24493, templates/account/partials/site.php49, templates/account/partials/site.php:170 +#: includes/class-freemius.php24545, includes/class-freemius.php24539, +#: templates/account/partials/site.php49, +#: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Inscription" -#: includes/class-freemius.php:24728 -msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -msgstr "" - -#: includes/class-freemius.php:24738 -msgid "Activate %s features" -msgstr "Activer les fonctionnalités %s" +#: includes/class-freemius.php24537, templates/account/partials/site.php:170 +msgid "Opt Out" +msgstr "Désinscription" -#: includes/class-freemius.php:24751 +#: includes/class-freemius.php:24803 msgid "Please follow these steps to complete the upgrade" msgstr "Merci de suivre ces étapes pour finaliser la mise à jour" -#: includes/class-freemius.php:24755 +#: includes/class-freemius.php:24807 +#. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Télécharger la dernière version %s" -#: includes/class-freemius.php:24759 +#: includes/class-freemius.php:24811 msgid "Upload and activate the downloaded version" msgstr "Téléverser et activer la version téléchargée" -#: includes/class-freemius.php:24761 +#: includes/class-freemius.php:24813 msgid "How to upload and activate?" msgstr "Comment téléverser et activer ?" -#: includes/class-freemius.php:24796 +#: includes/class-freemius.php:24780 +msgid "" +" The paid version of %1$s is already installed. Please activate it to start " +"benefiting the %2$s features. %3$s" +msgstr "" + +#: includes/class-freemius.php:24790 +msgid "Activate %s features" +msgstr "Activer les fonctionnalités %s" + +#: includes/class-freemius.php:24848 msgid "Your plan was successfully upgraded." msgstr "Votre formule a bien été mise à jour." -#: includes/class-freemius.php:24797 +#: includes/class-freemius.php:24849 msgid "Your plan was successfully activated." msgstr "" -#: includes/class-freemius.php:24927 -msgid "%sClick here%s to choose the sites where you'd like to activate the license on." -msgstr "%sCliquez ici %s pour choisir les sites sur lesquels vous souhaitez activer la licence." +#: includes/class-freemius.php:24979 +msgid "" +"%sClick here%s to choose the sites where you'd like to activate the license " +"on." +msgstr "" +"%sCliquez ici %s pour choisir les sites sur lesquels vous souhaitez activer " +"la licence." -#: includes/class-freemius.php:25096 +#: includes/class-freemius.php:25148 msgid "Auto installation only works for opted-in users." -msgstr "L'installation automatique ne fonctionne que pour les utilisateurs qui se sont inscrits." +msgstr "" +"L'installation automatique ne fonctionne que pour les utilisateurs qui se " +"sont inscrits." -#: includes/class-freemius.php25106, includes/class-freemius.php25139, includes/class-fs-plugin-updater.php1294, includes/class-fs-plugin-updater.php:1308 +#: includes/class-freemius.php25158, includes/class-freemius.php25191, +#: includes/class-fs-plugin-updater.php1289, +#: includes/class-fs-plugin-updater.php:1303 msgid "Invalid module ID." msgstr "ID du module non valide." -#: includes/class-freemius.php25115, includes/class-fs-plugin-updater.php:1330 +#: includes/class-freemius.php25199, includes/class-fs-plugin-updater.php:1324 +msgid "Premium add-on version already installed." +msgstr "La version premium de l'add-on est déjà installée." + +#: includes/class-freemius.php25167, includes/class-fs-plugin-updater.php:1325 msgid "Premium version already active." msgstr "Version premium déjà active." -#: includes/class-freemius.php:25122 +#: includes/class-freemius.php:25174 msgid "You do not have a valid license to access the premium version." msgstr "Vous n'avez pas de licence valide pour accéder à la version premium." -#: includes/class-freemius.php:25129 -msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." -msgstr "Le plugin est un \"Serviceware\" ce qui veut dire qu'il n'a pas de version premium de code." - -#: includes/class-freemius.php25147, includes/class-fs-plugin-updater.php:1329 -msgid "Premium add-on version already installed." -msgstr "La version premium de l'add-on est déjà installée." +#: includes/class-freemius.php:25181 +msgid "" +"Plugin is a \"Serviceware\" which means it does not have a premium code " +"version." +msgstr "" +"Le plugin est un \"Serviceware\" ce qui veut dire qu'il n'a pas de version " +"premium de code." -#: includes/class-freemius.php:25501 +#: includes/class-freemius.php:25559 msgid "View paid features" msgstr "Voir les fonctionnalités payantes" -#: includes/class-freemius.php:25805 -msgid "Thank you so much for using %s and its add-ons!" -msgstr "Merci beaucoup d'utiliser %s et ses add-ons !" - -#: includes/class-freemius.php:25806 -msgid "Thank you so much for using %s!" -msgstr "Merci beaucoup d'utiliser %s !" - -#: includes/class-freemius.php:25812 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." -msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à améliorer le %s." - -#: includes/class-freemius.php:25816 +#: includes/class-freemius.php:25874 msgid "Thank you so much for using our products!" msgstr "Merci beaucoup d'utiliser nos produits !" -#: includes/class-freemius.php:25817 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." -msgstr "Vous avez déjà validé notre suivi d'utilisation qui nous permet de continuer à les améliorer." +#: includes/class-freemius.php:25875 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving them." +msgstr "" +"Vous avez déjà validé notre suivi d'utilisation qui nous permet de " +"continuer à les améliorer." -#: includes/class-freemius.php:25836 +#: includes/class-freemius.php:25894 msgid "%s and its add-ons" msgstr "%s et ses add-ons" -#: includes/class-freemius.php:25845 +#: includes/class-freemius.php:25903 msgid "Products" msgstr "Produits" -#: includes/class-freemius.php25852, templates/connect.php:322 -msgid "Yes" -msgstr "Oui" - -#: includes/class-freemius.php25853, templates/connect.php:323 +#: includes/class-freemius.php:25863 +msgid "Thank you so much for using %s and its add-ons!" +msgstr "Merci beaucoup d'utiliser %s et ses add-ons !" + +#: includes/class-freemius.php:25864 +msgid "Thank you so much for using %s!" +msgstr "Merci beaucoup d'utiliser %s !" + +#: includes/class-freemius.php:25870 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving the %s." +msgstr "" +"Vous avez déjà validé notre suivi d'utilisation qui nous permet de " +"continuer à améliorer le %s." + +#: includes/class-freemius.php25910, templates/connect.php:313 +msgid "Yes" +msgstr "Oui" + +#: includes/class-freemius.php25911, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "" -#: includes/class-freemius.php25854, templates/connect.php:328 +#: includes/class-freemius.php25912, templates/connect.php:319 msgid "No" msgstr "Non" -#: includes/class-freemius.php25856, templates/connect.php:330 -msgid "do %sNOT%s send me security & feature updates, educational content and offers." -msgstr "ne %sPAS%s m'envoyer de mises à jour de sécurité ou de fonctionnalités, ni de contenu instructif, ni d'offre." +#: includes/class-freemius.php25914, templates/connect.php:321 +msgid "" +"do %sNOT%s send me security & feature updates, educational content and " +"offers." +msgstr "" +"ne %sPAS%s m'envoyer de mises à jour de sécurité ou de fonctionnalités, ni " +"de contenu instructif, ni d'offre." -#: includes/class-freemius.php:25866 -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 :-)" +#: includes/class-freemius.php:25924 +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 :-)" msgstr "" -#: includes/class-freemius.php25868, templates/connect.php:337 -msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" -msgstr "Merci de nous indiquer si vous souhaitez que nous vous contactions pour les mises à jour de sécurité et de fonctionnalités, du contenu instructif et des offres spéciales :" +#: includes/class-freemius.php25926, templates/connect.php:328 +msgid "" +"Please let us know if you'd like us to contact you for security & feature " +"updates, educational content, and occasional offers:" +msgstr "" +"Merci de nous indiquer si vous souhaitez que nous vous contactions pour les " +"mises à jour de sécurité et de fonctionnalités, du contenu instructif et " +"des offres spéciales :" -#: includes/class-freemius.php:26158 +#: includes/class-freemius.php:26216 msgid "License key is empty." msgstr "La clé de licence est vide." -#: includes/class-fs-plugin-updater.php210, templates/forms/premium-versions-upgrade-handler.php:57 +#: includes/class-fs-plugin-updater.php210, +#: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Renouvelez votre licence" -#: includes/class-fs-plugin-updater.php215, templates/forms/premium-versions-upgrade-handler.php:58 +#: includes/class-fs-plugin-updater.php215, +#: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Acheter une licence" -#: includes/class-fs-plugin-updater.php335, includes/class-fs-plugin-updater.php:368 +#: includes/class-fs-plugin-updater.php368, +#: includes/class-fs-plugin-updater.php:335 msgid "There is a %s of %s available." msgstr "Il y a une %s de %s disponible." -#: includes/class-fs-plugin-updater.php337, includes/class-fs-plugin-updater.php:373 +#: includes/class-fs-plugin-updater.php373, +#: includes/class-fs-plugin-updater.php:337 msgid "new Beta version" msgstr "" -#: includes/class-fs-plugin-updater.php338, includes/class-fs-plugin-updater.php:374 +#: includes/class-fs-plugin-updater.php374, +#: includes/class-fs-plugin-updater.php:338 msgid "new version" msgstr "Nouvelle version" @@ -876,605 +1009,536 @@ msgstr "Nouvelle version" msgid "Important Upgrade Notice:" msgstr "Information importante de mise à jour :" -#: includes/class-fs-plugin-updater.php:1359 +#: includes/class-fs-plugin-updater.php:1354 msgid "Installing plugin: %s" msgstr "Installation du plugin : %s" -#: includes/class-fs-plugin-updater.php:1400 +#: includes/class-fs-plugin-updater.php:1395 msgid "Unable to connect to the filesystem. Please confirm your credentials." -msgstr "Impossible de se connecter au système de fichiers. Merci de confirmer vos autorisations." +msgstr "" +"Impossible de se connecter au système de fichiers. Merci de confirmer vos " +"autorisations." -#: includes/class-fs-plugin-updater.php:1582 -msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." -msgstr "Le package du plugin à télécharger ne contient pas de dossier avec le bon slug et iln'a pas été possible de le renommer." +#: includes/class-fs-plugin-updater.php:1577 +msgid "" +"The remote plugin package does not contain a folder with the desired slug " +"and renaming did not work." +msgstr "" +"Le package du plugin à télécharger ne contient pas de dossier avec le bon " +"slug et iln'a pas été possible de le renommer." #: includes/fs-plugin-info-dialog.php:542 msgid "Purchase More" msgstr "" -#: includes/fs-plugin-info-dialog.php543, templates/account/partials/addon.php:390 -msgctxt "verb" -msgid "Purchase" -msgstr "Acheter" - #: includes/fs-plugin-info-dialog.php:547 +#. translators: %s: N-days trial msgid "Start my free %s" msgstr "Commencer ma %s gratuite" -#: includes/fs-plugin-info-dialog.php:745 -msgid "Install Free Version Update Now" -msgstr "Installer la dernière mise à jour gratuite maintenant" - -#: includes/fs-plugin-info-dialog.php746, templates/account.php:656 -msgid "Install Update Now" -msgstr "Installer la mise à jour maintenant" - #: includes/fs-plugin-info-dialog.php:755 msgid "Install Free Version Now" msgstr "Installer la version gratuite maintenant" -#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, templates/auto-installation.php111, templates/account/partials/addon.php370, templates/account/partials/addon.php:423 +#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php423, +#: templates/account/partials/addon.php:370 msgid "Install Now" msgstr "Installer maintenant" -#: includes/fs-plugin-info-dialog.php:772 -msgctxt "as download latest version" -msgid "Download Latest Free Version" -msgstr "Télécharger la dernière version gratuite" +#: includes/fs-plugin-info-dialog.php:745 +msgid "Install Free Version Update Now" +msgstr "Installer la dernière mise à jour gratuite maintenant" -#: includes/fs-plugin-info-dialog.php773, templates/account.php114, templates/add-ons.php37, templates/account/partials/addon.php:30 -msgctxt "as download latest version" -msgid "Download Latest" -msgstr "Télécharger la dernière version" +#: includes/fs-plugin-info-dialog.php746, templates/account.php:652 +msgid "Install Update Now" +msgstr "Installer la mise à jour maintenant" -#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, templates/account/partials/addon.php361, templates/account/partials/addon.php:417 +#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, +#: templates/account/partials/addon.php417, +#: templates/account/partials/addon.php:361 msgid "Activate this add-on" msgstr "Activer cet add-on" -#: includes/fs-plugin-info-dialog.php790, templates/connect.php:444 +#: includes/fs-plugin-info-dialog.php790, templates/connect.php:437 msgid "Activate Free Version" msgstr "Activez la version gratuite" -#: includes/fs-plugin-info-dialog.php791, templates/account.php138, templates/add-ons.php330, templates/account/partials/addon.php:53 +#: includes/fs-plugin-info-dialog.php791, templates/account.php134, +#: templates/add-ons.php330, templates/account/partials/addon.php:53 msgid "Activate" msgstr "Activer" -#: includes/fs-plugin-info-dialog.php:1003 -msgctxt "Plugin installer section title" -msgid "Description" -msgstr "Description" - -#: includes/fs-plugin-info-dialog.php:1004 -msgctxt "Plugin installer section title" -msgid "Installation" -msgstr "Installation" - -#: includes/fs-plugin-info-dialog.php:1005 -msgctxt "Plugin installer section title" -msgid "FAQ" -msgstr "FAQ" - -#: includes/fs-plugin-info-dialog.php1006, templates/plugin-info/description.php:55 +#: includes/fs-plugin-info-dialog.php1002, +#: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "Captures d'écran" -#: includes/fs-plugin-info-dialog.php:1007 -msgctxt "Plugin installer section title" -msgid "Changelog" -msgstr "Changelog" - -#: includes/fs-plugin-info-dialog.php:1008 -msgctxt "Plugin installer section title" -msgid "Reviews" -msgstr "Commentaires" - -#: includes/fs-plugin-info-dialog.php:1009 -msgctxt "Plugin installer section title" -msgid "Other Notes" -msgstr "Autres Informations" - -#: includes/fs-plugin-info-dialog.php:1024 -msgctxt "Plugin installer section title" -msgid "Features & Pricing" -msgstr "Fonctionnalités & Tarifs" - -#: includes/fs-plugin-info-dialog.php:1034 +#: includes/fs-plugin-info-dialog.php:1030 msgid "Plugin Install" msgstr "Installation du Plugin" -#: includes/fs-plugin-info-dialog.php:1106 -msgctxt "e.g. Professional Plan" -msgid "%s Plan" -msgstr "Formule %s" - -#: includes/fs-plugin-info-dialog.php:1132 -msgctxt "e.g. the best product" -msgid "Best" -msgstr "Best" - -#: includes/fs-plugin-info-dialog.php1138, includes/fs-plugin-info-dialog.php:1158 -msgctxt "as every month" -msgid "Monthly" -msgstr "Mensuel" - -#: includes/fs-plugin-info-dialog.php:1141 -msgctxt "as once a year" -msgid "Annual" -msgstr "Annuel" - -#: includes/fs-plugin-info-dialog.php:1144 +#: includes/fs-plugin-info-dialog.php:1140 msgid "Lifetime" msgstr "À vie" -#: includes/fs-plugin-info-dialog.php1158, includes/fs-plugin-info-dialog.php1160, includes/fs-plugin-info-dialog.php:1162 -msgctxt "e.g. billed monthly" -msgid "Billed %s" -msgstr "%s Facturé" - -#: includes/fs-plugin-info-dialog.php:1160 -msgctxt "as once a year" -msgid "Annually" -msgstr "Annuel" - -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "as once a year" -msgid "Once" -msgstr "Une fois" - -#: includes/fs-plugin-info-dialog.php:1168 +#: includes/fs-plugin-info-dialog.php:1164 msgid "Single Site License" msgstr "Licence 1 site" -#: includes/fs-plugin-info-dialog.php:1170 +#: includes/fs-plugin-info-dialog.php:1166 msgid "Unlimited Licenses" msgstr "Licences sites illimités" -#: includes/fs-plugin-info-dialog.php:1172 +#: includes/fs-plugin-info-dialog.php:1168 msgid "Up to %s Sites" msgstr "Jusqu'à %s Sites" -#: includes/fs-plugin-info-dialog.php1182, templates/plugin-info/features.php:82 -msgctxt "as monthly period" -msgid "mo" -msgstr "mois" - -#: includes/fs-plugin-info-dialog.php1189, templates/plugin-info/features.php:80 -msgctxt "as annual period" -msgid "year" -msgstr "année" - -#: includes/fs-plugin-info-dialog.php:1243 -msgctxt "noun" -msgid "Price" -msgstr "Tarif" - -#: includes/fs-plugin-info-dialog.php:1291 +#: includes/fs-plugin-info-dialog.php:1287 +#. translators: %s: Discount (e.g. discount of $5 or 10%) msgid "Save %s" msgstr "Économisez %s" -#: includes/fs-plugin-info-dialog.php:1301 +#: includes/fs-plugin-info-dialog.php:1297 msgid "No commitment for %s - cancel anytime" msgstr "Pas d'engagement durant %s - annuler quand vous voulez" -#: includes/fs-plugin-info-dialog.php:1304 +#: includes/fs-plugin-info-dialog.php:1300 msgid "After your free %s, pay as little as %s" msgstr "Après vos %s gratuits, payez seulement %s" -#: includes/fs-plugin-info-dialog.php:1315 +#: includes/fs-plugin-info-dialog.php:1311 msgid "Details" msgstr "Détails" -#: includes/fs-plugin-info-dialog.php1319, templates/account.php125, templates/debug.php232, templates/debug.php269, templates/debug.php518, templates/account/partials/addon.php:41 -msgctxt "product version" -msgid "Version" -msgstr "Version" - -#: includes/fs-plugin-info-dialog.php:1326 -msgctxt "as the plugin author" -msgid "Author" -msgstr "Auteur" - -#: includes/fs-plugin-info-dialog.php:1333 +#: includes/fs-plugin-info-dialog.php:1329 msgid "Last Updated" msgstr "Dernière mise à jour" -#: includes/fs-plugin-info-dialog.php1338, templates/account.php:544 -msgctxt "x-ago" -msgid "%s ago" -msgstr "Il y a %s" - -#: includes/fs-plugin-info-dialog.php:1347 +#: includes/fs-plugin-info-dialog.php:1343 msgid "Requires WordPress Version" msgstr "Version de WordPress requise" -#: includes/fs-plugin-info-dialog.php1350, includes/fs-plugin-info-dialog.php:1370 +#: includes/fs-plugin-info-dialog.php1346, +#: includes/fs-plugin-info-dialog.php:1366 +#. translators: %s: Version number. msgid "%s or higher" msgstr "%s ou plus" -#: includes/fs-plugin-info-dialog.php:1358 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Compatible up to" msgstr "Compatible jusqu'à" -#: includes/fs-plugin-info-dialog.php:1366 +#: includes/fs-plugin-info-dialog.php:1362 msgid "Requires PHP Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:1379 +#: includes/fs-plugin-info-dialog.php:1375 msgid "Downloaded" msgstr "Téléchargé" -#: includes/fs-plugin-info-dialog.php:1383 +#: includes/fs-plugin-info-dialog.php:1379 +#. translators: %s: 1 or One (Number of times downloaded) msgid "%s time" msgstr "%s fois" -#: includes/fs-plugin-info-dialog.php:1385 +#: includes/fs-plugin-info-dialog.php:1381 +#. translators: %s: Number of times downloaded msgid "%s times" msgstr "%s fois" -#: includes/fs-plugin-info-dialog.php:1396 +#: includes/fs-plugin-info-dialog.php:1392 msgid "WordPress.org Plugin Page" msgstr "Page WordPress.org du plugin" -#: includes/fs-plugin-info-dialog.php:1405 +#: includes/fs-plugin-info-dialog.php:1401 msgid "Plugin Homepage" msgstr "Site Web du plugin" -#: includes/fs-plugin-info-dialog.php1414, includes/fs-plugin-info-dialog.php:1498 +#: includes/fs-plugin-info-dialog.php1410, +#: includes/fs-plugin-info-dialog.php:1494 msgid "Donate to this plugin" msgstr "Faire une donation pour ce plugin" -#: includes/fs-plugin-info-dialog.php:1421 +#: includes/fs-plugin-info-dialog.php:1417 msgid "Average Rating" msgstr "Note moyenne" -#: includes/fs-plugin-info-dialog.php:1428 +#: includes/fs-plugin-info-dialog.php:1424 msgid "based on %s" msgstr "Basé sur %s" -#: includes/fs-plugin-info-dialog.php:1432 +#: includes/fs-plugin-info-dialog.php:1428 +#. translators: %s: 1 or One msgid "%s rating" msgstr "%s notation" -#: includes/fs-plugin-info-dialog.php:1434 +#: includes/fs-plugin-info-dialog.php:1430 +#. translators: %s: Number larger than 1 msgid "%s ratings" msgstr "%snotations " -#: includes/fs-plugin-info-dialog.php:1449 +#: includes/fs-plugin-info-dialog.php:1445 +#. translators: %s: 1 or One msgid "%s star" msgstr "%s étoile" -#: includes/fs-plugin-info-dialog.php:1451 +#: includes/fs-plugin-info-dialog.php:1447 +#. translators: %s: Number larger than 1 msgid "%s stars" msgstr "%s étoiles" -#: includes/fs-plugin-info-dialog.php:1463 +#: includes/fs-plugin-info-dialog.php:1459 +#. translators: %s: # of stars (e.g. 5 stars) msgid "Click to see reviews that provided a rating of %s" msgstr "Cliquez pour voir les avis avec une notation de %s" -#: includes/fs-plugin-info-dialog.php:1476 +#: includes/fs-plugin-info-dialog.php:1472 msgid "Contributors" msgstr "Contributeurs" -#: includes/fs-plugin-info-dialog.php:1517 +#: includes/fs-plugin-info-dialog.php:1513 msgid "This plugin requires a newer version of PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php:1526 -msgid "Click here to learn more about updating PHP." +#: includes/fs-plugin-info-dialog.php:1522 +#. translators: %s: URL to Update PHP page. +msgid "" +"Click here to learn more about updating " +"PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php1540, includes/fs-plugin-info-dialog.php:1542 +#: includes/fs-plugin-info-dialog.php1538, +#: includes/fs-plugin-info-dialog.php:1536 msgid "Warning" msgstr "Attention" -#: includes/fs-plugin-info-dialog.php:1540 +#: includes/fs-plugin-info-dialog.php:1538 +msgid "" +"This plugin has not been marked as compatible with your version of " +"WordPress." +msgstr "" +"Ce plugin n'a pas été indiqué comme étant compatible avec votre version " +"actuelle de WordPress" + +#: includes/fs-plugin-info-dialog.php:1536 msgid "This plugin has not been tested with your current version of WordPress." msgstr "Ce plugin n'a pas été testé avec votre actuelle version de WordPress" -#: includes/fs-plugin-info-dialog.php:1542 -msgid "This plugin has not been marked as compatible with your version of WordPress." -msgstr "Ce plugin n'a pas été indiqué comme étant compatible avec votre version actuelle de WordPress" - -#: includes/fs-plugin-info-dialog.php:1561 +#: includes/fs-plugin-info-dialog.php:1557 msgid "Paid add-on must be deployed to Freemius." msgstr "Les add-ons payant doivent être déposés sur Freemius" -#: includes/fs-plugin-info-dialog.php:1562 +#: includes/fs-plugin-info-dialog.php:1558 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "Les add-ons doivent être déposés sur WordPress.org ou Freemius." -#: includes/fs-plugin-info-dialog.php:1583 -msgid "Newer Version (%s) Installed" -msgstr "Nouvelle Version (%s) Installée" - -#: includes/fs-plugin-info-dialog.php:1584 -msgid "Newer Free Version (%s) Installed" -msgstr "La nouvelle version gratuite ( %s ) a été installé" - -#: includes/fs-plugin-info-dialog.php:1591 +#: includes/fs-plugin-info-dialog.php:1587 msgid "Latest Version Installed" msgstr "Dernière Version Installée" -#: includes/fs-plugin-info-dialog.php:1592 +#: includes/fs-plugin-info-dialog.php:1588 msgid "Latest Free Version Installed" msgstr "La dernière version gratuite a été installé" -#: templates/account.php115, templates/forms/subscription-cancellation.php96, templates/account/partials/addon.php31, templates/account/partials/site.php:313 +#: includes/fs-plugin-info-dialog.php:1579 +msgid "Newer Version (%s) Installed" +msgstr "Nouvelle Version (%s) Installée" + +#: includes/fs-plugin-info-dialog.php:1580 +msgid "Newer Free Version (%s) Installed" +msgstr "La nouvelle version gratuite ( %s ) a été installé" + +#: templates/account.php111, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php31, +#: templates/account/partials/site.php:313 msgid "Downgrading your plan" msgstr "Rétrograder votre formule" -#: templates/account.php116, templates/forms/subscription-cancellation.php97, templates/account/partials/addon.php32, templates/account/partials/site.php:314 +#: templates/account.php112, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php32, +#: templates/account/partials/site.php:314 msgid "Cancelling the subscription" msgstr "Annuler votre abonnement" +#: templates/account.php114, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/site.php:316 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php118, templates/forms/subscription-cancellation.php99, templates/account/partials/site.php:316 -msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." +msgid "" +"%1$s will immediately stop all future recurring payments and your %2$s plan " +"license will expire in %3$s." msgstr "" -#: templates/account.php119, templates/forms/subscription-cancellation.php100, templates/account/partials/addon.php35, templates/account/partials/site.php:317 -msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." -msgstr "Veuillez noter que nous ne serons pas en mesure de garantir le maintien des prix actuels pour les renouvellements/nouveaux abonnements après une annulation. Si vous choisissez de renouveler l'abonnement manuellement à l'avenir, après une augmentation de prix, qui se produit généralement une fois par an, le prix mis à jour vous sera facturé." - -#: templates/account.php120, templates/forms/subscription-cancellation.php106, templates/account/partials/addon.php:36 -msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" -msgstr "Annuler la période d'essai va immédiatement bloquer les fonctionnalités premium. Souhaitez-vous continuer ?" +#: templates/account.php115, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php35, +#: templates/account/partials/site.php:317 +msgid "" +"Please note that we will not be able to grandfather outdated pricing for " +"renewals/new subscriptions after a cancellation. If you choose to renew the " +"subscription manually in the future, after a price increase, which " +"typically occurs once a year, you will be charged the updated price." +msgstr "" +"Veuillez noter que nous ne serons pas en mesure de garantir le maintien des " +"prix actuels pour les renouvellements/nouveaux abonnements après une " +"annulation. Si vous choisissez de renouveler l'abonnement manuellement à " +"l'avenir, après une augmentation de prix, qui se produit généralement une " +"fois par an, le prix mis à jour vous sera facturé." + +#: templates/account.php116, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:36 +msgid "" +"Cancelling the trial will immediately block access to all premium features. " +"Are you sure?" +msgstr "" +"Annuler la période d'essai va immédiatement bloquer les fonctionnalités " +"premium. Souhaitez-vous continuer ?" -#: templates/account.php121, templates/forms/subscription-cancellation.php101, templates/account/partials/addon.php37, templates/account/partials/site.php:318 -msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." -msgstr "Vous pouvez toujours profiter de toutes les fonctionnalités de %s mais vous n'aurez plus accès aux mises à jour de sécurité ou de fonctionnalités de %s, ni au support." +#: templates/account.php117, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php37, +#: templates/account/partials/site.php:318 +msgid "" +"You can still enjoy all %s features but you will not have access to %s " +"security & feature updates, nor support." +msgstr "" +"Vous pouvez toujours profiter de toutes les fonctionnalités de %s mais vous " +"n'aurez plus accès aux mises à jour de sécurité ou de fonctionnalités de " +"%s, ni au support." -#: templates/account.php122, templates/forms/subscription-cancellation.php102, templates/account/partials/addon.php38, templates/account/partials/site.php:319 -msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." -msgstr "Une fois la licence expirée vous pourrez toujours utiliser la version gratuite mais vous n'aurez PAS accès aux fonctionnalités de %s." +#: templates/account.php118, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php38, +#: templates/account/partials/site.php:319 +msgid "" +"Once your license expires you can still use the Free version but you will " +"NOT have access to the %s features." +msgstr "" +"Une fois la licence expirée vous pourrez toujours utiliser la version " +"gratuite mais vous n'aurez PAS accès aux fonctionnalités de %s." +#: templates/account.php120, +#: templates/account/partials/activate-license-button.php31, +#: templates/account/partials/addon.php:40 #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php124, templates/account/partials/activate-license-button.php31, templates/account/partials/addon.php:40 msgid "Activate %s Plan" msgstr "Activer la formule %s" +#: templates/account.php123, templates/account/partials/addon.php43, +#: templates/account/partials/site.php:293 #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php127, templates/account/partials/addon.php43, templates/account/partials/site.php:293 msgid "Auto renews in %s" msgstr "Renouvellements automatique dans %s" +#: templates/account.php125, templates/account/partials/addon.php45, +#: templates/account/partials/site.php:295 #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php129, templates/account/partials/addon.php45, templates/account/partials/site.php:295 msgid "Expires in %s" msgstr "Expire dans %s" -#: templates/account.php:130 -msgctxt "as synchronize license" -msgid "Sync License" -msgstr "Synchroniser la licence" - -#: templates/account.php131, templates/account/partials/addon.php:46 +#: templates/account.php127, templates/account/partials/addon.php:46 msgid "Cancel Trial" msgstr "Annuler la période d'essai" -#: templates/account.php132, templates/account/partials/addon.php:47 +#: templates/account.php128, templates/account/partials/addon.php:47 msgid "Change Plan" msgstr "Changer de formule" -#: templates/account.php133, templates/account/partials/addon.php:48 -msgctxt "verb" -msgid "Upgrade" -msgstr "Mise à jour" - -#: templates/account.php135, templates/account/partials/addon.php50, templates/account/partials/site.php:320 -msgctxt "verb" -msgid "Downgrade" -msgstr "Rétrograder" - -#: templates/account.php137, templates/add-ons.php246, templates/plugin-info/features.php72, templates/account/partials/addon.php52, templates/account/partials/site.php:33 +#: templates/account.php133, templates/add-ons.php246, +#: templates/plugin-info/features.php72, +#: templates/account/partials/addon.php52, +#: templates/account/partials/site.php:33 msgid "Free" msgstr "Gratuit" -#: templates/account.php139, templates/debug.php412, includes/customizer/class-fs-customizer-upsell-control.php110, templates/account/partials/addon.php:54 -msgctxt "as product pricing plan" -msgid "Plan" -msgstr "Formule" - -#: templates/account.php:140 +#: templates/account.php:136 msgid "Bundle Plan" msgstr "" -#: templates/account.php:272 +#: templates/account.php:268 msgid "Free Trial" msgstr "Essai gratuit" -#: templates/account.php:283 +#: templates/account.php:279 msgid "Account Details" msgstr "Détails du compte" -#: templates/account.php290, templates/forms/data-debug-mode.php:33 -msgid "Start Debug" +#: templates/account.php:288 +msgid "Stop Debug" msgstr "" -#: templates/account.php:292 -msgid "Stop Debug" +#: templates/account.php286, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" msgstr "" -#: templates/account.php:299 +#: templates/account.php:295 msgid "Billing & Invoices" msgstr "" -#: templates/account.php322, templates/account/partials/addon.php236, templates/account/partials/deactivate-license-button.php:35 +#: templates/account.php318, templates/account/partials/addon.php236, +#: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "Désactiver la licence" -#: templates/account.php345, templates/forms/subscription-cancellation.php:125 +#: templates/account.php341, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "Êtes-vous de vouloir continuer ?" -#: templates/account.php345, templates/account/partials/addon.php:260 +#: templates/account.php341, templates/account/partials/addon.php:260 msgid "Cancel Subscription" msgstr "Annuler l'abonnement" -#: templates/account.php374, templates/account/partials/addon.php:345 -msgctxt "as synchronize" -msgid "Sync" -msgstr "Synchroniser" - -#: templates/account.php389, templates/debug.php:575 +#: templates/account.php385, templates/debug.php:575 msgid "Name" msgstr "Nom" -#: templates/account.php395, templates/debug.php:576 +#: templates/account.php391, templates/debug.php:576 msgid "Email" msgstr "Email" -#: templates/account.php402, templates/debug.php410, templates/debug.php:625 +#: templates/account.php398, templates/debug.php410, templates/debug.php:625 msgid "User ID" msgstr "User ID" -#: templates/account.php420, templates/account.php738, templates/account.php789, templates/debug.php267, templates/debug.php404, templates/debug.php515, templates/debug.php574, templates/debug.php623, templates/debug.php702, templates/account/payments.php35, templates/debug/logger.php:21 +#: templates/account.php416, templates/account.php734, +#: templates/account.php785, templates/debug.php267, templates/debug.php404, +#: templates/debug.php515, templates/debug.php574, templates/debug.php623, +#: templates/debug.php702, templates/account/payments.php35, +#: templates/debug/logger.php:21 msgid "ID" msgstr "ID" -#: templates/account.php:427 +#: templates/account.php:423 msgid "Site ID" msgstr "Site ID" -#: templates/account.php:430 +#: templates/account.php:426 msgid "No ID" msgstr "ID manquant" -#: templates/account.php435, templates/debug.php274, templates/debug.php413, templates/debug.php519, templates/debug.php578, templates/account/partials/site.php:228 +#: templates/account.php431, templates/debug.php274, templates/debug.php413, +#: templates/debug.php519, templates/debug.php578, +#: templates/account/partials/site.php:228 msgid "Public Key" msgstr "Clef publique" -#: templates/account.php441, templates/debug.php414, templates/debug.php520, templates/debug.php579, templates/account/partials/site.php:241 +#: templates/account.php437, templates/debug.php414, templates/debug.php520, +#: templates/debug.php579, templates/account/partials/site.php:241 msgid "Secret Key" msgstr "Clef secrête" -#: templates/account.php:444 -msgctxt "as secret encryption key missing" -msgid "No Secret" -msgstr "Clef secrète manquante" +#: templates/account.php494, templates/debug.php631, +#: templates/account/partials/site.php:262 +msgid "License Key" +msgstr "Clef de licence" -#: templates/account.php471, templates/account/partials/site.php120, templates/account/partials/site.php:122 +#: templates/account.php467, templates/account/partials/site.php122, +#: templates/account/partials/site.php:120 msgid "Trial" msgstr "Période d'essai" -#: templates/account.php498, templates/debug.php631, templates/account/partials/site.php:262 -msgid "License Key" -msgstr "Clef de licence" - -#: templates/account.php:529 +#: templates/account.php:525 msgid "Join the Beta program" msgstr "" -#: templates/account.php:535 +#: templates/account.php:531 msgid "not verified" msgstr "Non vérifié" -#: templates/account.php544, templates/account/partials/addon.php:195 -msgid "Expired" -msgstr "Expiré" +#: templates/account.php:600 +msgid "Free version" +msgstr "Version gratuite" -#: templates/account.php:602 +#: templates/account.php:598 msgid "Premium version" msgstr "Version premium" -#: templates/account.php:604 -msgid "Free version" -msgstr "Version gratuite" +#: templates/account.php540, templates/account/partials/addon.php:195 +msgid "Expired" +msgstr "Expiré" -#: templates/account.php:616 +#: templates/account.php:612 msgid "Verify Email" msgstr "Vérifier l'email" -#: templates/account.php:630 -msgid "Download %s Version" -msgstr "Télécharger la version %s" - -#: templates/account.php:646 -msgid "Download Paid Version" +#: templates/account.php689, templates/forms/user-change.php:27 +msgid "Change User" msgstr "" -#: templates/account.php664, templates/account.php927, templates/account/partials/site.php250, templates/account/partials/site.php:272 -msgctxt "verb" -msgid "Show" -msgstr "Afficher" - -#: templates/account.php:680 +#: templates/account.php:676 msgid "What is your %s?" msgstr "Quel est votre %s ?" -#: templates/account.php688, templates/account/billing.php:21 -msgctxt "verb" -msgid "Edit" -msgstr "Éditer" +#: templates/account.php:626 +msgid "Download %s Version" +msgstr "Télécharger la version %s" -#: templates/account.php693, templates/forms/user-change.php:27 -msgid "Change User" +#: templates/account.php:642 +msgid "Download Paid Version" msgstr "" -#: templates/account.php:717 +#: templates/account.php:713 msgid "Sites" msgstr "Sites" -#: templates/account.php:730 +#: templates/account.php:726 msgid "Search by address" msgstr "Recherche par adresse" -#: templates/account.php739, templates/debug.php:407 +#: templates/account.php735, templates/debug.php:407 msgid "Address" msgstr "Adresse" -#: templates/account.php:740 +#: templates/account.php:736 msgid "License" msgstr "Licence" -#: templates/account.php:741 +#: templates/account.php:737 msgid "Plan" msgstr "Formule" -#: templates/account.php:792 -msgctxt "as software license" -msgid "License" -msgstr "Licence" - -#: templates/account.php:921 -msgctxt "verb" -msgid "Hide" -msgstr "Cacher" - -#: templates/account.php943, templates/forms/data-debug-mode.php31, templates/forms/deactivation/form.php358, templates/forms/deactivation/form.php:389 +#: templates/account.php939, templates/forms/data-debug-mode.php31, +#: templates/forms/deactivation/form.php358, +#: templates/forms/deactivation/form.php:389 msgid "Processing" msgstr "Traitement en cours" -#: templates/account.php:946 +#: templates/account.php:942 msgid "Get updates for bleeding edge Beta versions of %s." msgstr "" -#: templates/account.php:1004 +#: templates/account.php:1000 msgid "Cancelling %s" msgstr "Annulation de %s" -#: templates/account.php1004, templates/account.php1021, templates/forms/subscription-cancellation.php27, templates/forms/deactivation/form.php:178 +#: templates/account.php1000, templates/account.php1017, +#: templates/forms/subscription-cancellation.php27, +#: templates/forms/deactivation/form.php:178 msgid "trial" msgstr "essai" -#: templates/account.php1019, templates/forms/deactivation/form.php:195 +#: templates/account.php1015, templates/forms/deactivation/form.php:195 msgid "Cancelling %s..." msgstr "Annulation de %s..." -#: templates/account.php1022, templates/forms/subscription-cancellation.php28, templates/forms/deactivation/form.php:179 +#: templates/account.php1018, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:179 msgid "subscription" msgstr "abonnement" -#: templates/account.php:1036 -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?" -msgstr "Désactiver la licence bloquera toutes les fonctionnalités premium mais vous permettra d'activer la licence sur un autre site. Êtes-vous sûr de vouloir continuer ?" +#: templates/account.php:1032 +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?" +msgstr "" +"Désactiver la licence bloquera toutes les fonctionnalités premium mais vous " +"permettra d'activer la licence sur un autre site. Êtes-vous sûr de vouloir " +"continuer ?" -#: templates/account.php:1110 +#: templates/account.php:1106 msgid "Disabling white-label mode" msgstr "" -#: templates/account.php:1111 +#: templates/account.php:1107 msgid "Enabling white-label mode" msgstr "" @@ -1487,25 +1551,13 @@ msgid "Add Ons for %s" msgstr "Add Ons pour %s" #: templates/add-ons.php:58 -msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "" - -#: templates/add-ons.php:229 -msgctxt "active add-on" -msgid "Active" -msgstr "" - -#: templates/add-ons.php:230 -msgctxt "installed add-on" -msgid "Installed" +msgid "" +"We couldn't load the add-ons list. It's probably an issue on our side, " +"please try to come back in few minutes." msgstr "" -#: templates/admin-notice.php13, templates/forms/license-activation.php243, templates/forms/resend-key.php:80 -msgctxt "as close a window" -msgid "Dismiss" -msgstr "Fermer" - #: templates/auto-installation.php:45 +#. translators: %s: Number of seconds msgid "%s sec" msgstr "%s sec" @@ -1514,12 +1566,23 @@ msgid "Automatic Installation" msgstr "Installation automatique" #: templates/auto-installation.php:93 -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." -msgstr "Un téléchargement et une installation automatique de %s (version premium) de %s va commencer dans %s. Si vous voulez le faire manuellement, cliquez sur le bouton d'annulation maintenant." +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." +msgstr "" +"Un téléchargement et une installation automatique de %s (version premium) " +"de %s va commencer dans %s. Si vous voulez le faire manuellement, cliquez " +"sur le bouton d'annulation maintenant." #: templates/auto-installation.php:104 -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." -msgstr "L'installation a commencé et peut prendre quelques minutes pour se finir. Merci de patienter jusqu'à ce qu'elle soit terminée - veuillez ne pas rafraichir cette page." +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." +msgstr "" +"L'installation a commencé et peut prendre quelques minutes pour se finir. " +"Merci de patienter jusqu'à ce qu'elle soit terminée - veuillez ne pas " +"rafraichir cette page." #: templates/auto-installation.php:109 msgid "Cancel Installation" @@ -1533,172 +1596,174 @@ msgstr "Paiement" msgid "PCI compliant" msgstr "Compatible PCI" -#. translators: %s: name (e.g. Hey John,) -#: templates/connect.php:127 -msgctxt "greeting" -msgid "Hey %s," -msgstr "Hey %s," - -#: templates/connect.php:187 -msgid "Never miss an important update" +#: templates/connect.php:186 +#. translators: %1$s: plugin name (e.g., "Awesome Plugin"); %2$s: version +#. (e.g., "1.2.3") +msgid "Thank you for updating to %1$s v%2$s!" msgstr "" -#: templates/connect.php:195 -msgid "Thank you for updating to %1$s v%2$s!" +#: templates/connect.php:178 +msgid "Never miss an important update" msgstr "" -#: templates/connect.php:205 +#: templates/connect.php:196 msgid "Allow & Continue" msgstr "Autoriser & Continuer" -#: templates/connect.php:209 -msgid "Re-send activation email" -msgstr "Renvoyer l'email d'activation" - -#: templates/connect.php:213 -msgid "Thanks %s!" -msgstr "Merci %s !" - -#: templates/connect.php:214 -msgid "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." +#: templates/connect.php:236 +#. translators: %s: module type (plugin, theme, or add-on) +msgid "" +"We have introduced this opt-in so you never miss an important update and " +"help us make the %s more compatible with your site and better at doing what " +"you need it to." msgstr "" -#: templates/connect.php:225 -msgid "Welcome to %s! To get started, please enter your license key:" +#: templates/connect.php:238 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info." msgstr "" -#: templates/connect.php:236 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." +#: templates/connect.php:241 +msgid "If you skip this, that's okay! %1$s will still work just fine." msgstr "" -#. translators: %s: module type (plugin, theme, or add-on) -#: templates/connect.php:245 -msgid "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." +#: templates/connect.php:227 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info. This will help us make the %s more compatible " +"with your site and better at doing what you need it to." msgstr "" -#: templates/connect.php:247 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." +#: templates/connect.php:216 +msgid "Welcome to %s! To get started, please enter your license key:" msgstr "" -#: templates/connect.php:250 -msgid "If you skip this, that's okay! %1$s will still work just fine." +#: templates/connect.php:200 +msgid "Re-send activation email" +msgstr "Renvoyer l'email d'activation" + +#: templates/connect.php:204 +msgid "Thanks %s!" +msgstr "Merci %s !" + +#: templates/connect.php:205 +msgid "" +"You should receive a confirmation email for %s to your mailbox at %s. " +"Please make sure you click the button in that email to %s." msgstr "" -#: templates/connect.php:280 +#: templates/connect.php:271 msgid "We're excited to introduce the Freemius network-level integration." -msgstr "Nous sommes impatient de vous présenter l'intégration Freemius au niveau réseau." - -#: templates/connect.php:283 -msgid "During the update process we detected %d site(s) that are still pending license activation." -msgstr "Durant le processus de mise à jour nous avons détecté %d site(s) toujours en attente d'activation de la licence." +msgstr "" +"Nous sommes impatient de vous présenter l'intégration Freemius au niveau " +"réseau." #: templates/connect.php:285 -msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." -msgstr "Si vous voulez utiliser le %s sur ces sites, merci d'indiquer votre clé de licence ci-dessous et de cliquer sur le bouton d'activation." +msgid "" +"During the update process we detected %s site(s) in the network that are " +"still pending your attention." +msgstr "" +"Durant le processus de mise à jour nous avons détecté %s site(s) dans le " +"réseau que vous devez vérifier." + +#: templates/connect.php:274 +msgid "" +"During the update process we detected %d site(s) that are still pending " +"license activation." +msgstr "" +"Durant le processus de mise à jour nous avons détecté %d site(s) toujours " +"en attente d'activation de la licence." -#: templates/connect.php:287 +#: templates/connect.php:276 +msgid "" +"If you'd like to use the %s on those sites, please enter your license key " +"below and click the activation button." +msgstr "" +"Si vous voulez utiliser le %s sur ces sites, merci d'indiquer votre clé de " +"licence ci-dessous et de cliquer sur le bouton d'activation." + +#: templates/connect.php:278 msgid "%s's paid features" msgstr "Fonctionnalités payantes de %s" -#: templates/connect.php:292 -msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." -msgstr "Éventuellement, vous pouvez l'ignorer pour l'instant et activer la licence plus tard, sur votre page de compte du réseau %s." - -#: templates/connect.php:294 -msgid "During the update process we detected %s site(s) in the network that are still pending your attention." -msgstr "Durant le processus de mise à jour nous avons détecté %s site(s) dans le réseau que vous devez vérifier." +#: templates/connect.php:283 +msgid "" +"Alternatively, you can skip it for now and activate the license later, in " +"your %s's network-level Account page." +msgstr "" +"Éventuellement, vous pouvez l'ignorer pour l'instant et activer la licence " +"plus tard, sur votre page de compte du réseau %s." -#: templates/connect.php303, templates/forms/data-debug-mode.php35, templates/forms/license-activation.php:42 +#: templates/connect.php294, templates/forms/data-debug-mode.php35, +#: templates/forms/license-activation.php:42 msgid "License key" msgstr "Clef de licence" -#: templates/connect.php306, templates/forms/license-activation.php:22 +#: templates/connect.php297, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "Vous ne trouvez pas votre clef de licence ?" -#: templates/connect.php369, templates/connect.php693, templates/forms/deactivation/retry-skip.php:20 -msgctxt "verb" -msgid "Skip" -msgstr "Passer" - -#: templates/connect.php:372 +#: templates/connect.php:363 msgid "Delegate to Site Admins" msgstr "Déléguer aux administrateurs du site" -#: templates/connect.php:372 -msgid "If you click it, this decision will be delegated to the sites administrators." +#: templates/connect.php:363 +msgid "" +"If you click it, this decision will be delegated to the sites " +"administrators." msgstr "Si vous cliquez, cette décision sera déléguée aux administrateurs des sites." -#: templates/connect.php:399 +#: templates/connect.php:392 msgid "License issues?" msgstr "" -#: templates/connect.php:423 -msgid "For delivery of security & feature updates, and license management, %s needs to" -msgstr "" - -#: templates/connect.php:428 +#: templates/connect.php:421 msgid "This will allow %s to" msgstr "" -#: templates/connect.php:443 -msgid "Don't have a license key?" -msgstr "Vous n'avez pas de clef de licence ?" +#: templates/connect.php:416 +msgid "" +"For delivery of security & feature updates, and license management, %s " +"needs to" +msgstr "" -#: templates/connect.php:446 +#: templates/connect.php:439 msgid "Have a license key?" msgstr "Vous avez une clef de licence ?" -#: templates/connect.php:454 +#: templates/connect.php:436 +msgid "Don't have a license key?" +msgstr "Vous n'avez pas de clef de licence ?" + +#: templates/connect.php:447 msgid "Freemius is our licensing and software updates engine" msgstr "" -#: templates/connect.php:457 +#: templates/connect.php:450 msgid "Privacy Policy" msgstr "Politique de confidentialité" -#: templates/connect.php:459 -msgid "License Agreement" -msgstr "Contrat de licence" - -#: templates/connect.php:459 +#: templates/connect.php:455 msgid "Terms of Service" msgstr "Conditions générales de service" -#: templates/connect.php:879 -msgctxt "as in the process of sending an email" -msgid "Sending email" -msgstr "Email en cours d'envoi" - -#: templates/connect.php:880 -msgctxt "as activating plugin" -msgid "Activating" -msgstr "Activation en cours" +#: templates/connect.php:453 +msgid "License Agreement" +msgstr "Contrat de licence" #: templates/contact.php:78 msgid "Contact" msgstr "Contact" -#: templates/debug.php:17 -msgctxt "as turned off" -msgid "Off" -msgstr "Off" - -#: templates/debug.php:18 -msgctxt "as turned on" -msgid "On" -msgstr "On" - #: templates/debug.php:24 msgid "SDK" msgstr "SDK" -#: templates/debug.php:28 -msgctxt "as code debugging" -msgid "Debugging" -msgstr "Debuggage" - -#: templates/debug.php58, templates/debug.php279, templates/debug.php415, templates/debug.php:580 +#: templates/debug.php58, templates/debug.php279, templates/debug.php415, +#: templates/debug.php:580 msgid "Actions" msgstr "Actions" @@ -1746,11 +1811,6 @@ msgstr "Clef" msgid "Value" msgstr "Valeur" -#: templates/debug.php:228 -msgctxt "as software development kit versions" -msgid "SDK Versions" -msgstr "Versions du SDK" - #: templates/debug.php:233 msgid "SDK Path" msgstr "Chemin d'accès du SDK" @@ -1771,7 +1831,8 @@ msgstr "Plugins" msgid "Themes" msgstr "Thèmes" -#: templates/debug.php268, templates/debug.php409, templates/debug.php517, templates/debug/scheduled-crons.php:80 +#: templates/debug.php268, templates/debug.php409, templates/debug.php517, +#: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "Slug" @@ -1779,11 +1840,6 @@ msgstr "Slug" msgid "Title" msgstr "Titre" -#: templates/debug.php:271 -msgctxt "as application program interface" -msgid "API" -msgstr "API" - #: templates/debug.php:272 msgid "Freemius State" msgstr "État de Freemius" @@ -1796,21 +1852,6 @@ msgstr "Réseau de Blog" msgid "Network User" msgstr "Réseau d'Utilisateur" -#: templates/debug.php:323 -msgctxt "as connection was successful" -msgid "Connected" -msgstr "Connecté" - -#: templates/debug.php:325 -msgctxt "as connection blocked" -msgid "Blocked" -msgstr "Bloqué" - -#: templates/debug.php:326 -msgctxt "API connectivity state is unknown" -msgid "Unknown" -msgstr "" - #: templates/debug.php:362 msgid "Simulate Trial Promotion" msgstr "Simuler la promotion d'essai" @@ -1820,14 +1861,10 @@ msgid "Simulate Network Upgrade" msgstr "Simuler la mise à jour du réseau" #: templates/debug.php:398 +#. translators: %s: 'plugin' or 'theme' msgid "%s Installs" msgstr "%s Installations" -#: templates/debug.php:400 -msgctxt "like websites" -msgid "Sites" -msgstr "Sites" - #: templates/debug.php406, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "Blog ID" @@ -1836,11 +1873,6 @@ msgstr "Blog ID" msgid "License ID" msgstr "" -#: templates/debug.php497, templates/debug.php603, templates/account/partials/addon.php:440 -msgctxt "verb" -msgid "Delete" -msgstr "Supprimer" - #: templates/debug.php:511 msgid "Add Ons of module %s" msgstr "Add Ons du module %s" @@ -1877,15 +1909,11 @@ msgstr "Activé" msgid "Blocking" msgstr "Bloquant" -#: templates/debug.php630, templates/debug.php701, templates/debug/logger.php:22 +#: templates/debug.php630, templates/debug.php701, +#: templates/debug/logger.php:22 msgid "Type" msgstr "Type" -#: templates/debug.php:632 -msgctxt "as expiration date" -msgid "Expiration" -msgstr "Expiration" - #: templates/debug.php:660 msgid "Debug Log" msgstr "Debug Log" @@ -1898,11 +1926,13 @@ msgstr "Tous les types" msgid "All Requests" msgstr "Toutes les demandes" -#: templates/debug.php676, templates/debug.php705, templates/debug/logger.php:25 +#: templates/debug.php676, templates/debug.php705, +#: templates/debug/logger.php:25 msgid "File" msgstr "Fichier" -#: templates/debug.php677, templates/debug.php703, templates/debug/logger.php:23 +#: templates/debug.php677, templates/debug.php703, +#: templates/debug/logger.php:23 msgid "Function" msgstr "Fonction" @@ -1914,7 +1944,8 @@ msgstr "ID du processus" msgid "Logger" msgstr "Logger" -#: templates/debug.php680, templates/debug.php704, templates/debug/logger.php:24 +#: templates/debug.php680, templates/debug.php704, +#: templates/debug/logger.php:24 msgid "Message" msgstr "Message" @@ -1931,18 +1962,15 @@ msgid "Timestamp" msgstr "Timestamp" #: templates/secure-https-header.php:28 +#. translators: %s: Page name msgid "Secure HTTPS %s page, running from an external domain" msgstr "Page %s sécurisée HTTPS, s'exécutant sur un domaine externe" -#: includes/customizer/class-fs-customizer-support-section.php55, templates/plugin-info/features.php:43 +#: includes/customizer/class-fs-customizer-support-section.php55, +#: templates/plugin-info/features.php:43 msgid "Support" msgstr "Support" -#: includes/debug/class-fs-debug-bar-panel.php48, templates/debug/api-calls.php54, templates/debug/logger.php:62 -msgctxt "milliseconds" -msgid "ms" -msgstr "ms" - #: includes/debug/debug-bar-start.php:41 msgid "Freemius API" msgstr "API Freemius" @@ -1959,16 +1987,22 @@ msgstr "" msgid "products" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1205 -msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." -msgstr "" - #: includes/managers/class-fs-clone-manager.php:1211 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of %3$s:%1$s" msgstr "" #: includes/managers/class-fs-clone-manager.php:1212 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of these sites:%3$s%1$s" +msgstr "" + +#: includes/managers/class-fs-clone-manager.php:1205 +msgid "" +"%1$s has been placed into safe mode because we noticed that %2$s is an " +"exact copy of %3$s." msgstr "" #: includes/managers/class-fs-clone-manager.php:1238 @@ -1980,7 +2014,9 @@ msgid "Is %2$s a duplicate of %4$s?" msgstr "" #: includes/managers/class-fs-clone-manager.php:1252 -msgid "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." +msgid "" +"Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or " +"development." msgstr "" #: includes/managers/class-fs-clone-manager.php:1257 @@ -1996,10 +2032,13 @@ msgid "Is %2$s the new home of %4$s?" msgstr "" #: includes/managers/class-fs-clone-manager.php:1270 -msgid "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." +msgid "" +"Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to " +"%%2$s." msgstr "" -#: includes/managers/class-fs-clone-manager.php1271, templates/forms/subscription-cancellation.php:52 +#: includes/managers/class-fs-clone-manager.php1271, +#: templates/forms/subscription-cancellation.php:52 msgid "license" msgstr "licence" @@ -2031,11 +2070,6 @@ msgstr "" msgid "New Website" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1319 -msgctxt "Clone resolution admin notice products list label" -msgid "Products" -msgstr "Produits" - #: includes/managers/class-fs-clone-manager.php:1408 msgid "You marked this website, %s, as a temporary duplicate of %s." msgstr "" @@ -2045,12 +2079,10 @@ msgid "You marked this website, %s, as a temporary duplicate of these sites" msgstr "" #: includes/managers/class-fs-clone-manager.php:1423 -msgid "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." -msgstr "" - -#: includes/managers/class-fs-clone-manager.php:1426 -msgctxt "\"The \", e.g.: \"The plugin\"" -msgid "The %s's" +msgid "" +"%s automatic security & feature updates and paid functionality will keep " +"working without interruptions until %s (or when your license expires, " +"whatever comes first)." msgstr "" #: includes/managers/class-fs-clone-manager.php:1429 @@ -2058,7 +2090,9 @@ msgid "The following products'" msgstr "" #: includes/managers/class-fs-clone-manager.php:1437 -msgid "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." +msgid "" +"If this is a long term duplicate, to keep automatic updates and paid " +"functionality after %s, please %s." msgstr "" #: includes/managers/class-fs-clone-manager.php:1439 @@ -2074,7 +2108,12 @@ msgid "Homepage URL & title, WP & PHP versions, and site language" msgstr "" #: includes/managers/class-fs-permission-manager.php:195 -msgid "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To provide additional functionality that's relevant to your website, avoid " +"WordPress or PHP version incompatibilities that can break your website, and " +"recognize which languages & regions the %s should be translated and " +"tailored to." msgstr "" #: includes/managers/class-fs-permission-manager.php:207 @@ -2082,6 +2121,7 @@ msgid "View Basic %s Info" msgstr "" #: includes/managers/class-fs-permission-manager.php:210 +#. translators: %s: 'Plugin' or 'Theme' msgid "Current %s & SDK versions, and if active or uninstalled" msgstr "" @@ -2089,8 +2129,11 @@ msgstr "" msgid "View License Essentials" msgstr "" -#: includes/managers/class-fs-permission-manager.php:262 includes/managers/class-fs-permission-manager.php:272 -msgid "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." +#: includes/managers/class-fs-permission-manager.php:272 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To let you manage & control where the license is activated and ensure %s " +"security & feature updates are only delivered to websites you authorize." msgstr "" #: includes/managers/class-fs-permission-manager.php:284 @@ -2098,6 +2141,7 @@ msgid "View %s State" msgstr "" #: includes/managers/class-fs-permission-manager.php:287 +#. translators: %s: 'Plugin' or 'Theme' msgid "Is active, deactivated, or uninstalled" msgstr "" @@ -2109,7 +2153,8 @@ msgstr "" msgid "View Diagnostic Info" msgstr "" -#: includes/managers/class-fs-permission-manager.php326, includes/managers/class-fs-permission-manager.php:363 +#: includes/managers/class-fs-permission-manager.php326, +#: includes/managers/class-fs-permission-manager.php:363 msgid "optional" msgstr "" @@ -2118,7 +2163,11 @@ msgid "WordPress & PHP versions, site language & title" msgstr "" #: includes/managers/class-fs-permission-manager.php:330 -msgid "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To avoid breaking your website due to WordPress or PHP version " +"incompatibilities, and recognize which languages & regions the %s should be " +"translated and tailored to." msgstr "" #: includes/managers/class-fs-permission-manager.php:363 @@ -2130,7 +2179,9 @@ msgid "Names, slugs, versions, and if active or not" msgstr "" #: includes/managers/class-fs-permission-manager.php:365 -msgid "To ensure compatibility and avoid conflicts with your installed plugins and themes." +msgid "" +"To ensure compatibility and avoid conflicts with your installed plugins and " +"themes." msgstr "" #: includes/managers/class-fs-permission-manager.php:382 @@ -2142,7 +2193,10 @@ msgid "Your WordPress user's: first & last name, and email address" msgstr "" #: includes/managers/class-fs-permission-manager.php:384 -msgid "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." +msgid "" +"Never miss important updates, get security warnings before they become " +"public knowledge, and receive notifications about special offers and " +"awesome new features." msgstr "" #: includes/managers/class-fs-permission-manager.php:405 @@ -2153,11 +2207,6 @@ msgstr "Newsletter" msgid "Updates, announcements, marketing, no spam" msgstr "Mises à jour, annonces, marketing, pas de spam" -#: templates/account/billing.php:22 -msgctxt "verb" -msgid "Update" -msgstr "Mise à jour" - #: templates/account/billing.php:33 msgid "Billing" msgstr "Facturation" @@ -2170,7 +2219,8 @@ msgstr "Raison sociale" msgid "Tax / VAT ID" msgstr "Code TVA" -#: templates/account/billing.php42, templates/account/billing.php43, templates/account/billing.php:43 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "Adresse ligne %d" @@ -2218,16 +2268,6 @@ msgstr "Montant" msgid "Invoice" msgstr "Facture" -#: templates/connect/permissions-group.php31, templates/forms/optout.php26, templates/js/permissions.php:78 -msgctxt "verb" -msgid "Opt Out" -msgstr "Désinscription" - -#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 -msgctxt "verb" -msgid "Opt In" -msgstr "Inscription" - #: templates/debug/api-calls.php:56 msgid "API" msgstr "API" @@ -2244,11 +2284,6 @@ msgstr "Code" msgid "Length" msgstr "Longueur" -#: templates/debug/api-calls.php:71 -msgctxt "as file/folder path" -msgid "Path" -msgstr "Chemin" - #: templates/debug/api-calls.php:73 msgid "Body" msgstr "Body" @@ -2269,21 +2304,18 @@ msgstr "Fin" msgid "Log" msgstr "Log" +#: templates/debug/plugins-themes-sync.php18, +#: templates/debug/scheduled-crons.php:91 #. translators: %s: time period (e.g. In "2 hours") -#: templates/debug/plugins-themes-sync.php18, templates/debug/scheduled-crons.php:91 msgid "In %s" msgstr "Dans %s" +#: templates/debug/plugins-themes-sync.php20, +#: templates/debug/scheduled-crons.php:93 #. translators: %s: time period (e.g. "2 hours" ago) -#: templates/debug/plugins-themes-sync.php20, templates/debug/scheduled-crons.php:93 msgid "%s ago" msgstr "Il y a %s" -#: templates/debug/plugins-themes-sync.php21, templates/debug/scheduled-crons.php:74 -msgctxt "seconds" -msgid "sec" -msgstr "sec" - #: templates/debug/plugins-themes-sync.php:23 msgid "Plugins & Themes Sync" msgstr "Synchronisation des plugin et des thèmes" @@ -2292,7 +2324,8 @@ msgstr "Synchronisation des plugin et des thèmes" msgid "Total" msgstr "Total" -#: templates/debug/plugins-themes-sync.php29, templates/debug/scheduled-crons.php:84 +#: templates/debug/plugins-themes-sync.php29, +#: templates/debug/scheduled-crons.php:84 msgid "Last" msgstr "Dernier" @@ -2316,143 +2349,195 @@ msgstr "Type de Cron" msgid "Next" msgstr "Suivant" -#: templates/forms/affiliation.php:83 +#: templates/forms/affiliation.php:86 msgid "Non-expiring" msgstr "Sans expiration" -#: templates/forms/affiliation.php:86 +#: templates/forms/affiliation.php:89 msgid "Apply to become an affiliate" msgstr "Postuler pour devenir un affilié" -#: templates/forms/affiliation.php:108 -msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." -msgstr "Votre dossier d'affiliation pour %s a été accepté ! Identifiez-vous dans votre espace affilié sur : %s." +#: templates/forms/affiliation.php:137 +msgid "" +"Due to violation of our affiliation terms, we decided to temporarily block " +"your affiliation account. If you have any questions, please contact support." +msgstr "" +"Suite à une violation de nos conditions d'affiliation, nous avons décidé de " +"bloquer temporairement votre compte d'affilié. Si vous avez la moindre " +"question, merci de contacter le support." -#: templates/forms/affiliation.php:123 -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." -msgstr "Merci d'avoir postulé à notre programme d'affiliation, nous regarderons votre dossier durant les 14 prochains jours et nous reviendrons vers vous avec d'autres informations." +#: templates/forms/affiliation.php:134 +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." +msgstr "" +"Merci d'avoir postulé à notre programme d'affiliation, malheureusement, " +"nous avons décidé pour le moment de décliner votre dossier. Merci d'essayer " +"à nouveau d'ici 30 jours." -#: templates/forms/affiliation.php:126 +#: templates/forms/affiliation.php:131 msgid "Your affiliation account was temporarily suspended." msgstr "Votre compte affilié a été suspendu temporairement." -#: templates/forms/affiliation.php:129 -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." -msgstr "Merci d'avoir postulé à notre programme d'affiliation, malheureusement, nous avons décidé pour le moment de décliner votre dossier. Merci d'essayer à nouveau d'ici 30 jours." +#: templates/forms/affiliation.php:128 +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." +msgstr "" +"Merci d'avoir postulé à notre programme d'affiliation, nous regarderons " +"votre dossier durant les 14 prochains jours et nous reviendrons vers vous " +"avec d'autres informations." -#: templates/forms/affiliation.php:132 -msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." -msgstr "Suite à une violation de nos conditions d'affiliation, nous avons décidé de bloquer temporairement votre compte d'affilié. Si vous avez la moindre question, merci de contacter le support." +#: templates/forms/affiliation.php:113 +msgid "" +"Your affiliate application for %s has been accepted! Log in to your " +"affiliate area at: %s." +msgstr "" +"Votre dossier d'affiliation pour %s a été accepté ! Identifiez-vous dans " +"votre espace affilié sur : %s." -#: templates/forms/affiliation.php:145 +#: templates/forms/affiliation.php:150 msgid "Like the %s? Become our ambassador and earn cash ;-)" msgstr "Vous aimez %s ? Devenez notre ambassadeur et gagnez du cash ;-)" -#: templates/forms/affiliation.php:146 -msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" -msgstr "Parrainez des nouveaux clients pour notre %s et gagnez une commission de %s sur chaque vente réussie que vous affiliez." +#: templates/forms/affiliation.php:151 +msgid "" +"Refer new customers to our %s and earn %s commission on each successful " +"sale you refer!" +msgstr "" +"Parrainez des nouveaux clients pour notre %s et gagnez une commission de %s " +"sur chaque vente réussie que vous affiliez." -#: templates/forms/affiliation.php:149 +#: templates/forms/affiliation.php:154 msgid "Program Summary" msgstr "Sommaire du programme" -#: templates/forms/affiliation.php:151 +#: templates/forms/affiliation.php:156 msgid "%s commission when a customer purchases a new license." msgstr "Commission de %s quand un client achète une nouvelle licence." -#: templates/forms/affiliation.php:153 +#: templates/forms/affiliation.php:158 msgid "Get commission for automated subscription renewals." msgstr "Obtenez des commissions pour les renouvellements automatiques d'abonnement." -#: templates/forms/affiliation.php:156 +#: templates/forms/affiliation.php:161 msgid "%s tracking cookie after the first visit to maximize earnings potential." -msgstr "Cookie de tracking de %s après la première visite pour maximiser les potentiels de gain." +msgstr "" +"Cookie de tracking de %s après la première visite pour maximiser les " +"potentiels de gain." -#: templates/forms/affiliation.php:159 +#: templates/forms/affiliation.php:164 msgid "Unlimited commissions." msgstr "Commissions illimitées." -#: templates/forms/affiliation.php:161 +#: templates/forms/affiliation.php:166 msgid "%s minimum payout amount." msgstr "Montant de paiement minimum %s." -#: templates/forms/affiliation.php:162 +#: templates/forms/affiliation.php:167 msgid "Payouts are in USD and processed monthly via PayPal." -msgstr "Les paiements se font en Dollars US et sont effectués mensuellement via PayPal." +msgstr "" +"Les paiements se font en Dollars US et sont effectués mensuellement via " +"PayPal." -#: templates/forms/affiliation.php:163 -msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." -msgstr "Comme nous bloquons sur 30 jours pour les remboursements éventuels, seules sont payées les commissions de plus de 30 jours." +#: templates/forms/affiliation.php:168 +msgid "" +"As we reserve 30 days for potential refunds, we only pay commissions that " +"are older than 30 days." +msgstr "" +"Comme nous bloquons sur 30 jours pour les remboursements éventuels, seules " +"sont payées les commissions de plus de 30 jours." -#: templates/forms/affiliation.php:166 +#: templates/forms/affiliation.php:171 msgid "Affiliate" msgstr "Affiliation" -#: templates/forms/affiliation.php169, templates/forms/resend-key.php:23 +#: templates/forms/affiliation.php174, templates/forms/resend-key.php:23 msgid "Email address" msgstr "Adresse email" -#: templates/forms/affiliation.php:173 +#: templates/forms/affiliation.php:178 msgid "Full name" msgstr "Nom complet" -#: templates/forms/affiliation.php:177 +#: templates/forms/affiliation.php:182 msgid "PayPal account email address" msgstr "Adresse email du compte PayPal" -#: templates/forms/affiliation.php:181 +#: templates/forms/affiliation.php:186 msgid "Where are you going to promote the %s?" msgstr "Où allez-vous faire la promotion du %s ? " -#: templates/forms/affiliation.php:183 -msgid "Enter the domain of your website or other websites from where you plan to promote the %s." -msgstr "Indiquez l'adresse de votre site ou d'autres sites sur lesquels vous pensez faire la promotion du %s" +#: templates/forms/affiliation.php:188 +msgid "" +"Enter the domain of your website or other websites from where you plan to " +"promote the %s." +msgstr "" +"Indiquez l'adresse de votre site ou d'autres sites sur lesquels vous pensez " +"faire la promotion du %s" -#: templates/forms/affiliation.php:185 +#: templates/forms/affiliation.php:190 msgid "Add another domain" msgstr "Ajouter une autre adresse" -#: templates/forms/affiliation.php:189 +#: templates/forms/affiliation.php:194 msgid "Extra Domains" msgstr "Adresses supplémentaires" -#: templates/forms/affiliation.php:190 +#: templates/forms/affiliation.php:195 msgid "Extra domains where you will be marketing the product from." -msgstr "Adresses supplémentaires depuis lesquelles vous ferez la promotion du produit." +msgstr "" +"Adresses supplémentaires depuis lesquelles vous ferez la promotion du " +"produit." -#: templates/forms/affiliation.php:200 +#: templates/forms/affiliation.php:205 msgid "Promotion methods" msgstr "Méthodes de promotion" -#: templates/forms/affiliation.php:203 +#: templates/forms/affiliation.php:208 msgid "Social media (Facebook, Twitter, etc.)" msgstr "Réseaux sociaux (Facebook, Twitter, etc.)" -#: templates/forms/affiliation.php:207 +#: templates/forms/affiliation.php:212 msgid "Mobile apps" msgstr "Applications mobiles" -#: templates/forms/affiliation.php:211 +#: templates/forms/affiliation.php:216 msgid "Website, email, and social media statistics (optional)" -msgstr "Statistiques du site web, de l'adresse email et des réseaux sociaux (optionnel)" +msgstr "" +"Statistiques du site web, de l'adresse email et des réseaux sociaux " +"(optionnel)" -#: templates/forms/affiliation.php:214 -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)." -msgstr "N'hésitez pas à indiquer des statistiques pertinentes concernant votre site ou vos réseaux sociaux telles que le nombre de visiteurs mensuel, le nombre d'abonnés, de followers, etc... (C'est informations resteront confidentielles)" +#: templates/forms/affiliation.php:219 +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)." +msgstr "" +"N'hésitez pas à indiquer des statistiques pertinentes concernant votre site " +"ou vos réseaux sociaux telles que le nombre de visiteurs mensuel, le nombre " +"d'abonnés, de followers, etc... (C'est informations resteront " +"confidentielles)" -#: templates/forms/affiliation.php:218 +#: templates/forms/affiliation.php:223 msgid "How will you promote us?" msgstr "Comment allez-vous faire de la promotion ?" -#: templates/forms/affiliation.php:221 -msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." -msgstr "Merci d'indiquer en détail comment vous allez faire la promotion du %s (en étant aussi précis que possible)" +#: templates/forms/affiliation.php:226 +msgid "" +"Please provide details on how you intend to promote %s (please be as " +"specific as possible)." +msgstr "" +"Merci d'indiquer en détail comment vous allez faire la promotion du %s (en " +"étant aussi précis que possible)" -#: templates/forms/affiliation.php233, templates/forms/resend-key.php22, templates/account/partials/disconnect-button.php:92 +#: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Annuler" -#: templates/forms/affiliation.php:235 +#: templates/forms/affiliation.php:240 msgid "Become an affiliate" msgstr "Devenir un affilié" @@ -2461,7 +2546,10 @@ msgid "Please enter the license key to enable the debug mode:" msgstr "" #: templates/forms/data-debug-mode.php:27 -msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" +msgid "" +"To enter the debug mode, please enter the secret key of the license owner " +"(UserID = %d), which you can find in your \"My Profile\" section of your " +"User Dashboard:" msgstr "" #: templates/forms/data-debug-mode.php:32 @@ -2476,11 +2564,6 @@ msgstr "" msgid "Email address update" msgstr "" -#: templates/forms/email-address-update.php33, templates/forms/user-change.php:81 -msgctxt "close window" -msgid "Dismiss" -msgstr "Fermer" - #: templates/forms/email-address-update.php:38 msgid "Enter the new email address" msgstr "" @@ -2513,30 +2596,42 @@ msgstr "" msgid "No - only move this site's data to %s" msgstr "" -#: templates/forms/email-address-update.php292, templates/forms/email-address-update.php:298 +#: templates/forms/email-address-update.php292, +#: templates/forms/email-address-update.php:298 msgid "Update" msgstr "Mise à jour" #: templates/forms/license-activation.php:23 -msgid "Please enter the license key that you received in the email right after the purchase:" -msgstr "Merci d'indiquer le code de licence que vous avez reçu par email juste après l'achat :" +msgid "" +"Please enter the license key that you received in the email right after the " +"purchase:" +msgstr "" +"Merci d'indiquer le code de licence que vous avez reçu par email juste " +"après l'achat :" #: templates/forms/license-activation.php:28 msgid "Update License" msgstr "Mettre à jour la licence" #: templates/forms/license-activation.php:34 -msgid "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." +msgid "" +"The %1$s will be periodically sending essential license data to %2$s to " +"check for security and feature updates, and verify the validity of your " +"license." msgstr "" #: templates/forms/license-activation.php:39 msgid "Agree & Activate License" msgstr "Valider & Activer la licence" -#: templates/forms/license-activation.php:204 +#: templates/forms/license-activation.php:206 msgid "Associate with the license owner's account." msgstr "" +#: templates/forms/optout.php:104 +msgid "Keep automatic updates" +msgstr "" + #: templates/forms/optout.php:44 msgid "Communication" msgstr "" @@ -2557,58 +2652,78 @@ msgstr "" msgid "Extensions" msgstr "" -#: templates/forms/optout.php:104 -msgid "Keep automatic updates" -msgstr "" - #: templates/forms/premium-versions-upgrade-handler.php:40 msgid "There is a new version of %s available." msgstr "Il y a une nouvelle version disponible de %s. " #: templates/forms/premium-versions-upgrade-handler.php:41 msgid " %s to access version %s security & feature updates, and support." -msgstr "%s pour accéder aux mises à jour de sécurité et de fonctionnalités de la version %s, et au support." +msgstr "" +"%s pour accéder aux mises à jour de sécurité et de fonctionnalités de la " +"version %s, et au support." #: templates/forms/premium-versions-upgrade-handler.php:54 msgid "New Version Available" msgstr "Une nouvelle version est disponible" -#: templates/forms/premium-versions-upgrade-handler.php:75 -msgctxt "close a window" -msgid "Dismiss" -msgstr "Fermer" - #: templates/forms/resend-key.php:21 msgid "Send License Key" msgstr "Envoyer le code de la licence" #: templates/forms/resend-key.php:58 -msgid "Enter the email address you've used during the purchase and we will resend you the license key." +msgid "" +"Enter the email address you've used during the purchase and we will resend " +"you the license key." msgstr "" #: templates/forms/resend-key.php:59 -msgid "Enter the email address you've used for the upgrade below and we will resend you the license key." -msgstr "Indiquez ci-dessous l'adresse email que vous avez utilisez pour la mise à jour et nous allons vous renvoyer le code de la licence." +msgid "" +"Enter the email address you've used for the upgrade below and we will " +"resend you the license key." +msgstr "" +"Indiquez ci-dessous l'adresse email que vous avez utilisez pour la mise à " +"jour et nous allons vous renvoyer le code de la licence." #: templates/forms/subscription-cancellation.php:37 -msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." -msgstr "Désactiver ou désinstaller le %s désactivera automatiquement la licence, que vous pourrez utiliser sur un autre site." +msgid "" +"Deactivating or uninstalling the %s will automatically disable the license, " +"which you'll be able to use on another site." +msgstr "" +"Désactiver ou désinstaller le %s désactivera automatiquement la licence, " +"que vous pourrez utiliser sur un autre site." #: templates/forms/subscription-cancellation.php:47 -msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" -msgstr "Dans le cas où vous n'avez PAS l'intention d'utiliser ce %s sur ce site (ou tout autre site) - voulez-vous aussi annuler le %s ?" +msgid "" +"In case you are NOT planning on using this %s on this site (or any other " +"site) - would you like to cancel the %s as well?" +msgstr "" +"Dans le cas où vous n'avez PAS l'intention d'utiliser ce %s sur ce site (ou " +"tout autre site) - voulez-vous aussi annuler le %s ?" #: templates/forms/subscription-cancellation.php:57 -msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." -msgstr "Annuler %s - Je n'ai plus besoin de mises à jour de sécurité et de fonctionnalités, ni de support pour %s parce que je n'ai pas l'intention d'utiliser le %s sur ce site, ou tout autre site." +msgid "" +"Cancel %s - I no longer need any security & feature updates, nor support " +"for %s because I'm not planning to use the %s on this, or any other site." +msgstr "" +"Annuler %s - Je n'ai plus besoin de mises à jour de sécurité et de " +"fonctionnalités, ni de support pour %s parce que je n'ai pas l'intention " +"d'utiliser le %s sur ce site, ou tout autre site." #: templates/forms/subscription-cancellation.php:68 -msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." -msgstr "Ne pas annuler %s - Je veux toujours recevoir les mises à jour de sécurité et de fonctionnalités, ainsi que d'être en mesure de contacter le support." +msgid "" +"Don't cancel %s - I'm still interested in getting security & feature " +"updates, as well as be able to contact support." +msgstr "" +"Ne pas annuler %s - Je veux toujours recevoir les mises à jour de sécurité " +"et de fonctionnalités, ainsi que d'être en mesure de contacter le support." #: templates/forms/subscription-cancellation.php:103 -msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." -msgstr "Une fois votre licence expirée, vous ne pourrez plus utiliser le %s, sauf si vous l'activez à nouveau avec une licence premium valide." +msgid "" +"Once your license expires you will no longer be able to use the %s, unless " +"you activate it again with a valid premium license." +msgstr "" +"Une fois votre licence expirée, vous ne pourrez plus utiliser le %s, sauf " +"si vous l'activez à nouveau avec une licence premium valide." #: templates/forms/subscription-cancellation.php:136 msgid "Cancel %s?" @@ -2618,17 +2733,33 @@ msgstr "Annuler %s ?" msgid "Proceed" msgstr "Poursuivre" -#: templates/forms/subscription-cancellation.php191, templates/forms/deactivation/form.php:216 +#: templates/forms/subscription-cancellation.php191, +#: templates/forms/deactivation/form.php:216 msgid "Cancel %s & Proceed" msgstr "Annuler %s et poursuivre" #: templates/forms/trial-start.php:22 -msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." -msgstr "Vous êtes à 1 clic de commencer votre période d'essai gratuite de %1$s jours de la formule %2$s." +#. translators: %1$s: Number of trial days; %2$s: Plan name; +msgid "" +"You are 1-click away from starting your %1$s-day free trial of the %2$s " +"plan." +msgstr "" +"Vous êtes à 1 clic de commencer votre période d'essai gratuite de %1$s " +"jours de la formule %2$s." #: templates/forms/trial-start.php:28 -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." -msgstr "Pour être en accord avec les directives de WordPress.org, avant que nous commencions la période d'essai, nous vous demandons de nous permettre de récupérer votre nom d'utilisateur et des informations non sensibles du site afin de permettre au %s de communiquer avec %s pour vérifier les mises à jour et valider votre période d'essai." +#. translators: %s: Link to freemius.com +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." +msgstr "" +"Pour être en accord avec les directives de WordPress.org, avant que nous " +"commencions la période d'essai, nous vous demandons de nous permettre de " +"récupérer votre nom d'utilisateur et des informations non sensibles du site " +"afin de permettre au %s de communiquer avec %s pour vérifier les mises à " +"jour et valider votre période d'essai." #: templates/forms/user-change.php:26 msgid "By changing the user, you agree to transfer the account ownership to:" @@ -2654,14 +2785,6 @@ msgstr "Premium" msgid "Beta" msgstr "" -#: templates/partials/network-activation.php:32 -msgid "Activate license on all sites in the network." -msgstr "Activer la licence sur tous les sites du réseau." - -#: templates/partials/network-activation.php:33 -msgid "Apply on all sites in the network." -msgstr "Effectuer sur tous les sites dans le réseau." - #: templates/partials/network-activation.php:36 msgid "Activate license on all pending sites." msgstr "Activer la licence sur tous les sites en attente." @@ -2670,19 +2793,31 @@ msgstr "Activer la licence sur tous les sites en attente." msgid "Apply on all pending sites." msgstr "Activer sur tous les sites en attente." -#: templates/partials/network-activation.php45, templates/partials/network-activation.php:79 +#: templates/partials/network-activation.php:32 +msgid "Activate license on all sites in the network." +msgstr "Activer la licence sur tous les sites du réseau." + +#: templates/partials/network-activation.php:33 +msgid "Apply on all sites in the network." +msgstr "Effectuer sur tous les sites dans le réseau." + +#: templates/partials/network-activation.php45, +#: templates/partials/network-activation.php:79 msgid "allow" msgstr "autoriser" -#: templates/partials/network-activation.php48, templates/partials/network-activation.php:82 +#: templates/partials/network-activation.php48, +#: templates/partials/network-activation.php:82 msgid "delegate" msgstr "déléguer" -#: templates/partials/network-activation.php52, templates/partials/network-activation.php:86 +#: templates/partials/network-activation.php52, +#: templates/partials/network-activation.php:86 msgid "skip" msgstr "passer" -#: templates/plugin-info/description.php72, templates/plugin-info/screenshots.php:31 +#: templates/plugin-info/description.php67, +#: templates/plugin-info/screenshots.php:26 msgid "Click to view full-size screenshot %d" msgstr "Cliquez pour voir la capture d'écran %d en pleine taille" @@ -2694,39 +2829,45 @@ msgstr "Mises à jour illimitées" msgid "Localhost" msgstr "Localhost" -#: templates/account/partials/activate-license-button.php:50 -msgctxt "as 5 licenses left" -msgid "%s left" -msgstr "%s restante(s)" - #: templates/account/partials/activate-license-button.php:51 msgid "Last license" msgstr "Dernière licence" +#: templates/account/partials/addon.php:34 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account/partials/addon.php:34 -msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." +msgid "" +"%1$s will immediately stop all future recurring payments and your %s plan " +"license will expire in %s." msgstr "" -#: templates/account/partials/addon.php:190 -msgid "Cancelled" -msgstr "Annulé" - #: templates/account/partials/addon.php:200 msgid "No expiration" msgstr "Pas d'expiration" -#: templates/account/partials/disconnect-button.php:74 -msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." -msgstr "" +#: templates/account/partials/addon.php:190 +msgid "Cancelled" +msgstr "Annulé" #: templates/account/partials/disconnect-button.php:78 -msgid "Disconnecting the website will permanently remove %s from your User Dashboard's account." +#. translators: %s is replaced with the website's homepage address. +msgid "" +"Disconnecting the website will permanently remove %s from your User " +"Dashboard's account." +msgstr "" + +#: templates/account/partials/disconnect-button.php:74 +msgid "" +"By disconnecting the website, previously shared diagnostic data about %1$s " +"will be deleted and no longer visible to %2$s." msgstr "" #: templates/account/partials/disconnect-button.php:84 -msgid "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." +#. translators: %1$s is replaced by the paid plan name, %2$s is replaced with +#. an anchor link with the text "User Dashboard". +msgid "" +"If you wish to cancel your %1$s plan's subscription instead, please " +"navigate to the %2$s and cancel it there." msgstr "" #: templates/account/partials/disconnect-button.php:88 @@ -2751,7 +2892,9 @@ msgstr "Inscription" #: templates/forms/deactivation/contact.php:19 msgid "Sorry for the inconvenience and we are here to help if you give us a chance." -msgstr "Désolé pour le dérangement et nous sommes là pour vous aider si vous nous le permettez." +msgstr "" +"Désolé pour le dérangement et nous sommes là pour vous aider si vous nous " +"le permettez." #: templates/forms/deactivation/contact.php:22 msgid "Contact Support" @@ -2769,7 +2912,8 @@ msgstr "" msgid "hours" msgstr "" -#: templates/forms/deactivation/form.php81, templates/forms/deactivation/form.php:86 +#: templates/forms/deactivation/form.php81, +#: templates/forms/deactivation/form.php:86 msgid "days" msgstr "" @@ -2822,5 +2966,457 @@ msgid "Click here to use the plugin anonymously" msgstr "Cliquer ici pour utiliser le plugin anonymement" #: templates/forms/deactivation/retry-skip.php:23 -msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in." -msgstr "Peut-être que cela vous a échappé mais vous n'êtes pas obligé de partager la moindre information et vous pouvez juste %s l'enregistrement." +msgid "" +"You might have missed it, but you don't have to share any data and can just " +"%s the opt-in." +msgstr "" +"Peut-être que cela vous a échappé mais vous n'êtes pas obligé de partager " +"la moindre information et vous pouvez juste %s l'enregistrement." + +#: includes/class-freemius.php4842, includes/class-freemius.php21166, +#: includes/class-freemius.php:24835 +msgctxt "interjection expressing joy or exuberance" +msgid "Yee-haw" +msgstr "Youpi" + +#: includes/class-freemius.php:4856 +msgctxt "addonX cannot run without pluginY" +msgid "%s cannot run without %s." +msgstr "%s ne peut pas fonctionner sans %s." + +#: includes/class-freemius.php:4857 +msgctxt "addonX cannot run..." +msgid "%s cannot run without the plugin." +msgstr "%s ne peut pas fonctionner sans le plugin." + +#: includes/class-freemius.php4859, includes/class-freemius.php6051, +#: includes/class-freemius.php13828, includes/class-freemius.php14567, +#: includes/class-freemius.php18322, includes/class-freemius.php18435, +#: includes/class-freemius.php18612, includes/class-freemius.php20897, +#: includes/class-freemius.php21996, includes/class-freemius.php23012, +#: includes/class-freemius.php23142, includes/class-freemius.php23285, +#: templates/add-ons.php:57 +msgctxt "exclamation" +msgid "Oops" +msgstr "Oups" + +#: includes/class-freemius.php:24141 +msgctxt "exclamation" +msgid "Hey" +msgstr "Hey" + +#: includes/class-freemius.php5728, includes/class-freemius.php:7765 +msgctxt "" +"Used to express elation, enthusiasm, or triumph (especially in electronic " +"communication)." +msgid "W00t" +msgstr "Génial" + +#: includes/class-freemius.php:7062 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "a license key" +msgstr "" + +#: includes/class-freemius.php:7056 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "the installation instructions" +msgstr "" + +#: includes/class-freemius.php:7078 +msgctxt "Part of an activation link message." +msgid "Click here" +msgstr "" + +#: includes/class-freemius.php:7085 +msgctxt "" +"Part of the message that tells the user to check their spam folder for a " +"specific email." +msgid "the product's support email address" +msgstr "" + +#: includes/class-freemius.php:7232 +msgctxt "%s - plugin name. As complete \"PluginX\" activation now" +msgid "Complete \"%s\" Activation Now" +msgstr "Compléter \"%s\" Activer Maintenant" + +#: includes/class-freemius.php:19155 +msgctxt "ASCII arrow left icon" +msgid "←" +msgstr "←" + +#: includes/class-freemius.php:19155 +msgctxt "ASCII arrow right icon" +msgid "➤" +msgstr "➤" + +#: includes/class-freemius.php19157, templates/pricing.php:110 +msgctxt "noun" +msgid "Pricing" +msgstr "Tarifs" + +#: includes/fs-plugin-info-dialog.php:1239 +msgctxt "noun" +msgid "Price" +msgstr "Tarif" + +#: includes/class-freemius.php:20392 +msgctxt "a positive response" +msgid "Right on" +msgstr "Directement" + +#: includes/class-freemius.php21511, includes/class-freemius.php21783, +#: includes/class-freemius.php21836, includes/class-freemius.php:21943 +msgctxt "" +"something somebody says when they are thinking about what you have just " +"said." +msgid "Hmm" +msgstr "Hmm" + +#: includes/class-freemius.php21525, templates/account.php132, +#: templates/add-ons.php250, templates/account/partials/addon.php:51 +msgctxt "trial period" +msgid "Trial" +msgstr "Période d'essai" + +#: includes/class-freemius.php:23247 +msgctxt "as congratulations" +msgid "Congrats" +msgstr "Félicitations" + +#: includes/class-freemius.php:23512 +msgctxt "advance notice of something that will need attention." +msgid "Heads up" +msgstr "Avertissement" + +#: includes/class-freemius.php24157, templates/forms/trial-start.php:53 +msgctxt "call to action" +msgid "Start free trial" +msgstr "Commencer l'essai gratuit" + +#: includes/fs-plugin-info-dialog.php543, +#: templates/account/partials/addon.php:390 +msgctxt "verb" +msgid "Purchase" +msgstr "Acheter" + +#: templates/account.php129, templates/account/partials/addon.php:48 +msgctxt "verb" +msgid "Upgrade" +msgstr "Mise à jour" + +#: templates/account.php131, templates/account/partials/addon.php50, +#: templates/account/partials/site.php:320 +msgctxt "verb" +msgid "Downgrade" +msgstr "Rétrograder" + +#: templates/account.php684, templates/account/billing.php:21 +msgctxt "verb" +msgid "Edit" +msgstr "Éditer" + +#: templates/account.php660, templates/account.php923, +#: templates/account/partials/site.php250, +#: templates/account/partials/site.php:272 +msgctxt "verb" +msgid "Show" +msgstr "Afficher" + +#: templates/account.php:917 +msgctxt "verb" +msgid "Hide" +msgstr "Cacher" + +#: templates/connect.php360, templates/connect.php690, +#: templates/forms/deactivation/retry-skip.php:20 +msgctxt "verb" +msgid "Skip" +msgstr "Passer" + +#: templates/debug.php497, templates/debug.php603, +#: templates/account/partials/addon.php:440 +msgctxt "verb" +msgid "Delete" +msgstr "Supprimer" + +#: templates/account/billing.php:22 +msgctxt "verb" +msgid "Update" +msgstr "Mise à jour" + +#: templates/connect/permissions-group.php31, templates/forms/optout.php26, +#: templates/js/permissions.php:78 +msgctxt "verb" +msgid "Opt Out" +msgstr "Désinscription" + +#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 +msgctxt "verb" +msgid "Opt In" +msgstr "Inscription" + +#: includes/fs-plugin-info-dialog.php:772 +msgctxt "as download latest version" +msgid "Download Latest Free Version" +msgstr "Télécharger la dernière version gratuite" + +#: includes/fs-plugin-info-dialog.php773, templates/account.php110, +#: templates/add-ons.php37, templates/account/partials/addon.php:30 +msgctxt "as download latest version" +msgid "Download Latest" +msgstr "Télécharger la dernière version" + +#: includes/fs-plugin-info-dialog.php:999 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "Description" + +#: includes/fs-plugin-info-dialog.php:1000 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "Installation" + +#: includes/fs-plugin-info-dialog.php:1001 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "FAQ" + +#: includes/fs-plugin-info-dialog.php:1003 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "Changelog" + +#: includes/fs-plugin-info-dialog.php:1004 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "Commentaires" + +#: includes/fs-plugin-info-dialog.php:1005 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "Autres Informations" + +#: includes/fs-plugin-info-dialog.php:1020 +msgctxt "Plugin installer section title" +msgid "Features & Pricing" +msgstr "Fonctionnalités & Tarifs" + +#: includes/fs-plugin-info-dialog.php:1102 +msgctxt "e.g. Professional Plan" +msgid "%s Plan" +msgstr "Formule %s" + +#: includes/fs-plugin-info-dialog.php:1128 +msgctxt "e.g. the best product" +msgid "Best" +msgstr "Best" + +#: includes/fs-plugin-info-dialog.php1134, +#: includes/fs-plugin-info-dialog.php:1154 +msgctxt "as every month" +msgid "Monthly" +msgstr "Mensuel" + +#: includes/fs-plugin-info-dialog.php:1137 +msgctxt "as once a year" +msgid "Annual" +msgstr "Annuel" + +#: includes/fs-plugin-info-dialog.php:1156 +msgctxt "as once a year" +msgid "Annually" +msgstr "Annuel" + +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "as once a year" +msgid "Once" +msgstr "Une fois" + +#: includes/fs-plugin-info-dialog.php1154, +#: includes/fs-plugin-info-dialog.php1156, +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "e.g. billed monthly" +msgid "Billed %s" +msgstr "%s Facturé" + +#: includes/fs-plugin-info-dialog.php1178, +#: templates/plugin-info/features.php:82 +msgctxt "as monthly period" +msgid "mo" +msgstr "mois" + +#: includes/fs-plugin-info-dialog.php1185, +#: templates/plugin-info/features.php:80 +msgctxt "as annual period" +msgid "year" +msgstr "année" + +#: includes/fs-plugin-info-dialog.php1315, templates/account.php121, +#: templates/debug.php232, templates/debug.php269, templates/debug.php518, +#: templates/account/partials/addon.php:41 +msgctxt "product version" +msgid "Version" +msgstr "Version" + +#: includes/fs-plugin-info-dialog.php:1322 +msgctxt "as the plugin author" +msgid "Author" +msgstr "Auteur" + +#: includes/fs-plugin-info-dialog.php1334, templates/account.php:540 +#. translators: %s: time period (e.g. "2 hours" ago) +msgctxt "x-ago" +msgid "%s ago" +msgstr "Il y a %s" + +#: templates/account.php:126 +msgctxt "as synchronize license" +msgid "Sync License" +msgstr "Synchroniser la licence" + +#: templates/account.php135, templates/debug.php412, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:54 +msgctxt "as product pricing plan" +msgid "Plan" +msgstr "Formule" + +#: templates/account.php370, templates/account/partials/addon.php:345 +msgctxt "as synchronize" +msgid "Sync" +msgstr "Synchroniser" + +#: templates/account.php:440 +msgctxt "as secret encryption key missing" +msgid "No Secret" +msgstr "Clef secrète manquante" + +#: templates/account.php:788 +msgctxt "as software license" +msgid "License" +msgstr "Licence" + +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "" + +#: templates/admin-notice.php17, templates/forms/license-activation.php245, +#: templates/forms/resend-key.php:80 +msgctxt "as close a window" +msgid "Dismiss" +msgstr "Fermer" + +#: templates/connect.php:118 +#. translators: %s: name (e.g. Hey John,) +msgctxt "greeting" +msgid "Hey %s," +msgstr "Hey %s," + +#: templates/connect.php:876 +msgctxt "as in the process of sending an email" +msgid "Sending email" +msgstr "Email en cours d'envoi" + +#: templates/connect.php:877 +msgctxt "as activating plugin" +msgid "Activating" +msgstr "Activation en cours" + +#: templates/debug.php:17 +msgctxt "as turned off" +msgid "Off" +msgstr "Off" + +#: templates/debug.php:18 +msgctxt "as turned on" +msgid "On" +msgstr "On" + +#: templates/debug.php:28 +msgctxt "as code debugging" +msgid "Debugging" +msgstr "Debuggage" + +#: templates/debug.php:228 +msgctxt "as software development kit versions" +msgid "SDK Versions" +msgstr "Versions du SDK" + +#: templates/debug.php:271 +msgctxt "as application program interface" +msgid "API" +msgstr "API" + +#: templates/debug.php:323 +msgctxt "as connection was successful" +msgid "Connected" +msgstr "Connecté" + +#: templates/debug.php:325 +msgctxt "as connection blocked" +msgid "Blocked" +msgstr "Bloqué" + +#: templates/debug.php:326 +msgctxt "API connectivity state is unknown" +msgid "Unknown" +msgstr "" + +#: templates/debug.php:400 +msgctxt "like websites" +msgid "Sites" +msgstr "Sites" + +#: templates/debug.php:632 +msgctxt "as expiration date" +msgid "Expiration" +msgstr "Expiration" + +#: includes/debug/class-fs-debug-bar-panel.php51, +#: templates/debug/api-calls.php54, templates/debug/logger.php:62 +msgctxt "milliseconds" +msgid "ms" +msgstr "ms" + +#: includes/managers/class-fs-clone-manager.php:1319 +msgctxt "Clone resolution admin notice products list label" +msgid "Products" +msgstr "Produits" + +#: includes/managers/class-fs-clone-manager.php:1426 +msgctxt "\"The \", e.g.: \"The plugin\"" +msgid "The %s's" +msgstr "" + +#: templates/debug/api-calls.php:71 +msgctxt "as file/folder path" +msgid "Path" +msgstr "Chemin" + +#: templates/debug/plugins-themes-sync.php21, +#: templates/debug/scheduled-crons.php:74 +msgctxt "seconds" +msgid "sec" +msgstr "sec" + +#: templates/forms/email-address-update.php33, +#: templates/forms/user-change.php:81 +msgctxt "close window" +msgid "Dismiss" +msgstr "Fermer" + +#: templates/forms/premium-versions-upgrade-handler.php:75 +msgctxt "close a window" +msgid "Dismiss" +msgstr "Fermer" + +#: templates/account/partials/activate-license-button.php:50 +msgctxt "as 5 licenses left" +msgid "%s left" +msgstr "%s restante(s)" diff --git a/languages/freemius-nl_NL.mo b/languages/freemius-nl_NL.mo index b3024ef3e2ea50d1430aaf0c758b9fd4b196f123..fa3f8e857b5f1873e8066ef895ae6ce6d6da2afb 100644 GIT binary patch delta 8741 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 diff --git a/languages/freemius-nl_NL.po b/languages/freemius-nl_NL.po index 3f1659a2..797c35c2 100644 --- a/languages/freemius-nl_NL.po +++ b/languages/freemius-nl_NL.po @@ -1,876 +1,998 @@ -# Copyright (C) 2023 freemius +# Copyright (C) 2024 freemius # This file is distributed under the same license as the freemius package. # Translators: -# Benny Vluggen , 2017-2018 -# Leo Fajardo , 2022 -# Patrick Buntsma , 2018 +# Swashata Ghosh, 2024 +# msgid "" msgstr "" -"Project-Id-Version: WordPress SDK\n" +"Project-Id-Version: freemius\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2023-04-19 18:31+0530\n" -"Last-Translator: Leo Fajardo , 2022\n" -"Language-Team: Dutch (Netherlands) (http://www.transifex.com/freemius/wordpress-sdk/language/nl_NL/)\n" -"Language: nl_NL\n" +"POT-Creation-Date: 2024-01-30 15:42+0000\n" +"Last-Translator: Swashata Ghosh, 2024\n" +"Language-Team: Dutch (Netherlands) " +"(https://app.transifex.com/freemius/teams/184351/nl_NL/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Poedit-Basepath: ..\n" -"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" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 3.2.2\n" +"X-Poedit-KeywordsList: " +"get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_" +"text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_" +"inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$" +"fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_" +"inline;$this->_parent->get_text_x_inline:1,2c;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;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" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php1748, templates/account.php:947 -msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." +#: includes/class-freemius.php1781, templates/account.php:943 +msgid "" +"An update to a Beta version will replace your installed version of %s with " +"the latest Beta release - use with caution, and not on production sites. " +"You have been warned." msgstr "" -#: includes/class-freemius.php:1755 +#: includes/class-freemius.php:1788 msgid "Would you like to proceed with the update?" msgstr "" -#: includes/class-freemius.php:1980 -msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." -msgstr "Freemius SDK kon het hoofdbestand van de plug-in niet vinden. Neem a.j.b. contact op met sdk@freemius.com m.b.t. deze fout." +#: includes/class-freemius.php:2013 +msgid "" +"Freemius SDK couldn't find the plugin's main file. Please contact " +"sdk@freemius.com with the current error." +msgstr "" +"Freemius SDK kon het hoofdbestand van de plug-in niet vinden. Neem a.j.b. " +"contact op met sdk@freemius.com m.b.t. deze fout." -#: includes/class-freemius.php1982, includes/fs-plugin-info-dialog.php:1517 +#: includes/class-freemius.php2015, includes/fs-plugin-info-dialog.php:1513 msgid "Error" msgstr "Fout" -#: includes/class-freemius.php:2428 +#: includes/class-freemius.php:2461 msgid "I found a better %s" msgstr "Ik vond een beter %s" -#: includes/class-freemius.php:2430 +#: includes/class-freemius.php:2463 msgid "What's the %s's name?" msgstr "Wat is de naam van het %s?" -#: includes/class-freemius.php:2436 +#: includes/class-freemius.php:2469 msgid "It's a temporary %s - I'm troubleshooting an issue" msgstr "" -#: includes/class-freemius.php:2438 +#: includes/class-freemius.php:2471 msgid "Deactivation" msgstr "Deactivatie" -#: includes/class-freemius.php:2439 +#: includes/class-freemius.php:2472 msgid "Theme Switch" msgstr "Thema Wissel" -#: includes/class-freemius.php2448, templates/forms/resend-key.php24, templates/forms/user-change.php:29 +#: includes/class-freemius.php2481, templates/forms/resend-key.php24, +#: templates/forms/user-change.php:29 msgid "Other" msgstr "Overige" -#: includes/class-freemius.php:2456 +#: includes/class-freemius.php:2489 msgid "I no longer need the %s" msgstr "Ik heb de %s niet meer nodig " -#: includes/class-freemius.php:2463 +#: includes/class-freemius.php:2496 msgid "I only needed the %s for a short period" msgstr "Ik had de %s alleen nodig voor een korte periode." -#: includes/class-freemius.php:2469 +#: includes/class-freemius.php:2502 msgid "The %s broke my site" msgstr "De %s maakte mijn site onbruikbaar" -#: includes/class-freemius.php:2476 +#: includes/class-freemius.php:2509 msgid "The %s suddenly stopped working" msgstr "De %s werkte opeens niet meer" -#: includes/class-freemius.php:2486 +#: includes/class-freemius.php:2519 msgid "I can't pay for it anymore" msgstr "Ik kan er niet langer meer voor betalen" -#: includes/class-freemius.php:2488 +#: includes/class-freemius.php:2521 msgid "What price would you feel comfortable paying?" msgstr "Welke bedrag zou je ervoor over hebben?" -#: includes/class-freemius.php:2494 +#: includes/class-freemius.php:2527 msgid "I don't like to share my information with you" msgstr "Ik vind het niet prettig om mijn informatie met jullie te delen" -#: includes/class-freemius.php:2515 +#: includes/class-freemius.php:2548 msgid "The %s didn't work" msgstr "De %s werkte niet" -#: includes/class-freemius.php:2525 +#: includes/class-freemius.php:2558 msgid "I couldn't understand how to make it work" msgstr "Ik snapte niet hoe ik het aan het werk kon krijgen." -#: includes/class-freemius.php:2533 +#: includes/class-freemius.php:2566 msgid "The %s is great, but I need specific feature that you don't support" -msgstr "De %s is uitstekend, maar ik heb een specifieke feature nodig die jullie niet ondersteunen" +msgstr "" +"De %s is uitstekend, maar ik heb een specifieke feature nodig die jullie " +"niet ondersteunen" -#: includes/class-freemius.php:2535 +#: includes/class-freemius.php:2568 msgid "What feature?" msgstr "Welke feature?" -#: includes/class-freemius.php:2539 +#: includes/class-freemius.php:2572 msgid "The %s is not working" msgstr "De %s werkt niet" -#: includes/class-freemius.php:2541 +#: includes/class-freemius.php:2574 msgid "Kindly share what didn't work so we can fix it for future users..." -msgstr "Wil je alsjeblieft zo vriendelijk zijn om te delen wat niet werkte, zodat we dat kunnen verbeteren voor toekomstige gebruikers ..." +msgstr "" +"Wil je alsjeblieft zo vriendelijk zijn om te delen wat niet werkte, zodat " +"we dat kunnen verbeteren voor toekomstige gebruikers ..." -#: includes/class-freemius.php:2545 +#: includes/class-freemius.php:2578 msgid "It's not what I was looking for" msgstr "Het is niet waarna ik opzoek was" -#: includes/class-freemius.php:2547 +#: includes/class-freemius.php:2580 msgid "What you've been looking for?" msgstr "Waar was je naar op zoek?" -#: includes/class-freemius.php:2551 +#: includes/class-freemius.php:2584 msgid "The %s didn't work as expected" msgstr "De %s werkte niet zoals verwacht" -#: includes/class-freemius.php:2553 +#: includes/class-freemius.php:2586 msgid "What did you expect?" msgstr "Wat had je verwacht?" -#: includes/class-freemius.php3641, templates/debug.php:24 +#: includes/class-freemius.php3685, templates/debug.php:24 msgid "Freemius Debug" msgstr "Freemius Debug" -#: includes/class-freemius.php:4755 +#: includes/class-freemius.php:4828 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have purchased a %s license." msgstr "" -#: includes/class-freemius.php:4759 -msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." +#: includes/class-freemius.php:4832 +msgid "" +" The %s's %sdownload link%s, license key, and installation instructions " +"have been sent to %s. If you can't find the email after 5 min, please check " +"your spam box." msgstr "" -#: includes/class-freemius.php4769, includes/class-freemius.php21125, includes/class-freemius.php:24783 -msgctxt "interjection expressing joy or exuberance" -msgid "Yee-haw" -msgstr "Hoera" - -#: includes/class-freemius.php:4783 -msgctxt "addonX cannot run without pluginY" -msgid "%s cannot run without %s." -msgstr "%s werkt niet zonder %s." - -#: includes/class-freemius.php:4784 -msgctxt "addonX cannot run..." -msgid "%s cannot run without the plugin." -msgstr "%s werkt niet zonder de plug-in." - -#: includes/class-freemius.php4786, includes/class-freemius.php5978, includes/class-freemius.php13730, includes/class-freemius.php14469, includes/class-freemius.php18281, includes/class-freemius.php18394, includes/class-freemius.php18571, includes/class-freemius.php20856, -#: includes/class-freemius.php21955, includes/class-freemius.php22971, includes/class-freemius.php23101, includes/class-freemius.php23231, templates/add-ons.php:57 -msgctxt "exclamation" -msgid "Oops" -msgstr "Oeps" - -#: includes/class-freemius.php:5065 -msgid "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" +#: includes/class-freemius.php:5138 +msgid "" +"There was an unexpected API error while processing your request. Please try " +"again in a few minutes and if it still doesn't work, contact the %s's " +"author with the following:" msgstr "" -#: includes/class-freemius.php:5645 -msgid "Premium %s version was successfully activated." -msgstr "Premium %s versie is succesvol geactiveerd." - -#: includes/class-freemius.php5657, includes/class-freemius.php:7692 -msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)." -msgid "W00t" -msgstr "W00t" - -#: includes/class-freemius.php:5672 +#: includes/class-freemius.php:5743 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have a %s license." msgstr "Je hebt een %s licentie" -#: includes/class-freemius.php:5961 -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." -msgstr "%s gratis proefperiode werd succesvol stop gezet. Daar de add-on alleen als premium versie beschikbaar is werd deze automatisch gedeactiveerd. Als u de add-on in de toekomst wilt gebruiken dient u een licentie aan te schaffen." +#: includes/class-freemius.php:5716 +msgid "Premium %s version was successfully activated." +msgstr "Premium %s versie is succesvol geactiveerd." + +#: includes/class-freemius.php:6034 +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." +msgstr "" +"%s gratis proefperiode werd succesvol stop gezet. Daar de add-on alleen als " +"premium versie beschikbaar is werd deze automatisch gedeactiveerd. Als u de " +"add-on in de toekomst wilt gebruiken dient u een licentie aan te schaffen." -#: includes/class-freemius.php:5965 -msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." -msgstr "%s is uitsluitend beschikbaar als een premium add-on. Je moet een licentie kopen voordat je de plug-in activeert." +#: includes/class-freemius.php:6038 +msgid "" +"%s is a premium only add-on. You have to purchase a license first before " +"activating the plugin." +msgstr "" +"%s is uitsluitend beschikbaar als een premium add-on. Je moet een licentie " +"kopen voordat je de plug-in activeert." -#: includes/class-freemius.php5974, templates/add-ons.php186, templates/account/partials/addon.php:386 +#: includes/class-freemius.php6047, templates/add-ons.php186, +#: templates/account/partials/addon.php:386 msgid "More information about %s" msgstr "Meer informatie over %s" -#: includes/class-freemius.php:5975 +#: includes/class-freemius.php:6048 msgid "Purchase License" msgstr "Licentie Kopen" -#. translators: %3$s: action (e.g.: "start the trial" or "complete the opt- -#. in") -#: includes/class-freemius.php:6971 -msgid "You should receive a confirmation email for %1$s to your mailbox at %2$s. Please make sure you click the button in that email to %3$s." -msgstr "" - -#: includes/class-freemius.php:6974 -msgid "start the trial" -msgstr "start de proefperiode" - -#: includes/class-freemius.php6975, templates/connect.php:218 -msgid "complete the opt-in" -msgstr "" - -#: includes/class-freemius.php:6977 -msgid "Thanks!" -msgstr "" - +#: includes/class-freemius.php:7053 #. translators: %3$s: What the user is expected to receive via email (e.g.: #. "the installation instructions" or "a license key") -#: includes/class-freemius.php:6980 -msgid "You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 minutes." +msgid "" +"You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 " +"minutes." msgstr "" -#: includes/class-freemius.php:6983 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "the installation instructions" +#: includes/class-freemius.php:7070 +#. translators: %s: activation link (e.g.: Click here) +msgid "%s to activate the license once you get it." msgstr "" -#: includes/class-freemius.php:6989 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "a license key" +#: includes/class-freemius.php:7091 +msgid "" +"If you didn't get the email, try checking your spam folder or search for " +"emails from %4$s." msgstr "" -#: includes/class-freemius.php:6997 -msgid "%s to activate the license once you get it." +#: includes/class-freemius.php:7093 +msgid "Thanks for upgrading." msgstr "" -#: includes/class-freemius.php:7005 -msgctxt "Part of an activation link message." -msgid "Click here" +#: includes/class-freemius.php:7044 +msgid "" +"You should receive a confirmation email for %1$s to your mailbox at %2$s. " +"Please make sure you click the button in that email to %3$s." msgstr "" -#: includes/class-freemius.php:7012 -msgctxt "Part of the message that tells the user to check their spam folder for a specific email." -msgid "the product's support email address" -msgstr "" +#: includes/class-freemius.php:7047 +msgid "start the trial" +msgstr "start de proefperiode" -#: includes/class-freemius.php:7018 -msgid "If you didn't get the email, try checking your spam folder or search for emails from %4$s." +#: includes/class-freemius.php7048, templates/connect.php:209 +msgid "complete the opt-in" msgstr "" -#: includes/class-freemius.php:7020 -msgid "Thanks for upgrading." +#: includes/class-freemius.php:7050 +msgid "Thanks!" msgstr "" -#: includes/class-freemius.php:7156 +#: includes/class-freemius.php:7229 msgid "You are just one step away - %s" msgstr "Je bent slechts een stap verwijderd - %s" -#: includes/class-freemius.php:7159 -msgctxt "%s - plugin name. As complete \"PluginX\" activation now" -msgid "Complete \"%s\" Activation Now" -msgstr "Voltooi \"%s\" Activatie Nu" - -#: includes/class-freemius.php:7241 +#: includes/class-freemius.php:7314 msgid "We made a few tweaks to the %s, %s" msgstr "We hebben een aantal aanpassingen gedaan op de %s, %s " -#: includes/class-freemius.php:7245 +#: includes/class-freemius.php:7318 msgid "Opt in to make \"%s\" better!" msgstr "Opt-in om \"%s\" te verbeteren!" -#: includes/class-freemius.php:7691 +#: includes/class-freemius.php:7764 msgid "The upgrade of %s was successfully completed." msgstr "De upgrade van %s is succesvol voltooid." -#: includes/class-freemius.php10441, includes/class-fs-plugin-updater.php1100, includes/class-fs-plugin-updater.php1315, includes/class-fs-plugin-updater.php1322, templates/auto-installation.php:32 +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, +#: includes/class-fs-plugin-updater.php1317, +#: includes/class-fs-plugin-updater.php1310, +#: templates/auto-installation.php:32 msgid "Add-On" msgstr "Uitbreiding" -#: includes/class-freemius.php10443, templates/account.php411, templates/account.php419, templates/debug.php399, templates/debug.php:619 +#: includes/class-freemius.php10529, templates/account.php407, +#: templates/account.php415, templates/debug.php399, templates/debug.php:619 msgid "Plugin" msgstr "Plug-in" -#: includes/class-freemius.php10444, templates/account.php412, templates/account.php420, templates/debug.php399, templates/debug.php619, templates/forms/deactivation/form.php:107 +#: includes/class-freemius.php10530, templates/account.php408, +#: templates/account.php416, templates/debug.php399, templates/debug.php619, +#: templates/forms/deactivation/form.php:107 msgid "Theme" msgstr "Thema" -#: includes/class-freemius.php:13549 -msgid "An unknown error has occurred while trying to toggle the license's white-label mode." +#: includes/class-freemius.php:13635 +msgid "" +"An unknown error has occurred while trying to toggle the license's " +"white-label mode." msgstr "" -#: includes/class-freemius.php:13563 -msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s." +#: includes/class-freemius.php:13649 +msgid "" +"Your %s license was flagged as white-labeled to hide sensitive information " +"from the WP Admin (e.g. your email, license key, prices, billing address & " +"invoices). If you ever wish to revert it back, you can easily do it through " +"your %s. If this was a mistake you can also %s." msgstr "" -#: includes/class-freemius.php13568, templates/account/partials/disconnect-button.php:84 +#: includes/class-freemius.php13654, +#: templates/account/partials/disconnect-button.php:84 msgid "User Dashboard" msgstr "" -#: includes/class-freemius.php:13569 +#: includes/class-freemius.php:13655 msgid "revert it now" msgstr "" -#: includes/class-freemius.php:13627 +#: includes/class-freemius.php:13713 msgid "An unknown error has occurred while trying to set the user's beta mode." msgstr "" -#: includes/class-freemius.php:13701 +#: includes/class-freemius.php:13799 msgid "Invalid new user ID or email address." msgstr "" -#: includes/class-freemius.php:13731 -msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." -msgstr "Sorry, we konden de e-mail update niet voltooien. Een andere gebruiker met hetzelfde e-mailadres is reeds geregistreerd." +#: includes/class-freemius.php:13829 +msgid "" +"Sorry, we could not complete the email update. Another user with the same " +"email is already registered." +msgstr "" +"Sorry, we konden de e-mail update niet voltooien. Een andere gebruiker met " +"hetzelfde e-mailadres is reeds geregistreerd." -#: includes/class-freemius.php:13732 -msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." -msgstr "Als je het eigendom van het %s account wilt overdragen aan %s, klik dan op de Eigendom Overdragen knop. " +#: includes/class-freemius.php:13830 +msgid "" +"If you would like to give up the ownership of the %s's account to %s click " +"the Change Ownership button." +msgstr "" +"Als je het eigendom van het %s account wilt overdragen aan %s, klik dan op " +"de Eigendom Overdragen knop. " -#: includes/class-freemius.php:13739 +#: includes/class-freemius.php:13837 msgid "Change Ownership" msgstr "Eigendom Overdragen" -#: includes/class-freemius.php:14336 +#: includes/class-freemius.php:14434 msgid "Invalid site details collection." msgstr "Ongeldige verzameling van Site Details." -#: includes/class-freemius.php:14456 -msgid "We couldn't find your email address in the system, are you sure it's the right address?" -msgstr "We konden je e-mailadres niet vinden in het systeem, ben je zeker dat dat het juiste adres is?" - -#: includes/class-freemius.php:14458 -msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" -msgstr "Er is geen actieve licentie gekoppeld aan dat e-mailadres, ben je zeker dat dat het juiste adres is?" +#: includes/class-freemius.php:14556 +msgid "" +"We can't see any active licenses associated with that email address, are " +"you sure it's the right address?" +msgstr "" +"Er is geen actieve licentie gekoppeld aan dat e-mailadres, ben je zeker dat " +"dat het juiste adres is?" -#: includes/class-freemius.php:14756 -msgid "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." +#: includes/class-freemius.php:14554 +msgid "" +"We couldn't find your email address in the system, are you sure it's the " +"right address?" msgstr "" +"We konden je e-mailadres niet vinden in het systeem, ben je zeker dat dat " +"het juiste adres is?" -#: includes/class-freemius.php14870, templates/forms/premium-versions-upgrade-handler.php:47 -msgid "Buy a license now" -msgstr "Koop nu een licentie" +#: includes/class-freemius.php:14860 +msgid "" +"Account is pending activation. Please check your email and click the link " +"to activate your account and then submit the affiliate form again." +msgstr "" -#: includes/class-freemius.php14882, templates/forms/premium-versions-upgrade-handler.php:46 +#: includes/class-freemius.php14986, +#: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "Vernieuw je licentie nu" -#: includes/class-freemius.php:14886 +#: includes/class-freemius.php14974, +#: templates/forms/premium-versions-upgrade-handler.php:47 +msgid "Buy a license now" +msgstr "Koop nu een licentie" + +#: includes/class-freemius.php:14990 msgid "%s to access version %s security & feature updates, and support." msgstr "%svoor toegang tot versie %s beveiliging en feature updates en support." -#: includes/class-freemius.php:17621 +#: includes/class-freemius.php:17662 msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php:17635 -msgid "Your account was successfully activated with the %s plan." -msgstr "Je account is succesvol geactiveerd met het %s plan." - -#: includes/class-freemius.php17645, includes/class-freemius.php:21566 +#: includes/class-freemius.php17686, includes/class-freemius.php:21607 msgid "Your trial has been successfully started." msgstr "U proefperiode is met succes gestart." -#: includes/class-freemius.php18279, includes/class-freemius.php18392, includes/class-freemius.php:18569 +#: includes/class-freemius.php:17676 +msgid "Your account was successfully activated with the %s plan." +msgstr "Je account is succesvol geactiveerd met het %s plan." + +#: includes/class-freemius.php18320, includes/class-freemius.php18433, +#: includes/class-freemius.php:18610 msgid "Couldn't activate %s." msgstr "Kon %s niet activeren." -#: includes/class-freemius.php18280, includes/class-freemius.php18393, includes/class-freemius.php:18570 +#: includes/class-freemius.php18321, includes/class-freemius.php18434, +#: includes/class-freemius.php:18611 msgid "Please contact us with the following message:" msgstr "Neem a.u.b. contact met ons op met het volgende bericht:" -#: includes/class-freemius.php18389, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php18430, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "" -#: includes/class-freemius.php18931, includes/class-freemius.php:24339 +#: includes/class-freemius.php18972, includes/class-freemius.php:24391 msgid "Upgrade" msgstr "Upgrade" -#: includes/class-freemius.php:18937 -msgid "Start Trial" -msgstr "Start Proefperiode" - -#: includes/class-freemius.php:18939 +#: includes/class-freemius.php:18980 msgid "Pricing" msgstr "Prijzen" -#: includes/class-freemius.php19019, includes/class-freemius.php:19021 +#: includes/class-freemius.php:18978 +msgid "Start Trial" +msgstr "Start Proefperiode" + +#: includes/class-freemius.php19060, includes/class-freemius.php:19062 msgid "Affiliation" msgstr "Affiliatie" -#: includes/class-freemius.php19049, includes/class-freemius.php19051, templates/account.php264, templates/debug.php:366 +#: includes/class-freemius.php19090, includes/class-freemius.php19092, +#: templates/account.php260, templates/debug.php:366 msgid "Account" msgstr "" -#: includes/class-freemius.php19065, includes/class-freemius.php19067, includes/customizer/class-fs-customizer-support-section.php:60 +#: includes/class-freemius.php19106, includes/class-freemius.php19108, +#: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Contacteer Ons" -#: includes/class-freemius.php19078, includes/class-freemius.php19080, includes/class-freemius.php24353, templates/account.php134, templates/account/partials/addon.php:49 +#: includes/class-freemius.php19119, includes/class-freemius.php19121, +#: includes/class-freemius.php24405, templates/account.php130, +#: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Uitbreidingen" -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow left icon" -msgid "←" -msgstr "←" - -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow right icon" -msgid "➤" -msgstr "➤" - -#: includes/class-freemius.php19116, templates/pricing.php:110 -msgctxt "noun" -msgid "Pricing" -msgstr "Prijzen" - -#: includes/class-freemius.php19329, includes/customizer/class-fs-customizer-support-section.php:67 +#: includes/class-freemius.php19370, +#: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Supportforum" -#: includes/class-freemius.php:20350 +#: includes/class-freemius.php:20391 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Je e-mail werd succesvol geverifieerd - je bent GEWELDIG!" -#: includes/class-freemius.php:20351 -msgctxt "a positive response" -msgid "Right on" -msgstr "Toppie" - -#: includes/class-freemius.php:20857 +#: includes/class-freemius.php:20898 msgid "seems like the key you entered doesn't match our records." msgstr "" -#: includes/class-freemius.php:20881 -msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +#: includes/class-freemius.php:20922 +msgid "" +"Debug mode was successfully enabled and will be automatically disabled in " +"60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." msgstr "" -#: includes/class-freemius.php:21116 +#: includes/class-freemius.php:21157 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Uw %sAdd-on plan werd succesvol geüpgraded. " -#: includes/class-freemius.php:21118 +#: includes/class-freemius.php:21159 +#. translators: %s:product name, e.g. Facebook add-on was successfully... msgid "%s Add-on was successfully purchased." msgstr "%s Add-on werd succesvol aangekocht." -#: includes/class-freemius.php:21121 +#: includes/class-freemius.php:21162 msgid "Download the latest version" msgstr "Download de meeste recente versie" -#: includes/class-freemius.php:21239 -msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." -msgstr "Het lijkt erop dat een van de authenticatie parameters niet klopt. Update je Publieke Sleutel, Geheime Sleutel & Gebruikers ID en probeer het nogmaals. " +#: includes/class-freemius.php:21280 +msgid "" +"It seems like one of the authentication parameters is wrong. Update your " +"Public Key, Secret Key & User ID, and try again." +msgstr "" +"Het lijkt erop dat een van de authenticatie parameters niet klopt. Update " +"je Publieke Sleutel, Geheime Sleutel & Gebruikers ID en probeer het " +"nogmaals. " -#: includes/class-freemius.php21239, includes/class-freemius.php21636, includes/class-freemius.php21737, includes/class-freemius.php:21824 +#: includes/class-freemius.php21280, includes/class-freemius.php21677, +#: includes/class-freemius.php21778, includes/class-freemius.php:21865 msgid "Error received from the server:" msgstr "Foutmelding ontvangen van de server:" -#: includes/class-freemius.php21470, includes/class-freemius.php21742, includes/class-freemius.php21795, includes/class-freemius.php:21902 -msgctxt "something somebody says when they are thinking about what you have just said." -msgid "Hmm" -msgstr "Hmm" - -#: includes/class-freemius.php:21483 -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." -msgstr "Het lijkt erop dat u nog steeds op het %s plan zit. Als u uw plan geüpgraded of veranderd heeft, dan is het waarschijnlijk een fout aan onze kant - sorry." - -#: includes/class-freemius.php21484, templates/account.php136, templates/add-ons.php250, templates/account/partials/addon.php:51 -msgctxt "trial period" -msgid "Trial" -msgstr "Proefperiode" +#: includes/class-freemius.php:21524 +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." +msgstr "" +"Het lijkt erop dat u nog steeds op het %s plan zit. Als u uw plan " +"geüpgraded of veranderd heeft, dan is het waarschijnlijk een fout aan onze " +"kant - sorry." -#: includes/class-freemius.php:21489 -msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." -msgstr "Ik heb mijn account geüpgraded maar als ik probeer te Synchroniseren blijft het plan %s." +#: includes/class-freemius.php:21530 +msgid "" +"I have upgraded my account but when I try to Sync the License, the plan " +"remains %s." +msgstr "" +"Ik heb mijn account geüpgraded maar als ik probeer te Synchroniseren blijft " +"het plan %s." -#: includes/class-freemius.php21493, includes/class-freemius.php:21545 +#: includes/class-freemius.php21534, includes/class-freemius.php:21586 msgid "Please contact us here" msgstr "Neem hier a.u.b. contact met ons op" -#: includes/class-freemius.php:21515 +#: includes/class-freemius.php:21556 msgid "Your plan was successfully changed to %s." msgstr "Je plan is succesvol veranderd naar %s." -#: includes/class-freemius.php:21531 +#: includes/class-freemius.php:21572 msgid "Your license has expired. You can still continue using the free %s forever." -msgstr "Je licentie is verlopen. Je kan echter de gratis %s voor altijd blijven gebruiken." +msgstr "" +"Je licentie is verlopen. Je kan echter de gratis %s voor altijd blijven " +"gebruiken." -#: includes/class-freemius.php:21533 -msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Je licentie is verlopen. %1$sUpgrade nu%2$s om de %3$s zonder interrupties te blijven gebruiken." +#: includes/class-freemius.php:21574 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"Je licentie is verlopen. %1$sUpgrade nu%2$s om de %3$s zonder interrupties " +"te blijven gebruiken." -#: includes/class-freemius.php:21541 -msgid "Your license has been cancelled. If you think it's a mistake, please contact support." -msgstr "Je licentie is geannuleerd. Als je denkt dat dat een fout is, neem dan alsjeblieft contact op met support." +#: includes/class-freemius.php:21582 +msgid "" +"Your license has been cancelled. If you think it's a mistake, please " +"contact support." +msgstr "" +"Je licentie is geannuleerd. Als je denkt dat dat een fout is, neem dan " +"alsjeblieft contact op met support." -#: includes/class-freemius.php:21554 -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." -msgstr "Je licentie is verlopen. Je kan nog steeds alle %s features gebruiken, maar je zal je licentie moeten vernieuwen om weer updates en support te ontvangen." +#: includes/class-freemius.php:21595 +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." +msgstr "" +"Je licentie is verlopen. Je kan nog steeds alle %s features gebruiken, maar " +"je zal je licentie moeten vernieuwen om weer updates en support te " +"ontvangen." -#: includes/class-freemius.php:21580 -msgid "Your free trial has expired. You can still continue using all our free features." -msgstr "Je gratis proefperiode is verlopen. Je kan nog steeds al onze gratis features blijven gebruiken." +#: includes/class-freemius.php:21621 +msgid "" +"Your free trial has expired. You can still continue using all our free " +"features." +msgstr "" +"Je gratis proefperiode is verlopen. Je kan nog steeds al onze gratis " +"features blijven gebruiken." -#: includes/class-freemius.php:21582 -msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." -msgstr "Je gratis proefperiode is verlopen. %1$sUpgrade nu%2$som de %3$s zonder interrupties te blijven gebruiken. " +#: includes/class-freemius.php:21623 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." +msgstr "" +"Je gratis proefperiode is verlopen. %1$sUpgrade nu%2$som de %3$s zonder " +"interrupties te blijven gebruiken. " -#: includes/class-freemius.php:21628 -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist the following domains:%2$s" +#: includes/class-freemius.php:21669 +msgid "" +"Your server is blocking the access to Freemius' API, which is crucial for " +"%1$s synchronization. Please contact your host to whitelist the following " +"domains:%2$s" msgstr "" -#: includes/class-freemius.php:21630 +#: includes/class-freemius.php:21671 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21733 +#: includes/class-freemius.php:21774 msgid "It looks like the license could not be activated." msgstr "Het lijkt erop dat de licentie niet geactiveerd kon worden." -#: includes/class-freemius.php:21775 +#: includes/class-freemius.php:21816 msgid "Your license was successfully activated." msgstr "Je licentie is succesvol geactiveerd." -#: includes/class-freemius.php:21799 +#: includes/class-freemius.php:21840 msgid "It looks like your site currently doesn't have an active license." msgstr "Het lijkt erop dat je site momenteel geen actieve licentie heeft." -#: includes/class-freemius.php:21823 +#: includes/class-freemius.php:21864 msgid "It looks like the license deactivation failed." msgstr "Het lijkt erop dat het deactiveren van je licentie mislukt is." -#: includes/class-freemius.php:21852 +#: includes/class-freemius.php:21893 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21853 +#: includes/class-freemius.php:21894 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Je licentie is succesvol gedeactiveerd, je bent terug op het %s plan." -#: includes/class-freemius.php:21856 +#: includes/class-freemius.php:21897 msgid "O.K" msgstr "Oké" -#: includes/class-freemius.php:21909 -msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." -msgstr "Het lijkt erop, dat we een tijdelijk probleem hebben met het annuleren van je abonnement. Probeer het alsjeblieft over een paar minuten nog eens." +#: includes/class-freemius.php:21950 +msgid "" +"Seems like we are having some temporary issue with your subscription " +"cancellation. Please try again in few minutes." +msgstr "" +"Het lijkt erop, dat we een tijdelijk probleem hebben met het annuleren van " +"je abonnement. Probeer het alsjeblieft over een paar minuten nog eens." -#: includes/class-freemius.php:21918 -msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." -msgstr "Je abonnement is succesvol geannuleerd. De licentie van je %s-plan al over %s aflopen." +#: includes/class-freemius.php:21959 +msgid "" +"Your subscription was successfully cancelled. Your %s plan license will " +"expire in %s." +msgstr "" +"Je abonnement is succesvol geannuleerd. De licentie van je %s-plan al over " +"%s aflopen." -#: includes/class-freemius.php:21960 +#: includes/class-freemius.php:22001 msgid "You are already running the %s in a trial mode." msgstr "Je draait de %s al in proefmodus." -#: includes/class-freemius.php:21971 +#: includes/class-freemius.php:22012 msgid "You already utilized a trial before." msgstr "U heeft reeds een proefperiode gebruikt." -#: includes/class-freemius.php:21985 +#: includes/class-freemius.php:22048 +msgid "None of the %s's plans supports a trial period." +msgstr "Geen van de %s plannen ondersteunt een proefperiode." + +#: includes/class-freemius.php:22026 msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "Plan %s bestaat niet, daarom kan proefperiode niet gestart worden." -#: includes/class-freemius.php:21996 +#: includes/class-freemius.php:22037 msgid "Plan %s does not support a trial period." msgstr "Plan %s ondersteunt geen proefperiode." -#: includes/class-freemius.php:22007 -msgid "None of the %s's plans supports a trial period." -msgstr "Geen van de %s plannen ondersteunt een proefperiode." - -#: includes/class-freemius.php:22056 -msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" -msgstr "Het lijkt er op dat u niet langer meer in de proefperiode zit, dus er valt niets stop te zetten." +#: includes/class-freemius.php:22097 +msgid "" +"It looks like you are not in trial mode anymore so there's nothing to " +"cancel :)" +msgstr "" +"Het lijkt er op dat u niet langer meer in de proefperiode zit, dus er valt " +"niets stop te zetten." -#: includes/class-freemius.php:22092 -msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." -msgstr "Het lijkt er op dat we een tijdelijk probleem hebben met het opzeggen van uw proefperiode. Probeer het a.u.b. over enkele minuten nog eens." +#: includes/class-freemius.php:22133 +msgid "" +"Seems like we are having some temporary issue with your trial cancellation. " +"Please try again in few minutes." +msgstr "" +"Het lijkt er op dat we een tijdelijk probleem hebben met het opzeggen van " +"uw proefperiode. Probeer het a.u.b. over enkele minuten nog eens." -#: includes/class-freemius.php:22111 +#: includes/class-freemius.php:22152 msgid "Your %s free trial was successfully cancelled." msgstr "Uw gratis %s proefperiode is succesvol opgezegd. " -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22496 +msgid "Seems like you got the latest release." +msgstr "Het lijkt erop dat je de meest recente versie hebt." + +#: includes/class-freemius.php:22497 +msgid "You are all good!" +msgstr "Alles is goed!" + +#: includes/class-freemius.php:22479 msgid "Version %s was released." msgstr "Versie %s is vrijgegeven." -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22479 msgid "Please download %s." msgstr "A.u.b. %s downloaden." -#: includes/class-freemius.php:22445 +#: includes/class-freemius.php:22486 msgid "the latest %s version here" msgstr "de meest recente %s versie hier" -#: includes/class-freemius.php:22450 +#: includes/class-freemius.php:22491 msgid "New" msgstr "Nieuw" -#: includes/class-freemius.php:22455 -msgid "Seems like you got the latest release." -msgstr "Het lijkt erop dat je de meest recente versie hebt." - -#: includes/class-freemius.php:22456 -msgid "You are all good!" -msgstr "Alles is goed!" - -#: includes/class-freemius.php:22859 -msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." -msgstr "Verificatiemail zojuist verstuurd naar %s. Als je deze niet binnen 5 min. hebt ontvangen, kijk dan alsjeblieft in je spambox." +#: includes/class-freemius.php:22900 +msgid "" +"Verification mail was just sent to %s. If you can't find it after 5 min, " +"please check your spam box." +msgstr "" +"Verificatiemail zojuist verstuurd naar %s. Als je deze niet binnen 5 min. " +"hebt ontvangen, kijk dan alsjeblieft in je spambox." -#: includes/class-freemius.php:22999 +#: includes/class-freemius.php:23040 msgid "Site successfully opted in." msgstr "Site opt-in geslaagd. " -#: includes/class-freemius.php23000, includes/class-freemius.php:24049 +#: includes/class-freemius.php23041, includes/class-freemius.php:24101 msgid "Awesome" msgstr "Geweldig" -#: includes/class-freemius.php:23016 -msgid "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." +#: includes/class-freemius.php:23067 +msgid "Diagnostic data will no longer be sent from %s to %s." +msgstr "" + +#: includes/class-freemius.php:23057 +msgid "" +"Sharing diagnostic data with %s helps to provide functionality that's more " +"relevant to your website, avoid WordPress or PHP version incompatibilities " +"that can break your website, and recognize which languages & regions the " +"plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23017 +#: includes/class-freemius.php:23058 msgid "Thank you!" msgstr "Bedankt!" -#: includes/class-freemius.php:23026 -msgid "Diagnostic data will no longer be sent from %s to %s." +#: includes/class-freemius.php:23227 +msgid "" +"A confirmation email was just sent to %s. You must confirm the update " +"within the next 4 hours. If you cannot find the email, please check your " +"spam folder." msgstr "" -#: includes/class-freemius.php:23181 -msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." +#: includes/class-freemius.php:23225 +msgid "" +"A confirmation email was just sent to %s. The email owner must confirm the " +"update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23183 -msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." +#: includes/class-freemius.php:23239 +msgid "" +"Thanks for confirming the ownership change. An email was just sent to %s " +"for final approval." msgstr "" +"Bedankt voor het bevestigen van de eigendomsoverdracht. Zojuist is er een " +"e-mail verstuurd naar %s voor de definitieve goedkeuring. " -#: includes/class-freemius.php:23190 -msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." -msgstr "Bedankt voor het bevestigen van de eigendomsoverdracht. Zojuist is er een e-mail verstuurd naar %s voor de definitieve goedkeuring. " - -#: includes/class-freemius.php:23195 +#: includes/class-freemius.php:23245 msgid "%s is the new owner of the account." msgstr "%s is de nieuwe eigenaar van het account." -#: includes/class-freemius.php:23197 -msgctxt "as congratulations" -msgid "Congrats" -msgstr "Gefeliciteerd" +#: includes/class-freemius.php:23269 +msgid "Your name was successfully updated." +msgstr "Je naam is succesvol bijgewerkt." -#: includes/class-freemius.php:23214 +#: includes/class-freemius.php:23264 msgid "Please provide your full name." msgstr "Geef alsjeblieft je volledige naam." -#: includes/class-freemius.php:23219 -msgid "Your name was successfully updated." -msgstr "Je naam is succesvol bijgewerkt." - -#: includes/class-freemius.php:23280 +#: includes/class-freemius.php:23334 +#. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Je hebt je %s succesvol geüpdatet." -#: includes/class-freemius.php:23339 -msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." +#: includes/class-freemius.php:23398 +msgid "" +"Is this your client's site? %s if you wish to hide sensitive info like your " +"email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23401 msgid "Click here" msgstr "" -#: includes/class-freemius.php23379, includes/class-freemius.php:23376 +#: includes/class-freemius.php:23438 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23459 -msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." -msgstr "Voor alle duidelijkheid, de add-ons informatie van %s wordt opgehaald van een externe server." - -#: includes/class-freemius.php:23460 -msgctxt "advance notice of something that will need attention." -msgid "Heads up" -msgstr "Aankondiging" - -#: includes/class-freemius.php:24089 -msgctxt "exclamation" -msgid "Hey" -msgstr "Hoi" +#: includes/class-freemius.php:23511 +msgid "" +"Just letting you know that the add-ons information of %s is being pulled " +"from an external server." +msgstr "" +"Voor alle duidelijkheid, de add-ons informatie van %s wordt opgehaald van " +"een externe server." -#: includes/class-freemius.php:24089 -msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." -msgstr "Hoe bevalt %s tot dusver? Test al onze %s premium features gedurende een%d-daagse gratis proefperiode." +#: includes/class-freemius.php:24141 +msgid "" +"How do you like %s so far? Test all our %s premium features with a %d-day " +"free trial." +msgstr "" +"Hoe bevalt %s tot dusver? Test al onze %s premium features gedurende " +"een%d-daagse gratis proefperiode." -#: includes/class-freemius.php:24097 +#: includes/class-freemius.php:24149 msgid "No commitment for %s days - cancel anytime!" msgstr "Geen verplichting voor %s dagen - elk moment opzeggen!" -#: includes/class-freemius.php:24098 +#: includes/class-freemius.php:24150 msgid "No credit card required" msgstr "Geen creditcard nodig" -#: includes/class-freemius.php24105, templates/forms/trial-start.php:53 -msgctxt "call to action" -msgid "Start free trial" -msgstr "Start gratis proefperidoe" - -#: includes/class-freemius.php:24182 -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!" -msgstr "Hey, wist je dat %s een samenwerkingsprogramma heeft? Als je de %s goedvindt, kun je onze ambassadeur worden en wat geld verdienen!" +#: includes/class-freemius.php:24234 +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!" +msgstr "" +"Hey, wist je dat %s een samenwerkingsprogramma heeft? Als je de %s " +"goedvindt, kun je onze ambassadeur worden en wat geld verdienen!" -#: includes/class-freemius.php:24191 +#: includes/class-freemius.php:24243 msgid "Learn more" msgstr "Lees meer" -#: includes/class-freemius.php24377, templates/account.php573, templates/account.php725, templates/connect.php221, templates/connect.php447, includes/managers/class-fs-clone-manager.php1295, templates/forms/license-activation.php27, templates/account/partials/addon.php:326 +#: includes/class-freemius.php24429, templates/account.php569, +#: templates/account.php721, templates/connect.php212, +#: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, +#: templates/forms/license-activation.php27, +#: templates/account/partials/addon.php:326 msgid "Activate License" msgstr "Activeer Licentie" -#: includes/class-freemius.php24378, templates/account.php667, templates/account.php724, templates/account/partials/addon.php327, templates/account/partials/site.php:273 +#: includes/class-freemius.php24430, templates/account.php663, +#: templates/account.php720, templates/account/partials/addon.php327, +#: templates/account/partials/site.php:273 msgid "Change License" msgstr "Verander Licentie" -#: includes/class-freemius.php24485, templates/account/partials/site.php:170 -msgid "Opt Out" -msgstr "Opt Out" - -#: includes/class-freemius.php24487, includes/class-freemius.php24493, templates/account/partials/site.php49, templates/account/partials/site.php:170 +#: includes/class-freemius.php24545, includes/class-freemius.php24539, +#: templates/account/partials/site.php49, +#: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Opt In" -#: includes/class-freemius.php:24728 -msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -msgstr "" - -#: includes/class-freemius.php:24738 -msgid "Activate %s features" -msgstr "Activeer %s features." +#: includes/class-freemius.php24537, templates/account/partials/site.php:170 +msgid "Opt Out" +msgstr "Opt Out" -#: includes/class-freemius.php:24751 +#: includes/class-freemius.php:24803 msgid "Please follow these steps to complete the upgrade" msgstr "Volg alsjeblieft deze stappen om de upgrade te voltooien" -#: includes/class-freemius.php:24755 +#: includes/class-freemius.php:24807 +#. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Download de meeste recente %s versie" -#: includes/class-freemius.php:24759 +#: includes/class-freemius.php:24811 msgid "Upload and activate the downloaded version" msgstr "Upload en activeer de gedownloade versie" -#: includes/class-freemius.php:24761 +#: includes/class-freemius.php:24813 msgid "How to upload and activate?" msgstr "Hoe te uploaden en activeren?" -#: includes/class-freemius.php:24796 +#: includes/class-freemius.php:24780 +msgid "" +" The paid version of %1$s is already installed. Please activate it to start " +"benefiting the %2$s features. %3$s" +msgstr "" + +#: includes/class-freemius.php:24790 +msgid "Activate %s features" +msgstr "Activeer %s features." + +#: includes/class-freemius.php:24848 msgid "Your plan was successfully upgraded." msgstr "Je plan is succesvol geüpgraded." -#: includes/class-freemius.php:24797 +#: includes/class-freemius.php:24849 msgid "Your plan was successfully activated." msgstr "" -#: includes/class-freemius.php:24927 -msgid "%sClick here%s to choose the sites where you'd like to activate the license on." +#: includes/class-freemius.php:24979 +msgid "" +"%sClick here%s to choose the sites where you'd like to activate the license " +"on." msgstr "%sKlik hier%s om de sites te kiezen waar op je de licentie wilt activeren." -#: includes/class-freemius.php:25096 +#: includes/class-freemius.php:25148 msgid "Auto installation only works for opted-in users." msgstr "Automatische installatie werkt alleen voor opted-in gebruikers." -#: includes/class-freemius.php25106, includes/class-freemius.php25139, includes/class-fs-plugin-updater.php1294, includes/class-fs-plugin-updater.php:1308 +#: includes/class-freemius.php25158, includes/class-freemius.php25191, +#: includes/class-fs-plugin-updater.php1289, +#: includes/class-fs-plugin-updater.php:1303 msgid "Invalid module ID." msgstr "Ongeldige Module-ID" -#: includes/class-freemius.php25115, includes/class-fs-plugin-updater.php:1330 +#: includes/class-freemius.php25199, includes/class-fs-plugin-updater.php:1324 +msgid "Premium add-on version already installed." +msgstr "Premium add-on versie is reeds geïnstalleerd." + +#: includes/class-freemius.php25167, includes/class-fs-plugin-updater.php:1325 msgid "Premium version already active." msgstr "Premium versie reeds actief." -#: includes/class-freemius.php:25122 +#: includes/class-freemius.php:25174 msgid "You do not have a valid license to access the premium version." msgstr "Je hebt geen geldige licentie voor de premium versie." -#: includes/class-freemius.php:25129 -msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." -msgstr "Plug-in is 'Serviceware' wat betekent dat het geen premium code versie bevat. " - -#: includes/class-freemius.php25147, includes/class-fs-plugin-updater.php:1329 -msgid "Premium add-on version already installed." -msgstr "Premium add-on versie is reeds geïnstalleerd." +#: includes/class-freemius.php:25181 +msgid "" +"Plugin is a \"Serviceware\" which means it does not have a premium code " +"version." +msgstr "" +"Plug-in is 'Serviceware' wat betekent dat het geen premium code versie " +"bevat. " -#: includes/class-freemius.php:25501 +#: includes/class-freemius.php:25559 msgid "View paid features" msgstr "Bekijk betaalde kenmerken" -#: includes/class-freemius.php:25805 -msgid "Thank you so much for using %s and its add-ons!" -msgstr "Hartelijk bedankt voor het gebruik van %s en bijbehorende uitbreidingen!" - -#: includes/class-freemius.php:25806 -msgid "Thank you so much for using %s!" -msgstr "Hartelijk bedankt voor het gebruik van %s!" - -#: includes/class-freemius.php:25812 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." -msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om %s te blijven verbeteren." - -#: includes/class-freemius.php:25816 +#: includes/class-freemius.php:25874 msgid "Thank you so much for using our products!" msgstr "Hartelijk bedankt voor het gebruiken van onze producten!" -#: includes/class-freemius.php:25817 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." -msgstr "Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om deze te blijven verbeteren." +#: includes/class-freemius.php:25875 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving them." +msgstr "" +"Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om deze " +"te blijven verbeteren." -#: includes/class-freemius.php:25836 +#: includes/class-freemius.php:25894 msgid "%s and its add-ons" msgstr "%sen bijbehorende uitbreidingen" -#: includes/class-freemius.php:25845 +#: includes/class-freemius.php:25903 msgid "Products" msgstr "Producten" -#: includes/class-freemius.php25852, templates/connect.php:322 -msgid "Yes" -msgstr "Ja" - -#: includes/class-freemius.php25853, templates/connect.php:323 -msgid "send me security & feature updates, educational content and offers." -msgstr "stuur mij beveiliging & feature updates, educatieve content en aanbiedingen." +#: includes/class-freemius.php:25863 +msgid "Thank you so much for using %s and its add-ons!" +msgstr "Hartelijk bedankt voor het gebruik van %s en bijbehorende uitbreidingen!" -#: includes/class-freemius.php25854, templates/connect.php:328 +#: includes/class-freemius.php:25864 +msgid "Thank you so much for using %s!" +msgstr "Hartelijk bedankt voor het gebruik van %s!" + +#: includes/class-freemius.php:25870 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving the %s." +msgstr "" +"Je hebt reeds ingestemd met onze gebruiks-tracking, wat ons helpt om %s te " +"blijven verbeteren." + +#: includes/class-freemius.php25910, templates/connect.php:313 +msgid "Yes" +msgstr "Ja" + +#: includes/class-freemius.php25911, templates/connect.php:314 +msgid "send me security & feature updates, educational content and offers." +msgstr "stuur mij beveiliging & feature updates, educatieve content en aanbiedingen." + +#: includes/class-freemius.php25912, templates/connect.php:319 msgid "No" msgstr "Nee" -#: includes/class-freemius.php25856, templates/connect.php:330 -msgid "do %sNOT%s send me security & feature updates, educational content and offers." -msgstr "stuur mij %sGEEN%s beveiliging & feature updates, educatieve content of aanbiedingen." +#: includes/class-freemius.php25914, templates/connect.php:321 +msgid "" +"do %sNOT%s send me security & feature updates, educational content and " +"offers." +msgstr "" +"stuur mij %sGEEN%s beveiliging & feature updates, educatieve content of " +"aanbiedingen." -#: includes/class-freemius.php:25866 -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 :-)" +#: includes/class-freemius.php:25924 +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 :-)" msgstr "" -#: includes/class-freemius.php25868, templates/connect.php:337 -msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" -msgstr "Laat ons alsjeblieft weten als je op de hoogte gehouden wilt worden van beveiliging & feature updates, educatieve content en zo nu en dan aanbiedingen:" +#: includes/class-freemius.php25926, templates/connect.php:328 +msgid "" +"Please let us know if you'd like us to contact you for security & feature " +"updates, educational content, and occasional offers:" +msgstr "" +"Laat ons alsjeblieft weten als je op de hoogte gehouden wilt worden van " +"beveiliging & feature updates, educatieve content en zo nu en dan " +"aanbiedingen:" -#: includes/class-freemius.php:26158 +#: includes/class-freemius.php:26216 msgid "License key is empty." msgstr "Licentiesleutel is leeg." -#: includes/class-fs-plugin-updater.php210, templates/forms/premium-versions-upgrade-handler.php:57 +#: includes/class-fs-plugin-updater.php210, +#: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "Vernieuw licentie" -#: includes/class-fs-plugin-updater.php215, templates/forms/premium-versions-upgrade-handler.php:58 +#: includes/class-fs-plugin-updater.php215, +#: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "Koop licentie" -#: includes/class-fs-plugin-updater.php335, includes/class-fs-plugin-updater.php:368 +#: includes/class-fs-plugin-updater.php368, +#: includes/class-fs-plugin-updater.php:335 msgid "There is a %s of %s available." msgstr "Er is een %s van %s beschikbaar." -#: includes/class-fs-plugin-updater.php337, includes/class-fs-plugin-updater.php:373 +#: includes/class-fs-plugin-updater.php373, +#: includes/class-fs-plugin-updater.php:337 msgid "new Beta version" msgstr "" -#: includes/class-fs-plugin-updater.php338, includes/class-fs-plugin-updater.php:374 +#: includes/class-fs-plugin-updater.php374, +#: includes/class-fs-plugin-updater.php:338 msgid "new version" msgstr "nieuwe versie" @@ -878,605 +1000,535 @@ msgstr "nieuwe versie" msgid "Important Upgrade Notice:" msgstr "Belangrijke Upgrade Mededeling:" -#: includes/class-fs-plugin-updater.php:1359 +#: includes/class-fs-plugin-updater.php:1354 msgid "Installing plugin: %s" msgstr "Installeren van plug-in: %s" -#: includes/class-fs-plugin-updater.php:1400 +#: includes/class-fs-plugin-updater.php:1395 msgid "Unable to connect to the filesystem. Please confirm your credentials." -msgstr "Toegang tot het bestandssysteem is niet mogelijk. Bevestig alsjeblieft je inloggegevens." +msgstr "" +"Toegang tot het bestandssysteem is niet mogelijk. Bevestig alsjeblieft je " +"inloggegevens." -#: includes/class-fs-plugin-updater.php:1582 -msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." -msgstr "Het remote plug-in pakket bevat geen folder met de verwachte slug en hernoemen werkte niet. " +#: includes/class-fs-plugin-updater.php:1577 +msgid "" +"The remote plugin package does not contain a folder with the desired slug " +"and renaming did not work." +msgstr "" +"Het remote plug-in pakket bevat geen folder met de verwachte slug en " +"hernoemen werkte niet. " #: includes/fs-plugin-info-dialog.php:542 msgid "Purchase More" msgstr "" -#: includes/fs-plugin-info-dialog.php543, templates/account/partials/addon.php:390 -msgctxt "verb" -msgid "Purchase" -msgstr "Koop" - #: includes/fs-plugin-info-dialog.php:547 +#. translators: %s: N-days trial msgid "Start my free %s" msgstr "Start mijn gratis %s" -#: includes/fs-plugin-info-dialog.php:745 -msgid "Install Free Version Update Now" -msgstr "Installeer Gratis Versie Update Nu" - -#: includes/fs-plugin-info-dialog.php746, templates/account.php:656 -msgid "Install Update Now" -msgstr "Installeer Update Nu" - #: includes/fs-plugin-info-dialog.php:755 msgid "Install Free Version Now" msgstr "Installer Gratis Versie Nu" -#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, templates/auto-installation.php111, templates/account/partials/addon.php370, templates/account/partials/addon.php:423 +#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php423, +#: templates/account/partials/addon.php:370 msgid "Install Now" msgstr "Installeer Nu" -#: includes/fs-plugin-info-dialog.php:772 -msgctxt "as download latest version" -msgid "Download Latest Free Version" -msgstr "Download Nieuwste Gratis Versie" +#: includes/fs-plugin-info-dialog.php:745 +msgid "Install Free Version Update Now" +msgstr "Installeer Gratis Versie Update Nu" -#: includes/fs-plugin-info-dialog.php773, templates/account.php114, templates/add-ons.php37, templates/account/partials/addon.php:30 -msgctxt "as download latest version" -msgid "Download Latest" -msgstr "Download Nieuwste" +#: includes/fs-plugin-info-dialog.php746, templates/account.php:652 +msgid "Install Update Now" +msgstr "Installeer Update Nu" -#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, templates/account/partials/addon.php361, templates/account/partials/addon.php:417 +#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, +#: templates/account/partials/addon.php417, +#: templates/account/partials/addon.php:361 msgid "Activate this add-on" msgstr "Activeer deze add-on" -#: includes/fs-plugin-info-dialog.php790, templates/connect.php:444 +#: includes/fs-plugin-info-dialog.php790, templates/connect.php:437 msgid "Activate Free Version" msgstr "Activeer Gratis Versie" -#: includes/fs-plugin-info-dialog.php791, templates/account.php138, templates/add-ons.php330, templates/account/partials/addon.php:53 +#: includes/fs-plugin-info-dialog.php791, templates/account.php134, +#: templates/add-ons.php330, templates/account/partials/addon.php:53 msgid "Activate" msgstr "Activeer" -#: includes/fs-plugin-info-dialog.php:1003 -msgctxt "Plugin installer section title" -msgid "Description" -msgstr "Beschrijving" - -#: includes/fs-plugin-info-dialog.php:1004 -msgctxt "Plugin installer section title" -msgid "Installation" -msgstr "Installatie" - -#: includes/fs-plugin-info-dialog.php:1005 -msgctxt "Plugin installer section title" -msgid "FAQ" -msgstr "Veelgestelde Vragen" - -#: includes/fs-plugin-info-dialog.php1006, templates/plugin-info/description.php:55 +#: includes/fs-plugin-info-dialog.php1002, +#: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "Schermafbeeldingen" -#: includes/fs-plugin-info-dialog.php:1007 -msgctxt "Plugin installer section title" -msgid "Changelog" -msgstr "Wijzigingen Log" - -#: includes/fs-plugin-info-dialog.php:1008 -msgctxt "Plugin installer section title" -msgid "Reviews" -msgstr "Reviews" - -#: includes/fs-plugin-info-dialog.php:1009 -msgctxt "Plugin installer section title" -msgid "Other Notes" -msgstr "Andere Notities" - -#: includes/fs-plugin-info-dialog.php:1024 -msgctxt "Plugin installer section title" -msgid "Features & Pricing" -msgstr "Features & Prijzen" - -#: includes/fs-plugin-info-dialog.php:1034 +#: includes/fs-plugin-info-dialog.php:1030 msgid "Plugin Install" msgstr "Plug-in Installatie" -#: includes/fs-plugin-info-dialog.php:1106 -msgctxt "e.g. Professional Plan" -msgid "%s Plan" -msgstr "%s Plan" - -#: includes/fs-plugin-info-dialog.php:1132 -msgctxt "e.g. the best product" -msgid "Best" -msgstr "Beste" - -#: includes/fs-plugin-info-dialog.php1138, includes/fs-plugin-info-dialog.php:1158 -msgctxt "as every month" -msgid "Monthly" -msgstr "Maandelijks" - -#: includes/fs-plugin-info-dialog.php:1141 -msgctxt "as once a year" -msgid "Annual" -msgstr "Jaarlijks" - -#: includes/fs-plugin-info-dialog.php:1144 +#: includes/fs-plugin-info-dialog.php:1140 msgid "Lifetime" msgstr "Levenslang" -#: includes/fs-plugin-info-dialog.php1158, includes/fs-plugin-info-dialog.php1160, includes/fs-plugin-info-dialog.php:1162 -msgctxt "e.g. billed monthly" -msgid "Billed %s" -msgstr "%s gefactureerd " - -#: includes/fs-plugin-info-dialog.php:1160 -msgctxt "as once a year" -msgid "Annually" -msgstr "Jaarlijks" - -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "as once a year" -msgid "Once" -msgstr "Eenmalig" - -#: includes/fs-plugin-info-dialog.php:1168 +#: includes/fs-plugin-info-dialog.php:1164 msgid "Single Site License" msgstr "Enkele Site Licentie" -#: includes/fs-plugin-info-dialog.php:1170 +#: includes/fs-plugin-info-dialog.php:1166 msgid "Unlimited Licenses" msgstr "Onbeperkte Licenties" -#: includes/fs-plugin-info-dialog.php:1172 +#: includes/fs-plugin-info-dialog.php:1168 msgid "Up to %s Sites" msgstr "Tot %s Sites" -#: includes/fs-plugin-info-dialog.php1182, templates/plugin-info/features.php:82 -msgctxt "as monthly period" -msgid "mo" -msgstr "mnd" - -#: includes/fs-plugin-info-dialog.php1189, templates/plugin-info/features.php:80 -msgctxt "as annual period" -msgid "year" -msgstr "jaar" - -#: includes/fs-plugin-info-dialog.php:1243 -msgctxt "noun" -msgid "Price" -msgstr "Prijs" - -#: includes/fs-plugin-info-dialog.php:1291 +#: includes/fs-plugin-info-dialog.php:1287 +#. translators: %s: Discount (e.g. discount of $5 or 10%) msgid "Save %s" msgstr "Bespaar %s" -#: includes/fs-plugin-info-dialog.php:1301 +#: includes/fs-plugin-info-dialog.php:1297 msgid "No commitment for %s - cancel anytime" msgstr "Geen verplichting voor %s - opzeggen kan altijd" -#: includes/fs-plugin-info-dialog.php:1304 +#: includes/fs-plugin-info-dialog.php:1300 msgid "After your free %s, pay as little as %s" msgstr "Na uw gratis %s, betaal slechts %s" -#: includes/fs-plugin-info-dialog.php:1315 +#: includes/fs-plugin-info-dialog.php:1311 msgid "Details" msgstr "Details" -#: includes/fs-plugin-info-dialog.php1319, templates/account.php125, templates/debug.php232, templates/debug.php269, templates/debug.php518, templates/account/partials/addon.php:41 -msgctxt "product version" -msgid "Version" -msgstr "Versie" - -#: includes/fs-plugin-info-dialog.php:1326 -msgctxt "as the plugin author" -msgid "Author" -msgstr "Auteur" - -#: includes/fs-plugin-info-dialog.php:1333 +#: includes/fs-plugin-info-dialog.php:1329 msgid "Last Updated" msgstr "Laatst Geüpdatet" -#: includes/fs-plugin-info-dialog.php1338, templates/account.php:544 -msgctxt "x-ago" -msgid "%s ago" -msgstr "%s geleden" - -#: includes/fs-plugin-info-dialog.php:1347 +#: includes/fs-plugin-info-dialog.php:1343 msgid "Requires WordPress Version" msgstr "Vereiste WordPress-versie" -#: includes/fs-plugin-info-dialog.php1350, includes/fs-plugin-info-dialog.php:1370 +#: includes/fs-plugin-info-dialog.php1346, +#: includes/fs-plugin-info-dialog.php:1366 +#. translators: %s: Version number. msgid "%s or higher" msgstr "%s of hoger" -#: includes/fs-plugin-info-dialog.php:1358 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Compatible up to" msgstr "Compatible tot" -#: includes/fs-plugin-info-dialog.php:1366 +#: includes/fs-plugin-info-dialog.php:1362 msgid "Requires PHP Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:1379 +#: includes/fs-plugin-info-dialog.php:1375 msgid "Downloaded" msgstr "Gedownload" -#: includes/fs-plugin-info-dialog.php:1383 +#: includes/fs-plugin-info-dialog.php:1379 +#. translators: %s: 1 or One (Number of times downloaded) msgid "%s time" msgstr "%s tijd" -#: includes/fs-plugin-info-dialog.php:1385 +#: includes/fs-plugin-info-dialog.php:1381 +#. translators: %s: Number of times downloaded msgid "%s times" msgstr "%s tijden" -#: includes/fs-plugin-info-dialog.php:1396 +#: includes/fs-plugin-info-dialog.php:1392 msgid "WordPress.org Plugin Page" msgstr "WordPress.org Plug-in Pagina" -#: includes/fs-plugin-info-dialog.php:1405 +#: includes/fs-plugin-info-dialog.php:1401 msgid "Plugin Homepage" msgstr "Plug-in Homepage" -#: includes/fs-plugin-info-dialog.php1414, includes/fs-plugin-info-dialog.php:1498 +#: includes/fs-plugin-info-dialog.php1410, +#: includes/fs-plugin-info-dialog.php:1494 msgid "Donate to this plugin" msgstr "Doneer aan deze plug-in" -#: includes/fs-plugin-info-dialog.php:1421 +#: includes/fs-plugin-info-dialog.php:1417 msgid "Average Rating" msgstr "Gemiddelde Beoordeling" -#: includes/fs-plugin-info-dialog.php:1428 +#: includes/fs-plugin-info-dialog.php:1424 msgid "based on %s" msgstr "gebaseerd op %s" -#: includes/fs-plugin-info-dialog.php:1432 +#: includes/fs-plugin-info-dialog.php:1428 +#. translators: %s: 1 or One msgid "%s rating" msgstr "%s beoordeling" -#: includes/fs-plugin-info-dialog.php:1434 +#: includes/fs-plugin-info-dialog.php:1430 +#. translators: %s: Number larger than 1 msgid "%s ratings" msgstr "%s beoordelingen" -#: includes/fs-plugin-info-dialog.php:1449 +#: includes/fs-plugin-info-dialog.php:1445 +#. translators: %s: 1 or One msgid "%s star" msgstr "%s ster" -#: includes/fs-plugin-info-dialog.php:1451 +#: includes/fs-plugin-info-dialog.php:1447 +#. translators: %s: Number larger than 1 msgid "%s stars" msgstr "%s sterren" -#: includes/fs-plugin-info-dialog.php:1463 +#: includes/fs-plugin-info-dialog.php:1459 +#. translators: %s: # of stars (e.g. 5 stars) msgid "Click to see reviews that provided a rating of %s" msgstr "Klik om reviews te bekijken met een beoordeling van%s" -#: includes/fs-plugin-info-dialog.php:1476 +#: includes/fs-plugin-info-dialog.php:1472 msgid "Contributors" msgstr "Medewerkers" -#: includes/fs-plugin-info-dialog.php:1517 +#: includes/fs-plugin-info-dialog.php:1513 msgid "This plugin requires a newer version of PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php:1526 -msgid "Click here to learn more about updating PHP." +#: includes/fs-plugin-info-dialog.php:1522 +#. translators: %s: URL to Update PHP page. +msgid "" +"Click here to learn more about updating " +"PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php1540, includes/fs-plugin-info-dialog.php:1542 +#: includes/fs-plugin-info-dialog.php1538, +#: includes/fs-plugin-info-dialog.php:1536 msgid "Warning" msgstr "Waarschuwing" -#: includes/fs-plugin-info-dialog.php:1540 +#: includes/fs-plugin-info-dialog.php:1538 +msgid "" +"This plugin has not been marked as compatible with your version of " +"WordPress." +msgstr "" +"Deze plug-in is niet als compatibel aangemerkt voor je huidige WordPress " +"versie." + +#: includes/fs-plugin-info-dialog.php:1536 msgid "This plugin has not been tested with your current version of WordPress." msgstr "Deze plug-in is nog niet getest met je huidige WordPress versie. " -#: includes/fs-plugin-info-dialog.php:1542 -msgid "This plugin has not been marked as compatible with your version of WordPress." -msgstr "Deze plug-in is niet als compatibel aangemerkt voor je huidige WordPress versie." - -#: includes/fs-plugin-info-dialog.php:1561 +#: includes/fs-plugin-info-dialog.php:1557 msgid "Paid add-on must be deployed to Freemius." msgstr "Betaalde add-on moet op Freemius geplaatst worden." -#: includes/fs-plugin-info-dialog.php:1562 +#: includes/fs-plugin-info-dialog.php:1558 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "Add-on moet op WordPress.org of Freemius geplaatst worden." -#: includes/fs-plugin-info-dialog.php:1583 -msgid "Newer Version (%s) Installed" -msgstr "Nieuwere Versie (%s) Geïnstalleerd" - -#: includes/fs-plugin-info-dialog.php:1584 -msgid "Newer Free Version (%s) Installed" -msgstr "Nieuwere Gratis Versie (%s) Geïnstalleerd" - -#: includes/fs-plugin-info-dialog.php:1591 +#: includes/fs-plugin-info-dialog.php:1587 msgid "Latest Version Installed" msgstr "Meest Recente Versie Geïnstalleerd" -#: includes/fs-plugin-info-dialog.php:1592 +#: includes/fs-plugin-info-dialog.php:1588 msgid "Latest Free Version Installed" msgstr "Nieuwste Gratis Versie Geïnstalleerd" -#: templates/account.php115, templates/forms/subscription-cancellation.php96, templates/account/partials/addon.php31, templates/account/partials/site.php:313 +#: includes/fs-plugin-info-dialog.php:1579 +msgid "Newer Version (%s) Installed" +msgstr "Nieuwere Versie (%s) Geïnstalleerd" + +#: includes/fs-plugin-info-dialog.php:1580 +msgid "Newer Free Version (%s) Installed" +msgstr "Nieuwere Gratis Versie (%s) Geïnstalleerd" + +#: templates/account.php111, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php31, +#: templates/account/partials/site.php:313 msgid "Downgrading your plan" msgstr "Je plan naar beneden bijstellen" -#: templates/account.php116, templates/forms/subscription-cancellation.php97, templates/account/partials/addon.php32, templates/account/partials/site.php:314 +#: templates/account.php112, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php32, +#: templates/account/partials/site.php:314 msgid "Cancelling the subscription" msgstr "Het abonnement annuleren" +#: templates/account.php114, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/site.php:316 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php118, templates/forms/subscription-cancellation.php99, templates/account/partials/site.php:316 -msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." +msgid "" +"%1$s will immediately stop all future recurring payments and your %2$s plan " +"license will expire in %3$s." msgstr "" -#: templates/account.php119, templates/forms/subscription-cancellation.php100, templates/account/partials/addon.php35, templates/account/partials/site.php:317 -msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." -msgstr "Onthou alsjeblieft dat we geen oude prijzen voor verlengingen/nieuwe abonnementen na een annulering kunnen aanhouden. Als je in de toekomst besluit om een abonnement handmatig te vernieuwen, zal de nieuwe prijs (na een prijsverhoging die meestal jaarlijks plaatsvindt) worden berekend." - -#: templates/account.php120, templates/forms/subscription-cancellation.php106, templates/account/partials/addon.php:36 -msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" -msgstr "Het stopzetten van de proefperiode zal de toegang tot de premium features onmiddellijk blokkeren. Weet je dat zeker?" +#: templates/account.php115, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php35, +#: templates/account/partials/site.php:317 +msgid "" +"Please note that we will not be able to grandfather outdated pricing for " +"renewals/new subscriptions after a cancellation. If you choose to renew the " +"subscription manually in the future, after a price increase, which " +"typically occurs once a year, you will be charged the updated price." +msgstr "" +"Onthou alsjeblieft dat we geen oude prijzen voor verlengingen/nieuwe " +"abonnementen na een annulering kunnen aanhouden. Als je in de toekomst " +"besluit om een abonnement handmatig te vernieuwen, zal de nieuwe prijs (na " +"een prijsverhoging die meestal jaarlijks plaatsvindt) worden berekend." + +#: templates/account.php116, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:36 +msgid "" +"Cancelling the trial will immediately block access to all premium features. " +"Are you sure?" +msgstr "" +"Het stopzetten van de proefperiode zal de toegang tot de premium features " +"onmiddellijk blokkeren. Weet je dat zeker?" -#: templates/account.php121, templates/forms/subscription-cancellation.php101, templates/account/partials/addon.php37, templates/account/partials/site.php:318 -msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." -msgstr "Je kunt nog steeds van alle %s-mogelijkheden genieten, maar je zult geen toegang hebben tot %s veiligheids- en uitbreidingsupdates, noch ondersteuning." +#: templates/account.php117, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php37, +#: templates/account/partials/site.php:318 +msgid "" +"You can still enjoy all %s features but you will not have access to %s " +"security & feature updates, nor support." +msgstr "" +"Je kunt nog steeds van alle %s-mogelijkheden genieten, maar je zult geen " +"toegang hebben tot %s veiligheids- en uitbreidingsupdates, noch " +"ondersteuning." -#: templates/account.php122, templates/forms/subscription-cancellation.php102, templates/account/partials/addon.php38, templates/account/partials/site.php:319 -msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." -msgstr "Als je licentie verloopt kan je nog steeds gebruik maken van de Gratis versie, maar je zal GEEN toegang meer hebben tot de %sfeatures." +#: templates/account.php118, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php38, +#: templates/account/partials/site.php:319 +msgid "" +"Once your license expires you can still use the Free version but you will " +"NOT have access to the %s features." +msgstr "" +"Als je licentie verloopt kan je nog steeds gebruik maken van de Gratis " +"versie, maar je zal GEEN toegang meer hebben tot de %sfeatures." +#: templates/account.php120, +#: templates/account/partials/activate-license-button.php31, +#: templates/account/partials/addon.php:40 #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php124, templates/account/partials/activate-license-button.php31, templates/account/partials/addon.php:40 msgid "Activate %s Plan" msgstr "Activeer %s Plan" +#: templates/account.php123, templates/account/partials/addon.php43, +#: templates/account/partials/site.php:293 #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php127, templates/account/partials/addon.php43, templates/account/partials/site.php:293 msgid "Auto renews in %s" msgstr "Auto hernieuwd over %s" +#: templates/account.php125, templates/account/partials/addon.php45, +#: templates/account/partials/site.php:295 #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php129, templates/account/partials/addon.php45, templates/account/partials/site.php:295 msgid "Expires in %s" msgstr "Verloopt over %s" -#: templates/account.php:130 -msgctxt "as synchronize license" -msgid "Sync License" -msgstr "Sync Licentie" - -#: templates/account.php131, templates/account/partials/addon.php:46 +#: templates/account.php127, templates/account/partials/addon.php:46 msgid "Cancel Trial" msgstr "Proefperiode Opzeggen" -#: templates/account.php132, templates/account/partials/addon.php:47 +#: templates/account.php128, templates/account/partials/addon.php:47 msgid "Change Plan" msgstr "Wijzig Plan" -#: templates/account.php133, templates/account/partials/addon.php:48 -msgctxt "verb" -msgid "Upgrade" -msgstr "Upgrade" - -#: templates/account.php135, templates/account/partials/addon.php50, templates/account/partials/site.php:320 -msgctxt "verb" -msgid "Downgrade" -msgstr "Downgrade" - -#: templates/account.php137, templates/add-ons.php246, templates/plugin-info/features.php72, templates/account/partials/addon.php52, templates/account/partials/site.php:33 +#: templates/account.php133, templates/add-ons.php246, +#: templates/plugin-info/features.php72, +#: templates/account/partials/addon.php52, +#: templates/account/partials/site.php:33 msgid "Free" msgstr "Gratis" -#: templates/account.php139, templates/debug.php412, includes/customizer/class-fs-customizer-upsell-control.php110, templates/account/partials/addon.php:54 -msgctxt "as product pricing plan" -msgid "Plan" -msgstr "Plan" - -#: templates/account.php:140 +#: templates/account.php:136 msgid "Bundle Plan" msgstr "" -#: templates/account.php:272 +#: templates/account.php:268 msgid "Free Trial" msgstr "Gratis Proefperiode" -#: templates/account.php:283 +#: templates/account.php:279 msgid "Account Details" msgstr "Accountgegevens" -#: templates/account.php290, templates/forms/data-debug-mode.php:33 -msgid "Start Debug" +#: templates/account.php:288 +msgid "Stop Debug" msgstr "" -#: templates/account.php:292 -msgid "Stop Debug" +#: templates/account.php286, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" msgstr "" -#: templates/account.php:299 +#: templates/account.php:295 msgid "Billing & Invoices" msgstr "" -#: templates/account.php322, templates/account/partials/addon.php236, templates/account/partials/deactivate-license-button.php:35 +#: templates/account.php318, templates/account/partials/addon.php236, +#: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "Deactiveer Licentie" -#: templates/account.php345, templates/forms/subscription-cancellation.php:125 +#: templates/account.php341, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "Weet je zeker dat je wilt doorgaan?" -#: templates/account.php345, templates/account/partials/addon.php:260 +#: templates/account.php341, templates/account/partials/addon.php:260 msgid "Cancel Subscription" msgstr "Abonnement Opzeggen" -#: templates/account.php374, templates/account/partials/addon.php:345 -msgctxt "as synchronize" -msgid "Sync" -msgstr "Sync" - -#: templates/account.php389, templates/debug.php:575 +#: templates/account.php385, templates/debug.php:575 msgid "Name" msgstr "Naam" -#: templates/account.php395, templates/debug.php:576 +#: templates/account.php391, templates/debug.php:576 msgid "Email" msgstr "E-mail" -#: templates/account.php402, templates/debug.php410, templates/debug.php:625 +#: templates/account.php398, templates/debug.php410, templates/debug.php:625 msgid "User ID" msgstr "Gebruikers ID" -#: templates/account.php420, templates/account.php738, templates/account.php789, templates/debug.php267, templates/debug.php404, templates/debug.php515, templates/debug.php574, templates/debug.php623, templates/debug.php702, templates/account/payments.php35, templates/debug/logger.php:21 +#: templates/account.php416, templates/account.php734, +#: templates/account.php785, templates/debug.php267, templates/debug.php404, +#: templates/debug.php515, templates/debug.php574, templates/debug.php623, +#: templates/debug.php702, templates/account/payments.php35, +#: templates/debug/logger.php:21 msgid "ID" msgstr "ID" -#: templates/account.php:427 +#: templates/account.php:423 msgid "Site ID" msgstr "Site ID" -#: templates/account.php:430 +#: templates/account.php:426 msgid "No ID" msgstr "Geen ID" -#: templates/account.php435, templates/debug.php274, templates/debug.php413, templates/debug.php519, templates/debug.php578, templates/account/partials/site.php:228 +#: templates/account.php431, templates/debug.php274, templates/debug.php413, +#: templates/debug.php519, templates/debug.php578, +#: templates/account/partials/site.php:228 msgid "Public Key" msgstr "Publieke Sleutel" -#: templates/account.php441, templates/debug.php414, templates/debug.php520, templates/debug.php579, templates/account/partials/site.php:241 +#: templates/account.php437, templates/debug.php414, templates/debug.php520, +#: templates/debug.php579, templates/account/partials/site.php:241 msgid "Secret Key" msgstr "Geheime Sleutel" -#: templates/account.php:444 -msgctxt "as secret encryption key missing" -msgid "No Secret" -msgstr "Geen Geheim" +#: templates/account.php494, templates/debug.php631, +#: templates/account/partials/site.php:262 +msgid "License Key" +msgstr "Licentiesleutel" -#: templates/account.php471, templates/account/partials/site.php120, templates/account/partials/site.php:122 +#: templates/account.php467, templates/account/partials/site.php122, +#: templates/account/partials/site.php:120 msgid "Trial" msgstr "Proefperiode" -#: templates/account.php498, templates/debug.php631, templates/account/partials/site.php:262 -msgid "License Key" -msgstr "Licentiesleutel" - -#: templates/account.php:529 +#: templates/account.php:525 msgid "Join the Beta program" msgstr "" -#: templates/account.php:535 +#: templates/account.php:531 msgid "not verified" msgstr "niet geverifieerd" -#: templates/account.php544, templates/account/partials/addon.php:195 -msgid "Expired" -msgstr "Verlopen" +#: templates/account.php:600 +msgid "Free version" +msgstr "Gratis versie" -#: templates/account.php:602 +#: templates/account.php:598 msgid "Premium version" msgstr "Premium versie" -#: templates/account.php:604 -msgid "Free version" -msgstr "Gratis versie" +#: templates/account.php540, templates/account/partials/addon.php:195 +msgid "Expired" +msgstr "Verlopen" -#: templates/account.php:616 +#: templates/account.php:612 msgid "Verify Email" msgstr "Verifieer E-mail" -#: templates/account.php:630 -msgid "Download %s Version" -msgstr "Download %s Versie" - -#: templates/account.php:646 -msgid "Download Paid Version" +#: templates/account.php689, templates/forms/user-change.php:27 +msgid "Change User" msgstr "" -#: templates/account.php664, templates/account.php927, templates/account/partials/site.php250, templates/account/partials/site.php:272 -msgctxt "verb" -msgid "Show" -msgstr "Toon" - -#: templates/account.php:680 +#: templates/account.php:676 msgid "What is your %s?" msgstr "Wat is je %s?" -#: templates/account.php688, templates/account/billing.php:21 -msgctxt "verb" -msgid "Edit" -msgstr "Bewerk" +#: templates/account.php:626 +msgid "Download %s Version" +msgstr "Download %s Versie" -#: templates/account.php693, templates/forms/user-change.php:27 -msgid "Change User" +#: templates/account.php:642 +msgid "Download Paid Version" msgstr "" -#: templates/account.php:717 +#: templates/account.php:713 msgid "Sites" msgstr "Sites" -#: templates/account.php:730 +#: templates/account.php:726 msgid "Search by address" msgstr "Zoek op adres" -#: templates/account.php739, templates/debug.php:407 +#: templates/account.php735, templates/debug.php:407 msgid "Address" msgstr "Adres" -#: templates/account.php:740 +#: templates/account.php:736 msgid "License" msgstr "Licentie" -#: templates/account.php:741 +#: templates/account.php:737 msgid "Plan" msgstr "Plan" -#: templates/account.php:792 -msgctxt "as software license" -msgid "License" -msgstr "Licentie" - -#: templates/account.php:921 -msgctxt "verb" -msgid "Hide" -msgstr "Verberg" - -#: templates/account.php943, templates/forms/data-debug-mode.php31, templates/forms/deactivation/form.php358, templates/forms/deactivation/form.php:389 +#: templates/account.php939, templates/forms/data-debug-mode.php31, +#: templates/forms/deactivation/form.php358, +#: templates/forms/deactivation/form.php:389 msgid "Processing" msgstr "" -#: templates/account.php:946 +#: templates/account.php:942 msgid "Get updates for bleeding edge Beta versions of %s." msgstr "" -#: templates/account.php:1004 +#: templates/account.php:1000 msgid "Cancelling %s" msgstr "Annuleren %s" -#: templates/account.php1004, templates/account.php1021, templates/forms/subscription-cancellation.php27, templates/forms/deactivation/form.php:178 +#: templates/account.php1000, templates/account.php1017, +#: templates/forms/subscription-cancellation.php27, +#: templates/forms/deactivation/form.php:178 msgid "trial" msgstr "proefperiode" -#: templates/account.php1019, templates/forms/deactivation/form.php:195 +#: templates/account.php1015, templates/forms/deactivation/form.php:195 msgid "Cancelling %s..." msgstr "%s wordt geannuleerd..." -#: templates/account.php1022, templates/forms/subscription-cancellation.php28, templates/forms/deactivation/form.php:179 +#: templates/account.php1018, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:179 msgid "subscription" msgstr "abonnement" -#: templates/account.php:1036 -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?" -msgstr "Deactiveren van je licentie zal alle premium features blokkeren, maar geeft je de mogelijkheid de licentie op een andere site te activeren. Weet je zeker dat je wilt doorgaan?" +#: templates/account.php:1032 +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?" +msgstr "" +"Deactiveren van je licentie zal alle premium features blokkeren, maar geeft " +"je de mogelijkheid de licentie op een andere site te activeren. Weet je " +"zeker dat je wilt doorgaan?" -#: templates/account.php:1110 +#: templates/account.php:1106 msgid "Disabling white-label mode" msgstr "" -#: templates/account.php:1111 +#: templates/account.php:1107 msgid "Enabling white-label mode" msgstr "" @@ -1489,25 +1541,13 @@ msgid "Add Ons for %s" msgstr "Add-ons voor %s" #: templates/add-ons.php:58 -msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "" - -#: templates/add-ons.php:229 -msgctxt "active add-on" -msgid "Active" -msgstr "Activeer" - -#: templates/add-ons.php:230 -msgctxt "installed add-on" -msgid "Installed" +msgid "" +"We couldn't load the add-ons list. It's probably an issue on our side, " +"please try to come back in few minutes." msgstr "" -#: templates/admin-notice.php13, templates/forms/license-activation.php243, templates/forms/resend-key.php:80 -msgctxt "as close a window" -msgid "Dismiss" -msgstr "Afsluiten" - #: templates/auto-installation.php:45 +#. translators: %s: Number of seconds msgid "%s sec" msgstr "%s sec" @@ -1516,12 +1556,23 @@ msgid "Automatic Installation" msgstr "Automatische Installatie" #: templates/auto-installation.php:93 -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." -msgstr "Een geautomatiseerde download en installatie van %s (betaalde versie) van %s zal starten binnen %s. Als je dit handmatig wil doen, klik dan nu op de annuleer knop." +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." +msgstr "" +"Een geautomatiseerde download en installatie van %s (betaalde versie) van " +"%s zal starten binnen %s. Als je dit handmatig wil doen, klik dan nu op de " +"annuleer knop." #: templates/auto-installation.php:104 -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." -msgstr "Het installatieproces is gestart en kan enkele minuten duren om te voltooien. Wacht alsjeblieft totdat dat gebeurt is - deze pagina niet verversen." +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." +msgstr "" +"Het installatieproces is gestart en kan enkele minuten duren om te " +"voltooien. Wacht alsjeblieft totdat dat gebeurt is - deze pagina niet " +"verversen." #: templates/auto-installation.php:109 msgid "Cancel Installation" @@ -1535,172 +1586,174 @@ msgstr "Afrekenen" msgid "PCI compliant" msgstr "PCI-comform" -#. translators: %s: name (e.g. Hey John,) -#: templates/connect.php:127 -msgctxt "greeting" -msgid "Hey %s," -msgstr "Hoi %s," - -#: templates/connect.php:187 -msgid "Never miss an important update" +#: templates/connect.php:186 +#. translators: %1$s: plugin name (e.g., "Awesome Plugin"); %2$s: version +#. (e.g., "1.2.3") +msgid "Thank you for updating to %1$s v%2$s!" msgstr "" -#: templates/connect.php:195 -msgid "Thank you for updating to %1$s v%2$s!" +#: templates/connect.php:178 +msgid "Never miss an important update" msgstr "" -#: templates/connect.php:205 +#: templates/connect.php:196 msgid "Allow & Continue" msgstr "Toestaan & Ga Verder" -#: templates/connect.php:209 -msgid "Re-send activation email" -msgstr "Activatiemail opnieuw versturen" - -#: templates/connect.php:213 -msgid "Thanks %s!" -msgstr "Bedankt %s!" - -#: templates/connect.php:214 -msgid "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." +#: templates/connect.php:236 +#. translators: %s: module type (plugin, theme, or add-on) +msgid "" +"We have introduced this opt-in so you never miss an important update and " +"help us make the %s more compatible with your site and better at doing what " +"you need it to." msgstr "" -#: templates/connect.php:225 -msgid "Welcome to %s! To get started, please enter your license key:" +#: templates/connect.php:238 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info." msgstr "" -#: templates/connect.php:236 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." +#: templates/connect.php:241 +msgid "If you skip this, that's okay! %1$s will still work just fine." msgstr "" -#. translators: %s: module type (plugin, theme, or add-on) -#: templates/connect.php:245 -msgid "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." +#: templates/connect.php:227 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info. This will help us make the %s more compatible " +"with your site and better at doing what you need it to." msgstr "" -#: templates/connect.php:247 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." +#: templates/connect.php:216 +msgid "Welcome to %s! To get started, please enter your license key:" msgstr "" -#: templates/connect.php:250 -msgid "If you skip this, that's okay! %1$s will still work just fine." +#: templates/connect.php:200 +msgid "Re-send activation email" +msgstr "Activatiemail opnieuw versturen" + +#: templates/connect.php:204 +msgid "Thanks %s!" +msgstr "Bedankt %s!" + +#: templates/connect.php:205 +msgid "" +"You should receive a confirmation email for %s to your mailbox at %s. " +"Please make sure you click the button in that email to %s." msgstr "" -#: templates/connect.php:280 +#: templates/connect.php:271 msgid "We're excited to introduce the Freemius network-level integration." msgstr "We zijn verheugd om Freemius network-level integratie te introduceren." -#: templates/connect.php:283 -msgid "During the update process we detected %d site(s) that are still pending license activation." -msgstr "Tijdens het update proces detecteerden we %dsite(s) waarvoor de licentie nog niet geactiveerd is." - #: templates/connect.php:285 -msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." -msgstr "Als je de %s op deze sites wil gebruiken, voer dan alsjeblieft de licentiesleutel hieronder in en klik op de activatie-knop." +msgid "" +"During the update process we detected %s site(s) in the network that are " +"still pending your attention." +msgstr "" +"Tijdens het update proces detecteerden we %dsite(s) in het netwerk die jouw " +"aandacht vereisen." + +#: templates/connect.php:274 +msgid "" +"During the update process we detected %d site(s) that are still pending " +"license activation." +msgstr "" +"Tijdens het update proces detecteerden we %dsite(s) waarvoor de licentie " +"nog niet geactiveerd is." + +#: templates/connect.php:276 +msgid "" +"If you'd like to use the %s on those sites, please enter your license key " +"below and click the activation button." +msgstr "" +"Als je de %s op deze sites wil gebruiken, voer dan alsjeblieft de " +"licentiesleutel hieronder in en klik op de activatie-knop." -#: templates/connect.php:287 +#: templates/connect.php:278 msgid "%s's paid features" msgstr "%s betaalde mogelijkheden" -#: templates/connect.php:292 -msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." -msgstr "Je kunt dat eventueel ook nu overslaan en de licentie later in je %s netwerk-niveau Account pagina activeren. " - -#: templates/connect.php:294 -msgid "During the update process we detected %s site(s) in the network that are still pending your attention." -msgstr "Tijdens het update proces detecteerden we %dsite(s) in het netwerk die jouw aandacht vereisen." +#: templates/connect.php:283 +msgid "" +"Alternatively, you can skip it for now and activate the license later, in " +"your %s's network-level Account page." +msgstr "" +"Je kunt dat eventueel ook nu overslaan en de licentie later in je %s " +"netwerk-niveau Account pagina activeren. " -#: templates/connect.php303, templates/forms/data-debug-mode.php35, templates/forms/license-activation.php:42 +#: templates/connect.php294, templates/forms/data-debug-mode.php35, +#: templates/forms/license-activation.php:42 msgid "License key" msgstr "Licentiesleutel" -#: templates/connect.php306, templates/forms/license-activation.php:22 +#: templates/connect.php297, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "Kan je je licentiesleutel niet vinden?" -#: templates/connect.php369, templates/connect.php693, templates/forms/deactivation/retry-skip.php:20 -msgctxt "verb" -msgid "Skip" -msgstr "Sla Over" - -#: templates/connect.php:372 +#: templates/connect.php:363 msgid "Delegate to Site Admins" msgstr "Delegeren aan Site Beheerders" -#: templates/connect.php:372 -msgid "If you click it, this decision will be delegated to the sites administrators." -msgstr "Al je er op klikt, zal deze beslissing gedelegeerd worden aan de beheerders van de sites. " - -#: templates/connect.php:399 -msgid "License issues?" +#: templates/connect.php:363 +msgid "" +"If you click it, this decision will be delegated to the sites " +"administrators." msgstr "" +"Al je er op klikt, zal deze beslissing gedelegeerd worden aan de beheerders " +"van de sites. " -#: templates/connect.php:423 -msgid "For delivery of security & feature updates, and license management, %s needs to" +#: templates/connect.php:392 +msgid "License issues?" msgstr "" -#: templates/connect.php:428 +#: templates/connect.php:421 msgid "This will allow %s to" msgstr "" -#: templates/connect.php:443 -msgid "Don't have a license key?" -msgstr "Heb je geen licentiesleutel?" +#: templates/connect.php:416 +msgid "" +"For delivery of security & feature updates, and license management, %s " +"needs to" +msgstr "" -#: templates/connect.php:446 +#: templates/connect.php:439 msgid "Have a license key?" msgstr "Heb je een licentiesleutel?" -#: templates/connect.php:454 +#: templates/connect.php:436 +msgid "Don't have a license key?" +msgstr "Heb je geen licentiesleutel?" + +#: templates/connect.php:447 msgid "Freemius is our licensing and software updates engine" msgstr "" -#: templates/connect.php:457 +#: templates/connect.php:450 msgid "Privacy Policy" msgstr "Privacybeleid" -#: templates/connect.php:459 -msgid "License Agreement" -msgstr "Licentieovereenkomst" - -#: templates/connect.php:459 +#: templates/connect.php:455 msgid "Terms of Service" msgstr "Servicevoorwaarden" -#: templates/connect.php:879 -msgctxt "as in the process of sending an email" -msgid "Sending email" -msgstr "E-mail versturen" - -#: templates/connect.php:880 -msgctxt "as activating plugin" -msgid "Activating" -msgstr "Activeren" +#: templates/connect.php:453 +msgid "License Agreement" +msgstr "Licentieovereenkomst" #: templates/contact.php:78 msgid "Contact" msgstr "Contact" -#: templates/debug.php:17 -msgctxt "as turned off" -msgid "Off" -msgstr "Uit" - -#: templates/debug.php:18 -msgctxt "as turned on" -msgid "On" -msgstr "Aan" - #: templates/debug.php:24 msgid "SDK" msgstr "SDK" -#: templates/debug.php:28 -msgctxt "as code debugging" -msgid "Debugging" -msgstr "Debugging" - -#: templates/debug.php58, templates/debug.php279, templates/debug.php415, templates/debug.php:580 +#: templates/debug.php58, templates/debug.php279, templates/debug.php415, +#: templates/debug.php:580 msgid "Actions" msgstr "Acties" @@ -1748,11 +1801,6 @@ msgstr "Sleutel" msgid "Value" msgstr "Waarde" -#: templates/debug.php:228 -msgctxt "as software development kit versions" -msgid "SDK Versions" -msgstr "SDK Versies" - #: templates/debug.php:233 msgid "SDK Path" msgstr "SDK Pad" @@ -1773,7 +1821,8 @@ msgstr "Plug-ins" msgid "Themes" msgstr "Thema's" -#: templates/debug.php268, templates/debug.php409, templates/debug.php517, templates/debug/scheduled-crons.php:80 +#: templates/debug.php268, templates/debug.php409, templates/debug.php517, +#: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "Slug" @@ -1781,11 +1830,6 @@ msgstr "Slug" msgid "Title" msgstr "Titel" -#: templates/debug.php:271 -msgctxt "as application program interface" -msgid "API" -msgstr "API" - #: templates/debug.php:272 msgid "Freemius State" msgstr "Freemius Status" @@ -1798,21 +1842,6 @@ msgstr "Netwerk Blog" msgid "Network User" msgstr "Netwerk Gebruiker" -#: templates/debug.php:323 -msgctxt "as connection was successful" -msgid "Connected" -msgstr "Verbonden" - -#: templates/debug.php:325 -msgctxt "as connection blocked" -msgid "Blocked" -msgstr "Geblokkeerd" - -#: templates/debug.php:326 -msgctxt "API connectivity state is unknown" -msgid "Unknown" -msgstr "" - #: templates/debug.php:362 msgid "Simulate Trial Promotion" msgstr "Simuleer Trial Actie" @@ -1822,14 +1851,10 @@ msgid "Simulate Network Upgrade" msgstr "Simuleer Netwerk Upgrade" #: templates/debug.php:398 +#. translators: %s: 'plugin' or 'theme' msgid "%s Installs" msgstr "%s Installaties" -#: templates/debug.php:400 -msgctxt "like websites" -msgid "Sites" -msgstr "Sites" - #: templates/debug.php406, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "Blog ID" @@ -1838,11 +1863,6 @@ msgstr "Blog ID" msgid "License ID" msgstr "" -#: templates/debug.php497, templates/debug.php603, templates/account/partials/addon.php:440 -msgctxt "verb" -msgid "Delete" -msgstr "Verwijder" - #: templates/debug.php:511 msgid "Add Ons of module %s" msgstr "Uitbreidingen van module %s" @@ -1879,15 +1899,11 @@ msgstr "Geactiveerd" msgid "Blocking" msgstr "Geblokkeerd" -#: templates/debug.php630, templates/debug.php701, templates/debug/logger.php:22 +#: templates/debug.php630, templates/debug.php701, +#: templates/debug/logger.php:22 msgid "Type" msgstr "Type" -#: templates/debug.php:632 -msgctxt "as expiration date" -msgid "Expiration" -msgstr "Verloopdatum" - #: templates/debug.php:660 msgid "Debug Log" msgstr "Debug Log" @@ -1900,11 +1916,13 @@ msgstr "Alle Types" msgid "All Requests" msgstr "Alle Requests" -#: templates/debug.php676, templates/debug.php705, templates/debug/logger.php:25 +#: templates/debug.php676, templates/debug.php705, +#: templates/debug/logger.php:25 msgid "File" msgstr "Bestand" -#: templates/debug.php677, templates/debug.php703, templates/debug/logger.php:23 +#: templates/debug.php677, templates/debug.php703, +#: templates/debug/logger.php:23 msgid "Function" msgstr "Functie" @@ -1916,7 +1934,8 @@ msgstr "Proces-ID" msgid "Logger" msgstr "Logger" -#: templates/debug.php680, templates/debug.php704, templates/debug/logger.php:24 +#: templates/debug.php680, templates/debug.php704, +#: templates/debug/logger.php:24 msgid "Message" msgstr "Bericht" @@ -1933,18 +1952,15 @@ msgid "Timestamp" msgstr "Tijdstempel" #: templates/secure-https-header.php:28 +#. translators: %s: Page name msgid "Secure HTTPS %s page, running from an external domain" msgstr "Beveiligde HTTPS %s pagina, loopt via een extern domein" -#: includes/customizer/class-fs-customizer-support-section.php55, templates/plugin-info/features.php:43 +#: includes/customizer/class-fs-customizer-support-section.php55, +#: templates/plugin-info/features.php:43 msgid "Support" msgstr "Ondersteuning" -#: includes/debug/class-fs-debug-bar-panel.php48, templates/debug/api-calls.php54, templates/debug/logger.php:62 -msgctxt "milliseconds" -msgid "ms" -msgstr "ms" - #: includes/debug/debug-bar-start.php:41 msgid "Freemius API" msgstr "Freemius API" @@ -1961,16 +1977,22 @@ msgstr "" msgid "products" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1205 -msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." -msgstr "" - #: includes/managers/class-fs-clone-manager.php:1211 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of %3$s:%1$s" msgstr "" #: includes/managers/class-fs-clone-manager.php:1212 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of these sites:%3$s%1$s" +msgstr "" + +#: includes/managers/class-fs-clone-manager.php:1205 +msgid "" +"%1$s has been placed into safe mode because we noticed that %2$s is an " +"exact copy of %3$s." msgstr "" #: includes/managers/class-fs-clone-manager.php:1238 @@ -1982,7 +2004,9 @@ msgid "Is %2$s a duplicate of %4$s?" msgstr "" #: includes/managers/class-fs-clone-manager.php:1252 -msgid "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." +msgid "" +"Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or " +"development." msgstr "" #: includes/managers/class-fs-clone-manager.php:1257 @@ -1998,10 +2022,13 @@ msgid "Is %2$s the new home of %4$s?" msgstr "" #: includes/managers/class-fs-clone-manager.php:1270 -msgid "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." +msgid "" +"Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to " +"%%2$s." msgstr "" -#: includes/managers/class-fs-clone-manager.php1271, templates/forms/subscription-cancellation.php:52 +#: includes/managers/class-fs-clone-manager.php1271, +#: templates/forms/subscription-cancellation.php:52 msgid "license" msgstr "licentie" @@ -2033,11 +2060,6 @@ msgstr "" msgid "New Website" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1319 -msgctxt "Clone resolution admin notice products list label" -msgid "Products" -msgstr "Producten" - #: includes/managers/class-fs-clone-manager.php:1408 msgid "You marked this website, %s, as a temporary duplicate of %s." msgstr "" @@ -2047,12 +2069,10 @@ msgid "You marked this website, %s, as a temporary duplicate of these sites" msgstr "" #: includes/managers/class-fs-clone-manager.php:1423 -msgid "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." -msgstr "" - -#: includes/managers/class-fs-clone-manager.php:1426 -msgctxt "\"The \", e.g.: \"The plugin\"" -msgid "The %s's" +msgid "" +"%s automatic security & feature updates and paid functionality will keep " +"working without interruptions until %s (or when your license expires, " +"whatever comes first)." msgstr "" #: includes/managers/class-fs-clone-manager.php:1429 @@ -2060,7 +2080,9 @@ msgid "The following products'" msgstr "" #: includes/managers/class-fs-clone-manager.php:1437 -msgid "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." +msgid "" +"If this is a long term duplicate, to keep automatic updates and paid " +"functionality after %s, please %s." msgstr "" #: includes/managers/class-fs-clone-manager.php:1439 @@ -2076,7 +2098,12 @@ msgid "Homepage URL & title, WP & PHP versions, and site language" msgstr "" #: includes/managers/class-fs-permission-manager.php:195 -msgid "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To provide additional functionality that's relevant to your website, avoid " +"WordPress or PHP version incompatibilities that can break your website, and " +"recognize which languages & regions the %s should be translated and " +"tailored to." msgstr "" #: includes/managers/class-fs-permission-manager.php:207 @@ -2084,6 +2111,7 @@ msgid "View Basic %s Info" msgstr "" #: includes/managers/class-fs-permission-manager.php:210 +#. translators: %s: 'Plugin' or 'Theme' msgid "Current %s & SDK versions, and if active or uninstalled" msgstr "" @@ -2091,8 +2119,11 @@ msgstr "" msgid "View License Essentials" msgstr "" -#: includes/managers/class-fs-permission-manager.php:262 includes/managers/class-fs-permission-manager.php:272 -msgid "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." +#: includes/managers/class-fs-permission-manager.php:272 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To let you manage & control where the license is activated and ensure %s " +"security & feature updates are only delivered to websites you authorize." msgstr "" #: includes/managers/class-fs-permission-manager.php:284 @@ -2100,6 +2131,7 @@ msgid "View %s State" msgstr "" #: includes/managers/class-fs-permission-manager.php:287 +#. translators: %s: 'Plugin' or 'Theme' msgid "Is active, deactivated, or uninstalled" msgstr "" @@ -2111,7 +2143,8 @@ msgstr "" msgid "View Diagnostic Info" msgstr "" -#: includes/managers/class-fs-permission-manager.php326, includes/managers/class-fs-permission-manager.php:363 +#: includes/managers/class-fs-permission-manager.php326, +#: includes/managers/class-fs-permission-manager.php:363 msgid "optional" msgstr "" @@ -2120,7 +2153,11 @@ msgid "WordPress & PHP versions, site language & title" msgstr "" #: includes/managers/class-fs-permission-manager.php:330 -msgid "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To avoid breaking your website due to WordPress or PHP version " +"incompatibilities, and recognize which languages & regions the %s should be " +"translated and tailored to." msgstr "" #: includes/managers/class-fs-permission-manager.php:363 @@ -2132,7 +2169,9 @@ msgid "Names, slugs, versions, and if active or not" msgstr "" #: includes/managers/class-fs-permission-manager.php:365 -msgid "To ensure compatibility and avoid conflicts with your installed plugins and themes." +msgid "" +"To ensure compatibility and avoid conflicts with your installed plugins and " +"themes." msgstr "" #: includes/managers/class-fs-permission-manager.php:382 @@ -2144,7 +2183,10 @@ msgid "Your WordPress user's: first & last name, and email address" msgstr "" #: includes/managers/class-fs-permission-manager.php:384 -msgid "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." +msgid "" +"Never miss important updates, get security warnings before they become " +"public knowledge, and receive notifications about special offers and " +"awesome new features." msgstr "" #: includes/managers/class-fs-permission-manager.php:405 @@ -2155,11 +2197,6 @@ msgstr "Nieuwsbrief" msgid "Updates, announcements, marketing, no spam" msgstr "Updates, aankondigingen, marketing, geen spam" -#: templates/account/billing.php:22 -msgctxt "verb" -msgid "Update" -msgstr "Bijwerken" - #: templates/account/billing.php:33 msgid "Billing" msgstr "Facturering" @@ -2172,7 +2209,8 @@ msgstr "Bedrijfsnaam" msgid "Tax / VAT ID" msgstr "Btw-nummer" -#: templates/account/billing.php42, templates/account/billing.php43, templates/account/billing.php:43 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "Adresregel %d" @@ -2220,16 +2258,6 @@ msgstr "Bedrag" msgid "Invoice" msgstr "Factuur" -#: templates/connect/permissions-group.php31, templates/forms/optout.php26, templates/js/permissions.php:78 -msgctxt "verb" -msgid "Opt Out" -msgstr "Opt Out" - -#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 -msgctxt "verb" -msgid "Opt In" -msgstr "Opt In" - #: templates/debug/api-calls.php:56 msgid "API" msgstr "API" @@ -2246,11 +2274,6 @@ msgstr "Code" msgid "Length" msgstr "Lengte" -#: templates/debug/api-calls.php:71 -msgctxt "as file/folder path" -msgid "Path" -msgstr "Pad" - #: templates/debug/api-calls.php:73 msgid "Body" msgstr "Body" @@ -2271,21 +2294,18 @@ msgstr "Einde" msgid "Log" msgstr "Log" +#: templates/debug/plugins-themes-sync.php18, +#: templates/debug/scheduled-crons.php:91 #. translators: %s: time period (e.g. In "2 hours") -#: templates/debug/plugins-themes-sync.php18, templates/debug/scheduled-crons.php:91 msgid "In %s" msgstr "Binnen %s" +#: templates/debug/plugins-themes-sync.php20, +#: templates/debug/scheduled-crons.php:93 #. translators: %s: time period (e.g. "2 hours" ago) -#: templates/debug/plugins-themes-sync.php20, templates/debug/scheduled-crons.php:93 msgid "%s ago" msgstr "%s geleden" -#: templates/debug/plugins-themes-sync.php21, templates/debug/scheduled-crons.php:74 -msgctxt "seconds" -msgid "sec" -msgstr "sec" - #: templates/debug/plugins-themes-sync.php:23 msgid "Plugins & Themes Sync" msgstr "Synchronisatie Plug-ins & Thema's" @@ -2294,7 +2314,8 @@ msgstr "Synchronisatie Plug-ins & Thema's" msgid "Total" msgstr "Totaal" -#: templates/debug/plugins-themes-sync.php29, templates/debug/scheduled-crons.php:84 +#: templates/debug/plugins-themes-sync.php29, +#: templates/debug/scheduled-crons.php:84 msgid "Last" msgstr "Laatste" @@ -2318,143 +2339,189 @@ msgstr "Cron Type" msgid "Next" msgstr "Volgende" -#: templates/forms/affiliation.php:83 +#: templates/forms/affiliation.php:86 msgid "Non-expiring" msgstr "Niet-verlopende" -#: templates/forms/affiliation.php:86 +#: templates/forms/affiliation.php:89 msgid "Apply to become an affiliate" msgstr "Meld je aan om een affiliate partner te worden" -#: templates/forms/affiliation.php:108 -msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." -msgstr "Je samenwerkingsaanvraag voor %s is geaccepteerd! Log in op je samenwerkingsomgeving op: %s." +#: templates/forms/affiliation.php:137 +msgid "" +"Due to violation of our affiliation terms, we decided to temporarily block " +"your affiliation account. If you have any questions, please contact support." +msgstr "" +"Als gevolg van het overtreden van onze affiliate voorwaarden, hebben we " +"besloten je affiliate account tijdelijk te blokkeren. Neem voor eventuele " +"vragen alsjeblieft contact op met support." -#: templates/forms/affiliation.php:123 -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." -msgstr "Bedankt voor je aanvraag voor deelname aan ons samenwerkingsprogramma. We zullen binnen 14 dagen je gegevens doornemen, waarna we je aanvullende informatie zullen sturen." +#: templates/forms/affiliation.php:134 +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." +msgstr "" +"Bedankt voor je aanvraag voor deelname aan ons affiliate programma, helaas, " +"op dit moment hebben we besloten je aanvraag af te wijzen. Probeer het " +"alsjeblieft over 30 dagen nog eens." -#: templates/forms/affiliation.php:126 +#: templates/forms/affiliation.php:131 msgid "Your affiliation account was temporarily suspended." msgstr "Je affiliate account is tijdelijk geschorst." -#: templates/forms/affiliation.php:129 -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." -msgstr "Bedankt voor je aanvraag voor deelname aan ons affiliate programma, helaas, op dit moment hebben we besloten je aanvraag af te wijzen. Probeer het alsjeblieft over 30 dagen nog eens." +#: templates/forms/affiliation.php:128 +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." +msgstr "" +"Bedankt voor je aanvraag voor deelname aan ons samenwerkingsprogramma. We " +"zullen binnen 14 dagen je gegevens doornemen, waarna we je aanvullende " +"informatie zullen sturen." -#: templates/forms/affiliation.php:132 -msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." -msgstr "Als gevolg van het overtreden van onze affiliate voorwaarden, hebben we besloten je affiliate account tijdelijk te blokkeren. Neem voor eventuele vragen alsjeblieft contact op met support." +#: templates/forms/affiliation.php:113 +msgid "" +"Your affiliate application for %s has been accepted! Log in to your " +"affiliate area at: %s." +msgstr "" +"Je samenwerkingsaanvraag voor %s is geaccepteerd! Log in op je " +"samenwerkingsomgeving op: %s." -#: templates/forms/affiliation.php:145 +#: templates/forms/affiliation.php:150 msgid "Like the %s? Become our ambassador and earn cash ;-)" msgstr "Vind je de %s goed? Word dan onze ambassadeur en verdien cash ;-)" -#: templates/forms/affiliation.php:146 -msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" -msgstr "Verwijs nieuwe klanten naar onze %s en krijg %s commissie op iedere door jou doorverwezen, geslaagde verkoop!" +#: templates/forms/affiliation.php:151 +msgid "" +"Refer new customers to our %s and earn %s commission on each successful " +"sale you refer!" +msgstr "" +"Verwijs nieuwe klanten naar onze %s en krijg %s commissie op iedere door " +"jou doorverwezen, geslaagde verkoop!" -#: templates/forms/affiliation.php:149 +#: templates/forms/affiliation.php:154 msgid "Program Summary" msgstr "Programma Samenvatting" -#: templates/forms/affiliation.php:151 +#: templates/forms/affiliation.php:156 msgid "%s commission when a customer purchases a new license." msgstr "%s commissie als een klant een nieuwe licentie koopt. " -#: templates/forms/affiliation.php:153 +#: templates/forms/affiliation.php:158 msgid "Get commission for automated subscription renewals." msgstr "Krijg een commissie voor automatische abonnementsverlengingen." -#: templates/forms/affiliation.php:156 +#: templates/forms/affiliation.php:161 msgid "%s tracking cookie after the first visit to maximize earnings potential." -msgstr "%s tracking cookie na eerste bezoek om je verdienpotentieel te maximaliseren." +msgstr "" +"%s tracking cookie na eerste bezoek om je verdienpotentieel te " +"maximaliseren." -#: templates/forms/affiliation.php:159 +#: templates/forms/affiliation.php:164 msgid "Unlimited commissions." msgstr "Onbeperkte commissies." -#: templates/forms/affiliation.php:161 +#: templates/forms/affiliation.php:166 msgid "%s minimum payout amount." msgstr "%s minimum uitbetalingsbedrag." -#: templates/forms/affiliation.php:162 +#: templates/forms/affiliation.php:167 msgid "Payouts are in USD and processed monthly via PayPal." msgstr "Uitbetalingen zijn in USD en worden maandelijks uitgevoerd via PayPal" -#: templates/forms/affiliation.php:163 -msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." -msgstr "Omdat wij 30 dagen reserveren voor eventuele terugstortingen, betalen we alleen commissies uit die ouder dan 30 dagen zijn." +#: templates/forms/affiliation.php:168 +msgid "" +"As we reserve 30 days for potential refunds, we only pay commissions that " +"are older than 30 days." +msgstr "" +"Omdat wij 30 dagen reserveren voor eventuele terugstortingen, betalen we " +"alleen commissies uit die ouder dan 30 dagen zijn." -#: templates/forms/affiliation.php:166 +#: templates/forms/affiliation.php:171 msgid "Affiliate" msgstr "Affiliate" -#: templates/forms/affiliation.php169, templates/forms/resend-key.php:23 +#: templates/forms/affiliation.php174, templates/forms/resend-key.php:23 msgid "Email address" msgstr "E-mailadres" -#: templates/forms/affiliation.php:173 +#: templates/forms/affiliation.php:178 msgid "Full name" msgstr "Volledige naam" -#: templates/forms/affiliation.php:177 +#: templates/forms/affiliation.php:182 msgid "PayPal account email address" msgstr "PayPal account e-mailadres" -#: templates/forms/affiliation.php:181 +#: templates/forms/affiliation.php:186 msgid "Where are you going to promote the %s?" msgstr "Waar ga je de %s promoten?" -#: templates/forms/affiliation.php:183 -msgid "Enter the domain of your website or other websites from where you plan to promote the %s." -msgstr "Voer de domeinnaam in van je website of andere websites waar vanaf je van plan bent de %ste gaan promoten." +#: templates/forms/affiliation.php:188 +msgid "" +"Enter the domain of your website or other websites from where you plan to " +"promote the %s." +msgstr "" +"Voer de domeinnaam in van je website of andere websites waar vanaf je van " +"plan bent de %ste gaan promoten." -#: templates/forms/affiliation.php:185 +#: templates/forms/affiliation.php:190 msgid "Add another domain" msgstr "Voeg nog een domein toe" -#: templates/forms/affiliation.php:189 +#: templates/forms/affiliation.php:194 msgid "Extra Domains" msgstr "Extra Domeinen" -#: templates/forms/affiliation.php:190 +#: templates/forms/affiliation.php:195 msgid "Extra domains where you will be marketing the product from." msgstr "Extra domeinen vanaf waar je het product gaat promoten." -#: templates/forms/affiliation.php:200 +#: templates/forms/affiliation.php:205 msgid "Promotion methods" msgstr "Promotie methodes" -#: templates/forms/affiliation.php:203 +#: templates/forms/affiliation.php:208 msgid "Social media (Facebook, Twitter, etc.)" msgstr "Social media (Facebook, Twitter, etc.)" -#: templates/forms/affiliation.php:207 +#: templates/forms/affiliation.php:212 msgid "Mobile apps" msgstr "Mobiele apps" -#: templates/forms/affiliation.php:211 +#: templates/forms/affiliation.php:216 msgid "Website, email, and social media statistics (optional)" msgstr "Website, mail, and social media statistieken (optioneel)" -#: templates/forms/affiliation.php:214 -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)." -msgstr "Voel je alsjeblieft vrij om elke relevante website of social media statistieken met ons te delen, bijvoorbeeld maandelijkse unieke bezoekers, aantal e-mail abonnees , volgers, etc. (we zullen deze informatie vertrouwelijk houden)." +#: templates/forms/affiliation.php:219 +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)." +msgstr "" +"Voel je alsjeblieft vrij om elke relevante website of social media " +"statistieken met ons te delen, bijvoorbeeld maandelijkse unieke bezoekers, " +"aantal e-mail abonnees , volgers, etc. (we zullen deze informatie " +"vertrouwelijk houden)." -#: templates/forms/affiliation.php:218 +#: templates/forms/affiliation.php:223 msgid "How will you promote us?" msgstr "Hoe ga je ons promoten?" -#: templates/forms/affiliation.php:221 -msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." -msgstr "Geef alsjeblieft zo gedetailleerd als mogelijk aan hoe je van plan bent om %s te gaan promoten." +#: templates/forms/affiliation.php:226 +msgid "" +"Please provide details on how you intend to promote %s (please be as " +"specific as possible)." +msgstr "" +"Geef alsjeblieft zo gedetailleerd als mogelijk aan hoe je van plan bent om " +"%s te gaan promoten." -#: templates/forms/affiliation.php233, templates/forms/resend-key.php22, templates/account/partials/disconnect-button.php:92 +#: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Annuleer" -#: templates/forms/affiliation.php:235 +#: templates/forms/affiliation.php:240 msgid "Become an affiliate" msgstr "Wordt een affiliate" @@ -2463,7 +2530,10 @@ msgid "Please enter the license key to enable the debug mode:" msgstr "" #: templates/forms/data-debug-mode.php:27 -msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" +msgid "" +"To enter the debug mode, please enter the secret key of the license owner " +"(UserID = %d), which you can find in your \"My Profile\" section of your " +"User Dashboard:" msgstr "" #: templates/forms/data-debug-mode.php:32 @@ -2478,11 +2548,6 @@ msgstr "" msgid "Email address update" msgstr "" -#: templates/forms/email-address-update.php33, templates/forms/user-change.php:81 -msgctxt "close window" -msgid "Dismiss" -msgstr "Afsluiten" - #: templates/forms/email-address-update.php:38 msgid "Enter the new email address" msgstr "" @@ -2515,30 +2580,42 @@ msgstr "" msgid "No - only move this site's data to %s" msgstr "" -#: templates/forms/email-address-update.php292, templates/forms/email-address-update.php:298 +#: templates/forms/email-address-update.php292, +#: templates/forms/email-address-update.php:298 msgid "Update" msgstr "Bijwerken" #: templates/forms/license-activation.php:23 -msgid "Please enter the license key that you received in the email right after the purchase:" -msgstr "Voer aalsjeblieft de licentiesleutel in die je ontving in de e-mail direct na de aankoop:" +msgid "" +"Please enter the license key that you received in the email right after the " +"purchase:" +msgstr "" +"Voer aalsjeblieft de licentiesleutel in die je ontving in de e-mail direct " +"na de aankoop:" #: templates/forms/license-activation.php:28 msgid "Update License" msgstr "Update Licentie" #: templates/forms/license-activation.php:34 -msgid "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." +msgid "" +"The %1$s will be periodically sending essential license data to %2$s to " +"check for security and feature updates, and verify the validity of your " +"license." msgstr "" #: templates/forms/license-activation.php:39 msgid "Agree & Activate License" msgstr "Akkoord & Activeer Licentie" -#: templates/forms/license-activation.php:204 +#: templates/forms/license-activation.php:206 msgid "Associate with the license owner's account." msgstr "" +#: templates/forms/optout.php:104 +msgid "Keep automatic updates" +msgstr "" + #: templates/forms/optout.php:44 msgid "Communication" msgstr "" @@ -2559,10 +2636,6 @@ msgstr "" msgid "Extensions" msgstr "" -#: templates/forms/optout.php:104 -msgid "Keep automatic updates" -msgstr "" - #: templates/forms/premium-versions-upgrade-handler.php:40 msgid "There is a new version of %s available." msgstr "Er is een nieuwe versie van %s beschikbaar." @@ -2575,42 +2648,64 @@ msgstr "%svoor toegang to versie %s beveiliging & features updates en support." msgid "New Version Available" msgstr "Nieuwe Versie Beschikbaar" -#: templates/forms/premium-versions-upgrade-handler.php:75 -msgctxt "close a window" -msgid "Dismiss" -msgstr "Afsluiten" - #: templates/forms/resend-key.php:21 msgid "Send License Key" msgstr "Verzend Licentiesleutel" #: templates/forms/resend-key.php:58 -msgid "Enter the email address you've used during the purchase and we will resend you the license key." +msgid "" +"Enter the email address you've used during the purchase and we will resend " +"you the license key." msgstr "" #: templates/forms/resend-key.php:59 -msgid "Enter the email address you've used for the upgrade below and we will resend you the license key." -msgstr "Voer hieronder het e-mailadres in dat je gebruikt hebt voor de upgrade en we zullen je jouw licentiesleutel opnieuw toesturen." +msgid "" +"Enter the email address you've used for the upgrade below and we will " +"resend you the license key." +msgstr "" +"Voer hieronder het e-mailadres in dat je gebruikt hebt voor de upgrade en " +"we zullen je jouw licentiesleutel opnieuw toesturen." #: templates/forms/subscription-cancellation.php:37 -msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." -msgstr "Het deactiveren en deïnstalleren van de %s zal de licentie automatisch uitschakelen, die je dan kan gebruiken op een andere site." +msgid "" +"Deactivating or uninstalling the %s will automatically disable the license, " +"which you'll be able to use on another site." +msgstr "" +"Het deactiveren en deïnstalleren van de %s zal de licentie automatisch " +"uitschakelen, die je dan kan gebruiken op een andere site." #: templates/forms/subscription-cancellation.php:47 -msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" -msgstr "Mocht je NIET van plan zijn om deze %s te gebruiken op deze site (of op een andere site) - wil je dan het %s ook opzeggen?" +msgid "" +"In case you are NOT planning on using this %s on this site (or any other " +"site) - would you like to cancel the %s as well?" +msgstr "" +"Mocht je NIET van plan zijn om deze %s te gebruiken op deze site (of op een " +"andere site) - wil je dan het %s ook opzeggen?" #: templates/forms/subscription-cancellation.php:57 -msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." -msgstr "Annuleer %s - Ik heb niet meer enige beveiligings- en uitbreidingsupdates of ondersteuning voor %s nodig, omdat ik niet van plan ben de %sop deze of enige andere site te gebruiken." +msgid "" +"Cancel %s - I no longer need any security & feature updates, nor support " +"for %s because I'm not planning to use the %s on this, or any other site." +msgstr "" +"Annuleer %s - Ik heb niet meer enige beveiligings- en uitbreidingsupdates " +"of ondersteuning voor %s nodig, omdat ik niet van plan ben de %sop deze of " +"enige andere site te gebruiken." #: templates/forms/subscription-cancellation.php:68 -msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." -msgstr "Annuleer %s niet - Ik wil nog steeds zowel beveiligings- en uitbreidingsupdates ontvangen als contact kunnen opnemen met Support." +msgid "" +"Don't cancel %s - I'm still interested in getting security & feature " +"updates, as well as be able to contact support." +msgstr "" +"Annuleer %s niet - Ik wil nog steeds zowel beveiligings- en " +"uitbreidingsupdates ontvangen als contact kunnen opnemen met Support." #: templates/forms/subscription-cancellation.php:103 -msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." -msgstr "Als je licentie afloopt, zul je %s niet meer kunnen gebruiken, tenzij je het opnieuw activeert met een geldige Premium-licentie." +msgid "" +"Once your license expires you will no longer be able to use the %s, unless " +"you activate it again with a valid premium license." +msgstr "" +"Als je licentie afloopt, zul je %s niet meer kunnen gebruiken, tenzij je " +"het opnieuw activeert met een geldige Premium-licentie." #: templates/forms/subscription-cancellation.php:136 msgid "Cancel %s?" @@ -2620,17 +2715,32 @@ msgstr "%s annuleren?" msgid "Proceed" msgstr "Doorgaan" -#: templates/forms/subscription-cancellation.php191, templates/forms/deactivation/form.php:216 +#: templates/forms/subscription-cancellation.php191, +#: templates/forms/deactivation/form.php:216 msgid "Cancel %s & Proceed" msgstr "Annuleer %s & Ga Door" #: templates/forms/trial-start.php:22 -msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." -msgstr "U bent 1-klik verwijderd van het starten van uw %1$s-daagse gratis proefperiode van het %2$s plan." +#. translators: %1$s: Number of trial days; %2$s: Plan name; +msgid "" +"You are 1-click away from starting your %1$s-day free trial of the %2$s " +"plan." +msgstr "" +"U bent 1-klik verwijderd van het starten van uw %1$s-daagse gratis " +"proefperiode van het %2$s plan." #: templates/forms/trial-start.php:28 -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." -msgstr "Voordat we de proefperiode kunnen starten, vragen we je, in overeenstemming met de Wordpress.org-richtlijnen, in te stemmen je gebruikers- en niet-sensitieve site informatie door de %s periodiek te laten verzenden naar %s om te controleren op nieuwe versies en je proefversie te valideren." +#. translators: %s: Link to freemius.com +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." +msgstr "" +"Voordat we de proefperiode kunnen starten, vragen we je, in overeenstemming " +"met de Wordpress.org-richtlijnen, in te stemmen je gebruikers- en " +"niet-sensitieve site informatie door de %s periodiek te laten verzenden " +"naar %s om te controleren op nieuwe versies en je proefversie te valideren." #: templates/forms/user-change.php:26 msgid "By changing the user, you agree to transfer the account ownership to:" @@ -2656,14 +2766,6 @@ msgstr "Premium" msgid "Beta" msgstr "" -#: templates/partials/network-activation.php:32 -msgid "Activate license on all sites in the network." -msgstr "Activeer licentie op alle sites in het netwerk." - -#: templates/partials/network-activation.php:33 -msgid "Apply on all sites in the network." -msgstr "Pas toe op alle sites in het netwerk." - #: templates/partials/network-activation.php:36 msgid "Activate license on all pending sites." msgstr "Activeer licentie op alle in behandeling zijnde sites." @@ -2672,19 +2774,31 @@ msgstr "Activeer licentie op alle in behandeling zijnde sites." msgid "Apply on all pending sites." msgstr "Pas toe op alle in behandeling zijnde sites." -#: templates/partials/network-activation.php45, templates/partials/network-activation.php:79 -msgid "allow" -msgstr "toestaan" - -#: templates/partials/network-activation.php48, templates/partials/network-activation.php:82 -msgid "delegate" +#: templates/partials/network-activation.php:32 +msgid "Activate license on all sites in the network." +msgstr "Activeer licentie op alle sites in het netwerk." + +#: templates/partials/network-activation.php:33 +msgid "Apply on all sites in the network." +msgstr "Pas toe op alle sites in het netwerk." + +#: templates/partials/network-activation.php45, +#: templates/partials/network-activation.php:79 +msgid "allow" +msgstr "toestaan" + +#: templates/partials/network-activation.php48, +#: templates/partials/network-activation.php:82 +msgid "delegate" msgstr "deligeren" -#: templates/partials/network-activation.php52, templates/partials/network-activation.php:86 +#: templates/partials/network-activation.php52, +#: templates/partials/network-activation.php:86 msgid "skip" msgstr "overslaan" -#: templates/plugin-info/description.php72, templates/plugin-info/screenshots.php:31 +#: templates/plugin-info/description.php67, +#: templates/plugin-info/screenshots.php:26 msgid "Click to view full-size screenshot %d" msgstr "Klik voor het op volle-grootte bekijken van schermafbeelding %d" @@ -2696,39 +2810,45 @@ msgstr "Onbeperkte Updates" msgid "Localhost" msgstr "Localhost" -#: templates/account/partials/activate-license-button.php:50 -msgctxt "as 5 licenses left" -msgid "%s left" -msgstr "%s beschikbaar" - #: templates/account/partials/activate-license-button.php:51 msgid "Last license" msgstr "Laatste licentie" +#: templates/account/partials/addon.php:34 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account/partials/addon.php:34 -msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." +msgid "" +"%1$s will immediately stop all future recurring payments and your %s plan " +"license will expire in %s." msgstr "" -#: templates/account/partials/addon.php:190 -msgid "Cancelled" -msgstr "Geannuleerd" - #: templates/account/partials/addon.php:200 msgid "No expiration" msgstr "Geen verloopdatum" -#: templates/account/partials/disconnect-button.php:74 -msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." -msgstr "" +#: templates/account/partials/addon.php:190 +msgid "Cancelled" +msgstr "Geannuleerd" #: templates/account/partials/disconnect-button.php:78 -msgid "Disconnecting the website will permanently remove %s from your User Dashboard's account." +#. translators: %s is replaced with the website's homepage address. +msgid "" +"Disconnecting the website will permanently remove %s from your User " +"Dashboard's account." +msgstr "" + +#: templates/account/partials/disconnect-button.php:74 +msgid "" +"By disconnecting the website, previously shared diagnostic data about %1$s " +"will be deleted and no longer visible to %2$s." msgstr "" #: templates/account/partials/disconnect-button.php:84 -msgid "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." +#. translators: %1$s is replaced by the paid plan name, %2$s is replaced with +#. an anchor link with the text "User Dashboard". +msgid "" +"If you wish to cancel your %1$s plan's subscription instead, please " +"navigate to the %2$s and cancel it there." msgstr "" #: templates/account/partials/disconnect-button.php:88 @@ -2753,7 +2873,9 @@ msgstr "Abonnement" #: templates/forms/deactivation/contact.php:19 msgid "Sorry for the inconvenience and we are here to help if you give us a chance." -msgstr "Sorry voor het ongemak en we zijn er om je te helpen als je daartoe de kans geeft.." +msgstr "" +"Sorry voor het ongemak en we zijn er om je te helpen als je daartoe de kans " +"geeft.." #: templates/forms/deactivation/contact.php:22 msgid "Contact Support" @@ -2771,7 +2893,8 @@ msgstr "" msgid "hours" msgstr "" -#: templates/forms/deactivation/form.php81, templates/forms/deactivation/form.php:86 +#: templates/forms/deactivation/form.php81, +#: templates/forms/deactivation/form.php:86 msgid "days" msgstr "" @@ -2793,7 +2916,9 @@ msgstr "Snelle terugkoppeling" #: templates/forms/deactivation/form.php:134 msgid "If you have a moment, please let us know why you are %s" -msgstr "We zouden het zeer op prijs stellen, als je even hebt, om ons alsjeblieft te laten weten waarom je gaat %s" +msgstr "" +"We zouden het zeer op prijs stellen, als je even hebt, om ons alsjeblieft " +"te laten weten waarom je gaat %s" #: templates/forms/deactivation/form.php:134 msgid "deactivating" @@ -2805,7 +2930,9 @@ msgstr "overschakelen" #: templates/forms/deactivation/form.php:448 msgid "Kindly tell us the reason so we can improve." -msgstr "Wilt je alsjeblieft zo vriendelijk zijn om de reden te vermelden, zodat wij verbeteringen kunnen doorvoeren." +msgstr "" +"Wilt je alsjeblieft zo vriendelijk zijn om de reden te vermelden, zodat wij " +"verbeteringen kunnen doorvoeren." #: templates/forms/deactivation/form.php:478 msgid "Snooze & %s" @@ -2824,5 +2951,457 @@ msgid "Click here to use the plugin anonymously" msgstr "Klik hier om de plug-in anoniem te gebruiken" #: templates/forms/deactivation/retry-skip.php:23 -msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in." -msgstr "Misschien heb je het gemist, maar je hoeft geen gegevens te delen en kunt de opt-in %s." +msgid "" +"You might have missed it, but you don't have to share any data and can just " +"%s the opt-in." +msgstr "" +"Misschien heb je het gemist, maar je hoeft geen gegevens te delen en kunt " +"de opt-in %s." + +#: includes/class-freemius.php4842, includes/class-freemius.php21166, +#: includes/class-freemius.php:24835 +msgctxt "interjection expressing joy or exuberance" +msgid "Yee-haw" +msgstr "Hoera" + +#: includes/class-freemius.php:4856 +msgctxt "addonX cannot run without pluginY" +msgid "%s cannot run without %s." +msgstr "%s werkt niet zonder %s." + +#: includes/class-freemius.php:4857 +msgctxt "addonX cannot run..." +msgid "%s cannot run without the plugin." +msgstr "%s werkt niet zonder de plug-in." + +#: includes/class-freemius.php4859, includes/class-freemius.php6051, +#: includes/class-freemius.php13828, includes/class-freemius.php14567, +#: includes/class-freemius.php18322, includes/class-freemius.php18435, +#: includes/class-freemius.php18612, includes/class-freemius.php20897, +#: includes/class-freemius.php21996, includes/class-freemius.php23012, +#: includes/class-freemius.php23142, includes/class-freemius.php23285, +#: templates/add-ons.php:57 +msgctxt "exclamation" +msgid "Oops" +msgstr "Oeps" + +#: includes/class-freemius.php:24141 +msgctxt "exclamation" +msgid "Hey" +msgstr "Hoi" + +#: includes/class-freemius.php5728, includes/class-freemius.php:7765 +msgctxt "" +"Used to express elation, enthusiasm, or triumph (especially in electronic " +"communication)." +msgid "W00t" +msgstr "W00t" + +#: includes/class-freemius.php:7062 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "a license key" +msgstr "" + +#: includes/class-freemius.php:7056 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "the installation instructions" +msgstr "" + +#: includes/class-freemius.php:7078 +msgctxt "Part of an activation link message." +msgid "Click here" +msgstr "" + +#: includes/class-freemius.php:7085 +msgctxt "" +"Part of the message that tells the user to check their spam folder for a " +"specific email." +msgid "the product's support email address" +msgstr "" + +#: includes/class-freemius.php:7232 +msgctxt "%s - plugin name. As complete \"PluginX\" activation now" +msgid "Complete \"%s\" Activation Now" +msgstr "Voltooi \"%s\" Activatie Nu" + +#: includes/class-freemius.php:19155 +msgctxt "ASCII arrow left icon" +msgid "←" +msgstr "←" + +#: includes/class-freemius.php:19155 +msgctxt "ASCII arrow right icon" +msgid "➤" +msgstr "➤" + +#: includes/class-freemius.php19157, templates/pricing.php:110 +msgctxt "noun" +msgid "Pricing" +msgstr "Prijzen" + +#: includes/fs-plugin-info-dialog.php:1239 +msgctxt "noun" +msgid "Price" +msgstr "Prijs" + +#: includes/class-freemius.php:20392 +msgctxt "a positive response" +msgid "Right on" +msgstr "Toppie" + +#: includes/class-freemius.php21511, includes/class-freemius.php21783, +#: includes/class-freemius.php21836, includes/class-freemius.php:21943 +msgctxt "" +"something somebody says when they are thinking about what you have just " +"said." +msgid "Hmm" +msgstr "Hmm" + +#: includes/class-freemius.php21525, templates/account.php132, +#: templates/add-ons.php250, templates/account/partials/addon.php:51 +msgctxt "trial period" +msgid "Trial" +msgstr "Proefperiode" + +#: includes/class-freemius.php:23247 +msgctxt "as congratulations" +msgid "Congrats" +msgstr "Gefeliciteerd" + +#: includes/class-freemius.php:23512 +msgctxt "advance notice of something that will need attention." +msgid "Heads up" +msgstr "Aankondiging" + +#: includes/class-freemius.php24157, templates/forms/trial-start.php:53 +msgctxt "call to action" +msgid "Start free trial" +msgstr "Start gratis proefperidoe" + +#: includes/fs-plugin-info-dialog.php543, +#: templates/account/partials/addon.php:390 +msgctxt "verb" +msgid "Purchase" +msgstr "Koop" + +#: templates/account.php129, templates/account/partials/addon.php:48 +msgctxt "verb" +msgid "Upgrade" +msgstr "Upgrade" + +#: templates/account.php131, templates/account/partials/addon.php50, +#: templates/account/partials/site.php:320 +msgctxt "verb" +msgid "Downgrade" +msgstr "Downgrade" + +#: templates/account.php684, templates/account/billing.php:21 +msgctxt "verb" +msgid "Edit" +msgstr "Bewerk" + +#: templates/account.php660, templates/account.php923, +#: templates/account/partials/site.php250, +#: templates/account/partials/site.php:272 +msgctxt "verb" +msgid "Show" +msgstr "Toon" + +#: templates/account.php:917 +msgctxt "verb" +msgid "Hide" +msgstr "Verberg" + +#: templates/connect.php360, templates/connect.php690, +#: templates/forms/deactivation/retry-skip.php:20 +msgctxt "verb" +msgid "Skip" +msgstr "Sla Over" + +#: templates/debug.php497, templates/debug.php603, +#: templates/account/partials/addon.php:440 +msgctxt "verb" +msgid "Delete" +msgstr "Verwijder" + +#: templates/account/billing.php:22 +msgctxt "verb" +msgid "Update" +msgstr "Bijwerken" + +#: templates/connect/permissions-group.php31, templates/forms/optout.php26, +#: templates/js/permissions.php:78 +msgctxt "verb" +msgid "Opt Out" +msgstr "Opt Out" + +#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 +msgctxt "verb" +msgid "Opt In" +msgstr "Opt In" + +#: includes/fs-plugin-info-dialog.php:772 +msgctxt "as download latest version" +msgid "Download Latest Free Version" +msgstr "Download Nieuwste Gratis Versie" + +#: includes/fs-plugin-info-dialog.php773, templates/account.php110, +#: templates/add-ons.php37, templates/account/partials/addon.php:30 +msgctxt "as download latest version" +msgid "Download Latest" +msgstr "Download Nieuwste" + +#: includes/fs-plugin-info-dialog.php:999 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "Beschrijving" + +#: includes/fs-plugin-info-dialog.php:1000 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "Installatie" + +#: includes/fs-plugin-info-dialog.php:1001 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "Veelgestelde Vragen" + +#: includes/fs-plugin-info-dialog.php:1003 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "Wijzigingen Log" + +#: includes/fs-plugin-info-dialog.php:1004 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "Reviews" + +#: includes/fs-plugin-info-dialog.php:1005 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "Andere Notities" + +#: includes/fs-plugin-info-dialog.php:1020 +msgctxt "Plugin installer section title" +msgid "Features & Pricing" +msgstr "Features & Prijzen" + +#: includes/fs-plugin-info-dialog.php:1102 +msgctxt "e.g. Professional Plan" +msgid "%s Plan" +msgstr "%s Plan" + +#: includes/fs-plugin-info-dialog.php:1128 +msgctxt "e.g. the best product" +msgid "Best" +msgstr "Beste" + +#: includes/fs-plugin-info-dialog.php1134, +#: includes/fs-plugin-info-dialog.php:1154 +msgctxt "as every month" +msgid "Monthly" +msgstr "Maandelijks" + +#: includes/fs-plugin-info-dialog.php:1137 +msgctxt "as once a year" +msgid "Annual" +msgstr "Jaarlijks" + +#: includes/fs-plugin-info-dialog.php:1156 +msgctxt "as once a year" +msgid "Annually" +msgstr "Jaarlijks" + +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "as once a year" +msgid "Once" +msgstr "Eenmalig" + +#: includes/fs-plugin-info-dialog.php1154, +#: includes/fs-plugin-info-dialog.php1156, +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "e.g. billed monthly" +msgid "Billed %s" +msgstr "%s gefactureerd " + +#: includes/fs-plugin-info-dialog.php1178, +#: templates/plugin-info/features.php:82 +msgctxt "as monthly period" +msgid "mo" +msgstr "mnd" + +#: includes/fs-plugin-info-dialog.php1185, +#: templates/plugin-info/features.php:80 +msgctxt "as annual period" +msgid "year" +msgstr "jaar" + +#: includes/fs-plugin-info-dialog.php1315, templates/account.php121, +#: templates/debug.php232, templates/debug.php269, templates/debug.php518, +#: templates/account/partials/addon.php:41 +msgctxt "product version" +msgid "Version" +msgstr "Versie" + +#: includes/fs-plugin-info-dialog.php:1322 +msgctxt "as the plugin author" +msgid "Author" +msgstr "Auteur" + +#: includes/fs-plugin-info-dialog.php1334, templates/account.php:540 +#. translators: %s: time period (e.g. "2 hours" ago) +msgctxt "x-ago" +msgid "%s ago" +msgstr "%s geleden" + +#: templates/account.php:126 +msgctxt "as synchronize license" +msgid "Sync License" +msgstr "Sync Licentie" + +#: templates/account.php135, templates/debug.php412, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:54 +msgctxt "as product pricing plan" +msgid "Plan" +msgstr "Plan" + +#: templates/account.php370, templates/account/partials/addon.php:345 +msgctxt "as synchronize" +msgid "Sync" +msgstr "Sync" + +#: templates/account.php:440 +msgctxt "as secret encryption key missing" +msgid "No Secret" +msgstr "Geen Geheim" + +#: templates/account.php:788 +msgctxt "as software license" +msgid "License" +msgstr "Licentie" + +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "Activeer" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "" + +#: templates/admin-notice.php17, templates/forms/license-activation.php245, +#: templates/forms/resend-key.php:80 +msgctxt "as close a window" +msgid "Dismiss" +msgstr "Afsluiten" + +#: templates/connect.php:118 +#. translators: %s: name (e.g. Hey John,) +msgctxt "greeting" +msgid "Hey %s," +msgstr "Hoi %s," + +#: templates/connect.php:876 +msgctxt "as in the process of sending an email" +msgid "Sending email" +msgstr "E-mail versturen" + +#: templates/connect.php:877 +msgctxt "as activating plugin" +msgid "Activating" +msgstr "Activeren" + +#: templates/debug.php:17 +msgctxt "as turned off" +msgid "Off" +msgstr "Uit" + +#: templates/debug.php:18 +msgctxt "as turned on" +msgid "On" +msgstr "Aan" + +#: templates/debug.php:28 +msgctxt "as code debugging" +msgid "Debugging" +msgstr "Debugging" + +#: templates/debug.php:228 +msgctxt "as software development kit versions" +msgid "SDK Versions" +msgstr "SDK Versies" + +#: templates/debug.php:271 +msgctxt "as application program interface" +msgid "API" +msgstr "API" + +#: templates/debug.php:323 +msgctxt "as connection was successful" +msgid "Connected" +msgstr "Verbonden" + +#: templates/debug.php:325 +msgctxt "as connection blocked" +msgid "Blocked" +msgstr "Geblokkeerd" + +#: templates/debug.php:326 +msgctxt "API connectivity state is unknown" +msgid "Unknown" +msgstr "" + +#: templates/debug.php:400 +msgctxt "like websites" +msgid "Sites" +msgstr "Sites" + +#: templates/debug.php:632 +msgctxt "as expiration date" +msgid "Expiration" +msgstr "Verloopdatum" + +#: includes/debug/class-fs-debug-bar-panel.php51, +#: templates/debug/api-calls.php54, templates/debug/logger.php:62 +msgctxt "milliseconds" +msgid "ms" +msgstr "ms" + +#: includes/managers/class-fs-clone-manager.php:1319 +msgctxt "Clone resolution admin notice products list label" +msgid "Products" +msgstr "Producten" + +#: includes/managers/class-fs-clone-manager.php:1426 +msgctxt "\"The \", e.g.: \"The plugin\"" +msgid "The %s's" +msgstr "" + +#: templates/debug/api-calls.php:71 +msgctxt "as file/folder path" +msgid "Path" +msgstr "Pad" + +#: templates/debug/plugins-themes-sync.php21, +#: templates/debug/scheduled-crons.php:74 +msgctxt "seconds" +msgid "sec" +msgstr "sec" + +#: templates/forms/email-address-update.php33, +#: templates/forms/user-change.php:81 +msgctxt "close window" +msgid "Dismiss" +msgstr "Afsluiten" + +#: templates/forms/premium-versions-upgrade-handler.php:75 +msgctxt "close a window" +msgid "Dismiss" +msgstr "Afsluiten" + +#: templates/account/partials/activate-license-button.php:50 +msgctxt "as 5 licenses left" +msgid "%s left" +msgstr "%s beschikbaar" diff --git a/languages/freemius-ru_RU.mo b/languages/freemius-ru_RU.mo index c4982fd53ce6acd0b8ef2abfa7568e98c06167b5..781c0edd5a0f5637372614f2a075417a2238fca7 100644 GIT binary patch delta 7375 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 acII2Ysv|1<{yV(6Z|m@=9gRnv9{E2(FEl{_ delta 9495 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 diff --git a/languages/freemius-ru_RU.po b/languages/freemius-ru_RU.po index 86aa6d0d..7cc84701 100644 --- a/languages/freemius-ru_RU.po +++ b/languages/freemius-ru_RU.po @@ -1,875 +1,980 @@ -# Copyright (C) 2023 freemius +# Copyright (C) 2024 freemius # This file is distributed under the same license as the freemius package. # Translators: -# Leo Fajardo , 2021 -# Robert Premmerce , 2018 +# Swashata Ghosh, 2024 +# msgid "" msgstr "" -"Project-Id-Version: WordPress SDK\n" +"Project-Id-Version: freemius\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2023-04-19 18:31+0530\n" -"Last-Translator: Leo Fajardo , 2021\n" -"Language-Team: Russian (Russia) (http://www.transifex.com/freemius/wordpress-sdk/language/ru_RU/)\n" -"Language: ru_RU\n" +"POT-Creation-Date: 2024-01-30 15:42+0000\n" +"Last-Translator: Swashata Ghosh, 2024\n" +"Language-Team: Russian (Russia) " +"(https://app.transifex.com/freemius/teams/184351/ru_RU/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" +"Language: ru_RU\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || " +"(n%100>=11 && n%100<=14)? 2 : 3);\n" "X-Poedit-Basepath: ..\n" -"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" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Generator: Poedit 3.2.2\n" +"X-Poedit-KeywordsList: " +"get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_" +"text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_" +"inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$" +"fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_" +"inline;$this->_parent->get_text_x_inline:1,2c;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;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" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" +"X-Poedit-SourceCharset: UTF-8\n" -#: includes/class-freemius.php1748, templates/account.php:947 -msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." +#: includes/class-freemius.php1781, templates/account.php:943 +msgid "" +"An update to a Beta version will replace your installed version of %s with " +"the latest Beta release - use with caution, and not on production sites. " +"You have been warned." msgstr "" -#: includes/class-freemius.php:1755 +#: includes/class-freemius.php:1788 msgid "Would you like to proceed with the update?" msgstr "" -#: includes/class-freemius.php:1980 -msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." -msgstr "Freemius SDK не удалось найти основной файл плагина. Пожалуйста, свяжитесь с sdk@freemius.com с текущей ошибкой." +#: includes/class-freemius.php:2013 +msgid "" +"Freemius SDK couldn't find the plugin's main file. Please contact " +"sdk@freemius.com with the current error." +msgstr "" +"Freemius SDK не удалось найти основной файл плагина. Пожалуйста, свяжитесь " +"с sdk@freemius.com с текущей ошибкой." -#: includes/class-freemius.php1982, includes/fs-plugin-info-dialog.php:1517 +#: includes/class-freemius.php2015, includes/fs-plugin-info-dialog.php:1513 msgid "Error" msgstr "Ошибка" -#: includes/class-freemius.php:2428 +#: includes/class-freemius.php:2461 msgid "I found a better %s" msgstr "Я нашел лучший %s" -#: includes/class-freemius.php:2430 +#: includes/class-freemius.php:2463 msgid "What's the %s's name?" msgstr "Какое название %s?" -#: includes/class-freemius.php:2436 +#: includes/class-freemius.php:2469 msgid "It's a temporary %s - I'm troubleshooting an issue" msgstr "" -#: includes/class-freemius.php:2438 +#: includes/class-freemius.php:2471 msgid "Deactivation" msgstr "Деактивация" -#: includes/class-freemius.php:2439 +#: includes/class-freemius.php:2472 msgid "Theme Switch" msgstr "Переключатель шаблона " -#: includes/class-freemius.php2448, templates/forms/resend-key.php24, templates/forms/user-change.php:29 +#: includes/class-freemius.php2481, templates/forms/resend-key.php24, +#: templates/forms/user-change.php:29 msgid "Other" msgstr "Другие" -#: includes/class-freemius.php:2456 +#: includes/class-freemius.php:2489 msgid "I no longer need the %s" msgstr "%s больше не понадобится." -#: includes/class-freemius.php:2463 +#: includes/class-freemius.php:2496 msgid "I only needed the %s for a short period" msgstr "%s требовалась на короткое время" -#: includes/class-freemius.php:2469 +#: includes/class-freemius.php:2502 msgid "The %s broke my site" msgstr "%s повредила мой сайт" -#: includes/class-freemius.php:2476 +#: includes/class-freemius.php:2509 msgid "The %s suddenly stopped working" msgstr "%s внезапно перестала работать " -#: includes/class-freemius.php:2486 +#: includes/class-freemius.php:2519 msgid "I can't pay for it anymore" msgstr "Я больше не могу оплачивать это. " -#: includes/class-freemius.php:2488 +#: includes/class-freemius.php:2521 msgid "What price would you feel comfortable paying?" msgstr "Какая стоимость была бы для Вас приемлемой? " -#: includes/class-freemius.php:2494 +#: includes/class-freemius.php:2527 msgid "I don't like to share my information with you" msgstr "Я не хочу делиться личной информацией с Вами" -#: includes/class-freemius.php:2515 +#: includes/class-freemius.php:2548 msgid "The %s didn't work" msgstr "%s не сработала" -#: includes/class-freemius.php:2525 +#: includes/class-freemius.php:2558 msgid "I couldn't understand how to make it work" msgstr "Я не могу понять как сделать так, чтобы оно работало" -#: includes/class-freemius.php:2533 +#: includes/class-freemius.php:2566 msgid "The %s is great, but I need specific feature that you don't support" -msgstr "%s отличная возможность, но мне нужен определенный функционал, который вы не поддерживаете. " +msgstr "" +"%s отличная возможность, но мне нужен определенный функционал, который вы " +"не поддерживаете. " -#: includes/class-freemius.php:2535 +#: includes/class-freemius.php:2568 msgid "What feature?" msgstr "Какой функционал?" -#: includes/class-freemius.php:2539 +#: includes/class-freemius.php:2572 msgid "The %s is not working" msgstr "%s не работает" -#: includes/class-freemius.php:2541 +#: includes/class-freemius.php:2574 msgid "Kindly share what didn't work so we can fix it for future users..." -msgstr "Пожалуйста, сообщите о функционале, который не работает, чтобы мы смогли исправить его для дальнейшего использования. " +msgstr "" +"Пожалуйста, сообщите о функционале, который не работает, чтобы мы смогли " +"исправить его для дальнейшего использования. " -#: includes/class-freemius.php:2545 +#: includes/class-freemius.php:2578 msgid "It's not what I was looking for" msgstr "Это не то, что я искал. " -#: includes/class-freemius.php:2547 +#: includes/class-freemius.php:2580 msgid "What you've been looking for?" msgstr "Что именно Вы ищите? " -#: includes/class-freemius.php:2551 +#: includes/class-freemius.php:2584 msgid "The %s didn't work as expected" msgstr "%s не сработала как ожидалось" -#: includes/class-freemius.php:2553 +#: includes/class-freemius.php:2586 msgid "What did you expect?" msgstr "Каковы были Ваши ожидания? " -#: includes/class-freemius.php3641, templates/debug.php:24 +#: includes/class-freemius.php3685, templates/debug.php:24 msgid "Freemius Debug" msgstr "Исправление ошибок Freemius" -#: includes/class-freemius.php:4755 +#: includes/class-freemius.php:4828 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have purchased a %s license." msgstr "" -#: includes/class-freemius.php:4759 -msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." +#: includes/class-freemius.php:4832 +msgid "" +" The %s's %sdownload link%s, license key, and installation instructions " +"have been sent to %s. If you can't find the email after 5 min, please check " +"your spam box." msgstr "" -#: includes/class-freemius.php4769, includes/class-freemius.php21125, includes/class-freemius.php:24783 -msgctxt "interjection expressing joy or exuberance" -msgid "Yee-haw" -msgstr "Ура!" - -#: includes/class-freemius.php:4783 -msgctxt "addonX cannot run without pluginY" -msgid "%s cannot run without %s." -msgstr "%s не работает без %s." - -#: includes/class-freemius.php:4784 -msgctxt "addonX cannot run..." -msgid "%s cannot run without the plugin." -msgstr "%s не может работать без плагина. " - -#: includes/class-freemius.php4786, includes/class-freemius.php5978, includes/class-freemius.php13730, includes/class-freemius.php14469, includes/class-freemius.php18281, includes/class-freemius.php18394, includes/class-freemius.php18571, includes/class-freemius.php20856, includes/class-freemius.php21955, includes/class-freemius.php22971, -#: includes/class-freemius.php23101, includes/class-freemius.php23231, templates/add-ons.php:57 -msgctxt "exclamation" -msgid "Oops" -msgstr "Упс!" - -#: includes/class-freemius.php:5065 -msgid "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" +#: includes/class-freemius.php:5138 +msgid "" +"There was an unexpected API error while processing your request. Please try " +"again in a few minutes and if it still doesn't work, contact the %s's " +"author with the following:" msgstr "" -#: includes/class-freemius.php:5645 -msgid "Premium %s version was successfully activated." -msgstr "Премиум версия %s была успешно активирована. " - -#: includes/class-freemius.php5657, includes/class-freemius.php:7692 -msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)." -msgid "W00t" -msgstr "Вау!" - -#: includes/class-freemius.php:5672 +#: includes/class-freemius.php:5743 +#. translators: %s: License type (e.g. you have a professional license) msgid "You have a %s license." msgstr "У Вас есть лицензия %s." -#: includes/class-freemius.php:5961 -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." -msgstr "Бесплатный период пользования %s закончился. Этот плагин является премиум продуктом и он был деактивирован автоматически. Если Вы планируете дальнейшее его использование, пожалуйста купите лицензию. " +#: includes/class-freemius.php:5716 +msgid "Premium %s version was successfully activated." +msgstr "Премиум версия %s была успешно активирована. " + +#: includes/class-freemius.php:6034 +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." +msgstr "" +"Бесплатный период пользования %s закончился. Этот плагин является премиум " +"продуктом и он был деактивирован автоматически. Если Вы планируете " +"дальнейшее его использование, пожалуйста купите лицензию. " -#: includes/class-freemius.php:5965 -msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." -msgstr "%s является премиум продуктом. Необходимо купить лицензию перед активацией плагина. " +#: includes/class-freemius.php:6038 +msgid "" +"%s is a premium only add-on. You have to purchase a license first before " +"activating the plugin." +msgstr "" +"%s является премиум продуктом. Необходимо купить лицензию перед активацией " +"плагина. " -#: includes/class-freemius.php5974, templates/add-ons.php186, templates/account/partials/addon.php:386 +#: includes/class-freemius.php6047, templates/add-ons.php186, +#: templates/account/partials/addon.php:386 msgid "More information about %s" msgstr "Больше информации о %s" -#: includes/class-freemius.php:5975 +#: includes/class-freemius.php:6048 msgid "Purchase License" msgstr "Купите лицензию " -#. translators: %3$s: action (e.g.: "start the trial" or "complete the opt- -#. in") -#: includes/class-freemius.php:6971 -msgid "You should receive a confirmation email for %1$s to your mailbox at %2$s. Please make sure you click the button in that email to %3$s." -msgstr "" - -#: includes/class-freemius.php:6974 -msgid "start the trial" -msgstr "Начать тестовый период" - -#: includes/class-freemius.php6975, templates/connect.php:218 -msgid "complete the opt-in" -msgstr "" - -#: includes/class-freemius.php:6977 -msgid "Thanks!" -msgstr "" - +#: includes/class-freemius.php:7053 #. translators: %3$s: What the user is expected to receive via email (e.g.: #. "the installation instructions" or "a license key") -#: includes/class-freemius.php:6980 -msgid "You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 minutes." +msgid "" +"You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 " +"minutes." msgstr "" -#: includes/class-freemius.php:6983 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "the installation instructions" +#: includes/class-freemius.php:7070 +#. translators: %s: activation link (e.g.: Click here) +msgid "%s to activate the license once you get it." msgstr "" -#: includes/class-freemius.php:6989 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "a license key" +#: includes/class-freemius.php:7091 +msgid "" +"If you didn't get the email, try checking your spam folder or search for " +"emails from %4$s." msgstr "" -#: includes/class-freemius.php:6997 -msgid "%s to activate the license once you get it." +#: includes/class-freemius.php:7093 +msgid "Thanks for upgrading." msgstr "" -#: includes/class-freemius.php:7005 -msgctxt "Part of an activation link message." -msgid "Click here" +#: includes/class-freemius.php:7044 +msgid "" +"You should receive a confirmation email for %1$s to your mailbox at %2$s. " +"Please make sure you click the button in that email to %3$s." msgstr "" -#: includes/class-freemius.php:7012 -msgctxt "Part of the message that tells the user to check their spam folder for a specific email." -msgid "the product's support email address" -msgstr "" +#: includes/class-freemius.php:7047 +msgid "start the trial" +msgstr "Начать тестовый период" -#: includes/class-freemius.php:7018 -msgid "If you didn't get the email, try checking your spam folder or search for emails from %4$s." +#: includes/class-freemius.php7048, templates/connect.php:209 +msgid "complete the opt-in" msgstr "" -#: includes/class-freemius.php:7020 -msgid "Thanks for upgrading." +#: includes/class-freemius.php:7050 +msgid "Thanks!" msgstr "" -#: includes/class-freemius.php:7156 +#: includes/class-freemius.php:7229 msgid "You are just one step away - %s" msgstr "Вам осталось совсем немножко %s" -#: includes/class-freemius.php:7159 -msgctxt "%s - plugin name. As complete \"PluginX\" activation now" -msgid "Complete \"%s\" Activation Now" -msgstr "Закончить активацию %s сейчас " - -#: includes/class-freemius.php:7241 +#: includes/class-freemius.php:7314 msgid "We made a few tweaks to the %s, %s" msgstr "Мы усовершенствовали в %s, %s для лучшей работы " -#: includes/class-freemius.php:7245 +#: includes/class-freemius.php:7318 msgid "Opt in to make \"%s\" better!" msgstr "" -#: includes/class-freemius.php:7691 +#: includes/class-freemius.php:7764 msgid "The upgrade of %s was successfully completed." msgstr "Обновление %s было успешно завершено" -#: includes/class-freemius.php10441, includes/class-fs-plugin-updater.php1100, includes/class-fs-plugin-updater.php1315, includes/class-fs-plugin-updater.php1322, templates/auto-installation.php:32 +#: includes/class-freemius.php10527, includes/class-fs-plugin-updater.php1095, +#: includes/class-fs-plugin-updater.php1317, +#: includes/class-fs-plugin-updater.php1310, +#: templates/auto-installation.php:32 msgid "Add-On" msgstr "Функционал плагина " -#: includes/class-freemius.php10443, templates/account.php411, templates/account.php419, templates/debug.php399, templates/debug.php:619 +#: includes/class-freemius.php10529, templates/account.php407, +#: templates/account.php415, templates/debug.php399, templates/debug.php:619 msgid "Plugin" msgstr "Плагин " -#: includes/class-freemius.php10444, templates/account.php412, templates/account.php420, templates/debug.php399, templates/debug.php619, templates/forms/deactivation/form.php:107 +#: includes/class-freemius.php10530, templates/account.php408, +#: templates/account.php416, templates/debug.php399, templates/debug.php619, +#: templates/forms/deactivation/form.php:107 msgid "Theme" msgstr "Шаблон " -#: includes/class-freemius.php:13549 -msgid "An unknown error has occurred while trying to toggle the license's white-label mode." +#: includes/class-freemius.php:13635 +msgid "" +"An unknown error has occurred while trying to toggle the license's " +"white-label mode." msgstr "" -#: includes/class-freemius.php:13563 -msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s." +#: includes/class-freemius.php:13649 +msgid "" +"Your %s license was flagged as white-labeled to hide sensitive information " +"from the WP Admin (e.g. your email, license key, prices, billing address & " +"invoices). If you ever wish to revert it back, you can easily do it through " +"your %s. If this was a mistake you can also %s." msgstr "" -#: includes/class-freemius.php13568, templates/account/partials/disconnect-button.php:84 +#: includes/class-freemius.php13654, +#: templates/account/partials/disconnect-button.php:84 msgid "User Dashboard" msgstr "" -#: includes/class-freemius.php:13569 +#: includes/class-freemius.php:13655 msgid "revert it now" msgstr "" -#: includes/class-freemius.php:13627 +#: includes/class-freemius.php:13713 msgid "An unknown error has occurred while trying to set the user's beta mode." msgstr "" -#: includes/class-freemius.php:13701 +#: includes/class-freemius.php:13799 msgid "Invalid new user ID or email address." msgstr "" -#: includes/class-freemius.php:13731 -msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." -msgstr "Извините, нам не удалось обновить электронный адрес. Другой пользователь с таким же адресом уже был зарегистрирован. " +#: includes/class-freemius.php:13829 +msgid "" +"Sorry, we could not complete the email update. Another user with the same " +"email is already registered." +msgstr "" +"Извините, нам не удалось обновить электронный адрес. Другой пользователь с " +"таким же адресом уже был зарегистрирован. " -#: includes/class-freemius.php:13732 -msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." -msgstr "Если Вы передаете права пользования аккаунтом %s %s нажмите кнопку \" Сменить права использования\"" +#: includes/class-freemius.php:13830 +msgid "" +"If you would like to give up the ownership of the %s's account to %s click " +"the Change Ownership button." +msgstr "" +"Если Вы передаете права пользования аккаунтом %s %s нажмите кнопку \" " +"Сменить права использования\"" -#: includes/class-freemius.php:13739 +#: includes/class-freemius.php:13837 msgid "Change Ownership" msgstr "Сменить владельца лицензии " -#: includes/class-freemius.php:14336 +#: includes/class-freemius.php:14434 msgid "Invalid site details collection." msgstr "" -#: includes/class-freemius.php:14456 -msgid "We couldn't find your email address in the system, are you sure it's the right address?" -msgstr "К сожалению, Ваш почтовый адрес не найден в системе. Вы уверены, что предоставили правильный адрес? " - -#: includes/class-freemius.php:14458 -msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" -msgstr "Активная лицензия выданная на этот электронный адрес не была найдена. Вы уверены, что предоставили правильный электронный адрес?" +#: includes/class-freemius.php:14556 +msgid "" +"We can't see any active licenses associated with that email address, are " +"you sure it's the right address?" +msgstr "" +"Активная лицензия выданная на этот электронный адрес не была найдена. Вы " +"уверены, что предоставили правильный электронный адрес?" -#: includes/class-freemius.php:14756 -msgid "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." +#: includes/class-freemius.php:14554 +msgid "" +"We couldn't find your email address in the system, are you sure it's the " +"right address?" msgstr "" +"К сожалению, Ваш почтовый адрес не найден в системе. Вы уверены, что " +"предоставили правильный адрес? " -#: includes/class-freemius.php14870, templates/forms/premium-versions-upgrade-handler.php:47 -msgid "Buy a license now" +#: includes/class-freemius.php:14860 +msgid "" +"Account is pending activation. Please check your email and click the link " +"to activate your account and then submit the affiliate form again." msgstr "" -#: includes/class-freemius.php14882, templates/forms/premium-versions-upgrade-handler.php:46 +#: includes/class-freemius.php14986, +#: templates/forms/premium-versions-upgrade-handler.php:46 msgid "Renew your license now" msgstr "" -#: includes/class-freemius.php:14886 +#: includes/class-freemius.php14974, +#: templates/forms/premium-versions-upgrade-handler.php:47 +msgid "Buy a license now" +msgstr "" + +#: includes/class-freemius.php:14990 msgid "%s to access version %s security & feature updates, and support." msgstr "" -#: includes/class-freemius.php:17621 +#: includes/class-freemius.php:17662 msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php:17635 -msgid "Your account was successfully activated with the %s plan." -msgstr "Ваша учетная запись была успешно активирована согласно плану %s" - -#: includes/class-freemius.php17645, includes/class-freemius.php:21566 +#: includes/class-freemius.php17686, includes/class-freemius.php:21607 msgid "Your trial has been successfully started." msgstr "Ваш тестовый период успешно начат" -#: includes/class-freemius.php18279, includes/class-freemius.php18392, includes/class-freemius.php:18569 +#: includes/class-freemius.php:17676 +msgid "Your account was successfully activated with the %s plan." +msgstr "Ваша учетная запись была успешно активирована согласно плану %s" + +#: includes/class-freemius.php18320, includes/class-freemius.php18433, +#: includes/class-freemius.php:18610 msgid "Couldn't activate %s." msgstr "Невозможно активировать %s" -#: includes/class-freemius.php18280, includes/class-freemius.php18393, includes/class-freemius.php:18570 +#: includes/class-freemius.php18321, includes/class-freemius.php18434, +#: includes/class-freemius.php:18611 msgid "Please contact us with the following message:" msgstr "Пожалуйста, напишите нам сообщение следующего содержания:" -#: includes/class-freemius.php18389, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php18430, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "" -#: includes/class-freemius.php18931, includes/class-freemius.php:24339 +#: includes/class-freemius.php18972, includes/class-freemius.php:24391 msgid "Upgrade" msgstr "Сделать апгрейд " -#: includes/class-freemius.php:18937 -msgid "Start Trial" -msgstr "Начать тестовый период" - -#: includes/class-freemius.php:18939 +#: includes/class-freemius.php:18980 msgid "Pricing" msgstr "Цены " -#: includes/class-freemius.php19019, includes/class-freemius.php:19021 +#: includes/class-freemius.php:18978 +msgid "Start Trial" +msgstr "Начать тестовый период" + +#: includes/class-freemius.php19060, includes/class-freemius.php:19062 msgid "Affiliation" msgstr "Партнерство " -#: includes/class-freemius.php19049, includes/class-freemius.php19051, templates/account.php264, templates/debug.php:366 +#: includes/class-freemius.php19090, includes/class-freemius.php19092, +#: templates/account.php260, templates/debug.php:366 msgid "Account" msgstr "Личный кабинет" -#: includes/class-freemius.php19065, includes/class-freemius.php19067, includes/customizer/class-fs-customizer-support-section.php:60 +#: includes/class-freemius.php19106, includes/class-freemius.php19108, +#: includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "Контакты " -#: includes/class-freemius.php19078, includes/class-freemius.php19080, includes/class-freemius.php24353, templates/account.php134, templates/account/partials/addon.php:49 +#: includes/class-freemius.php19119, includes/class-freemius.php19121, +#: includes/class-freemius.php24405, templates/account.php130, +#: templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "Настройки плагина " -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow left icon" -msgid "←" -msgstr "" - -#: includes/class-freemius.php:19114 -msgctxt "ASCII arrow right icon" -msgid "➤" -msgstr "" - -#: includes/class-freemius.php19116, templates/pricing.php:110 -msgctxt "noun" -msgid "Pricing" -msgstr "Цены" - -#: includes/class-freemius.php19329, includes/customizer/class-fs-customizer-support-section.php:67 +#: includes/class-freemius.php19370, +#: includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "Форум поддержки " -#: includes/class-freemius.php:20350 +#: includes/class-freemius.php:20391 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "Ваш электронный адрес был успешно подтвержден и Вы просто молодец!" -#: includes/class-freemius.php:20351 -msgctxt "a positive response" -msgid "Right on" -msgstr "Все верно!" - -#: includes/class-freemius.php:20857 +#: includes/class-freemius.php:20898 msgid "seems like the key you entered doesn't match our records." msgstr "" -#: includes/class-freemius.php:20881 -msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." +#: includes/class-freemius.php:20922 +msgid "" +"Debug mode was successfully enabled and will be automatically disabled in " +"60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." msgstr "" -#: includes/class-freemius.php:21116 +#: includes/class-freemius.php:21157 msgid "Your %s Add-on plan was successfully upgraded." msgstr "Ваш %s план был успешно обновлен" -#: includes/class-freemius.php:21118 +#: includes/class-freemius.php:21159 +#. translators: %s:product name, e.g. Facebook add-on was successfully... msgid "%s Add-on was successfully purchased." msgstr "Покупка %s плагина успешно состоялась" -#: includes/class-freemius.php:21121 +#: includes/class-freemius.php:21162 msgid "Download the latest version" msgstr "Скачай последнюю версию" -#: includes/class-freemius.php:21239 -msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." -msgstr "Вероятно один из параметров является неверным. Обновите свой Public Key, Secret Key&User ID и повторите попытку." +#: includes/class-freemius.php:21280 +msgid "" +"It seems like one of the authentication parameters is wrong. Update your " +"Public Key, Secret Key & User ID, and try again." +msgstr "" +"Вероятно один из параметров является неверным. Обновите свой Public Key, " +"Secret Key&User ID и повторите попытку." -#: includes/class-freemius.php21239, includes/class-freemius.php21636, includes/class-freemius.php21737, includes/class-freemius.php:21824 +#: includes/class-freemius.php21280, includes/class-freemius.php21677, +#: includes/class-freemius.php21778, includes/class-freemius.php:21865 msgid "Error received from the server:" msgstr "Ошибка сервера" -#: includes/class-freemius.php21470, includes/class-freemius.php21742, includes/class-freemius.php21795, includes/class-freemius.php:21902 -msgctxt "something somebody says when they are thinking about what you have just said." -msgid "Hmm" -msgstr "Хм..." - -#: includes/class-freemius.php:21483 -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." -msgstr "Вероятно Вы все еще пользуетесь сервисом согласно плану %s. Если Вы обновляли или меняли свой тарифный план, то вероятно существуют какие-то трудности связанные с Вашим программным обеспечением. Извините. " - -#: includes/class-freemius.php21484, templates/account.php136, templates/add-ons.php250, templates/account/partials/addon.php:51 -msgctxt "trial period" -msgid "Trial" -msgstr "Тестовый период" +#: includes/class-freemius.php:21524 +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." +msgstr "" +"Вероятно Вы все еще пользуетесь сервисом согласно плану %s. Если Вы " +"обновляли или меняли свой тарифный план, то вероятно существуют какие-то " +"трудности связанные с Вашим программным обеспечением. Извините. " -#: includes/class-freemius.php:21489 -msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." -msgstr "Я провел апгрейд аккаунта, но при попытке синхронизировать лицензию, мой тарифный план не меняется. " +#: includes/class-freemius.php:21530 +msgid "" +"I have upgraded my account but when I try to Sync the License, the plan " +"remains %s." +msgstr "" +"Я провел апгрейд аккаунта, но при попытке синхронизировать лицензию, мой " +"тарифный план не меняется. " -#: includes/class-freemius.php21493, includes/class-freemius.php:21545 +#: includes/class-freemius.php21534, includes/class-freemius.php:21586 msgid "Please contact us here" msgstr "Пожалуйста, напишите нам сообщение здесь. " -#: includes/class-freemius.php:21515 +#: includes/class-freemius.php:21556 msgid "Your plan was successfully changed to %s." msgstr "Ваш тарифный план был успешно изменен на %s." -#: includes/class-freemius.php:21531 +#: includes/class-freemius.php:21572 msgid "Your license has expired. You can still continue using the free %s forever." -msgstr "Срок действия Вашей лицензии закончился. Вы можете продолжать пользоваться бесплатной версией %s на бессрочной основе." +msgstr "" +"Срок действия Вашей лицензии закончился. Вы можете продолжать пользоваться " +"бесплатной версией %s на бессрочной основе." -#: includes/class-freemius.php:21533 -msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." +#: includes/class-freemius.php:21574 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." msgstr "" -#: includes/class-freemius.php:21541 -msgid "Your license has been cancelled. If you think it's a mistake, please contact support." -msgstr "Ваша лицензия была аннулирована. Если Вы считаете, что это ошибка, пожалуйста свяжитесь с нашей службой поддержки. " +#: includes/class-freemius.php:21582 +msgid "" +"Your license has been cancelled. If you think it's a mistake, please " +"contact support." +msgstr "" +"Ваша лицензия была аннулирована. Если Вы считаете, что это ошибка, " +"пожалуйста свяжитесь с нашей службой поддержки. " -#: includes/class-freemius.php:21554 -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." -msgstr "Срок действия Вашей лицензии закончен. Вы можете продолжать пользоваться всеми возможностями %s продлив Вашу лицензию. Вы также будете получать доступ к обновлениям и поддержке. " +#: includes/class-freemius.php:21595 +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." +msgstr "" +"Срок действия Вашей лицензии закончен. Вы можете продолжать пользоваться " +"всеми возможностями %s продлив Вашу лицензию. Вы также будете получать " +"доступ к обновлениям и поддержке. " -#: includes/class-freemius.php:21580 -msgid "Your free trial has expired. You can still continue using all our free features." +#: includes/class-freemius.php:21621 +msgid "" +"Your free trial has expired. You can still continue using all our free " +"features." msgstr "" -#: includes/class-freemius.php:21582 -msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." +#: includes/class-freemius.php:21623 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; +#. %4$s: 'plugin', 'theme', or 'add-on'. +msgid "" +"Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s " +"without interruptions." msgstr "" -#: includes/class-freemius.php:21628 -msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist the following domains:%2$s" +#: includes/class-freemius.php:21669 +msgid "" +"Your server is blocking the access to Freemius' API, which is crucial for " +"%1$s synchronization. Please contact your host to whitelist the following " +"domains:%2$s" msgstr "" -#: includes/class-freemius.php:21630 +#: includes/class-freemius.php:21671 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21733 +#: includes/class-freemius.php:21774 msgid "It looks like the license could not be activated." msgstr "Вероятно возникли трудности с активацией лицензии. " -#: includes/class-freemius.php:21775 +#: includes/class-freemius.php:21816 msgid "Your license was successfully activated." msgstr "Ваша лицензия была успешно активирована. " -#: includes/class-freemius.php:21799 +#: includes/class-freemius.php:21840 msgid "It looks like your site currently doesn't have an active license." msgstr "Вероятно Ваш сайт не использует активную лицензию сейчас. " -#: includes/class-freemius.php:21823 +#: includes/class-freemius.php:21864 msgid "It looks like the license deactivation failed." msgstr "Вероятно деактивация лицензии не состоялась. " -#: includes/class-freemius.php:21852 +#: includes/class-freemius.php:21893 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21853 +#: includes/class-freemius.php:21894 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "Ваша лицензия была успешно деактивирована и Вы снова пользуетесь планом %s." -#: includes/class-freemius.php:21856 +#: includes/class-freemius.php:21897 msgid "O.K" msgstr "O.K." -#: includes/class-freemius.php:21909 -msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." +#: includes/class-freemius.php:21950 +msgid "" +"Seems like we are having some temporary issue with your subscription " +"cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:21918 -msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." +#: includes/class-freemius.php:21959 +msgid "" +"Your subscription was successfully cancelled. Your %s plan license will " +"expire in %s." msgstr "" -#: includes/class-freemius.php:21960 +#: includes/class-freemius.php:22001 msgid "You are already running the %s in a trial mode." msgstr "Вы уже пользуетесь тестовой версией %s " -#: includes/class-freemius.php:21971 +#: includes/class-freemius.php:22012 msgid "You already utilized a trial before." msgstr "Вы уже использовали Ваш тестовый период" -#: includes/class-freemius.php:21985 +#: includes/class-freemius.php:22048 +msgid "None of the %s's plans supports a trial period." +msgstr "Тарифные планы %s не предусматривают тестовый период. " + +#: includes/class-freemius.php:22026 msgid "Plan %s do not exist, therefore, can't start a trial." -msgstr "Тарифного плана %s не существует, поэтому Вы не можете начать тестовый период. " +msgstr "" +"Тарифного плана %s не существует, поэтому Вы не можете начать тестовый " +"период. " -#: includes/class-freemius.php:21996 +#: includes/class-freemius.php:22037 msgid "Plan %s does not support a trial period." msgstr "Тарифный план %s не предусматривает тестового периода. " -#: includes/class-freemius.php:22007 -msgid "None of the %s's plans supports a trial period." -msgstr "Тарифные планы %s не предусматривают тестовый период. " - -#: includes/class-freemius.php:22056 -msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" +#: includes/class-freemius.php:22097 +msgid "" +"It looks like you are not in trial mode anymore so there's nothing to " +"cancel :)" msgstr "Возможно, Ваш тестовый период уже закончился. " -#: includes/class-freemius.php:22092 -msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." -msgstr "К сожалению у нас возникли трудности с отменой Вашего тестового периода. Пожалуйста, повторите попытку через несколько минут." +#: includes/class-freemius.php:22133 +msgid "" +"Seems like we are having some temporary issue with your trial cancellation. " +"Please try again in few minutes." +msgstr "" +"К сожалению у нас возникли трудности с отменой Вашего тестового периода. " +"Пожалуйста, повторите попытку через несколько минут." -#: includes/class-freemius.php:22111 +#: includes/class-freemius.php:22152 msgid "Your %s free trial was successfully cancelled." msgstr "Ваш бесплатный тестовый период был успешно отменен. " -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22496 +msgid "Seems like you got the latest release." +msgstr "Вероятно, Вы пользуетесь последней версией" + +#: includes/class-freemius.php:22497 +msgid "You are all good!" +msgstr "Все прошло хорошо!" + +#: includes/class-freemius.php:22479 msgid "Version %s was released." msgstr "Релиз версии %s состоялся. " -#: includes/class-freemius.php:22438 +#: includes/class-freemius.php:22479 msgid "Please download %s." msgstr "Пожалуйста, скачайте %s" -#: includes/class-freemius.php:22445 +#: includes/class-freemius.php:22486 msgid "the latest %s version here" msgstr "Последняя версия %s здесь" -#: includes/class-freemius.php:22450 +#: includes/class-freemius.php:22491 msgid "New" msgstr "Новое " -#: includes/class-freemius.php:22455 -msgid "Seems like you got the latest release." -msgstr "Вероятно, Вы пользуетесь последней версией" - -#: includes/class-freemius.php:22456 -msgid "You are all good!" -msgstr "Все прошло хорошо!" - -#: includes/class-freemius.php:22859 -msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." -msgstr "Письмо подтверждение было только что отправлено на %s. Если Вы не получите его через 5 минут, пожалуйста, проверьте папку спам." +#: includes/class-freemius.php:22900 +msgid "" +"Verification mail was just sent to %s. If you can't find it after 5 min, " +"please check your spam box." +msgstr "" +"Письмо подтверждение было только что отправлено на %s. Если Вы не получите " +"его через 5 минут, пожалуйста, проверьте папку спам." -#: includes/class-freemius.php:22999 +#: includes/class-freemius.php:23040 msgid "Site successfully opted in." msgstr "" -#: includes/class-freemius.php23000, includes/class-freemius.php:24049 +#: includes/class-freemius.php23041, includes/class-freemius.php:24101 msgid "Awesome" msgstr "Отлично!" -#: includes/class-freemius.php:23016 -msgid "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." +#: includes/class-freemius.php:23067 +msgid "Diagnostic data will no longer be sent from %s to %s." msgstr "" -#: includes/class-freemius.php:23017 -msgid "Thank you!" +#: includes/class-freemius.php:23057 +msgid "" +"Sharing diagnostic data with %s helps to provide functionality that's more " +"relevant to your website, avoid WordPress or PHP version incompatibilities " +"that can break your website, and recognize which languages & regions the " +"plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23026 -msgid "Diagnostic data will no longer be sent from %s to %s." +#: includes/class-freemius.php:23058 +msgid "Thank you!" msgstr "" -#: includes/class-freemius.php:23181 -msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." +#: includes/class-freemius.php:23227 +msgid "" +"A confirmation email was just sent to %s. You must confirm the update " +"within the next 4 hours. If you cannot find the email, please check your " +"spam folder." msgstr "" -#: includes/class-freemius.php:23183 -msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." +#: includes/class-freemius.php:23225 +msgid "" +"A confirmation email was just sent to %s. The email owner must confirm the " +"update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23190 -msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." -msgstr "Спасибо, что подтвердили изменение прав использования. Вам отправлено письмо на %s для окончательного подтверждения. " +#: includes/class-freemius.php:23239 +msgid "" +"Thanks for confirming the ownership change. An email was just sent to %s " +"for final approval." +msgstr "" +"Спасибо, что подтвердили изменение прав использования. Вам отправлено " +"письмо на %s для окончательного подтверждения. " -#: includes/class-freemius.php:23195 +#: includes/class-freemius.php:23245 msgid "%s is the new owner of the account." msgstr "%я является новым владельцем аккаунта" -#: includes/class-freemius.php:23197 -msgctxt "as congratulations" -msgid "Congrats" -msgstr "Поздравления! " +#: includes/class-freemius.php:23269 +msgid "Your name was successfully updated." +msgstr "Ваше имя было успешно обновлено" -#: includes/class-freemius.php:23214 +#: includes/class-freemius.php:23264 msgid "Please provide your full name." msgstr "Пожалуйста, введите Ваше полное имя" -#: includes/class-freemius.php:23219 -msgid "Your name was successfully updated." -msgstr "Ваше имя было успешно обновлено" - -#: includes/class-freemius.php:23280 +#: includes/class-freemius.php:23334 +#. translators: %s: User's account property (e.g. email address, name) msgid "You have successfully updated your %s." msgstr "Вы успешно обновили Ваш %s" -#: includes/class-freemius.php:23339 -msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." +#: includes/class-freemius.php:23398 +msgid "" +"Is this your client's site? %s if you wish to hide sensitive info like your " +"email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23401 msgid "Click here" msgstr "" -#: includes/class-freemius.php23379, includes/class-freemius.php:23376 +#: includes/class-freemius.php:23438 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23459 -msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." -msgstr "Сообщаем, что информация о дополнительных настройках %s предоставляется со стороннего сервера. " - -#: includes/class-freemius.php:23460 -msgctxt "advance notice of something that will need attention." -msgid "Heads up" -msgstr "Внимание!" - -#: includes/class-freemius.php:24089 -msgctxt "exclamation" -msgid "Hey" -msgstr "Привет!" +#: includes/class-freemius.php:23511 +msgid "" +"Just letting you know that the add-ons information of %s is being pulled " +"from an external server." +msgstr "" +"Сообщаем, что информация о дополнительных настройках %s предоставляется со " +"стороннего сервера. " -#: includes/class-freemius.php:24089 -msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." -msgstr "Тебе нравится пользоваться %s? Воспользуйся всеми нашими премиум возможностями на протяжении %d - дневного тестового периода. " +#: includes/class-freemius.php:24141 +msgid "" +"How do you like %s so far? Test all our %s premium features with a %d-day " +"free trial." +msgstr "" +"Тебе нравится пользоваться %s? Воспользуйся всеми нашими премиум " +"возможностями на протяжении %d - дневного тестового периода. " -#: includes/class-freemius.php:24097 +#: includes/class-freemius.php:24149 msgid "No commitment for %s days - cancel anytime!" msgstr "Бесплатное пользование на протяжении %s дней. Отмена в любое время. " -#: includes/class-freemius.php:24098 +#: includes/class-freemius.php:24150 msgid "No credit card required" msgstr "Не требуются данные платежной карты" -#: includes/class-freemius.php24105, templates/forms/trial-start.php:53 -msgctxt "call to action" -msgid "Start free trial" -msgstr "Начни тестовый период!" - -#: includes/class-freemius.php:24182 -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!" -msgstr "Привет! Знали ли Вы, что %s предоставляет реферальную программу? Если Вам нравится %s, Вы можете стать нашим представителем и зарабатывать!" +#: includes/class-freemius.php:24234 +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!" +msgstr "" +"Привет! Знали ли Вы, что %s предоставляет реферальную программу? Если Вам " +"нравится %s, Вы можете стать нашим представителем и зарабатывать!" -#: includes/class-freemius.php:24191 +#: includes/class-freemius.php:24243 msgid "Learn more" msgstr "Узнать больше" -#: includes/class-freemius.php24377, templates/account.php573, templates/account.php725, templates/connect.php221, templates/connect.php447, includes/managers/class-fs-clone-manager.php1295, templates/forms/license-activation.php27, templates/account/partials/addon.php:326 +#: includes/class-freemius.php24429, templates/account.php569, +#: templates/account.php721, templates/connect.php212, +#: templates/connect.php440, includes/managers/class-fs-clone-manager.php1295, +#: templates/forms/license-activation.php27, +#: templates/account/partials/addon.php:326 msgid "Activate License" msgstr "Активировать лицензию" -#: includes/class-freemius.php24378, templates/account.php667, templates/account.php724, templates/account/partials/addon.php327, templates/account/partials/site.php:273 +#: includes/class-freemius.php24430, templates/account.php663, +#: templates/account.php720, templates/account/partials/addon.php327, +#: templates/account/partials/site.php:273 msgid "Change License" msgstr "Изменить лицензию " -#: includes/class-freemius.php24485, templates/account/partials/site.php:170 -msgid "Opt Out" -msgstr "Отказаться от использования" - -#: includes/class-freemius.php24487, includes/class-freemius.php24493, templates/account/partials/site.php49, templates/account/partials/site.php:170 +#: includes/class-freemius.php24545, includes/class-freemius.php24539, +#: templates/account/partials/site.php49, +#: templates/account/partials/site.php:170 msgid "Opt In" msgstr "Присоединиться" -#: includes/class-freemius.php:24728 -msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -msgstr "" - -#: includes/class-freemius.php:24738 -msgid "Activate %s features" -msgstr "" +#: includes/class-freemius.php24537, templates/account/partials/site.php:170 +msgid "Opt Out" +msgstr "Отказаться от использования" -#: includes/class-freemius.php:24751 +#: includes/class-freemius.php:24803 msgid "Please follow these steps to complete the upgrade" msgstr "Пожалуйста, пройдите эти шаги для того, чтобы произвести апгрейд" -#: includes/class-freemius.php:24755 +#: includes/class-freemius.php:24807 +#. translators: %s: Plan title msgid "Download the latest %s version" msgstr "Скачайте последнюю версию %s" -#: includes/class-freemius.php:24759 +#: includes/class-freemius.php:24811 msgid "Upload and activate the downloaded version" msgstr "Загрузите и активируйте скачанную версию" -#: includes/class-freemius.php:24761 +#: includes/class-freemius.php:24813 msgid "How to upload and activate?" msgstr "Как загрузить и активировать?" -#: includes/class-freemius.php:24796 +#: includes/class-freemius.php:24780 +msgid "" +" The paid version of %1$s is already installed. Please activate it to start " +"benefiting the %2$s features. %3$s" +msgstr "" + +#: includes/class-freemius.php:24790 +msgid "Activate %s features" +msgstr "" + +#: includes/class-freemius.php:24848 msgid "Your plan was successfully upgraded." msgstr "Ваш тарифный план был успешно изменен. " -#: includes/class-freemius.php:24797 +#: includes/class-freemius.php:24849 msgid "Your plan was successfully activated." msgstr "" -#: includes/class-freemius.php:24927 -msgid "%sClick here%s to choose the sites where you'd like to activate the license on." +#: includes/class-freemius.php:24979 +msgid "" +"%sClick here%s to choose the sites where you'd like to activate the license " +"on." msgstr "" -#: includes/class-freemius.php:25096 +#: includes/class-freemius.php:25148 msgid "Auto installation only works for opted-in users." msgstr "Авто установка работает только для зарегистрированных пользователей." -#: includes/class-freemius.php25106, includes/class-freemius.php25139, includes/class-fs-plugin-updater.php1294, includes/class-fs-plugin-updater.php:1308 +#: includes/class-freemius.php25158, includes/class-freemius.php25191, +#: includes/class-fs-plugin-updater.php1289, +#: includes/class-fs-plugin-updater.php:1303 msgid "Invalid module ID." msgstr "Неверный ID модуля" -#: includes/class-freemius.php25115, includes/class-fs-plugin-updater.php:1330 +#: includes/class-freemius.php25199, includes/class-fs-plugin-updater.php:1324 +msgid "Premium add-on version already installed." +msgstr "Премиум версия плагина была установлена" + +#: includes/class-freemius.php25167, includes/class-fs-plugin-updater.php:1325 msgid "Premium version already active." msgstr "Премиум версия уже активирована" -#: includes/class-freemius.php:25122 +#: includes/class-freemius.php:25174 msgid "You do not have a valid license to access the premium version." msgstr "У Вас нет необходимых лицензионных прав для пользования премиум версией" -#: includes/class-freemius.php:25129 -msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." -msgstr "Плагин является 'Serviсeware'. Это означает, что он не имеет премиум версию кода. " - -#: includes/class-freemius.php25147, includes/class-fs-plugin-updater.php:1329 -msgid "Premium add-on version already installed." -msgstr "Премиум версия плагина была установлена" +#: includes/class-freemius.php:25181 +msgid "" +"Plugin is a \"Serviceware\" which means it does not have a premium code " +"version." +msgstr "" +"Плагин является 'Serviсeware'. Это означает, что он не имеет премиум версию " +"кода. " -#: includes/class-freemius.php:25501 +#: includes/class-freemius.php:25559 msgid "View paid features" msgstr "Просмотр платных возможностей" -#: includes/class-freemius.php:25805 -msgid "Thank you so much for using %s and its add-ons!" +#: includes/class-freemius.php:25874 +msgid "Thank you so much for using our products!" msgstr "" -#: includes/class-freemius.php:25806 -msgid "Thank you so much for using %s!" +#: includes/class-freemius.php:25875 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving them." msgstr "" -#: includes/class-freemius.php:25812 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." +#: includes/class-freemius.php:25894 +msgid "%s and its add-ons" msgstr "" -#: includes/class-freemius.php:25816 -msgid "Thank you so much for using our products!" +#: includes/class-freemius.php:25903 +msgid "Products" msgstr "" -#: includes/class-freemius.php:25817 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." +#: includes/class-freemius.php:25863 +msgid "Thank you so much for using %s and its add-ons!" msgstr "" -#: includes/class-freemius.php:25836 -msgid "%s and its add-ons" +#: includes/class-freemius.php:25864 +msgid "Thank you so much for using %s!" msgstr "" -#: includes/class-freemius.php:25845 -msgid "Products" +#: includes/class-freemius.php:25870 +msgid "" +"You've already opted-in to our usage-tracking, which helps us keep " +"improving the %s." msgstr "" -#: includes/class-freemius.php25852, templates/connect.php:322 +#: includes/class-freemius.php25910, templates/connect.php:313 msgid "Yes" msgstr "" -#: includes/class-freemius.php25853, templates/connect.php:323 +#: includes/class-freemius.php25911, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "" -#: includes/class-freemius.php25854, templates/connect.php:328 +#: includes/class-freemius.php25912, templates/connect.php:319 msgid "No" msgstr "" -#: includes/class-freemius.php25856, templates/connect.php:330 -msgid "do %sNOT%s send me security & feature updates, educational content and offers." +#: includes/class-freemius.php25914, templates/connect.php:321 +msgid "" +"do %sNOT%s send me security & feature updates, educational content and " +"offers." msgstr "" -#: includes/class-freemius.php:25866 -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 :-)" +#: includes/class-freemius.php:25924 +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 :-)" msgstr "" -#: includes/class-freemius.php25868, templates/connect.php:337 -msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" +#: includes/class-freemius.php25926, templates/connect.php:328 +msgid "" +"Please let us know if you'd like us to contact you for security & feature " +"updates, educational content, and occasional offers:" msgstr "" -#: includes/class-freemius.php:26158 +#: includes/class-freemius.php:26216 msgid "License key is empty." msgstr "" -#: includes/class-fs-plugin-updater.php210, templates/forms/premium-versions-upgrade-handler.php:57 +#: includes/class-fs-plugin-updater.php210, +#: templates/forms/premium-versions-upgrade-handler.php:57 msgid "Renew license" msgstr "" -#: includes/class-fs-plugin-updater.php215, templates/forms/premium-versions-upgrade-handler.php:58 +#: includes/class-fs-plugin-updater.php215, +#: templates/forms/premium-versions-upgrade-handler.php:58 msgid "Buy license" msgstr "" -#: includes/class-fs-plugin-updater.php335, includes/class-fs-plugin-updater.php:368 +#: includes/class-fs-plugin-updater.php368, +#: includes/class-fs-plugin-updater.php:335 msgid "There is a %s of %s available." msgstr "" -#: includes/class-fs-plugin-updater.php337, includes/class-fs-plugin-updater.php:373 +#: includes/class-fs-plugin-updater.php373, +#: includes/class-fs-plugin-updater.php:337 msgid "new Beta version" msgstr "" -#: includes/class-fs-plugin-updater.php338, includes/class-fs-plugin-updater.php:374 +#: includes/class-fs-plugin-updater.php374, +#: includes/class-fs-plugin-updater.php:338 msgid "new version" msgstr "" @@ -877,605 +982,523 @@ msgstr "" msgid "Important Upgrade Notice:" msgstr "" -#: includes/class-fs-plugin-updater.php:1359 +#: includes/class-fs-plugin-updater.php:1354 msgid "Installing plugin: %s" msgstr "Установка плагина: %s" -#: includes/class-fs-plugin-updater.php:1400 +#: includes/class-fs-plugin-updater.php:1395 msgid "Unable to connect to the filesystem. Please confirm your credentials." -msgstr "Невозможно присоединиться к системе файлов. Пожалуйста, подтвердите свои данные. " +msgstr "" +"Невозможно присоединиться к системе файлов. Пожалуйста, подтвердите свои " +"данные. " -#: includes/class-fs-plugin-updater.php:1582 -msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." -msgstr "Удаленный пакет плагинов не содержит папку с нужным описанием URL и смена имени не срабатывает. " +#: includes/class-fs-plugin-updater.php:1577 +msgid "" +"The remote plugin package does not contain a folder with the desired slug " +"and renaming did not work." +msgstr "" +"Удаленный пакет плагинов не содержит папку с нужным описанием URL и смена " +"имени не срабатывает. " #: includes/fs-plugin-info-dialog.php:542 msgid "Purchase More" msgstr "" -#: includes/fs-plugin-info-dialog.php543, templates/account/partials/addon.php:390 -msgctxt "verb" -msgid "Purchase" -msgstr "Купить" - #: includes/fs-plugin-info-dialog.php:547 +#. translators: %s: N-days trial msgid "Start my free %s" msgstr "Начать мой бесплатный %s" -#: includes/fs-plugin-info-dialog.php:745 -msgid "Install Free Version Update Now" -msgstr "" - -#: includes/fs-plugin-info-dialog.php746, templates/account.php:656 -msgid "Install Update Now" -msgstr "Провести обновления сейчас " - #: includes/fs-plugin-info-dialog.php:755 msgid "Install Free Version Now" msgstr "" -#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, templates/auto-installation.php111, templates/account/partials/addon.php370, templates/account/partials/addon.php:423 +#: includes/fs-plugin-info-dialog.php756, templates/add-ons.php323, +#: templates/auto-installation.php111, +#: templates/account/partials/addon.php423, +#: templates/account/partials/addon.php:370 msgid "Install Now" msgstr "Установить сейчас " -#: includes/fs-plugin-info-dialog.php:772 -msgctxt "as download latest version" -msgid "Download Latest Free Version" +#: includes/fs-plugin-info-dialog.php:745 +msgid "Install Free Version Update Now" msgstr "" -#: includes/fs-plugin-info-dialog.php773, templates/account.php114, templates/add-ons.php37, templates/account/partials/addon.php:30 -msgctxt "as download latest version" -msgid "Download Latest" -msgstr "Скачать последнюю версию" +#: includes/fs-plugin-info-dialog.php746, templates/account.php:652 +msgid "Install Update Now" +msgstr "Провести обновления сейчас " -#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, templates/account/partials/addon.php361, templates/account/partials/addon.php:417 +#: includes/fs-plugin-info-dialog.php788, templates/add-ons.php329, +#: templates/account/partials/addon.php417, +#: templates/account/partials/addon.php:361 msgid "Activate this add-on" msgstr "Активируйте этот функционал " -#: includes/fs-plugin-info-dialog.php790, templates/connect.php:444 +#: includes/fs-plugin-info-dialog.php790, templates/connect.php:437 msgid "Activate Free Version" msgstr "Активировать бесплатную версию?" -#: includes/fs-plugin-info-dialog.php791, templates/account.php138, templates/add-ons.php330, templates/account/partials/addon.php:53 +#: includes/fs-plugin-info-dialog.php791, templates/account.php134, +#: templates/add-ons.php330, templates/account/partials/addon.php:53 msgid "Activate" msgstr "Активировать " -#: includes/fs-plugin-info-dialog.php:1003 -msgctxt "Plugin installer section title" -msgid "Description" -msgstr "Описание " - -#: includes/fs-plugin-info-dialog.php:1004 -msgctxt "Plugin installer section title" -msgid "Installation" -msgstr "Установка " - -#: includes/fs-plugin-info-dialog.php:1005 -msgctxt "Plugin installer section title" -msgid "FAQ" -msgstr "Часто задаваемые вопросы " - -#: includes/fs-plugin-info-dialog.php1006, templates/plugin-info/description.php:55 +#: includes/fs-plugin-info-dialog.php1002, +#: templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "Снимки экрана " -#: includes/fs-plugin-info-dialog.php:1007 -msgctxt "Plugin installer section title" -msgid "Changelog" -msgstr "Журнал изменений " - -#: includes/fs-plugin-info-dialog.php:1008 -msgctxt "Plugin installer section title" -msgid "Reviews" -msgstr "Отзывы " - -#: includes/fs-plugin-info-dialog.php:1009 -msgctxt "Plugin installer section title" -msgid "Other Notes" -msgstr "Другие заметки " - -#: includes/fs-plugin-info-dialog.php:1024 -msgctxt "Plugin installer section title" -msgid "Features & Pricing" -msgstr "Функционал&тарифные планы " - -#: includes/fs-plugin-info-dialog.php:1034 +#: includes/fs-plugin-info-dialog.php:1030 msgid "Plugin Install" msgstr "Установка плагина " -#: includes/fs-plugin-info-dialog.php:1106 -msgctxt "e.g. Professional Plan" -msgid "%s Plan" -msgstr "%s план " - -#: includes/fs-plugin-info-dialog.php:1132 -msgctxt "e.g. the best product" -msgid "Best" -msgstr "Лучший " - -#: includes/fs-plugin-info-dialog.php1138, includes/fs-plugin-info-dialog.php:1158 -msgctxt "as every month" -msgid "Monthly" -msgstr "Помесячно " - -#: includes/fs-plugin-info-dialog.php:1141 -msgctxt "as once a year" -msgid "Annual" -msgstr "Ежегодно " - -#: includes/fs-plugin-info-dialog.php:1144 +#: includes/fs-plugin-info-dialog.php:1140 msgid "Lifetime" msgstr "На бессрочный период " -#: includes/fs-plugin-info-dialog.php1158, includes/fs-plugin-info-dialog.php1160, includes/fs-plugin-info-dialog.php:1162 -msgctxt "e.g. billed monthly" -msgid "Billed %s" -msgstr "Оплачивать %s" - -#: includes/fs-plugin-info-dialog.php:1160 -msgctxt "as once a year" -msgid "Annually" -msgstr "Один раз в год " - -#: includes/fs-plugin-info-dialog.php:1162 -msgctxt "as once a year" -msgid "Once" -msgstr "Один раз " - -#: includes/fs-plugin-info-dialog.php:1168 +#: includes/fs-plugin-info-dialog.php:1164 msgid "Single Site License" msgstr "Лицензия на один сайт " -#: includes/fs-plugin-info-dialog.php:1170 +#: includes/fs-plugin-info-dialog.php:1166 msgid "Unlimited Licenses" msgstr "Неограниченная лицензия " -#: includes/fs-plugin-info-dialog.php:1172 +#: includes/fs-plugin-info-dialog.php:1168 msgid "Up to %s Sites" msgstr "до %s сайтов " -#: includes/fs-plugin-info-dialog.php1182, templates/plugin-info/features.php:82 -msgctxt "as monthly period" -msgid "mo" -msgstr "на один месяц" - -#: includes/fs-plugin-info-dialog.php1189, templates/plugin-info/features.php:80 -msgctxt "as annual period" -msgid "year" -msgstr "на один год " - -#: includes/fs-plugin-info-dialog.php:1243 -msgctxt "noun" -msgid "Price" -msgstr "Стоимость " - -#: includes/fs-plugin-info-dialog.php:1291 +#: includes/fs-plugin-info-dialog.php:1287 +#. translators: %s: Discount (e.g. discount of $5 or 10%) msgid "Save %s" msgstr "Экономия %s" -#: includes/fs-plugin-info-dialog.php:1301 +#: includes/fs-plugin-info-dialog.php:1297 msgid "No commitment for %s - cancel anytime" msgstr "Без обязательств платить %s - аннулируй пользование в любое время " -#: includes/fs-plugin-info-dialog.php:1304 +#: includes/fs-plugin-info-dialog.php:1300 msgid "After your free %s, pay as little as %s" msgstr "После окончания Вашего бесплатного %s, платите всего лиш %s" -#: includes/fs-plugin-info-dialog.php:1315 +#: includes/fs-plugin-info-dialog.php:1311 msgid "Details" msgstr "Детальней" -#: includes/fs-plugin-info-dialog.php1319, templates/account.php125, templates/debug.php232, templates/debug.php269, templates/debug.php518, templates/account/partials/addon.php:41 -msgctxt "product version" -msgid "Version" -msgstr "Версия " - -#: includes/fs-plugin-info-dialog.php:1326 -msgctxt "as the plugin author" -msgid "Author" -msgstr "Автор" - -#: includes/fs-plugin-info-dialog.php:1333 +#: includes/fs-plugin-info-dialog.php:1329 msgid "Last Updated" msgstr "Последнее обновление " -#: includes/fs-plugin-info-dialog.php1338, templates/account.php:544 -msgctxt "x-ago" -msgid "%s ago" -msgstr "%s тому назад " - -#: includes/fs-plugin-info-dialog.php:1347 +#: includes/fs-plugin-info-dialog.php:1343 msgid "Requires WordPress Version" msgstr "Необходима версия WordPress " -#: includes/fs-plugin-info-dialog.php1350, includes/fs-plugin-info-dialog.php:1370 +#: includes/fs-plugin-info-dialog.php1346, +#: includes/fs-plugin-info-dialog.php:1366 +#. translators: %s: Version number. msgid "%s or higher" msgstr "%s или выше" -#: includes/fs-plugin-info-dialog.php:1358 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Compatible up to" msgstr "Совместима с " -#: includes/fs-plugin-info-dialog.php:1366 +#: includes/fs-plugin-info-dialog.php:1362 msgid "Requires PHP Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:1379 +#: includes/fs-plugin-info-dialog.php:1375 msgid "Downloaded" msgstr "Загружен " -#: includes/fs-plugin-info-dialog.php:1383 +#: includes/fs-plugin-info-dialog.php:1379 +#. translators: %s: 1 or One (Number of times downloaded) msgid "%s time" msgstr "%s время " -#: includes/fs-plugin-info-dialog.php:1385 +#: includes/fs-plugin-info-dialog.php:1381 +#. translators: %s: Number of times downloaded msgid "%s times" msgstr "%s раз " -#: includes/fs-plugin-info-dialog.php:1396 +#: includes/fs-plugin-info-dialog.php:1392 msgid "WordPress.org Plugin Page" msgstr "Страница плагинов WordPress.org" -#: includes/fs-plugin-info-dialog.php:1405 +#: includes/fs-plugin-info-dialog.php:1401 msgid "Plugin Homepage" msgstr "Главная страница плагина " -#: includes/fs-plugin-info-dialog.php1414, includes/fs-plugin-info-dialog.php:1498 +#: includes/fs-plugin-info-dialog.php1410, +#: includes/fs-plugin-info-dialog.php:1494 msgid "Donate to this plugin" msgstr "Инвестировать в разработку плагина " -#: includes/fs-plugin-info-dialog.php:1421 +#: includes/fs-plugin-info-dialog.php:1417 msgid "Average Rating" msgstr "Средний рейтинг " -#: includes/fs-plugin-info-dialog.php:1428 +#: includes/fs-plugin-info-dialog.php:1424 msgid "based on %s" msgstr "Основан на %s" -#: includes/fs-plugin-info-dialog.php:1432 +#: includes/fs-plugin-info-dialog.php:1428 +#. translators: %s: 1 or One msgid "%s rating" msgstr "%s оценка " -#: includes/fs-plugin-info-dialog.php:1434 +#: includes/fs-plugin-info-dialog.php:1430 +#. translators: %s: Number larger than 1 msgid "%s ratings" msgstr "%s оценки " -#: includes/fs-plugin-info-dialog.php:1449 +#: includes/fs-plugin-info-dialog.php:1445 +#. translators: %s: 1 or One msgid "%s star" msgstr "%звездочка " -#: includes/fs-plugin-info-dialog.php:1451 +#: includes/fs-plugin-info-dialog.php:1447 +#. translators: %s: Number larger than 1 msgid "%s stars" msgstr "%s звездочки " -#: includes/fs-plugin-info-dialog.php:1463 +#: includes/fs-plugin-info-dialog.php:1459 +#. translators: %s: # of stars (e.g. 5 stars) msgid "Click to see reviews that provided a rating of %s" msgstr "Нажмите, чтобы посмотреть отзывы, которые сформировали рейтинг %s" -#: includes/fs-plugin-info-dialog.php:1476 +#: includes/fs-plugin-info-dialog.php:1472 msgid "Contributors" msgstr "Контрибьюторы " -#: includes/fs-plugin-info-dialog.php:1517 +#: includes/fs-plugin-info-dialog.php:1513 msgid "This plugin requires a newer version of PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php:1526 -msgid "Click here to learn more about updating PHP." +#: includes/fs-plugin-info-dialog.php:1522 +#. translators: %s: URL to Update PHP page. +msgid "" +"Click here to learn more about updating " +"PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php1540, includes/fs-plugin-info-dialog.php:1542 +#: includes/fs-plugin-info-dialog.php1538, +#: includes/fs-plugin-info-dialog.php:1536 msgid "Warning" msgstr "Предупреждение " -#: includes/fs-plugin-info-dialog.php:1540 +#: includes/fs-plugin-info-dialog.php:1538 +msgid "" +"This plugin has not been marked as compatible with your version of " +"WordPress." +msgstr "Этот плагин не отмечен как совместимый з Вашей версией WordPress " + +#: includes/fs-plugin-info-dialog.php:1536 msgid "This plugin has not been tested with your current version of WordPress." msgstr "Этот плагин не был тестирован с Вашей текущей версией WordPress. " -#: includes/fs-plugin-info-dialog.php:1542 -msgid "This plugin has not been marked as compatible with your version of WordPress." -msgstr "Этот плагин не отмечен как совместимый з Вашей версией WordPress " - -#: includes/fs-plugin-info-dialog.php:1561 +#: includes/fs-plugin-info-dialog.php:1557 msgid "Paid add-on must be deployed to Freemius." msgstr "Платный функционал должен быть заявлен в Freemius" -#: includes/fs-plugin-info-dialog.php:1562 +#: includes/fs-plugin-info-dialog.php:1558 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "Функционал должен быть заявлен на WordPress.org или Freemius " -#: includes/fs-plugin-info-dialog.php:1583 -msgid "Newer Version (%s) Installed" -msgstr "Более новая версия %s установлена " - -#: includes/fs-plugin-info-dialog.php:1584 -msgid "Newer Free Version (%s) Installed" -msgstr "" - -#: includes/fs-plugin-info-dialog.php:1591 +#: includes/fs-plugin-info-dialog.php:1587 msgid "Latest Version Installed" msgstr "Последняя версия установлена" -#: includes/fs-plugin-info-dialog.php:1592 +#: includes/fs-plugin-info-dialog.php:1588 msgid "Latest Free Version Installed" msgstr "" -#: templates/account.php115, templates/forms/subscription-cancellation.php96, templates/account/partials/addon.php31, templates/account/partials/site.php:313 +#: includes/fs-plugin-info-dialog.php:1579 +msgid "Newer Version (%s) Installed" +msgstr "Более новая версия %s установлена " + +#: includes/fs-plugin-info-dialog.php:1580 +msgid "Newer Free Version (%s) Installed" +msgstr "" + +#: templates/account.php111, templates/forms/subscription-cancellation.php96, +#: templates/account/partials/addon.php31, +#: templates/account/partials/site.php:313 msgid "Downgrading your plan" msgstr "" -#: templates/account.php116, templates/forms/subscription-cancellation.php97, templates/account/partials/addon.php32, templates/account/partials/site.php:314 +#: templates/account.php112, templates/forms/subscription-cancellation.php97, +#: templates/account/partials/addon.php32, +#: templates/account/partials/site.php:314 msgid "Cancelling the subscription" msgstr "" +#: templates/account.php114, templates/forms/subscription-cancellation.php99, +#: templates/account/partials/site.php:316 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account.php118, templates/forms/subscription-cancellation.php99, templates/account/partials/site.php:316 -msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." +msgid "" +"%1$s will immediately stop all future recurring payments and your %2$s plan " +"license will expire in %3$s." msgstr "" -#: templates/account.php119, templates/forms/subscription-cancellation.php100, templates/account/partials/addon.php35, templates/account/partials/site.php:317 -msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." +#: templates/account.php115, templates/forms/subscription-cancellation.php100, +#: templates/account/partials/addon.php35, +#: templates/account/partials/site.php:317 +msgid "" +"Please note that we will not be able to grandfather outdated pricing for " +"renewals/new subscriptions after a cancellation. If you choose to renew the " +"subscription manually in the future, after a price increase, which " +"typically occurs once a year, you will be charged the updated price." msgstr "" -#: templates/account.php120, templates/forms/subscription-cancellation.php106, templates/account/partials/addon.php:36 -msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" -msgstr "Отказ от пользования тестовым периодом автоматически блокирует доступ ко всем премиум возможностям. Вы уверены, что хотите отказаться?" +#: templates/account.php116, templates/forms/subscription-cancellation.php106, +#: templates/account/partials/addon.php:36 +msgid "" +"Cancelling the trial will immediately block access to all premium features. " +"Are you sure?" +msgstr "" +"Отказ от пользования тестовым периодом автоматически блокирует доступ ко " +"всем премиум возможностям. Вы уверены, что хотите отказаться?" -#: templates/account.php121, templates/forms/subscription-cancellation.php101, templates/account/partials/addon.php37, templates/account/partials/site.php:318 -msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." +#: templates/account.php117, templates/forms/subscription-cancellation.php101, +#: templates/account/partials/addon.php37, +#: templates/account/partials/site.php:318 +msgid "" +"You can still enjoy all %s features but you will not have access to %s " +"security & feature updates, nor support." msgstr "" -#: templates/account.php122, templates/forms/subscription-cancellation.php102, templates/account/partials/addon.php38, templates/account/partials/site.php:319 -msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." -msgstr "По окончанию срока действия Вашей лицензии, Вы сможете пользоваться бесплатной версией, но у Вас не будет доступа к возможностям %s. " +#: templates/account.php118, templates/forms/subscription-cancellation.php102, +#: templates/account/partials/addon.php38, +#: templates/account/partials/site.php:319 +msgid "" +"Once your license expires you can still use the Free version but you will " +"NOT have access to the %s features." +msgstr "" +"По окончанию срока действия Вашей лицензии, Вы сможете пользоваться " +"бесплатной версией, но у Вас не будет доступа к возможностям %s. " +#: templates/account.php120, +#: templates/account/partials/activate-license-button.php31, +#: templates/account/partials/addon.php:40 #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php124, templates/account/partials/activate-license-button.php31, templates/account/partials/addon.php:40 msgid "Activate %s Plan" msgstr "Активируйте план %s" +#: templates/account.php123, templates/account/partials/addon.php43, +#: templates/account/partials/site.php:293 #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php127, templates/account/partials/addon.php43, templates/account/partials/site.php:293 msgid "Auto renews in %s" msgstr "Автоматическое продление в %s" +#: templates/account.php125, templates/account/partials/addon.php45, +#: templates/account/partials/site.php:295 #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php129, templates/account/partials/addon.php45, templates/account/partials/site.php:295 msgid "Expires in %s" msgstr "Окончание срока пользования через %s" -#: templates/account.php:130 -msgctxt "as synchronize license" -msgid "Sync License" -msgstr "Синхронизация лицензии " - -#: templates/account.php131, templates/account/partials/addon.php:46 +#: templates/account.php127, templates/account/partials/addon.php:46 msgid "Cancel Trial" msgstr "Отменить тестовый период " -#: templates/account.php132, templates/account/partials/addon.php:47 +#: templates/account.php128, templates/account/partials/addon.php:47 msgid "Change Plan" msgstr "Изменить план " -#: templates/account.php133, templates/account/partials/addon.php:48 -msgctxt "verb" -msgid "Upgrade" -msgstr "Сделать апгрейд" - -#: templates/account.php135, templates/account/partials/addon.php50, templates/account/partials/site.php:320 -msgctxt "verb" -msgid "Downgrade" -msgstr "Понизить план " - -#: templates/account.php137, templates/add-ons.php246, templates/plugin-info/features.php72, templates/account/partials/addon.php52, templates/account/partials/site.php:33 +#: templates/account.php133, templates/add-ons.php246, +#: templates/plugin-info/features.php72, +#: templates/account/partials/addon.php52, +#: templates/account/partials/site.php:33 msgid "Free" msgstr "Бесплатная " -#: templates/account.php139, templates/debug.php412, includes/customizer/class-fs-customizer-upsell-control.php110, templates/account/partials/addon.php:54 -msgctxt "as product pricing plan" -msgid "Plan" -msgstr "Тарифный план " - -#: templates/account.php:140 +#: templates/account.php:136 msgid "Bundle Plan" msgstr "" -#: templates/account.php:272 +#: templates/account.php:268 msgid "Free Trial" msgstr "Бесплатный период пользования " -#: templates/account.php:283 +#: templates/account.php:279 msgid "Account Details" msgstr " Детали" -#: templates/account.php290, templates/forms/data-debug-mode.php:33 -msgid "Start Debug" +#: templates/account.php:288 +msgid "Stop Debug" msgstr "" -#: templates/account.php:292 -msgid "Stop Debug" +#: templates/account.php286, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" msgstr "" -#: templates/account.php:299 +#: templates/account.php:295 msgid "Billing & Invoices" msgstr "" -#: templates/account.php322, templates/account/partials/addon.php236, templates/account/partials/deactivate-license-button.php:35 +#: templates/account.php318, templates/account/partials/addon.php236, +#: templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "Деактивировать лицензию " -#: templates/account.php345, templates/forms/subscription-cancellation.php:125 +#: templates/account.php341, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "Вы уверены, что хотите продолжить?" -#: templates/account.php345, templates/account/partials/addon.php:260 +#: templates/account.php341, templates/account/partials/addon.php:260 msgid "Cancel Subscription" msgstr "Отменить подписку " -#: templates/account.php374, templates/account/partials/addon.php:345 -msgctxt "as synchronize" -msgid "Sync" -msgstr "Синхронизировать " - -#: templates/account.php389, templates/debug.php:575 +#: templates/account.php385, templates/debug.php:575 msgid "Name" msgstr "Имя" -#: templates/account.php395, templates/debug.php:576 +#: templates/account.php391, templates/debug.php:576 msgid "Email" msgstr "Электронный адрес " -#: templates/account.php402, templates/debug.php410, templates/debug.php:625 +#: templates/account.php398, templates/debug.php410, templates/debug.php:625 msgid "User ID" msgstr "User ID " -#: templates/account.php420, templates/account.php738, templates/account.php789, templates/debug.php267, templates/debug.php404, templates/debug.php515, templates/debug.php574, templates/debug.php623, templates/debug.php702, templates/account/payments.php35, templates/debug/logger.php:21 +#: templates/account.php416, templates/account.php734, +#: templates/account.php785, templates/debug.php267, templates/debug.php404, +#: templates/debug.php515, templates/debug.php574, templates/debug.php623, +#: templates/debug.php702, templates/account/payments.php35, +#: templates/debug/logger.php:21 msgid "ID" msgstr "ID" -#: templates/account.php:427 +#: templates/account.php:423 msgid "Site ID" msgstr "Site ID" -#: templates/account.php:430 +#: templates/account.php:426 msgid "No ID" msgstr "No ID" -#: templates/account.php435, templates/debug.php274, templates/debug.php413, templates/debug.php519, templates/debug.php578, templates/account/partials/site.php:228 +#: templates/account.php431, templates/debug.php274, templates/debug.php413, +#: templates/debug.php519, templates/debug.php578, +#: templates/account/partials/site.php:228 msgid "Public Key" msgstr "Public Key " -#: templates/account.php441, templates/debug.php414, templates/debug.php520, templates/debug.php579, templates/account/partials/site.php:241 +#: templates/account.php437, templates/debug.php414, templates/debug.php520, +#: templates/debug.php579, templates/account/partials/site.php:241 msgid "Secret Key" msgstr "Secret Key " -#: templates/account.php:444 -msgctxt "as secret encryption key missing" -msgid "No Secret" -msgstr "Нет секрета " +#: templates/account.php494, templates/debug.php631, +#: templates/account/partials/site.php:262 +msgid "License Key" +msgstr "Лицензионный ключ " -#: templates/account.php471, templates/account/partials/site.php120, templates/account/partials/site.php:122 +#: templates/account.php467, templates/account/partials/site.php122, +#: templates/account/partials/site.php:120 msgid "Trial" msgstr "Тестовый период " -#: templates/account.php498, templates/debug.php631, templates/account/partials/site.php:262 -msgid "License Key" -msgstr "Лицензионный ключ " - -#: templates/account.php:529 +#: templates/account.php:525 msgid "Join the Beta program" msgstr "" -#: templates/account.php:535 +#: templates/account.php:531 msgid "not verified" msgstr "не подтвержден " -#: templates/account.php544, templates/account/partials/addon.php:195 -msgid "Expired" -msgstr "Срок действия закончился " +#: templates/account.php:600 +msgid "Free version" +msgstr "Бесплатная версия " -#: templates/account.php:602 +#: templates/account.php:598 msgid "Premium version" msgstr "Премиум версия " -#: templates/account.php:604 -msgid "Free version" -msgstr "Бесплатная версия " +#: templates/account.php540, templates/account/partials/addon.php:195 +msgid "Expired" +msgstr "Срок действия закончился " -#: templates/account.php:616 +#: templates/account.php:612 msgid "Verify Email" msgstr "Подтвердите электронный адрес " -#: templates/account.php:630 -msgid "Download %s Version" -msgstr "Скачайте версию %s" - -#: templates/account.php:646 -msgid "Download Paid Version" +#: templates/account.php689, templates/forms/user-change.php:27 +msgid "Change User" msgstr "" -#: templates/account.php664, templates/account.php927, templates/account/partials/site.php250, templates/account/partials/site.php:272 -msgctxt "verb" -msgid "Show" -msgstr "Показать " - -#: templates/account.php:680 +#: templates/account.php:676 msgid "What is your %s?" msgstr "Какой Ваш %s?" -#: templates/account.php688, templates/account/billing.php:21 -msgctxt "verb" -msgid "Edit" -msgstr "Редактировать " +#: templates/account.php:626 +msgid "Download %s Version" +msgstr "Скачайте версию %s" -#: templates/account.php693, templates/forms/user-change.php:27 -msgid "Change User" +#: templates/account.php:642 +msgid "Download Paid Version" msgstr "" -#: templates/account.php:717 +#: templates/account.php:713 msgid "Sites" msgstr "Сайтов " -#: templates/account.php:730 +#: templates/account.php:726 msgid "Search by address" msgstr "" -#: templates/account.php739, templates/debug.php:407 +#: templates/account.php735, templates/debug.php:407 msgid "Address" msgstr "" -#: templates/account.php:740 +#: templates/account.php:736 msgid "License" msgstr "Лицензия " -#: templates/account.php:741 +#: templates/account.php:737 msgid "Plan" msgstr "Тарифный план " -#: templates/account.php:792 -msgctxt "as software license" -msgid "License" -msgstr "Лицензия " - -#: templates/account.php:921 -msgctxt "verb" -msgid "Hide" -msgstr "Спрятать " - -#: templates/account.php943, templates/forms/data-debug-mode.php31, templates/forms/deactivation/form.php358, templates/forms/deactivation/form.php:389 +#: templates/account.php939, templates/forms/data-debug-mode.php31, +#: templates/forms/deactivation/form.php358, +#: templates/forms/deactivation/form.php:389 msgid "Processing" msgstr "Обработка данных " -#: templates/account.php:946 +#: templates/account.php:942 msgid "Get updates for bleeding edge Beta versions of %s." msgstr "" -#: templates/account.php:1004 +#: templates/account.php:1000 msgid "Cancelling %s" msgstr "" -#: templates/account.php1004, templates/account.php1021, templates/forms/subscription-cancellation.php27, templates/forms/deactivation/form.php:178 +#: templates/account.php1000, templates/account.php1017, +#: templates/forms/subscription-cancellation.php27, +#: templates/forms/deactivation/form.php:178 msgid "trial" msgstr "" -#: templates/account.php1019, templates/forms/deactivation/form.php:195 +#: templates/account.php1015, templates/forms/deactivation/form.php:195 msgid "Cancelling %s..." msgstr "" -#: templates/account.php1022, templates/forms/subscription-cancellation.php28, templates/forms/deactivation/form.php:179 +#: templates/account.php1018, templates/forms/subscription-cancellation.php28, +#: templates/forms/deactivation/form.php:179 msgid "subscription" msgstr "" -#: templates/account.php:1036 -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?" +#: templates/account.php:1032 +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?" msgstr "" -#: templates/account.php:1110 +#: templates/account.php:1106 msgid "Disabling white-label mode" msgstr "" -#: templates/account.php:1111 +#: templates/account.php:1107 msgid "Enabling white-label mode" msgstr "" @@ -1488,25 +1511,13 @@ msgid "Add Ons for %s" msgstr "Функционал для %s" #: templates/add-ons.php:58 -msgid "We couldn't load the add-ons list. It's probably an issue on our side, please try to come back in few minutes." -msgstr "" - -#: templates/add-ons.php:229 -msgctxt "active add-on" -msgid "Active" -msgstr "" - -#: templates/add-ons.php:230 -msgctxt "installed add-on" -msgid "Installed" +msgid "" +"We couldn't load the add-ons list. It's probably an issue on our side, " +"please try to come back in few minutes." msgstr "" -#: templates/admin-notice.php13, templates/forms/license-activation.php243, templates/forms/resend-key.php:80 -msgctxt "as close a window" -msgid "Dismiss" -msgstr "Закрыть " - #: templates/auto-installation.php:45 +#. translators: %s: Number of seconds msgid "%s sec" msgstr "%s секунд " @@ -1515,12 +1526,22 @@ msgid "Automatic Installation" msgstr "Автоматическая установка " #: templates/auto-installation.php:93 -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." -msgstr "Автоматическое скачивание и установка %s ( платной версии) %s начнется через %s. Если Вы хотите все сделать в ручном режиме, нажмите на кнопку \"Отменить\" сейчас. " +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." +msgstr "" +"Автоматическое скачивание и установка %s ( платной версии) %s начнется " +"через %s. Если Вы хотите все сделать в ручном режиме, нажмите на кнопку " +"\"Отменить\" сейчас. " #: templates/auto-installation.php:104 -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." -msgstr "Процесс установки уже начат и может занять несколько минут. Пожалуйста, подождите окончания процесса и не обновляйте эту страницу. " +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." +msgstr "" +"Процесс установки уже начат и может занять несколько минут. Пожалуйста, " +"подождите окончания процесса и не обновляйте эту страницу. " #: templates/auto-installation.php:109 msgid "Cancel Installation" @@ -1534,172 +1555,164 @@ msgstr "Оплата " msgid "PCI compliant" msgstr "Жалоба PCI" -#. translators: %s: name (e.g. Hey John,) -#: templates/connect.php:127 -msgctxt "greeting" -msgid "Hey %s," -msgstr "Здравствуйте %s" - -#: templates/connect.php:187 -msgid "Never miss an important update" +#: templates/connect.php:186 +#. translators: %1$s: plugin name (e.g., "Awesome Plugin"); %2$s: version +#. (e.g., "1.2.3") +msgid "Thank you for updating to %1$s v%2$s!" msgstr "" -#: templates/connect.php:195 -msgid "Thank you for updating to %1$s v%2$s!" +#: templates/connect.php:178 +msgid "Never miss an important update" msgstr "" -#: templates/connect.php:205 +#: templates/connect.php:196 msgid "Allow & Continue" msgstr "Разрешить и продолжить" -#: templates/connect.php:209 -msgid "Re-send activation email" -msgstr "Отправить письмо активации еще раз " - -#: templates/connect.php:213 -msgid "Thanks %s!" -msgstr "Спасибо %s" - -#: templates/connect.php:214 -msgid "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." -msgstr "" - -#: templates/connect.php:225 -msgid "Welcome to %s! To get started, please enter your license key:" -msgstr "" - #: templates/connect.php:236 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." -msgstr "" - #. translators: %s: module type (plugin, theme, or add-on) -#: templates/connect.php:245 -msgid "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." +msgid "" +"We have introduced this opt-in so you never miss an important update and " +"help us make the %s more compatible with your site and better at doing what " +"you need it to." msgstr "" -#: templates/connect.php:247 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." +#: templates/connect.php:238 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info." msgstr "" -#: templates/connect.php:250 +#: templates/connect.php:241 msgid "If you skip this, that's okay! %1$s will still work just fine." msgstr "" -#: templates/connect.php:280 -msgid "We're excited to introduce the Freemius network-level integration." +#: templates/connect.php:227 +msgid "" +"Opt in to get email notifications for security & feature updates, " +"educational content, and occasional offers, and to share some basic " +"WordPress environment info. This will help us make the %s more compatible " +"with your site and better at doing what you need it to." msgstr "" -#: templates/connect.php:283 -msgid "During the update process we detected %d site(s) that are still pending license activation." +#: templates/connect.php:216 +msgid "Welcome to %s! To get started, please enter your license key:" msgstr "" -#: templates/connect.php:285 -msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." -msgstr "" +#: templates/connect.php:200 +msgid "Re-send activation email" +msgstr "Отправить письмо активации еще раз " -#: templates/connect.php:287 -msgid "%s's paid features" -msgstr "" +#: templates/connect.php:204 +msgid "Thanks %s!" +msgstr "Спасибо %s" -#: templates/connect.php:292 -msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." +#: templates/connect.php:205 +msgid "" +"You should receive a confirmation email for %s to your mailbox at %s. " +"Please make sure you click the button in that email to %s." msgstr "" -#: templates/connect.php:294 -msgid "During the update process we detected %s site(s) in the network that are still pending your attention." +#: templates/connect.php:271 +msgid "We're excited to introduce the Freemius network-level integration." msgstr "" -#: templates/connect.php303, templates/forms/data-debug-mode.php35, templates/forms/license-activation.php:42 +#: templates/connect.php:285 +msgid "" +"During the update process we detected %s site(s) in the network that are " +"still pending your attention." +msgstr "" + +#: templates/connect.php:274 +msgid "" +"During the update process we detected %d site(s) that are still pending " +"license activation." +msgstr "" + +#: templates/connect.php:276 +msgid "" +"If you'd like to use the %s on those sites, please enter your license key " +"below and click the activation button." +msgstr "" + +#: templates/connect.php:278 +msgid "%s's paid features" +msgstr "" + +#: templates/connect.php:283 +msgid "" +"Alternatively, you can skip it for now and activate the license later, in " +"your %s's network-level Account page." +msgstr "" + +#: templates/connect.php294, templates/forms/data-debug-mode.php35, +#: templates/forms/license-activation.php:42 msgid "License key" msgstr "Лицензионный ключ" -#: templates/connect.php306, templates/forms/license-activation.php:22 +#: templates/connect.php297, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "Не можете найти лицензионный ключ? " -#: templates/connect.php369, templates/connect.php693, templates/forms/deactivation/retry-skip.php:20 -msgctxt "verb" -msgid "Skip" -msgstr "Пропустить" - -#: templates/connect.php:372 +#: templates/connect.php:363 msgid "Delegate to Site Admins" msgstr "" -#: templates/connect.php:372 -msgid "If you click it, this decision will be delegated to the sites administrators." +#: templates/connect.php:363 +msgid "" +"If you click it, this decision will be delegated to the sites " +"administrators." msgstr "" -#: templates/connect.php:399 +#: templates/connect.php:392 msgid "License issues?" msgstr "" -#: templates/connect.php:423 -msgid "For delivery of security & feature updates, and license management, %s needs to" -msgstr "" - -#: templates/connect.php:428 +#: templates/connect.php:421 msgid "This will allow %s to" msgstr "" -#: templates/connect.php:443 -msgid "Don't have a license key?" -msgstr "У Вас нет лицензионного ключа?" +#: templates/connect.php:416 +msgid "" +"For delivery of security & feature updates, and license management, %s " +"needs to" +msgstr "" -#: templates/connect.php:446 +#: templates/connect.php:439 msgid "Have a license key?" msgstr "У Вас есть лицензионный ключ?" -#: templates/connect.php:454 +#: templates/connect.php:436 +msgid "Don't have a license key?" +msgstr "У Вас нет лицензионного ключа?" + +#: templates/connect.php:447 msgid "Freemius is our licensing and software updates engine" msgstr "" -#: templates/connect.php:457 +#: templates/connect.php:450 msgid "Privacy Policy" msgstr "Политика Конфиденциальности" -#: templates/connect.php:459 -msgid "License Agreement" -msgstr "" - -#: templates/connect.php:459 +#: templates/connect.php:455 msgid "Terms of Service" msgstr "Пользовательское соглашение" -#: templates/connect.php:879 -msgctxt "as in the process of sending an email" -msgid "Sending email" -msgstr "Электронное письмо отправляется Вам на почту " - -#: templates/connect.php:880 -msgctxt "as activating plugin" -msgid "Activating" -msgstr "Активация " +#: templates/connect.php:453 +msgid "License Agreement" +msgstr "" #: templates/contact.php:78 msgid "Contact" msgstr "Свяжитесь с нами" -#: templates/debug.php:17 -msgctxt "as turned off" -msgid "Off" -msgstr "Выключить " - -#: templates/debug.php:18 -msgctxt "as turned on" -msgid "On" -msgstr "Включить " - #: templates/debug.php:24 msgid "SDK" msgstr "SDK" -#: templates/debug.php:28 -msgctxt "as code debugging" -msgid "Debugging" -msgstr "Устранение ошибок" - -#: templates/debug.php58, templates/debug.php279, templates/debug.php415, templates/debug.php:580 +#: templates/debug.php58, templates/debug.php279, templates/debug.php415, +#: templates/debug.php:580 msgid "Actions" msgstr "Действия " @@ -1747,11 +1760,6 @@ msgstr "Ключ " msgid "Value" msgstr "Значение " -#: templates/debug.php:228 -msgctxt "as software development kit versions" -msgid "SDK Versions" -msgstr "Версии SDK" - #: templates/debug.php:233 msgid "SDK Path" msgstr "путь SDK" @@ -1772,7 +1780,8 @@ msgstr "Плагины " msgid "Themes" msgstr "Шаблоны " -#: templates/debug.php268, templates/debug.php409, templates/debug.php517, templates/debug/scheduled-crons.php:80 +#: templates/debug.php268, templates/debug.php409, templates/debug.php517, +#: templates/debug/scheduled-crons.php:80 msgid "Slug" msgstr "Описательная часть URL " @@ -1780,11 +1789,6 @@ msgstr "Описательная часть URL " msgid "Title" msgstr "Название " -#: templates/debug.php:271 -msgctxt "as application program interface" -msgid "API" -msgstr "API" - #: templates/debug.php:272 msgid "Freemius State" msgstr "Cостояние Freemius " @@ -1797,21 +1801,6 @@ msgstr "" msgid "Network User" msgstr "" -#: templates/debug.php:323 -msgctxt "as connection was successful" -msgid "Connected" -msgstr "Соединено " - -#: templates/debug.php:325 -msgctxt "as connection blocked" -msgid "Blocked" -msgstr "Заблокировано " - -#: templates/debug.php:326 -msgctxt "API connectivity state is unknown" -msgid "Unknown" -msgstr "" - #: templates/debug.php:362 msgid "Simulate Trial Promotion" msgstr "" @@ -1821,14 +1810,10 @@ msgid "Simulate Network Upgrade" msgstr "" #: templates/debug.php:398 +#. translators: %s: 'plugin' or 'theme' msgid "%s Installs" msgstr "%s установок " -#: templates/debug.php:400 -msgctxt "like websites" -msgid "Sites" -msgstr "Сайтов " - #: templates/debug.php406, templates/account/partials/site.php:156 msgid "Blog ID" msgstr "" @@ -1837,11 +1822,6 @@ msgstr "" msgid "License ID" msgstr "" -#: templates/debug.php497, templates/debug.php603, templates/account/partials/addon.php:440 -msgctxt "verb" -msgid "Delete" -msgstr "Удалить" - #: templates/debug.php:511 msgid "Add Ons of module %s" msgstr "Функционал модуля %s" @@ -1878,15 +1858,11 @@ msgstr "Активирован " msgid "Blocking" msgstr "Блокирование " -#: templates/debug.php630, templates/debug.php701, templates/debug/logger.php:22 +#: templates/debug.php630, templates/debug.php701, +#: templates/debug/logger.php:22 msgid "Type" msgstr "Тип" -#: templates/debug.php:632 -msgctxt "as expiration date" -msgid "Expiration" -msgstr "Срок пользования " - #: templates/debug.php:660 msgid "Debug Log" msgstr "Журнал устранения ошибок " @@ -1899,11 +1875,13 @@ msgstr "Все типы" msgid "All Requests" msgstr "Все запросы " -#: templates/debug.php676, templates/debug.php705, templates/debug/logger.php:25 +#: templates/debug.php676, templates/debug.php705, +#: templates/debug/logger.php:25 msgid "File" msgstr "Файл" -#: templates/debug.php677, templates/debug.php703, templates/debug/logger.php:23 +#: templates/debug.php677, templates/debug.php703, +#: templates/debug/logger.php:23 msgid "Function" msgstr "Функция " @@ -1915,7 +1893,8 @@ msgstr "ID процесса " msgid "Logger" msgstr "Программа сохранения изменений " -#: templates/debug.php680, templates/debug.php704, templates/debug/logger.php:24 +#: templates/debug.php680, templates/debug.php704, +#: templates/debug/logger.php:24 msgid "Message" msgstr "Сообщение " @@ -1932,18 +1911,15 @@ msgid "Timestamp" msgstr "Маркер времени " #: templates/secure-https-header.php:28 +#. translators: %s: Page name msgid "Secure HTTPS %s page, running from an external domain" msgstr "Безопасная страница HTTPS %s воспроизводится с внешнего ресурса " -#: includes/customizer/class-fs-customizer-support-section.php55, templates/plugin-info/features.php:43 +#: includes/customizer/class-fs-customizer-support-section.php55, +#: templates/plugin-info/features.php:43 msgid "Support" msgstr "Поддержка " -#: includes/debug/class-fs-debug-bar-panel.php48, templates/debug/api-calls.php54, templates/debug/logger.php:62 -msgctxt "milliseconds" -msgid "ms" -msgstr "мс " - #: includes/debug/debug-bar-start.php:41 msgid "Freemius API" msgstr "Freemius API" @@ -1960,16 +1936,22 @@ msgstr "" msgid "products" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1205 -msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." -msgstr "" - #: includes/managers/class-fs-clone-manager.php:1211 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of %3$s:%1$s" msgstr "" #: includes/managers/class-fs-clone-manager.php:1212 -msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" +msgid "" +"The products below have been placed into safe mode because we noticed that " +"%2$s is an exact copy of these sites:%3$s%1$s" +msgstr "" + +#: includes/managers/class-fs-clone-manager.php:1205 +msgid "" +"%1$s has been placed into safe mode because we noticed that %2$s is an " +"exact copy of %3$s." msgstr "" #: includes/managers/class-fs-clone-manager.php:1238 @@ -1981,7 +1963,9 @@ msgid "Is %2$s a duplicate of %4$s?" msgstr "" #: includes/managers/class-fs-clone-manager.php:1252 -msgid "Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or development." +msgid "" +"Yes, %2$s is a duplicate of %4$s for the purpose of testing, staging, or " +"development." msgstr "" #: includes/managers/class-fs-clone-manager.php:1257 @@ -1997,10 +1981,13 @@ msgid "Is %2$s the new home of %4$s?" msgstr "" #: includes/managers/class-fs-clone-manager.php:1270 -msgid "Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to %%2$s." +msgid "" +"Yes, %%2$s is replacing %%4$s. I would like to migrate my %s from %%4$s to " +"%%2$s." msgstr "" -#: includes/managers/class-fs-clone-manager.php1271, templates/forms/subscription-cancellation.php:52 +#: includes/managers/class-fs-clone-manager.php1271, +#: templates/forms/subscription-cancellation.php:52 msgid "license" msgstr "" @@ -2032,11 +2019,6 @@ msgstr "" msgid "New Website" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1319 -msgctxt "Clone resolution admin notice products list label" -msgid "Products" -msgstr "" - #: includes/managers/class-fs-clone-manager.php:1408 msgid "You marked this website, %s, as a temporary duplicate of %s." msgstr "" @@ -2046,12 +2028,10 @@ msgid "You marked this website, %s, as a temporary duplicate of these sites" msgstr "" #: includes/managers/class-fs-clone-manager.php:1423 -msgid "%s automatic security & feature updates and paid functionality will keep working without interruptions until %s (or when your license expires, whatever comes first)." -msgstr "" - -#: includes/managers/class-fs-clone-manager.php:1426 -msgctxt "\"The \", e.g.: \"The plugin\"" -msgid "The %s's" +msgid "" +"%s automatic security & feature updates and paid functionality will keep " +"working without interruptions until %s (or when your license expires, " +"whatever comes first)." msgstr "" #: includes/managers/class-fs-clone-manager.php:1429 @@ -2059,7 +2039,9 @@ msgid "The following products'" msgstr "" #: includes/managers/class-fs-clone-manager.php:1437 -msgid "If this is a long term duplicate, to keep automatic updates and paid functionality after %s, please %s." +msgid "" +"If this is a long term duplicate, to keep automatic updates and paid " +"functionality after %s, please %s." msgstr "" #: includes/managers/class-fs-clone-manager.php:1439 @@ -2075,7 +2057,12 @@ msgid "Homepage URL & title, WP & PHP versions, and site language" msgstr "" #: includes/managers/class-fs-permission-manager.php:195 -msgid "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To provide additional functionality that's relevant to your website, avoid " +"WordPress or PHP version incompatibilities that can break your website, and " +"recognize which languages & regions the %s should be translated and " +"tailored to." msgstr "" #: includes/managers/class-fs-permission-manager.php:207 @@ -2083,6 +2070,7 @@ msgid "View Basic %s Info" msgstr "" #: includes/managers/class-fs-permission-manager.php:210 +#. translators: %s: 'Plugin' or 'Theme' msgid "Current %s & SDK versions, and if active or uninstalled" msgstr "" @@ -2090,8 +2078,11 @@ msgstr "" msgid "View License Essentials" msgstr "" -#: includes/managers/class-fs-permission-manager.php:262 includes/managers/class-fs-permission-manager.php:272 -msgid "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." +#: includes/managers/class-fs-permission-manager.php:272 +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To let you manage & control where the license is activated and ensure %s " +"security & feature updates are only delivered to websites you authorize." msgstr "" #: includes/managers/class-fs-permission-manager.php:284 @@ -2099,6 +2090,7 @@ msgid "View %s State" msgstr "" #: includes/managers/class-fs-permission-manager.php:287 +#. translators: %s: 'Plugin' or 'Theme' msgid "Is active, deactivated, or uninstalled" msgstr "" @@ -2110,7 +2102,8 @@ msgstr "" msgid "View Diagnostic Info" msgstr "" -#: includes/managers/class-fs-permission-manager.php326, includes/managers/class-fs-permission-manager.php:363 +#: includes/managers/class-fs-permission-manager.php326, +#: includes/managers/class-fs-permission-manager.php:363 msgid "optional" msgstr "" @@ -2119,7 +2112,11 @@ msgid "WordPress & PHP versions, site language & title" msgstr "" #: includes/managers/class-fs-permission-manager.php:330 -msgid "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." +#. translators: %s: 'Plugin' or 'Theme' +msgid "" +"To avoid breaking your website due to WordPress or PHP version " +"incompatibilities, and recognize which languages & regions the %s should be " +"translated and tailored to." msgstr "" #: includes/managers/class-fs-permission-manager.php:363 @@ -2131,7 +2128,9 @@ msgid "Names, slugs, versions, and if active or not" msgstr "" #: includes/managers/class-fs-permission-manager.php:365 -msgid "To ensure compatibility and avoid conflicts with your installed plugins and themes." +msgid "" +"To ensure compatibility and avoid conflicts with your installed plugins and " +"themes." msgstr "" #: includes/managers/class-fs-permission-manager.php:382 @@ -2143,7 +2142,10 @@ msgid "Your WordPress user's: first & last name, and email address" msgstr "" #: includes/managers/class-fs-permission-manager.php:384 -msgid "Never miss important updates, get security warnings before they become public knowledge, and receive notifications about special offers and awesome new features." +msgid "" +"Never miss important updates, get security warnings before they become " +"public knowledge, and receive notifications about special offers and " +"awesome new features." msgstr "" #: includes/managers/class-fs-permission-manager.php:405 @@ -2154,11 +2156,6 @@ msgstr "Рассылка " msgid "Updates, announcements, marketing, no spam" msgstr "Новости, объявления, маркетинг, без спама" -#: templates/account/billing.php:22 -msgctxt "verb" -msgid "Update" -msgstr "Обновить " - #: templates/account/billing.php:33 msgid "Billing" msgstr "Система оплаты " @@ -2171,7 +2168,8 @@ msgstr "Название бизнеса " msgid "Tax / VAT ID" msgstr "ID налога/НДС " -#: templates/account/billing.php42, templates/account/billing.php43, templates/account/billing.php:43 +#: templates/account/billing.php42, templates/account/billing.php42, +#: templates/account/billing.php43, templates/account/billing.php:43 msgid "Address Line %d" msgstr "Поле для адреса %d" @@ -2219,16 +2217,6 @@ msgstr "Количество " msgid "Invoice" msgstr "Счет " -#: templates/connect/permissions-group.php31, templates/forms/optout.php26, templates/js/permissions.php:78 -msgctxt "verb" -msgid "Opt Out" -msgstr "Отписаться " - -#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 -msgctxt "verb" -msgid "Opt In" -msgstr "Присоединится " - #: templates/debug/api-calls.php:56 msgid "API" msgstr "API" @@ -2245,11 +2233,6 @@ msgstr "Код" msgid "Length" msgstr "Длинна " -#: templates/debug/api-calls.php:71 -msgctxt "as file/folder path" -msgid "Path" -msgstr "Путь " - #: templates/debug/api-calls.php:73 msgid "Body" msgstr "Основная часть " @@ -2270,21 +2253,18 @@ msgstr "Конец " msgid "Log" msgstr "Журнал изменений " +#: templates/debug/plugins-themes-sync.php18, +#: templates/debug/scheduled-crons.php:91 #. translators: %s: time period (e.g. In "2 hours") -#: templates/debug/plugins-themes-sync.php18, templates/debug/scheduled-crons.php:91 msgid "In %s" msgstr "В %s" +#: templates/debug/plugins-themes-sync.php20, +#: templates/debug/scheduled-crons.php:93 #. translators: %s: time period (e.g. "2 hours" ago) -#: templates/debug/plugins-themes-sync.php20, templates/debug/scheduled-crons.php:93 msgid "%s ago" msgstr "%s тому назад " -#: templates/debug/plugins-themes-sync.php21, templates/debug/scheduled-crons.php:74 -msgctxt "seconds" -msgid "sec" -msgstr "сек" - #: templates/debug/plugins-themes-sync.php:23 msgid "Plugins & Themes Sync" msgstr "Синхронизация плагинов и шаблонов " @@ -2293,7 +2273,8 @@ msgstr "Синхронизация плагинов и шаблонов " msgid "Total" msgstr "Итого" -#: templates/debug/plugins-themes-sync.php29, templates/debug/scheduled-crons.php:84 +#: templates/debug/plugins-themes-sync.php29, +#: templates/debug/scheduled-crons.php:84 msgid "Last" msgstr "Последний " @@ -2317,143 +2298,187 @@ msgstr "Тип задачи" msgid "Next" msgstr "Следующий " -#: templates/forms/affiliation.php:83 +#: templates/forms/affiliation.php:86 msgid "Non-expiring" msgstr "Бессрочный " -#: templates/forms/affiliation.php:86 +#: templates/forms/affiliation.php:89 msgid "Apply to become an affiliate" msgstr "Подать заявку на партнерство " -#: templates/forms/affiliation.php:108 -msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." -msgstr "Ваша заявка на партнерство с %s принята! Войдите в Ваш кабинет партнера на %s" +#: templates/forms/affiliation.php:137 +msgid "" +"Due to violation of our affiliation terms, we decided to temporarily block " +"your affiliation account. If you have any questions, please contact support." +msgstr "" +"Из-за нарушения условий партнерства мы вынуждены временно заблокировать Ваш " +"аккаунт. Если у Вас возникли вопросы, пожалуйста, обратитесь в службу " +"поддержки. " -#: templates/forms/affiliation.php:123 -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." -msgstr "Спасибо за подачу заявки на партнерство. Мы рассмотрим Ваши данные на протяжении следующих 14 дней и свяжемся с Вами. " +#: templates/forms/affiliation.php:134 +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." +msgstr "" +"Спасибо за подачу заявки на партнерство. К сожалению, мы приняли решение " +"отказать Вам в этой возможности. Пожалуйста, повторите попытку через 30 " +"дней. " -#: templates/forms/affiliation.php:126 +#: templates/forms/affiliation.php:131 msgid "Your affiliation account was temporarily suspended." msgstr "Ваш партнерский аккаунт временно недоступен. " -#: templates/forms/affiliation.php:129 -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." -msgstr "Спасибо за подачу заявки на партнерство. К сожалению, мы приняли решение отказать Вам в этой возможности. Пожалуйста, повторите попытку через 30 дней. " +#: templates/forms/affiliation.php:128 +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." +msgstr "" +"Спасибо за подачу заявки на партнерство. Мы рассмотрим Ваши данные на " +"протяжении следующих 14 дней и свяжемся с Вами. " -#: templates/forms/affiliation.php:132 -msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." -msgstr "Из-за нарушения условий партнерства мы вынуждены временно заблокировать Ваш аккаунт. Если у Вас возникли вопросы, пожалуйста, обратитесь в службу поддержки. " +#: templates/forms/affiliation.php:113 +msgid "" +"Your affiliate application for %s has been accepted! Log in to your " +"affiliate area at: %s." +msgstr "" +"Ваша заявка на партнерство с %s принята! Войдите в Ваш кабинет партнера на " +"%s" -#: templates/forms/affiliation.php:145 +#: templates/forms/affiliation.php:150 msgid "Like the %s? Become our ambassador and earn cash ;-)" msgstr "Вам нравится %s? Стань нашим партнером и зарабатывай ;-)" -#: templates/forms/affiliation.php:146 -msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" -msgstr "Порекомендуй %s новым пользователям и зарабатывай %s c каждой успешной продажи. " +#: templates/forms/affiliation.php:151 +msgid "" +"Refer new customers to our %s and earn %s commission on each successful " +"sale you refer!" +msgstr "" +"Порекомендуй %s новым пользователям и зарабатывай %s c каждой успешной " +"продажи. " -#: templates/forms/affiliation.php:149 +#: templates/forms/affiliation.php:154 msgid "Program Summary" msgstr "Краткое описание программы " -#: templates/forms/affiliation.php:151 +#: templates/forms/affiliation.php:156 msgid "%s commission when a customer purchases a new license." msgstr "%s вознаграждения, если клиент купит новую лицензию." -#: templates/forms/affiliation.php:153 +#: templates/forms/affiliation.php:158 msgid "Get commission for automated subscription renewals." msgstr "Получай вознаграждение за автоматические продления пользования. " -#: templates/forms/affiliation.php:156 +#: templates/forms/affiliation.php:161 msgid "%s tracking cookie after the first visit to maximize earnings potential." -msgstr "%s данные cookies предоставляются после первого посещения, чтобы максимально увеличить вероятность заработка. " +msgstr "" +"%s данные cookies предоставляются после первого посещения, чтобы " +"максимально увеличить вероятность заработка. " -#: templates/forms/affiliation.php:159 +#: templates/forms/affiliation.php:164 msgid "Unlimited commissions." msgstr "Неограниченное вознаграждение " -#: templates/forms/affiliation.php:161 +#: templates/forms/affiliation.php:166 msgid "%s minimum payout amount." msgstr "%s минимальная сумма выплаты " -#: templates/forms/affiliation.php:162 +#: templates/forms/affiliation.php:167 msgid "Payouts are in USD and processed monthly via PayPal." msgstr "Выплаты производятся в долларах США через PayPal." -#: templates/forms/affiliation.php:163 -msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." -msgstr "Мы выделяем 30 дней для поступления возвратов и поэтому вознаграждения выплачиваются за покупки, которые были совершены более чем 30 дней назад." +#: templates/forms/affiliation.php:168 +msgid "" +"As we reserve 30 days for potential refunds, we only pay commissions that " +"are older than 30 days." +msgstr "" +"Мы выделяем 30 дней для поступления возвратов и поэтому вознаграждения " +"выплачиваются за покупки, которые были совершены более чем 30 дней назад." -#: templates/forms/affiliation.php:166 +#: templates/forms/affiliation.php:171 msgid "Affiliate" msgstr "Партнер" -#: templates/forms/affiliation.php169, templates/forms/resend-key.php:23 +#: templates/forms/affiliation.php174, templates/forms/resend-key.php:23 msgid "Email address" msgstr "Электронный адрес " -#: templates/forms/affiliation.php:173 +#: templates/forms/affiliation.php:178 msgid "Full name" msgstr "Полное имя" -#: templates/forms/affiliation.php:177 +#: templates/forms/affiliation.php:182 msgid "PayPal account email address" msgstr "Электронный адрес аккаунта PayPal" -#: templates/forms/affiliation.php:181 +#: templates/forms/affiliation.php:186 msgid "Where are you going to promote the %s?" msgstr "Где Вы намерены продвигать %s?" -#: templates/forms/affiliation.php:183 -msgid "Enter the domain of your website or other websites from where you plan to promote the %s." -msgstr "Введите домен Вашего сайта или других сайтов на которых Вы намерены продвигать %s." +#: templates/forms/affiliation.php:188 +msgid "" +"Enter the domain of your website or other websites from where you plan to " +"promote the %s." +msgstr "" +"Введите домен Вашего сайта или других сайтов на которых Вы намерены " +"продвигать %s." -#: templates/forms/affiliation.php:185 +#: templates/forms/affiliation.php:190 msgid "Add another domain" msgstr "Добавьте другое доменное имя " -#: templates/forms/affiliation.php:189 +#: templates/forms/affiliation.php:194 msgid "Extra Domains" msgstr "Дополнительные доменные имена " -#: templates/forms/affiliation.php:190 +#: templates/forms/affiliation.php:195 msgid "Extra domains where you will be marketing the product from." msgstr "Дополнительные доменные имена, где Вы будете продвигать продукт. " -#: templates/forms/affiliation.php:200 +#: templates/forms/affiliation.php:205 msgid "Promotion methods" msgstr "Методы продвижения " -#: templates/forms/affiliation.php:203 +#: templates/forms/affiliation.php:208 msgid "Social media (Facebook, Twitter, etc.)" msgstr "Социальные сети ( Facebook, Twitter, etc.)" -#: templates/forms/affiliation.php:207 +#: templates/forms/affiliation.php:212 msgid "Mobile apps" msgstr "Мобильные приложения " -#: templates/forms/affiliation.php:211 +#: templates/forms/affiliation.php:216 msgid "Website, email, and social media statistics (optional)" msgstr "Вебсайт, электронный адрес и статистика социальных сетей (не обязательно)" -#: templates/forms/affiliation.php:214 -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)." -msgstr "Пожалуйста, предоставьте соответственную статистику вебсайта или страницы социальных сетей, например, количество уникальных посетителей, количество подписчиков, читателей, т. д. ( эта информация останется конфиденциальной). " +#: templates/forms/affiliation.php:219 +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)." +msgstr "" +"Пожалуйста, предоставьте соответственную статистику вебсайта или страницы " +"социальных сетей, например, количество уникальных посетителей, количество " +"подписчиков, читателей, т. д. ( эта информация останется конфиденциальной). " -#: templates/forms/affiliation.php:218 +#: templates/forms/affiliation.php:223 msgid "How will you promote us?" msgstr "Как Вы намерены продвигать нас?" -#: templates/forms/affiliation.php:221 -msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." -msgstr "Пожалуйста, предоставьте максимально детальную информацию о том, как Вы планируете продвигать %s." +#: templates/forms/affiliation.php:226 +msgid "" +"Please provide details on how you intend to promote %s (please be as " +"specific as possible)." +msgstr "" +"Пожалуйста, предоставьте максимально детальную информацию о том, как Вы " +"планируете продвигать %s." -#: templates/forms/affiliation.php233, templates/forms/resend-key.php22, templates/account/partials/disconnect-button.php:92 +#: templates/forms/affiliation.php238, templates/forms/resend-key.php22, +#: templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "Отмена " -#: templates/forms/affiliation.php:235 +#: templates/forms/affiliation.php:240 msgid "Become an affiliate" msgstr "Стать партнером" @@ -2462,7 +2487,10 @@ msgid "Please enter the license key to enable the debug mode:" msgstr "" #: templates/forms/data-debug-mode.php:27 -msgid "To enter the debug mode, please enter the secret key of the license owner (UserID = %d), which you can find in your \"My Profile\" section of your User Dashboard:" +msgid "" +"To enter the debug mode, please enter the secret key of the license owner " +"(UserID = %d), which you can find in your \"My Profile\" section of your " +"User Dashboard:" msgstr "" #: templates/forms/data-debug-mode.php:32 @@ -2477,11 +2505,6 @@ msgstr "" msgid "Email address update" msgstr "" -#: templates/forms/email-address-update.php33, templates/forms/user-change.php:81 -msgctxt "close window" -msgid "Dismiss" -msgstr "Закрыть " - #: templates/forms/email-address-update.php:38 msgid "Enter the new email address" msgstr "" @@ -2514,30 +2537,42 @@ msgstr "" msgid "No - only move this site's data to %s" msgstr "" -#: templates/forms/email-address-update.php292, templates/forms/email-address-update.php:298 +#: templates/forms/email-address-update.php292, +#: templates/forms/email-address-update.php:298 msgid "Update" msgstr "Обновить " #: templates/forms/license-activation.php:23 -msgid "Please enter the license key that you received in the email right after the purchase:" -msgstr "Пожалуйста введите лицензионный ключ, который Вы получили на электронный адрес сразу после покупки. " +msgid "" +"Please enter the license key that you received in the email right after the " +"purchase:" +msgstr "" +"Пожалуйста введите лицензионный ключ, который Вы получили на электронный " +"адрес сразу после покупки. " #: templates/forms/license-activation.php:28 msgid "Update License" msgstr "Обновить лицензию" #: templates/forms/license-activation.php:34 -msgid "The %1$s will be periodically sending essential license data to %2$s to check for security and feature updates, and verify the validity of your license." +msgid "" +"The %1$s will be periodically sending essential license data to %2$s to " +"check for security and feature updates, and verify the validity of your " +"license." msgstr "" #: templates/forms/license-activation.php:39 msgid "Agree & Activate License" msgstr "Согласиться и активировать лицензию " -#: templates/forms/license-activation.php:204 +#: templates/forms/license-activation.php:206 msgid "Associate with the license owner's account." msgstr "" +#: templates/forms/optout.php:104 +msgid "Keep automatic updates" +msgstr "" + #: templates/forms/optout.php:44 msgid "Communication" msgstr "" @@ -2558,10 +2593,6 @@ msgstr "" msgid "Extensions" msgstr "" -#: templates/forms/optout.php:104 -msgid "Keep automatic updates" -msgstr "" - #: templates/forms/premium-versions-upgrade-handler.php:40 msgid "There is a new version of %s available." msgstr "" @@ -2574,41 +2605,52 @@ msgstr "" msgid "New Version Available" msgstr "" -#: templates/forms/premium-versions-upgrade-handler.php:75 -msgctxt "close a window" -msgid "Dismiss" -msgstr "Закрыть " - #: templates/forms/resend-key.php:21 msgid "Send License Key" msgstr "Отправить лицензионный ключ" #: templates/forms/resend-key.php:58 -msgid "Enter the email address you've used during the purchase and we will resend you the license key." +msgid "" +"Enter the email address you've used during the purchase and we will resend " +"you the license key." msgstr "" #: templates/forms/resend-key.php:59 -msgid "Enter the email address you've used for the upgrade below and we will resend you the license key." -msgstr "Введите ниже адрес своей электронной почты, которую Вы использовали для обновлений и мы Вам отправим повторно Ваш лицензионный ключ. " +msgid "" +"Enter the email address you've used for the upgrade below and we will " +"resend you the license key." +msgstr "" +"Введите ниже адрес своей электронной почты, которую Вы использовали для " +"обновлений и мы Вам отправим повторно Ваш лицензионный ключ. " #: templates/forms/subscription-cancellation.php:37 -msgid "Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site." +msgid "" +"Deactivating or uninstalling the %s will automatically disable the license, " +"which you'll be able to use on another site." msgstr "" #: templates/forms/subscription-cancellation.php:47 -msgid "In case you are NOT planning on using this %s on this site (or any other site) - would you like to cancel the %s as well?" +msgid "" +"In case you are NOT planning on using this %s on this site (or any other " +"site) - would you like to cancel the %s as well?" msgstr "" #: templates/forms/subscription-cancellation.php:57 -msgid "Cancel %s - I no longer need any security & feature updates, nor support for %s because I'm not planning to use the %s on this, or any other site." +msgid "" +"Cancel %s - I no longer need any security & feature updates, nor support " +"for %s because I'm not planning to use the %s on this, or any other site." msgstr "" #: templates/forms/subscription-cancellation.php:68 -msgid "Don't cancel %s - I'm still interested in getting security & feature updates, as well as be able to contact support." +msgid "" +"Don't cancel %s - I'm still interested in getting security & feature " +"updates, as well as be able to contact support." msgstr "" #: templates/forms/subscription-cancellation.php:103 -msgid "Once your license expires you will no longer be able to use the %s, unless you activate it again with a valid premium license." +msgid "" +"Once your license expires you will no longer be able to use the %s, unless " +"you activate it again with a valid premium license." msgstr "" #: templates/forms/subscription-cancellation.php:136 @@ -2619,17 +2661,33 @@ msgstr "" msgid "Proceed" msgstr "" -#: templates/forms/subscription-cancellation.php191, templates/forms/deactivation/form.php:216 +#: templates/forms/subscription-cancellation.php191, +#: templates/forms/deactivation/form.php:216 msgid "Cancel %s & Proceed" msgstr "" #: templates/forms/trial-start.php:22 -msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." -msgstr "Вы уже на расстоянии одного клика от начала Вашего бесплатного %1$s - дневного тестового периода по тарифному плану %2$s. " +#. translators: %1$s: Number of trial days; %2$s: Plan name; +msgid "" +"You are 1-click away from starting your %1$s-day free trial of the %2$s " +"plan." +msgstr "" +"Вы уже на расстоянии одного клика от начала Вашего бесплатного %1$s - " +"дневного тестового периода по тарифному плану %2$s. " #: templates/forms/trial-start.php:28 -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." -msgstr "В соответствии с руководством WordPress.org, перед началом тестового периода мы просим, чтобы Вы присоединились к нашему сообществу предоставив информацию о Вашем сайте и также Ваши личные данные, тем самым разрешив %s периодически отправлять сообщения на %s для уведомлений об обновлениях и подтверждения Вашего тестового периода. " +#. translators: %s: Link to freemius.com +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." +msgstr "" +"В соответствии с руководством WordPress.org, перед началом тестового " +"периода мы просим, чтобы Вы присоединились к нашему сообществу предоставив " +"информацию о Вашем сайте и также Ваши личные данные, тем самым разрешив %s " +"периодически отправлять сообщения на %s для уведомлений об обновлениях и " +"подтверждения Вашего тестового периода. " #: templates/forms/user-change.php:26 msgid "By changing the user, you agree to transfer the account ownership to:" @@ -2655,14 +2713,6 @@ msgstr "Премиум " msgid "Beta" msgstr "" -#: templates/partials/network-activation.php:32 -msgid "Activate license on all sites in the network." -msgstr "" - -#: templates/partials/network-activation.php:33 -msgid "Apply on all sites in the network." -msgstr "" - #: templates/partials/network-activation.php:36 msgid "Activate license on all pending sites." msgstr "" @@ -2671,19 +2721,31 @@ msgstr "" msgid "Apply on all pending sites." msgstr "" -#: templates/partials/network-activation.php45, templates/partials/network-activation.php:79 +#: templates/partials/network-activation.php:32 +msgid "Activate license on all sites in the network." +msgstr "" + +#: templates/partials/network-activation.php:33 +msgid "Apply on all sites in the network." +msgstr "" + +#: templates/partials/network-activation.php45, +#: templates/partials/network-activation.php:79 msgid "allow" msgstr "" -#: templates/partials/network-activation.php48, templates/partials/network-activation.php:82 +#: templates/partials/network-activation.php48, +#: templates/partials/network-activation.php:82 msgid "delegate" msgstr "" -#: templates/partials/network-activation.php52, templates/partials/network-activation.php:86 +#: templates/partials/network-activation.php52, +#: templates/partials/network-activation.php:86 msgid "skip" msgstr "" -#: templates/plugin-info/description.php72, templates/plugin-info/screenshots.php:31 +#: templates/plugin-info/description.php67, +#: templates/plugin-info/screenshots.php:26 msgid "Click to view full-size screenshot %d" msgstr "Кликните, чтобы посмотреть снимок %d на широком экране. " @@ -2695,39 +2757,45 @@ msgstr "Неограниченные обновления " msgid "Localhost" msgstr "Локальный хостинг " -#: templates/account/partials/activate-license-button.php:50 -msgctxt "as 5 licenses left" -msgid "%s left" -msgstr "Осталось %s " - #: templates/account/partials/activate-license-button.php:51 msgid "Last license" msgstr "Последняя лицензия " +#: templates/account/partials/addon.php:34 #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the #. subscription' -#: templates/account/partials/addon.php:34 -msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." +msgid "" +"%1$s will immediately stop all future recurring payments and your %s plan " +"license will expire in %s." msgstr "" -#: templates/account/partials/addon.php:190 -msgid "Cancelled" -msgstr "Аннулирована " - #: templates/account/partials/addon.php:200 msgid "No expiration" msgstr "Бессрочный период пользования " -#: templates/account/partials/disconnect-button.php:74 -msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." -msgstr "" +#: templates/account/partials/addon.php:190 +msgid "Cancelled" +msgstr "Аннулирована " #: templates/account/partials/disconnect-button.php:78 -msgid "Disconnecting the website will permanently remove %s from your User Dashboard's account." +#. translators: %s is replaced with the website's homepage address. +msgid "" +"Disconnecting the website will permanently remove %s from your User " +"Dashboard's account." +msgstr "" + +#: templates/account/partials/disconnect-button.php:74 +msgid "" +"By disconnecting the website, previously shared diagnostic data about %1$s " +"will be deleted and no longer visible to %2$s." msgstr "" #: templates/account/partials/disconnect-button.php:84 -msgid "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." +#. translators: %1$s is replaced by the paid plan name, %2$s is replaced with +#. an anchor link with the text "User Dashboard". +msgid "" +"If you wish to cancel your %1$s plan's subscription instead, please " +"navigate to the %2$s and cancel it there." msgstr "" #: templates/account/partials/disconnect-button.php:88 @@ -2752,7 +2820,9 @@ msgstr "" #: templates/forms/deactivation/contact.php:19 msgid "Sorry for the inconvenience and we are here to help if you give us a chance." -msgstr "Извините за неудобство. Мы будем рады помочь, если Вы нам предоставите эту возможность. " +msgstr "" +"Извините за неудобство. Мы будем рады помочь, если Вы нам предоставите эту " +"возможность. " #: templates/forms/deactivation/contact.php:22 msgid "Contact Support" @@ -2770,7 +2840,8 @@ msgstr "" msgid "hours" msgstr "" -#: templates/forms/deactivation/form.php81, templates/forms/deactivation/form.php:86 +#: templates/forms/deactivation/form.php81, +#: templates/forms/deactivation/form.php:86 msgid "days" msgstr "" @@ -2823,5 +2894,457 @@ msgid "Click here to use the plugin anonymously" msgstr "Нажмите здесь, чтобы пользоваться плагином анонимно. " #: templates/forms/deactivation/retry-skip.php:23 -msgid "You might have missed it, but you don't have to share any data and can just %s the opt-in." -msgstr "Возможно, Вы не обратили внимание, но Вы не обязаны делиться никакими данными и можете просто %s кнопку \"Присоединиться\". " +msgid "" +"You might have missed it, but you don't have to share any data and can just " +"%s the opt-in." +msgstr "" +"Возможно, Вы не обратили внимание, но Вы не обязаны делиться никакими " +"данными и можете просто %s кнопку \"Присоединиться\". " + +#: includes/class-freemius.php4842, includes/class-freemius.php21166, +#: includes/class-freemius.php:24835 +msgctxt "interjection expressing joy or exuberance" +msgid "Yee-haw" +msgstr "Ура!" + +#: includes/class-freemius.php:4856 +msgctxt "addonX cannot run without pluginY" +msgid "%s cannot run without %s." +msgstr "%s не работает без %s." + +#: includes/class-freemius.php:4857 +msgctxt "addonX cannot run..." +msgid "%s cannot run without the plugin." +msgstr "%s не может работать без плагина. " + +#: includes/class-freemius.php4859, includes/class-freemius.php6051, +#: includes/class-freemius.php13828, includes/class-freemius.php14567, +#: includes/class-freemius.php18322, includes/class-freemius.php18435, +#: includes/class-freemius.php18612, includes/class-freemius.php20897, +#: includes/class-freemius.php21996, includes/class-freemius.php23012, +#: includes/class-freemius.php23142, includes/class-freemius.php23285, +#: templates/add-ons.php:57 +msgctxt "exclamation" +msgid "Oops" +msgstr "Упс!" + +#: includes/class-freemius.php:24141 +msgctxt "exclamation" +msgid "Hey" +msgstr "Привет!" + +#: includes/class-freemius.php5728, includes/class-freemius.php:7765 +msgctxt "" +"Used to express elation, enthusiasm, or triumph (especially in electronic " +"communication)." +msgid "W00t" +msgstr "Вау!" + +#: includes/class-freemius.php:7062 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "a license key" +msgstr "" + +#: includes/class-freemius.php:7056 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "the installation instructions" +msgstr "" + +#: includes/class-freemius.php:7078 +msgctxt "Part of an activation link message." +msgid "Click here" +msgstr "" + +#: includes/class-freemius.php:7085 +msgctxt "" +"Part of the message that tells the user to check their spam folder for a " +"specific email." +msgid "the product's support email address" +msgstr "" + +#: includes/class-freemius.php:7232 +msgctxt "%s - plugin name. As complete \"PluginX\" activation now" +msgid "Complete \"%s\" Activation Now" +msgstr "Закончить активацию %s сейчас " + +#: includes/class-freemius.php:19155 +msgctxt "ASCII arrow left icon" +msgid "←" +msgstr "" + +#: includes/class-freemius.php:19155 +msgctxt "ASCII arrow right icon" +msgid "➤" +msgstr "" + +#: includes/class-freemius.php19157, templates/pricing.php:110 +msgctxt "noun" +msgid "Pricing" +msgstr "Цены" + +#: includes/fs-plugin-info-dialog.php:1239 +msgctxt "noun" +msgid "Price" +msgstr "Стоимость " + +#: includes/class-freemius.php:20392 +msgctxt "a positive response" +msgid "Right on" +msgstr "Все верно!" + +#: includes/class-freemius.php21511, includes/class-freemius.php21783, +#: includes/class-freemius.php21836, includes/class-freemius.php:21943 +msgctxt "" +"something somebody says when they are thinking about what you have just " +"said." +msgid "Hmm" +msgstr "Хм..." + +#: includes/class-freemius.php21525, templates/account.php132, +#: templates/add-ons.php250, templates/account/partials/addon.php:51 +msgctxt "trial period" +msgid "Trial" +msgstr "Тестовый период" + +#: includes/class-freemius.php:23247 +msgctxt "as congratulations" +msgid "Congrats" +msgstr "Поздравления! " + +#: includes/class-freemius.php:23512 +msgctxt "advance notice of something that will need attention." +msgid "Heads up" +msgstr "Внимание!" + +#: includes/class-freemius.php24157, templates/forms/trial-start.php:53 +msgctxt "call to action" +msgid "Start free trial" +msgstr "Начни тестовый период!" + +#: includes/fs-plugin-info-dialog.php543, +#: templates/account/partials/addon.php:390 +msgctxt "verb" +msgid "Purchase" +msgstr "Купить" + +#: templates/account.php129, templates/account/partials/addon.php:48 +msgctxt "verb" +msgid "Upgrade" +msgstr "Сделать апгрейд" + +#: templates/account.php131, templates/account/partials/addon.php50, +#: templates/account/partials/site.php:320 +msgctxt "verb" +msgid "Downgrade" +msgstr "Понизить план " + +#: templates/account.php684, templates/account/billing.php:21 +msgctxt "verb" +msgid "Edit" +msgstr "Редактировать " + +#: templates/account.php660, templates/account.php923, +#: templates/account/partials/site.php250, +#: templates/account/partials/site.php:272 +msgctxt "verb" +msgid "Show" +msgstr "Показать " + +#: templates/account.php:917 +msgctxt "verb" +msgid "Hide" +msgstr "Спрятать " + +#: templates/connect.php360, templates/connect.php690, +#: templates/forms/deactivation/retry-skip.php:20 +msgctxt "verb" +msgid "Skip" +msgstr "Пропустить" + +#: templates/debug.php497, templates/debug.php603, +#: templates/account/partials/addon.php:440 +msgctxt "verb" +msgid "Delete" +msgstr "Удалить" + +#: templates/account/billing.php:22 +msgctxt "verb" +msgid "Update" +msgstr "Обновить " + +#: templates/connect/permissions-group.php31, templates/forms/optout.php26, +#: templates/js/permissions.php:78 +msgctxt "verb" +msgid "Opt Out" +msgstr "Отписаться " + +#: templates/connect/permissions-group.php32, templates/js/permissions.php:77 +msgctxt "verb" +msgid "Opt In" +msgstr "Присоединится " + +#: includes/fs-plugin-info-dialog.php:772 +msgctxt "as download latest version" +msgid "Download Latest Free Version" +msgstr "" + +#: includes/fs-plugin-info-dialog.php773, templates/account.php110, +#: templates/add-ons.php37, templates/account/partials/addon.php:30 +msgctxt "as download latest version" +msgid "Download Latest" +msgstr "Скачать последнюю версию" + +#: includes/fs-plugin-info-dialog.php:999 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "Описание " + +#: includes/fs-plugin-info-dialog.php:1000 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "Установка " + +#: includes/fs-plugin-info-dialog.php:1001 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "Часто задаваемые вопросы " + +#: includes/fs-plugin-info-dialog.php:1003 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "Журнал изменений " + +#: includes/fs-plugin-info-dialog.php:1004 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "Отзывы " + +#: includes/fs-plugin-info-dialog.php:1005 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "Другие заметки " + +#: includes/fs-plugin-info-dialog.php:1020 +msgctxt "Plugin installer section title" +msgid "Features & Pricing" +msgstr "Функционал&тарифные планы " + +#: includes/fs-plugin-info-dialog.php:1102 +msgctxt "e.g. Professional Plan" +msgid "%s Plan" +msgstr "%s план " + +#: includes/fs-plugin-info-dialog.php:1128 +msgctxt "e.g. the best product" +msgid "Best" +msgstr "Лучший " + +#: includes/fs-plugin-info-dialog.php1134, +#: includes/fs-plugin-info-dialog.php:1154 +msgctxt "as every month" +msgid "Monthly" +msgstr "Помесячно " + +#: includes/fs-plugin-info-dialog.php:1137 +msgctxt "as once a year" +msgid "Annual" +msgstr "Ежегодно " + +#: includes/fs-plugin-info-dialog.php:1156 +msgctxt "as once a year" +msgid "Annually" +msgstr "Один раз в год " + +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "as once a year" +msgid "Once" +msgstr "Один раз " + +#: includes/fs-plugin-info-dialog.php1154, +#: includes/fs-plugin-info-dialog.php1156, +#: includes/fs-plugin-info-dialog.php:1158 +msgctxt "e.g. billed monthly" +msgid "Billed %s" +msgstr "Оплачивать %s" + +#: includes/fs-plugin-info-dialog.php1178, +#: templates/plugin-info/features.php:82 +msgctxt "as monthly period" +msgid "mo" +msgstr "на один месяц" + +#: includes/fs-plugin-info-dialog.php1185, +#: templates/plugin-info/features.php:80 +msgctxt "as annual period" +msgid "year" +msgstr "на один год " + +#: includes/fs-plugin-info-dialog.php1315, templates/account.php121, +#: templates/debug.php232, templates/debug.php269, templates/debug.php518, +#: templates/account/partials/addon.php:41 +msgctxt "product version" +msgid "Version" +msgstr "Версия " + +#: includes/fs-plugin-info-dialog.php:1322 +msgctxt "as the plugin author" +msgid "Author" +msgstr "Автор" + +#: includes/fs-plugin-info-dialog.php1334, templates/account.php:540 +#. translators: %s: time period (e.g. "2 hours" ago) +msgctxt "x-ago" +msgid "%s ago" +msgstr "%s тому назад " + +#: templates/account.php:126 +msgctxt "as synchronize license" +msgid "Sync License" +msgstr "Синхронизация лицензии " + +#: templates/account.php135, templates/debug.php412, +#: includes/customizer/class-fs-customizer-upsell-control.php110, +#: templates/account/partials/addon.php:54 +msgctxt "as product pricing plan" +msgid "Plan" +msgstr "Тарифный план " + +#: templates/account.php370, templates/account/partials/addon.php:345 +msgctxt "as synchronize" +msgid "Sync" +msgstr "Синхронизировать " + +#: templates/account.php:440 +msgctxt "as secret encryption key missing" +msgid "No Secret" +msgstr "Нет секрета " + +#: templates/account.php:788 +msgctxt "as software license" +msgid "License" +msgstr "Лицензия " + +#: templates/add-ons.php:229 +msgctxt "active add-on" +msgid "Active" +msgstr "" + +#: templates/add-ons.php:230 +msgctxt "installed add-on" +msgid "Installed" +msgstr "" + +#: templates/admin-notice.php17, templates/forms/license-activation.php245, +#: templates/forms/resend-key.php:80 +msgctxt "as close a window" +msgid "Dismiss" +msgstr "Закрыть " + +#: templates/connect.php:118 +#. translators: %s: name (e.g. Hey John,) +msgctxt "greeting" +msgid "Hey %s," +msgstr "Здравствуйте %s" + +#: templates/connect.php:876 +msgctxt "as in the process of sending an email" +msgid "Sending email" +msgstr "Электронное письмо отправляется Вам на почту " + +#: templates/connect.php:877 +msgctxt "as activating plugin" +msgid "Activating" +msgstr "Активация " + +#: templates/debug.php:17 +msgctxt "as turned off" +msgid "Off" +msgstr "Выключить " + +#: templates/debug.php:18 +msgctxt "as turned on" +msgid "On" +msgstr "Включить " + +#: templates/debug.php:28 +msgctxt "as code debugging" +msgid "Debugging" +msgstr "Устранение ошибок" + +#: templates/debug.php:228 +msgctxt "as software development kit versions" +msgid "SDK Versions" +msgstr "Версии SDK" + +#: templates/debug.php:271 +msgctxt "as application program interface" +msgid "API" +msgstr "API" + +#: templates/debug.php:323 +msgctxt "as connection was successful" +msgid "Connected" +msgstr "Соединено " + +#: templates/debug.php:325 +msgctxt "as connection blocked" +msgid "Blocked" +msgstr "Заблокировано " + +#: templates/debug.php:326 +msgctxt "API connectivity state is unknown" +msgid "Unknown" +msgstr "" + +#: templates/debug.php:400 +msgctxt "like websites" +msgid "Sites" +msgstr "Сайтов " + +#: templates/debug.php:632 +msgctxt "as expiration date" +msgid "Expiration" +msgstr "Срок пользования " + +#: includes/debug/class-fs-debug-bar-panel.php51, +#: templates/debug/api-calls.php54, templates/debug/logger.php:62 +msgctxt "milliseconds" +msgid "ms" +msgstr "мс " + +#: includes/managers/class-fs-clone-manager.php:1319 +msgctxt "Clone resolution admin notice products list label" +msgid "Products" +msgstr "" + +#: includes/managers/class-fs-clone-manager.php:1426 +msgctxt "\"The \", e.g.: \"The plugin\"" +msgid "The %s's" +msgstr "" + +#: templates/debug/api-calls.php:71 +msgctxt "as file/folder path" +msgid "Path" +msgstr "Путь " + +#: templates/debug/plugins-themes-sync.php21, +#: templates/debug/scheduled-crons.php:74 +msgctxt "seconds" +msgid "sec" +msgstr "сек" + +#: templates/forms/email-address-update.php33, +#: templates/forms/user-change.php:81 +msgctxt "close window" +msgid "Dismiss" +msgstr "Закрыть " + +#: templates/forms/premium-versions-upgrade-handler.php:75 +msgctxt "close a window" +msgid "Dismiss" +msgstr "Закрыть " + +#: templates/account/partials/activate-license-button.php:50 +msgctxt "as 5 licenses left" +msgid "%s left" +msgstr "Осталось %s " diff --git a/languages/freemius.pot b/languages/freemius.pot index 3bdefb19..adae08a8 100644 --- a/languages/freemius.pot +++ b/languages/freemius.pot @@ -1,4 +1,4 @@ -# Copyright (C) 2023 freemius +# Copyright (C) 2024 freemius # This file is distributed under the same license as the freemius package. msgid "" msgstr "" @@ -8,837 +8,845 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Language-Team: Freemius Team \n" "Last-Translator: Vova Feldman \n" +"POT-Creation-Date: 2024-01-30 15:42+0000\n" "Report-Msgid-Bugs-To: https://github.com/Freemius/wordpress-sdk/issues\n" "X-Poedit-Basepath: ..\n" -"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" +"X-Poedit-KeywordsList: get_text_inline;get_text_x_inline:1,2c;$this->get_text_inline;$this->get_text_x_inline:1,2c;$this->_fs->get_text_inline;$this->_fs->get_text_x_inline:1,2c;$this->fs->get_text_inline;$this->fs->get_text_x_inline:1,2c;$fs->get_text_inline;$fs->get_text_x_inline:1,2c;$this->_parent->get_text_inline;$this->_parent->get_text_x_inline:1,2c;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;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" "X-Poedit-SearchPath-0: .\n" "X-Poedit-SearchPathExcluded-0: *.js\n" "X-Poedit-SourceCharset: UTF-8\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: includes/class-freemius.php:1748, templates/account.php:947 +#: includes/class-freemius.php:1781, templates/account.php:943 msgid "An update to a Beta version will replace your installed version of %s with the latest Beta release - use with caution, and not on production sites. You have been warned." msgstr "" -#: includes/class-freemius.php:1755 +#: includes/class-freemius.php:1788 msgid "Would you like to proceed with the update?" msgstr "" -#: includes/class-freemius.php:1980 +#: includes/class-freemius.php:2013 msgid "Freemius SDK couldn't find the plugin's main file. Please contact sdk@freemius.com with the current error." msgstr "" -#: includes/class-freemius.php:1982, includes/fs-plugin-info-dialog.php:1517 +#: includes/class-freemius.php:2015, includes/fs-plugin-info-dialog.php:1513 msgid "Error" msgstr "" -#: includes/class-freemius.php:2428 +#: includes/class-freemius.php:2461 msgid "I found a better %s" msgstr "" -#: includes/class-freemius.php:2430 +#: includes/class-freemius.php:2463 msgid "What's the %s's name?" msgstr "" -#: includes/class-freemius.php:2436 +#: includes/class-freemius.php:2469 msgid "It's a temporary %s - I'm troubleshooting an issue" msgstr "" -#: includes/class-freemius.php:2438 +#: includes/class-freemius.php:2471 msgid "Deactivation" msgstr "" -#: includes/class-freemius.php:2439 +#: includes/class-freemius.php:2472 msgid "Theme Switch" msgstr "" -#: includes/class-freemius.php:2448, templates/forms/resend-key.php:24, templates/forms/user-change.php:29 +#: includes/class-freemius.php:2481, templates/forms/resend-key.php:24, templates/forms/user-change.php:29 msgid "Other" msgstr "" -#: includes/class-freemius.php:2456 +#: includes/class-freemius.php:2489 msgid "I no longer need the %s" msgstr "" -#: includes/class-freemius.php:2463 +#: includes/class-freemius.php:2496 msgid "I only needed the %s for a short period" msgstr "" -#: includes/class-freemius.php:2469 +#: includes/class-freemius.php:2502 msgid "The %s broke my site" msgstr "" -#: includes/class-freemius.php:2476 +#: includes/class-freemius.php:2509 msgid "The %s suddenly stopped working" msgstr "" -#: includes/class-freemius.php:2486 +#: includes/class-freemius.php:2519 msgid "I can't pay for it anymore" msgstr "" -#: includes/class-freemius.php:2488 +#: includes/class-freemius.php:2521 msgid "What price would you feel comfortable paying?" msgstr "" -#: includes/class-freemius.php:2494 +#: includes/class-freemius.php:2527 msgid "I don't like to share my information with you" msgstr "" -#: includes/class-freemius.php:2515 +#: includes/class-freemius.php:2548 msgid "The %s didn't work" msgstr "" -#: includes/class-freemius.php:2525 +#: includes/class-freemius.php:2558 msgid "I couldn't understand how to make it work" msgstr "" -#: includes/class-freemius.php:2533 +#: includes/class-freemius.php:2566 msgid "The %s is great, but I need specific feature that you don't support" msgstr "" -#: includes/class-freemius.php:2535 +#: includes/class-freemius.php:2568 msgid "What feature?" msgstr "" -#: includes/class-freemius.php:2539 +#: includes/class-freemius.php:2572 msgid "The %s is not working" msgstr "" -#: includes/class-freemius.php:2541 +#: includes/class-freemius.php:2574 msgid "Kindly share what didn't work so we can fix it for future users..." msgstr "" -#: includes/class-freemius.php:2545 +#: includes/class-freemius.php:2578 msgid "It's not what I was looking for" msgstr "" -#: includes/class-freemius.php:2547 +#: includes/class-freemius.php:2580 msgid "What you've been looking for?" msgstr "" -#: includes/class-freemius.php:2551 +#: includes/class-freemius.php:2584 msgid "The %s didn't work as expected" msgstr "" -#: includes/class-freemius.php:2553 +#: includes/class-freemius.php:2586 msgid "What did you expect?" msgstr "" -#: includes/class-freemius.php:3641, templates/debug.php:24 +#: includes/class-freemius.php:3685, templates/debug.php:24 msgid "Freemius Debug" msgstr "" -#: includes/class-freemius.php:4755 +#. translators: %s: License type (e.g. you have a professional license) +#: includes/class-freemius.php:4828 msgid "You have purchased a %s license." msgstr "" -#: includes/class-freemius.php:4759 +#: includes/class-freemius.php:4832 msgid " The %s's %sdownload link%s, license key, and installation instructions have been sent to %s. If you can't find the email after 5 min, please check your spam box." msgstr "" -#: includes/class-freemius.php:4769, includes/class-freemius.php:21125, includes/class-freemius.php:24783 +#: includes/class-freemius.php:4842, includes/class-freemius.php:21166, includes/class-freemius.php:24835 msgctxt "interjection expressing joy or exuberance" msgid "Yee-haw" msgstr "" -#: includes/class-freemius.php:4783 +#: includes/class-freemius.php:4856 msgctxt "addonX cannot run without pluginY" msgid "%s cannot run without %s." msgstr "" -#: includes/class-freemius.php:4784 +#: includes/class-freemius.php:4857 msgctxt "addonX cannot run..." msgid "%s cannot run without the plugin." msgstr "" -#: includes/class-freemius.php:4786, includes/class-freemius.php:5978, includes/class-freemius.php:13730, includes/class-freemius.php:14469, includes/class-freemius.php:18281, includes/class-freemius.php:18394, includes/class-freemius.php:18571, includes/class-freemius.php:20856, includes/class-freemius.php:21955, includes/class-freemius.php:22971, includes/class-freemius.php:23101, includes/class-freemius.php:23231, templates/add-ons.php:57 +#: includes/class-freemius.php:4859, includes/class-freemius.php:6051, includes/class-freemius.php:13828, includes/class-freemius.php:14567, includes/class-freemius.php:18322, includes/class-freemius.php:18435, includes/class-freemius.php:18612, includes/class-freemius.php:20897, includes/class-freemius.php:21996, includes/class-freemius.php:23012, includes/class-freemius.php:23142, includes/class-freemius.php:23285, templates/add-ons.php:57 msgctxt "exclamation" msgid "Oops" msgstr "" -#: includes/class-freemius.php:5065 +#: includes/class-freemius.php:5138 msgid "There was an unexpected API error while processing your request. Please try again in a few minutes and if it still doesn't work, contact the %s's author with the following:" msgstr "" -#: includes/class-freemius.php:5645 +#. translators: %s: License type (e.g. you have a professional license) +#: includes/class-freemius.php:5743 +msgid "You have a %s license." +msgstr "" + +#: includes/class-freemius.php:5716 msgid "Premium %s version was successfully activated." msgstr "" -#: includes/class-freemius.php:5657, includes/class-freemius.php:7692 +#: includes/class-freemius.php:5728, includes/class-freemius.php:7765 msgctxt "Used to express elation, enthusiasm, or triumph (especially in electronic communication)." msgid "W00t" msgstr "" -#: includes/class-freemius.php:5672 -msgid "You have a %s license." -msgstr "" - -#: includes/class-freemius.php:5961 +#: includes/class-freemius.php:6034 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." msgstr "" -#: includes/class-freemius.php:5965 +#: includes/class-freemius.php:6038 msgid "%s is a premium only add-on. You have to purchase a license first before activating the plugin." msgstr "" -#: includes/class-freemius.php:5974, templates/add-ons.php:186, templates/account/partials/addon.php:386 +#: includes/class-freemius.php:6047, templates/add-ons.php:186, templates/account/partials/addon.php:386 msgid "More information about %s" msgstr "" -#: includes/class-freemius.php:5975 +#: includes/class-freemius.php:6048 msgid "Purchase License" msgstr "" -#. translators: %3$s: action (e.g.: "start the trial" or "complete the opt-in") -#: includes/class-freemius.php:6971 -msgid "You should receive a confirmation email for %1$s to your mailbox at %2$s. Please make sure you click the button in that email to %3$s." -msgstr "" - -#: includes/class-freemius.php:6974 -msgid "start the trial" -msgstr "" - -#: includes/class-freemius.php:6975, templates/connect.php:218 -msgid "complete the opt-in" -msgstr "" - -#: includes/class-freemius.php:6977 -msgid "Thanks!" -msgstr "" - #. translators: %3$s: What the user is expected to receive via email (e.g.: "the installation instructions" or "a license key") -#: includes/class-freemius.php:6980 +#: includes/class-freemius.php:7053 msgid "You should receive %3$s for %1$s to your mailbox at %2$s in the next 5 minutes." msgstr "" -#: includes/class-freemius.php:6983 -msgctxt "Part of the message telling the user what they should receive via email." -msgid "the installation instructions" -msgstr "" - -#: includes/class-freemius.php:6989 +#: includes/class-freemius.php:7062 msgctxt "Part of the message telling the user what they should receive via email." msgid "a license key" msgstr "" -#: includes/class-freemius.php:6997 +#. translators: %s: activation link (e.g.: Click here) +#: includes/class-freemius.php:7070 msgid "%s to activate the license once you get it." msgstr "" -#: includes/class-freemius.php:7005 +#: includes/class-freemius.php:7078 msgctxt "Part of an activation link message." msgid "Click here" msgstr "" -#: includes/class-freemius.php:7012 +#: includes/class-freemius.php:7056 +msgctxt "Part of the message telling the user what they should receive via email." +msgid "the installation instructions" +msgstr "" + +#: includes/class-freemius.php:7085 msgctxt "Part of the message that tells the user to check their spam folder for a specific email." msgid "the product's support email address" msgstr "" -#: includes/class-freemius.php:7018 +#: includes/class-freemius.php:7091 msgid "If you didn't get the email, try checking your spam folder or search for emails from %4$s." msgstr "" -#: includes/class-freemius.php:7020 +#: includes/class-freemius.php:7093 msgid "Thanks for upgrading." msgstr "" -#: includes/class-freemius.php:7156 +#: includes/class-freemius.php:7044 +msgid "You should receive a confirmation email for %1$s to your mailbox at %2$s. Please make sure you click the button in that email to %3$s." +msgstr "" + +#: includes/class-freemius.php:7047 +msgid "start the trial" +msgstr "" + +#: includes/class-freemius.php:7048, templates/connect.php:209 +msgid "complete the opt-in" +msgstr "" + +#: includes/class-freemius.php:7050 +msgid "Thanks!" +msgstr "" + +#: includes/class-freemius.php:7229 msgid "You are just one step away - %s" msgstr "" -#: includes/class-freemius.php:7159 +#: includes/class-freemius.php:7232 msgctxt "%s - plugin name. As complete \"PluginX\" activation now" msgid "Complete \"%s\" Activation Now" msgstr "" -#: includes/class-freemius.php:7241 +#: includes/class-freemius.php:7314 msgid "We made a few tweaks to the %s, %s" msgstr "" -#: includes/class-freemius.php:7245 +#: includes/class-freemius.php:7318 msgid "Opt in to make \"%s\" better!" msgstr "" -#: includes/class-freemius.php:7691 +#: includes/class-freemius.php:7764 msgid "The upgrade of %s was successfully completed." msgstr "" -#: includes/class-freemius.php:10441, includes/class-fs-plugin-updater.php:1100, includes/class-fs-plugin-updater.php:1315, includes/class-fs-plugin-updater.php:1322, templates/auto-installation.php:32 +#: includes/class-freemius.php:10527, includes/class-fs-plugin-updater.php:1095, includes/class-fs-plugin-updater.php:1317, includes/class-fs-plugin-updater.php:1310, templates/auto-installation.php:32 msgid "Add-On" msgstr "" -#: includes/class-freemius.php:10443, templates/account.php:411, templates/account.php:419, templates/debug.php:399, templates/debug.php:619 +#: includes/class-freemius.php:10529, templates/account.php:407, templates/account.php:415, templates/debug.php:399, templates/debug.php:619 msgid "Plugin" msgstr "" -#: includes/class-freemius.php:10444, templates/account.php:412, templates/account.php:420, templates/debug.php:399, templates/debug.php:619, templates/forms/deactivation/form.php:107 +#: includes/class-freemius.php:10530, templates/account.php:408, templates/account.php:416, templates/debug.php:399, templates/debug.php:619, templates/forms/deactivation/form.php:107 msgid "Theme" msgstr "" -#: includes/class-freemius.php:13549 +#: includes/class-freemius.php:13635 msgid "An unknown error has occurred while trying to toggle the license's white-label mode." msgstr "" -#: includes/class-freemius.php:13563 +#: includes/class-freemius.php:13649 msgid "Your %s license was flagged as white-labeled to hide sensitive information from the WP Admin (e.g. your email, license key, prices, billing address & invoices). If you ever wish to revert it back, you can easily do it through your %s. If this was a mistake you can also %s." msgstr "" -#: includes/class-freemius.php:13568, templates/account/partials/disconnect-button.php:84 +#: includes/class-freemius.php:13654, templates/account/partials/disconnect-button.php:84 msgid "User Dashboard" msgstr "" -#: includes/class-freemius.php:13569 +#: includes/class-freemius.php:13655 msgid "revert it now" msgstr "" -#: includes/class-freemius.php:13627 +#: includes/class-freemius.php:13713 msgid "An unknown error has occurred while trying to set the user's beta mode." msgstr "" -#: includes/class-freemius.php:13701 +#: includes/class-freemius.php:13799 msgid "Invalid new user ID or email address." msgstr "" -#: includes/class-freemius.php:13731 +#: includes/class-freemius.php:13829 msgid "Sorry, we could not complete the email update. Another user with the same email is already registered." msgstr "" -#: includes/class-freemius.php:13732 +#: includes/class-freemius.php:13830 msgid "If you would like to give up the ownership of the %s's account to %s click the Change Ownership button." msgstr "" -#: includes/class-freemius.php:13739 +#: includes/class-freemius.php:13837 msgid "Change Ownership" msgstr "" -#: includes/class-freemius.php:14336 +#: includes/class-freemius.php:14434 msgid "Invalid site details collection." msgstr "" -#: includes/class-freemius.php:14456 -msgid "We couldn't find your email address in the system, are you sure it's the right address?" +#: includes/class-freemius.php:14556 +msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" msgstr "" -#: includes/class-freemius.php:14458 -msgid "We can't see any active licenses associated with that email address, are you sure it's the right address?" +#: includes/class-freemius.php:14554 +msgid "We couldn't find your email address in the system, are you sure it's the right address?" msgstr "" -#: includes/class-freemius.php:14756 +#: includes/class-freemius.php:14860 msgid "Account is pending activation. Please check your email and click the link to activate your account and then submit the affiliate form again." msgstr "" -#: includes/class-freemius.php:14870, templates/forms/premium-versions-upgrade-handler.php:47 -msgid "Buy a license now" +#: includes/class-freemius.php:14986, templates/forms/premium-versions-upgrade-handler.php:46 +msgid "Renew your license now" msgstr "" -#: includes/class-freemius.php:14882, templates/forms/premium-versions-upgrade-handler.php:46 -msgid "Renew your license now" +#: includes/class-freemius.php:14974, templates/forms/premium-versions-upgrade-handler.php:47 +msgid "Buy a license now" msgstr "" -#: includes/class-freemius.php:14886 +#: includes/class-freemius.php:14990 msgid "%s to access version %s security & feature updates, and support." msgstr "" -#: includes/class-freemius.php:17621 +#: includes/class-freemius.php:17662 msgid "%s opt-in was successfully completed." msgstr "" -#: includes/class-freemius.php:17635 -msgid "Your account was successfully activated with the %s plan." +#: includes/class-freemius.php:17686, includes/class-freemius.php:21607 +msgid "Your trial has been successfully started." msgstr "" -#: includes/class-freemius.php:17645, includes/class-freemius.php:21566 -msgid "Your trial has been successfully started." +#: includes/class-freemius.php:17676 +msgid "Your account was successfully activated with the %s plan." msgstr "" -#: includes/class-freemius.php:18279, includes/class-freemius.php:18392, includes/class-freemius.php:18569 +#: includes/class-freemius.php:18320, includes/class-freemius.php:18433, includes/class-freemius.php:18610 msgid "Couldn't activate %s." msgstr "" -#: includes/class-freemius.php:18280, includes/class-freemius.php:18393, includes/class-freemius.php:18570 +#: includes/class-freemius.php:18321, includes/class-freemius.php:18434, includes/class-freemius.php:18611 msgid "Please contact us with the following message:" msgstr "" -#: includes/class-freemius.php:18389, templates/forms/data-debug-mode.php:162 +#: includes/class-freemius.php:18430, templates/forms/data-debug-mode.php:162 msgid "An unknown error has occurred." msgstr "" -#: includes/class-freemius.php:18931, includes/class-freemius.php:24339 +#: includes/class-freemius.php:18972, includes/class-freemius.php:24391 msgid "Upgrade" msgstr "" -#: includes/class-freemius.php:18937 -msgid "Start Trial" +#: includes/class-freemius.php:18980 +msgid "Pricing" msgstr "" -#: includes/class-freemius.php:18939 -msgid "Pricing" +#: includes/class-freemius.php:18978 +msgid "Start Trial" msgstr "" -#: includes/class-freemius.php:19019, includes/class-freemius.php:19021 +#: includes/class-freemius.php:19060, includes/class-freemius.php:19062 msgid "Affiliation" msgstr "" -#: includes/class-freemius.php:19049, includes/class-freemius.php:19051, templates/account.php:264, templates/debug.php:366 +#: includes/class-freemius.php:19090, includes/class-freemius.php:19092, templates/account.php:260, templates/debug.php:366 msgid "Account" msgstr "" -#: includes/class-freemius.php:19065, includes/class-freemius.php:19067, includes/customizer/class-fs-customizer-support-section.php:60 +#: includes/class-freemius.php:19106, includes/class-freemius.php:19108, includes/customizer/class-fs-customizer-support-section.php:60 msgid "Contact Us" msgstr "" -#: includes/class-freemius.php:19078, includes/class-freemius.php:19080, includes/class-freemius.php:24353, templates/account.php:134, templates/account/partials/addon.php:49 +#: includes/class-freemius.php:19119, includes/class-freemius.php:19121, includes/class-freemius.php:24405, templates/account.php:130, templates/account/partials/addon.php:49 msgid "Add-Ons" msgstr "" -#: includes/class-freemius.php:19114 +#: includes/class-freemius.php:19155 msgctxt "ASCII arrow left icon" msgid "←" msgstr "" -#: includes/class-freemius.php:19114 +#: includes/class-freemius.php:19155 msgctxt "ASCII arrow right icon" msgid "➤" msgstr "" -#: includes/class-freemius.php:19116, templates/pricing.php:110 +#: includes/class-freemius.php:19157, templates/pricing.php:110 msgctxt "noun" msgid "Pricing" msgstr "" -#: includes/class-freemius.php:19329, includes/customizer/class-fs-customizer-support-section.php:67 +#: includes/class-freemius.php:19370, includes/customizer/class-fs-customizer-support-section.php:67 msgid "Support Forum" msgstr "" -#: includes/class-freemius.php:20350 +#: includes/class-freemius.php:20391 msgid "Your email has been successfully verified - you are AWESOME!" msgstr "" -#: includes/class-freemius.php:20351 +#: includes/class-freemius.php:20392 msgctxt "a positive response" msgid "Right on" msgstr "" -#: includes/class-freemius.php:20857 +#: includes/class-freemius.php:20898 msgid "seems like the key you entered doesn't match our records." msgstr "" -#: includes/class-freemius.php:20881 +#: includes/class-freemius.php:20922 msgid "Debug mode was successfully enabled and will be automatically disabled in 60 min. You can also disable it earlier by clicking the \"Stop Debug\" link." msgstr "" -#: includes/class-freemius.php:21116 +#: includes/class-freemius.php:21157 msgid "Your %s Add-on plan was successfully upgraded." msgstr "" -#: includes/class-freemius.php:21118 +#. translators: %s:product name, e.g. Facebook add-on was successfully... +#: includes/class-freemius.php:21159 msgid "%s Add-on was successfully purchased." msgstr "" -#: includes/class-freemius.php:21121 +#: includes/class-freemius.php:21162 msgid "Download the latest version" msgstr "" -#: includes/class-freemius.php:21239 +#: includes/class-freemius.php:21280 msgid "It seems like one of the authentication parameters is wrong. Update your Public Key, Secret Key & User ID, and try again." msgstr "" -#: includes/class-freemius.php:21239, includes/class-freemius.php:21636, includes/class-freemius.php:21737, includes/class-freemius.php:21824 +#: includes/class-freemius.php:21280, includes/class-freemius.php:21677, includes/class-freemius.php:21778, includes/class-freemius.php:21865 msgid "Error received from the server:" msgstr "" -#: includes/class-freemius.php:21470, includes/class-freemius.php:21742, includes/class-freemius.php:21795, includes/class-freemius.php:21902 +#: includes/class-freemius.php:21511, includes/class-freemius.php:21783, includes/class-freemius.php:21836, includes/class-freemius.php:21943 msgctxt "something somebody says when they are thinking about what you have just said." msgid "Hmm" msgstr "" -#: includes/class-freemius.php:21483 +#: includes/class-freemius.php:21524 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." msgstr "" -#: includes/class-freemius.php:21484, templates/account.php:136, templates/add-ons.php:250, templates/account/partials/addon.php:51 +#: includes/class-freemius.php:21525, templates/account.php:132, templates/add-ons.php:250, templates/account/partials/addon.php:51 msgctxt "trial period" msgid "Trial" msgstr "" -#: includes/class-freemius.php:21489 +#: includes/class-freemius.php:21530 msgid "I have upgraded my account but when I try to Sync the License, the plan remains %s." msgstr "" -#: includes/class-freemius.php:21493, includes/class-freemius.php:21545 +#: includes/class-freemius.php:21534, includes/class-freemius.php:21586 msgid "Please contact us here" msgstr "" -#: includes/class-freemius.php:21515 +#: includes/class-freemius.php:21556 msgid "Your plan was successfully changed to %s." msgstr "" -#: includes/class-freemius.php:21531 +#: includes/class-freemius.php:21572 msgid "Your license has expired. You can still continue using the free %s forever." msgstr "" -#: includes/class-freemius.php:21533 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; %4$s: 'plugin', 'theme', or 'add-on'. +#: includes/class-freemius.php:21574 msgid "Your license has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "" -#: includes/class-freemius.php:21541 +#: includes/class-freemius.php:21582 msgid "Your license has been cancelled. If you think it's a mistake, please contact support." msgstr "" -#: includes/class-freemius.php:21554 +#: includes/class-freemius.php:21595 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." msgstr "" -#: includes/class-freemius.php:21580 +#: includes/class-freemius.php:21621 msgid "Your free trial has expired. You can still continue using all our free features." msgstr "" -#: includes/class-freemius.php:21582 +#. translators: %1$s: product title; %2$s, %3$s: wrapping HTML anchor element; %4$s: 'plugin', 'theme', or 'add-on'. +#: includes/class-freemius.php:21623 msgid "Your free trial has expired. %1$sUpgrade now%2$s to continue using the %3$s without interruptions." msgstr "" -#: includes/class-freemius.php:21628 +#: includes/class-freemius.php:21669 msgid "Your server is blocking the access to Freemius' API, which is crucial for %1$s synchronization. Please contact your host to whitelist the following domains:%2$s" msgstr "" -#: includes/class-freemius.php:21630 +#: includes/class-freemius.php:21671 msgid "Show error details" msgstr "" -#: includes/class-freemius.php:21733 +#: includes/class-freemius.php:21774 msgid "It looks like the license could not be activated." msgstr "" -#: includes/class-freemius.php:21775 +#: includes/class-freemius.php:21816 msgid "Your license was successfully activated." msgstr "" -#: includes/class-freemius.php:21799 +#: includes/class-freemius.php:21840 msgid "It looks like your site currently doesn't have an active license." msgstr "" -#: includes/class-freemius.php:21823 +#: includes/class-freemius.php:21864 msgid "It looks like the license deactivation failed." msgstr "" -#: includes/class-freemius.php:21852 +#: includes/class-freemius.php:21893 msgid "Your %s license was successfully deactivated." msgstr "" -#: includes/class-freemius.php:21853 +#: includes/class-freemius.php:21894 msgid "Your license was successfully deactivated, you are back to the %s plan." msgstr "" -#: includes/class-freemius.php:21856 +#: includes/class-freemius.php:21897 msgid "O.K" msgstr "" -#: includes/class-freemius.php:21909 +#: includes/class-freemius.php:21950 msgid "Seems like we are having some temporary issue with your subscription cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:21918 +#: includes/class-freemius.php:21959 msgid "Your subscription was successfully cancelled. Your %s plan license will expire in %s." msgstr "" -#: includes/class-freemius.php:21960 +#: includes/class-freemius.php:22001 msgid "You are already running the %s in a trial mode." msgstr "" -#: includes/class-freemius.php:21971 +#: includes/class-freemius.php:22012 msgid "You already utilized a trial before." msgstr "" -#: includes/class-freemius.php:21985 -msgid "Plan %s do not exist, therefore, can't start a trial." +#: includes/class-freemius.php:22048 +msgid "None of the %s's plans supports a trial period." msgstr "" -#: includes/class-freemius.php:21996 -msgid "Plan %s does not support a trial period." +#: includes/class-freemius.php:22026 +msgid "Plan %s do not exist, therefore, can't start a trial." msgstr "" -#: includes/class-freemius.php:22007 -msgid "None of the %s's plans supports a trial period." +#: includes/class-freemius.php:22037 +msgid "Plan %s does not support a trial period." msgstr "" -#: includes/class-freemius.php:22056 +#: includes/class-freemius.php:22097 msgid "It looks like you are not in trial mode anymore so there's nothing to cancel :)" msgstr "" -#: includes/class-freemius.php:22092 +#: includes/class-freemius.php:22133 msgid "Seems like we are having some temporary issue with your trial cancellation. Please try again in few minutes." msgstr "" -#: includes/class-freemius.php:22111 +#: includes/class-freemius.php:22152 msgid "Your %s free trial was successfully cancelled." msgstr "" -#: includes/class-freemius.php:22438 -msgid "Version %s was released." +#: includes/class-freemius.php:22496 +msgid "Seems like you got the latest release." msgstr "" -#: includes/class-freemius.php:22438 -msgid "Please download %s." +#: includes/class-freemius.php:22497 +msgid "You are all good!" msgstr "" -#: includes/class-freemius.php:22445 -msgid "the latest %s version here" +#: includes/class-freemius.php:22479 +msgid "Version %s was released." msgstr "" -#: includes/class-freemius.php:22450 -msgid "New" +#: includes/class-freemius.php:22479 +msgid "Please download %s." msgstr "" -#: includes/class-freemius.php:22455 -msgid "Seems like you got the latest release." +#: includes/class-freemius.php:22486 +msgid "the latest %s version here" msgstr "" -#: includes/class-freemius.php:22456 -msgid "You are all good!" +#: includes/class-freemius.php:22491 +msgid "New" msgstr "" -#: includes/class-freemius.php:22859 +#: includes/class-freemius.php:22900 msgid "Verification mail was just sent to %s. If you can't find it after 5 min, please check your spam box." msgstr "" -#: includes/class-freemius.php:22999 +#: includes/class-freemius.php:23040 msgid "Site successfully opted in." msgstr "" -#: includes/class-freemius.php:23000, includes/class-freemius.php:24049 +#: includes/class-freemius.php:23041, includes/class-freemius.php:24101 msgid "Awesome" msgstr "" -#: includes/class-freemius.php:23016 +#: includes/class-freemius.php:23067 +msgid "Diagnostic data will no longer be sent from %s to %s." +msgstr "" + +#: includes/class-freemius.php:23057 msgid "Sharing diagnostic data with %s helps to provide functionality that's more relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the plugin should be translated and tailored to." msgstr "" -#: includes/class-freemius.php:23017 +#: includes/class-freemius.php:23058 msgid "Thank you!" msgstr "" -#: includes/class-freemius.php:23026 -msgid "Diagnostic data will no longer be sent from %s to %s." +#: includes/class-freemius.php:23227 +msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." msgstr "" -#: includes/class-freemius.php:23181 +#: includes/class-freemius.php:23225 msgid "A confirmation email was just sent to %s. The email owner must confirm the update within the next 4 hours." msgstr "" -#: includes/class-freemius.php:23183 -msgid "A confirmation email was just sent to %s. You must confirm the update within the next 4 hours. If you cannot find the email, please check your spam folder." -msgstr "" - -#: includes/class-freemius.php:23190 +#: includes/class-freemius.php:23239 msgid "Thanks for confirming the ownership change. An email was just sent to %s for final approval." msgstr "" -#: includes/class-freemius.php:23195 +#: includes/class-freemius.php:23245 msgid "%s is the new owner of the account." msgstr "" -#: includes/class-freemius.php:23197 +#: includes/class-freemius.php:23247 msgctxt "as congratulations" msgid "Congrats" msgstr "" -#: includes/class-freemius.php:23214 -msgid "Please provide your full name." +#: includes/class-freemius.php:23269 +msgid "Your name was successfully updated." msgstr "" -#: includes/class-freemius.php:23219 -msgid "Your name was successfully updated." +#: includes/class-freemius.php:23264 +msgid "Please provide your full name." msgstr "" -#: includes/class-freemius.php:23280 +#. translators: %s: User's account property (e.g. email address, name) +#: includes/class-freemius.php:23334 msgid "You have successfully updated your %s." msgstr "" -#: includes/class-freemius.php:23339 +#: includes/class-freemius.php:23398 msgid "Is this your client's site? %s if you wish to hide sensitive info like your email, license key, prices, billing address & invoices from the WP Admin." msgstr "" -#: includes/class-freemius.php:23342 +#: includes/class-freemius.php:23401 msgid "Click here" msgstr "" -#: includes/class-freemius.php:23379, includes/class-freemius.php:23376 +#: includes/class-freemius.php:23438 msgid "Bundle" msgstr "" -#: includes/class-freemius.php:23459 +#: includes/class-freemius.php:23511 msgid "Just letting you know that the add-ons information of %s is being pulled from an external server." msgstr "" -#: includes/class-freemius.php:23460 +#: includes/class-freemius.php:23512 msgctxt "advance notice of something that will need attention." msgid "Heads up" msgstr "" -#: includes/class-freemius.php:24089 +#: includes/class-freemius.php:24141 msgctxt "exclamation" msgid "Hey" msgstr "" -#: includes/class-freemius.php:24089 +#: includes/class-freemius.php:24141 msgid "How do you like %s so far? Test all our %s premium features with a %d-day free trial." msgstr "" -#: includes/class-freemius.php:24097 +#: includes/class-freemius.php:24149 msgid "No commitment for %s days - cancel anytime!" msgstr "" -#: includes/class-freemius.php:24098 +#: includes/class-freemius.php:24150 msgid "No credit card required" msgstr "" -#: includes/class-freemius.php:24105, templates/forms/trial-start.php:53 +#: includes/class-freemius.php:24157, templates/forms/trial-start.php:53 msgctxt "call to action" msgid "Start free trial" msgstr "" -#: includes/class-freemius.php:24182 +#: includes/class-freemius.php:24234 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!" msgstr "" -#: includes/class-freemius.php:24191 +#: includes/class-freemius.php:24243 msgid "Learn more" msgstr "" -#: includes/class-freemius.php:24377, templates/account.php:573, templates/account.php:725, templates/connect.php:221, templates/connect.php:447, includes/managers/class-fs-clone-manager.php:1295, templates/forms/license-activation.php:27, templates/account/partials/addon.php:326 +#: includes/class-freemius.php:24429, templates/account.php:569, templates/account.php:721, templates/connect.php:212, templates/connect.php:440, includes/managers/class-fs-clone-manager.php:1295, templates/forms/license-activation.php:27, templates/account/partials/addon.php:326 msgid "Activate License" msgstr "" -#: includes/class-freemius.php:24378, templates/account.php:667, templates/account.php:724, templates/account/partials/addon.php:327, templates/account/partials/site.php:273 +#: includes/class-freemius.php:24430, templates/account.php:663, templates/account.php:720, templates/account/partials/addon.php:327, templates/account/partials/site.php:273 msgid "Change License" msgstr "" -#: includes/class-freemius.php:24485, templates/account/partials/site.php:170 -msgid "Opt Out" -msgstr "" - -#: includes/class-freemius.php:24487, includes/class-freemius.php:24493, templates/account/partials/site.php:49, templates/account/partials/site.php:170 +#: includes/class-freemius.php:24545, includes/class-freemius.php:24539, templates/account/partials/site.php:49, templates/account/partials/site.php:170 msgid "Opt In" msgstr "" -#: includes/class-freemius.php:24728 -msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" -msgstr "" - -#: includes/class-freemius.php:24738 -msgid "Activate %s features" +#: includes/class-freemius.php:24537, templates/account/partials/site.php:170 +msgid "Opt Out" msgstr "" -#: includes/class-freemius.php:24751 +#: includes/class-freemius.php:24803 msgid "Please follow these steps to complete the upgrade" msgstr "" -#: includes/class-freemius.php:24755 +#. translators: %s: Plan title +#: includes/class-freemius.php:24807 msgid "Download the latest %s version" msgstr "" -#: includes/class-freemius.php:24759 +#: includes/class-freemius.php:24811 msgid "Upload and activate the downloaded version" msgstr "" -#: includes/class-freemius.php:24761 +#: includes/class-freemius.php:24813 msgid "How to upload and activate?" msgstr "" -#: includes/class-freemius.php:24796 +#: includes/class-freemius.php:24780 +msgid " The paid version of %1$s is already installed. Please activate it to start benefiting the %2$s features. %3$s" +msgstr "" + +#: includes/class-freemius.php:24790 +msgid "Activate %s features" +msgstr "" + +#: includes/class-freemius.php:24848 msgid "Your plan was successfully upgraded." msgstr "" -#: includes/class-freemius.php:24797 +#: includes/class-freemius.php:24849 msgid "Your plan was successfully activated." msgstr "" -#: includes/class-freemius.php:24927 +#: includes/class-freemius.php:24979 msgid "%sClick here%s to choose the sites where you'd like to activate the license on." msgstr "" -#: includes/class-freemius.php:25096 +#: includes/class-freemius.php:25148 msgid "Auto installation only works for opted-in users." msgstr "" -#: includes/class-freemius.php:25106, includes/class-freemius.php:25139, includes/class-fs-plugin-updater.php:1294, includes/class-fs-plugin-updater.php:1308 +#: includes/class-freemius.php:25158, includes/class-freemius.php:25191, includes/class-fs-plugin-updater.php:1289, includes/class-fs-plugin-updater.php:1303 msgid "Invalid module ID." msgstr "" -#: includes/class-freemius.php:25115, includes/class-fs-plugin-updater.php:1330 +#: includes/class-freemius.php:25199, includes/class-fs-plugin-updater.php:1324 +msgid "Premium add-on version already installed." +msgstr "" + +#: includes/class-freemius.php:25167, includes/class-fs-plugin-updater.php:1325 msgid "Premium version already active." msgstr "" -#: includes/class-freemius.php:25122 +#: includes/class-freemius.php:25174 msgid "You do not have a valid license to access the premium version." msgstr "" -#: includes/class-freemius.php:25129 +#: includes/class-freemius.php:25181 msgid "Plugin is a \"Serviceware\" which means it does not have a premium code version." msgstr "" -#: includes/class-freemius.php:25147, includes/class-fs-plugin-updater.php:1329 -msgid "Premium add-on version already installed." -msgstr "" - -#: includes/class-freemius.php:25501 +#: includes/class-freemius.php:25559 msgid "View paid features" msgstr "" -#: includes/class-freemius.php:25805 -msgid "Thank you so much for using %s and its add-ons!" +#: includes/class-freemius.php:25874 +msgid "Thank you so much for using our products!" msgstr "" -#: includes/class-freemius.php:25806 -msgid "Thank you so much for using %s!" +#: includes/class-freemius.php:25875 +msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." msgstr "" -#: includes/class-freemius.php:25812 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." +#: includes/class-freemius.php:25894 +msgid "%s and its add-ons" msgstr "" -#: includes/class-freemius.php:25816 -msgid "Thank you so much for using our products!" +#: includes/class-freemius.php:25903 +msgid "Products" msgstr "" -#: includes/class-freemius.php:25817 -msgid "You've already opted-in to our usage-tracking, which helps us keep improving them." +#: includes/class-freemius.php:25863 +msgid "Thank you so much for using %s and its add-ons!" msgstr "" -#: includes/class-freemius.php:25836 -msgid "%s and its add-ons" +#: includes/class-freemius.php:25864 +msgid "Thank you so much for using %s!" msgstr "" -#: includes/class-freemius.php:25845 -msgid "Products" +#: includes/class-freemius.php:25870 +msgid "You've already opted-in to our usage-tracking, which helps us keep improving the %s." msgstr "" -#: includes/class-freemius.php:25852, templates/connect.php:322 +#: includes/class-freemius.php:25910, templates/connect.php:313 msgid "Yes" msgstr "" -#: includes/class-freemius.php:25853, templates/connect.php:323 +#: includes/class-freemius.php:25911, templates/connect.php:314 msgid "send me security & feature updates, educational content and offers." msgstr "" -#: includes/class-freemius.php:25854, templates/connect.php:328 +#: includes/class-freemius.php:25912, templates/connect.php:319 msgid "No" msgstr "" -#: includes/class-freemius.php:25856, templates/connect.php:330 +#: includes/class-freemius.php:25914, templates/connect.php:321 msgid "do %sNOT%s send me security & feature updates, educational content and offers." msgstr "" -#: includes/class-freemius.php:25866 +#: includes/class-freemius.php:25924 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 :-)" msgstr "" -#: includes/class-freemius.php:25868, templates/connect.php:337 +#: includes/class-freemius.php:25926, templates/connect.php:328 msgid "Please let us know if you'd like us to contact you for security & feature updates, educational content, and occasional offers:" msgstr "" -#: includes/class-freemius.php:26158 +#: includes/class-freemius.php:26216 msgid "License key is empty." msgstr "" @@ -850,15 +858,15 @@ msgstr "" msgid "Buy license" msgstr "" -#: includes/class-fs-plugin-updater.php:335, includes/class-fs-plugin-updater.php:368 +#: includes/class-fs-plugin-updater.php:368, includes/class-fs-plugin-updater.php:335 msgid "There is a %s of %s available." msgstr "" -#: includes/class-fs-plugin-updater.php:337, includes/class-fs-plugin-updater.php:373 +#: includes/class-fs-plugin-updater.php:373, includes/class-fs-plugin-updater.php:337 msgid "new Beta version" msgstr "" -#: includes/class-fs-plugin-updater.php:338, includes/class-fs-plugin-updater.php:374 +#: includes/class-fs-plugin-updater.php:374, includes/class-fs-plugin-updater.php:338 msgid "new version" msgstr "" @@ -866,15 +874,15 @@ msgstr "" msgid "Important Upgrade Notice:" msgstr "" -#: includes/class-fs-plugin-updater.php:1359 +#: includes/class-fs-plugin-updater.php:1354 msgid "Installing plugin: %s" msgstr "" -#: includes/class-fs-plugin-updater.php:1400 +#: includes/class-fs-plugin-updater.php:1395 msgid "Unable to connect to the filesystem. Please confirm your credentials." msgstr "" -#: includes/class-fs-plugin-updater.php:1582 +#: includes/class-fs-plugin-updater.php:1577 msgid "The remote plugin package does not contain a folder with the desired slug and renaming did not work." msgstr "" @@ -887,24 +895,25 @@ msgctxt "verb" msgid "Purchase" msgstr "" +#. translators: %s: N-days trial #: includes/fs-plugin-info-dialog.php:547 msgid "Start my free %s" msgstr "" -#: includes/fs-plugin-info-dialog.php:745 -msgid "Install Free Version Update Now" +#: includes/fs-plugin-info-dialog.php:755 +msgid "Install Free Version Now" msgstr "" -#: includes/fs-plugin-info-dialog.php:746, templates/account.php:656 -msgid "Install Update Now" +#: includes/fs-plugin-info-dialog.php:756, templates/add-ons.php:323, templates/auto-installation.php:111, templates/account/partials/addon.php:423, templates/account/partials/addon.php:370 +msgid "Install Now" msgstr "" -#: includes/fs-plugin-info-dialog.php:755 -msgid "Install Free Version Now" +#: includes/fs-plugin-info-dialog.php:745 +msgid "Install Free Version Update Now" msgstr "" -#: includes/fs-plugin-info-dialog.php:756, templates/add-ons.php:323, templates/auto-installation.php:111, templates/account/partials/addon.php:370, templates/account/partials/addon.php:423 -msgid "Install Now" +#: includes/fs-plugin-info-dialog.php:746, templates/account.php:652 +msgid "Install Update Now" msgstr "" #: includes/fs-plugin-info-dialog.php:772 @@ -912,558 +921,569 @@ msgctxt "as download latest version" msgid "Download Latest Free Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:773, templates/account.php:114, templates/add-ons.php:37, templates/account/partials/addon.php:30 +#: includes/fs-plugin-info-dialog.php:773, templates/account.php:110, templates/add-ons.php:37, templates/account/partials/addon.php:30 msgctxt "as download latest version" msgid "Download Latest" msgstr "" -#: includes/fs-plugin-info-dialog.php:788, templates/add-ons.php:329, templates/account/partials/addon.php:361, templates/account/partials/addon.php:417 +#: includes/fs-plugin-info-dialog.php:788, templates/add-ons.php:329, templates/account/partials/addon.php:417, templates/account/partials/addon.php:361 msgid "Activate this add-on" msgstr "" -#: includes/fs-plugin-info-dialog.php:790, templates/connect.php:444 +#: includes/fs-plugin-info-dialog.php:790, templates/connect.php:437 msgid "Activate Free Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:791, templates/account.php:138, templates/add-ons.php:330, templates/account/partials/addon.php:53 +#: includes/fs-plugin-info-dialog.php:791, templates/account.php:134, templates/add-ons.php:330, templates/account/partials/addon.php:53 msgid "Activate" msgstr "" -#: includes/fs-plugin-info-dialog.php:1003 +#: includes/fs-plugin-info-dialog.php:999 msgctxt "Plugin installer section title" msgid "Description" msgstr "" -#: includes/fs-plugin-info-dialog.php:1004 +#: includes/fs-plugin-info-dialog.php:1000 msgctxt "Plugin installer section title" msgid "Installation" msgstr "" -#: includes/fs-plugin-info-dialog.php:1005 +#: includes/fs-plugin-info-dialog.php:1001 msgctxt "Plugin installer section title" msgid "FAQ" msgstr "" -#: includes/fs-plugin-info-dialog.php:1006, templates/plugin-info/description.php:55 +#: includes/fs-plugin-info-dialog.php:1002, templates/plugin-info/description.php:55 msgid "Screenshots" msgstr "" -#: includes/fs-plugin-info-dialog.php:1007 +#: includes/fs-plugin-info-dialog.php:1003 msgctxt "Plugin installer section title" msgid "Changelog" msgstr "" -#: includes/fs-plugin-info-dialog.php:1008 +#: includes/fs-plugin-info-dialog.php:1004 msgctxt "Plugin installer section title" msgid "Reviews" msgstr "" -#: includes/fs-plugin-info-dialog.php:1009 +#: includes/fs-plugin-info-dialog.php:1005 msgctxt "Plugin installer section title" msgid "Other Notes" msgstr "" -#: includes/fs-plugin-info-dialog.php:1024 +#: includes/fs-plugin-info-dialog.php:1020 msgctxt "Plugin installer section title" msgid "Features & Pricing" msgstr "" -#: includes/fs-plugin-info-dialog.php:1034 +#: includes/fs-plugin-info-dialog.php:1030 msgid "Plugin Install" msgstr "" -#: includes/fs-plugin-info-dialog.php:1106 +#: includes/fs-plugin-info-dialog.php:1102 msgctxt "e.g. Professional Plan" msgid "%s Plan" msgstr "" -#: includes/fs-plugin-info-dialog.php:1132 +#: includes/fs-plugin-info-dialog.php:1128 msgctxt "e.g. the best product" msgid "Best" msgstr "" -#: includes/fs-plugin-info-dialog.php:1138, includes/fs-plugin-info-dialog.php:1158 +#: includes/fs-plugin-info-dialog.php:1134, includes/fs-plugin-info-dialog.php:1154 msgctxt "as every month" msgid "Monthly" msgstr "" -#: includes/fs-plugin-info-dialog.php:1141 +#: includes/fs-plugin-info-dialog.php:1137 msgctxt "as once a year" msgid "Annual" msgstr "" -#: includes/fs-plugin-info-dialog.php:1144 +#: includes/fs-plugin-info-dialog.php:1140 msgid "Lifetime" msgstr "" -#: includes/fs-plugin-info-dialog.php:1158, includes/fs-plugin-info-dialog.php:1160, includes/fs-plugin-info-dialog.php:1162 +#: includes/fs-plugin-info-dialog.php:1154, includes/fs-plugin-info-dialog.php:1156, includes/fs-plugin-info-dialog.php:1158 msgctxt "e.g. billed monthly" msgid "Billed %s" msgstr "" -#: includes/fs-plugin-info-dialog.php:1160 +#: includes/fs-plugin-info-dialog.php:1156 msgctxt "as once a year" msgid "Annually" msgstr "" -#: includes/fs-plugin-info-dialog.php:1162 +#: includes/fs-plugin-info-dialog.php:1158 msgctxt "as once a year" msgid "Once" msgstr "" -#: includes/fs-plugin-info-dialog.php:1168 +#: includes/fs-plugin-info-dialog.php:1164 msgid "Single Site License" msgstr "" -#: includes/fs-plugin-info-dialog.php:1170 +#: includes/fs-plugin-info-dialog.php:1166 msgid "Unlimited Licenses" msgstr "" -#: includes/fs-plugin-info-dialog.php:1172 +#: includes/fs-plugin-info-dialog.php:1168 msgid "Up to %s Sites" msgstr "" -#: includes/fs-plugin-info-dialog.php:1182, templates/plugin-info/features.php:82 +#: includes/fs-plugin-info-dialog.php:1178, templates/plugin-info/features.php:82 msgctxt "as monthly period" msgid "mo" msgstr "" -#: includes/fs-plugin-info-dialog.php:1189, templates/plugin-info/features.php:80 +#: includes/fs-plugin-info-dialog.php:1185, templates/plugin-info/features.php:80 msgctxt "as annual period" msgid "year" msgstr "" -#: includes/fs-plugin-info-dialog.php:1243 +#: includes/fs-plugin-info-dialog.php:1239 msgctxt "noun" msgid "Price" msgstr "" -#: includes/fs-plugin-info-dialog.php:1291 +#. translators: %s: Discount (e.g. discount of $5 or 10%) +#: includes/fs-plugin-info-dialog.php:1287 msgid "Save %s" msgstr "" -#: includes/fs-plugin-info-dialog.php:1301 +#: includes/fs-plugin-info-dialog.php:1297 msgid "No commitment for %s - cancel anytime" msgstr "" -#: includes/fs-plugin-info-dialog.php:1304 +#: includes/fs-plugin-info-dialog.php:1300 msgid "After your free %s, pay as little as %s" msgstr "" -#: includes/fs-plugin-info-dialog.php:1315 +#: includes/fs-plugin-info-dialog.php:1311 msgid "Details" msgstr "" -#: includes/fs-plugin-info-dialog.php:1319, templates/account.php:125, templates/debug.php:232, templates/debug.php:269, templates/debug.php:518, templates/account/partials/addon.php:41 +#: includes/fs-plugin-info-dialog.php:1315, templates/account.php:121, templates/debug.php:232, templates/debug.php:269, templates/debug.php:518, templates/account/partials/addon.php:41 msgctxt "product version" msgid "Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:1326 +#: includes/fs-plugin-info-dialog.php:1322 msgctxt "as the plugin author" msgid "Author" msgstr "" -#: includes/fs-plugin-info-dialog.php:1333 +#: includes/fs-plugin-info-dialog.php:1329 msgid "Last Updated" msgstr "" -#: includes/fs-plugin-info-dialog.php:1338, templates/account.php:544 +#. translators: %s: time period (e.g. "2 hours" ago) +#: includes/fs-plugin-info-dialog.php:1334, templates/account.php:540 msgctxt "x-ago" msgid "%s ago" msgstr "" -#: includes/fs-plugin-info-dialog.php:1347 +#: includes/fs-plugin-info-dialog.php:1343 msgid "Requires WordPress Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:1350, includes/fs-plugin-info-dialog.php:1370 +#. translators: %s: Version number. +#: includes/fs-plugin-info-dialog.php:1346, includes/fs-plugin-info-dialog.php:1366 msgid "%s or higher" msgstr "" -#: includes/fs-plugin-info-dialog.php:1358 +#: includes/fs-plugin-info-dialog.php:1354 msgid "Compatible up to" msgstr "" -#: includes/fs-plugin-info-dialog.php:1366 +#: includes/fs-plugin-info-dialog.php:1362 msgid "Requires PHP Version" msgstr "" -#: includes/fs-plugin-info-dialog.php:1379 +#: includes/fs-plugin-info-dialog.php:1375 msgid "Downloaded" msgstr "" -#: includes/fs-plugin-info-dialog.php:1383 +#. translators: %s: 1 or One (Number of times downloaded) +#: includes/fs-plugin-info-dialog.php:1379 msgid "%s time" msgstr "" -#: includes/fs-plugin-info-dialog.php:1385 +#. translators: %s: Number of times downloaded +#: includes/fs-plugin-info-dialog.php:1381 msgid "%s times" msgstr "" -#: includes/fs-plugin-info-dialog.php:1396 +#: includes/fs-plugin-info-dialog.php:1392 msgid "WordPress.org Plugin Page" msgstr "" -#: includes/fs-plugin-info-dialog.php:1405 +#: includes/fs-plugin-info-dialog.php:1401 msgid "Plugin Homepage" msgstr "" -#: includes/fs-plugin-info-dialog.php:1414, includes/fs-plugin-info-dialog.php:1498 +#: includes/fs-plugin-info-dialog.php:1410, includes/fs-plugin-info-dialog.php:1494 msgid "Donate to this plugin" msgstr "" -#: includes/fs-plugin-info-dialog.php:1421 +#: includes/fs-plugin-info-dialog.php:1417 msgid "Average Rating" msgstr "" -#: includes/fs-plugin-info-dialog.php:1428 +#: includes/fs-plugin-info-dialog.php:1424 msgid "based on %s" msgstr "" -#: includes/fs-plugin-info-dialog.php:1432 +#. translators: %s: 1 or One +#: includes/fs-plugin-info-dialog.php:1428 msgid "%s rating" msgstr "" -#: includes/fs-plugin-info-dialog.php:1434 +#. translators: %s: Number larger than 1 +#: includes/fs-plugin-info-dialog.php:1430 msgid "%s ratings" msgstr "" -#: includes/fs-plugin-info-dialog.php:1449 +#. translators: %s: 1 or One +#: includes/fs-plugin-info-dialog.php:1445 msgid "%s star" msgstr "" -#: includes/fs-plugin-info-dialog.php:1451 +#. translators: %s: Number larger than 1 +#: includes/fs-plugin-info-dialog.php:1447 msgid "%s stars" msgstr "" -#: includes/fs-plugin-info-dialog.php:1463 +#. translators: %s: # of stars (e.g. 5 stars) +#: includes/fs-plugin-info-dialog.php:1459 msgid "Click to see reviews that provided a rating of %s" msgstr "" -#: includes/fs-plugin-info-dialog.php:1476 +#: includes/fs-plugin-info-dialog.php:1472 msgid "Contributors" msgstr "" -#: includes/fs-plugin-info-dialog.php:1517 +#: includes/fs-plugin-info-dialog.php:1513 msgid "This plugin requires a newer version of PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php:1526 +#. translators: %s: URL to Update PHP page. +#: includes/fs-plugin-info-dialog.php:1522 msgid "Click here to learn more about updating PHP." msgstr "" -#: includes/fs-plugin-info-dialog.php:1540, includes/fs-plugin-info-dialog.php:1542 +#: includes/fs-plugin-info-dialog.php:1538, includes/fs-plugin-info-dialog.php:1536 msgid "Warning" msgstr "" -#: includes/fs-plugin-info-dialog.php:1540 -msgid "This plugin has not been tested with your current version of WordPress." +#: includes/fs-plugin-info-dialog.php:1538 +msgid "This plugin has not been marked as compatible with your version of WordPress." msgstr "" -#: includes/fs-plugin-info-dialog.php:1542 -msgid "This plugin has not been marked as compatible with your version of WordPress." +#: includes/fs-plugin-info-dialog.php:1536 +msgid "This plugin has not been tested with your current version of WordPress." msgstr "" -#: includes/fs-plugin-info-dialog.php:1561 +#: includes/fs-plugin-info-dialog.php:1557 msgid "Paid add-on must be deployed to Freemius." msgstr "" -#: includes/fs-plugin-info-dialog.php:1562 +#: includes/fs-plugin-info-dialog.php:1558 msgid "Add-on must be deployed to WordPress.org or Freemius." msgstr "" -#: includes/fs-plugin-info-dialog.php:1583 -msgid "Newer Version (%s) Installed" +#: includes/fs-plugin-info-dialog.php:1587 +msgid "Latest Version Installed" msgstr "" -#: includes/fs-plugin-info-dialog.php:1584 -msgid "Newer Free Version (%s) Installed" +#: includes/fs-plugin-info-dialog.php:1588 +msgid "Latest Free Version Installed" msgstr "" -#: includes/fs-plugin-info-dialog.php:1591 -msgid "Latest Version Installed" +#: includes/fs-plugin-info-dialog.php:1579 +msgid "Newer Version (%s) Installed" msgstr "" -#: includes/fs-plugin-info-dialog.php:1592 -msgid "Latest Free Version Installed" +#: includes/fs-plugin-info-dialog.php:1580 +msgid "Newer Free Version (%s) Installed" msgstr "" -#: templates/account.php:115, templates/forms/subscription-cancellation.php:96, templates/account/partials/addon.php:31, templates/account/partials/site.php:313 +#: templates/account.php:111, templates/forms/subscription-cancellation.php:96, templates/account/partials/addon.php:31, templates/account/partials/site.php:313 msgid "Downgrading your plan" msgstr "" -#: templates/account.php:116, templates/forms/subscription-cancellation.php:97, templates/account/partials/addon.php:32, templates/account/partials/site.php:314 +#: templates/account.php:112, templates/forms/subscription-cancellation.php:97, templates/account/partials/addon.php:32, templates/account/partials/site.php:314 msgid "Cancelling the subscription" msgstr "" #. translators: %1$s: Either 'Downgrading your plan' or 'Cancelling the subscription' -#: templates/account.php:118, templates/forms/subscription-cancellation.php:99, templates/account/partials/site.php:316 +#: templates/account.php:114, templates/forms/subscription-cancellation.php:99, templates/account/partials/site.php:316 msgid "%1$s will immediately stop all future recurring payments and your %2$s plan license will expire in %3$s." msgstr "" -#: templates/account.php:119, templates/forms/subscription-cancellation.php:100, templates/account/partials/addon.php:35, templates/account/partials/site.php:317 +#: templates/account.php:115, templates/forms/subscription-cancellation.php:100, templates/account/partials/addon.php:35, templates/account/partials/site.php:317 msgid "Please note that we will not be able to grandfather outdated pricing for renewals/new subscriptions after a cancellation. If you choose to renew the subscription manually in the future, after a price increase, which typically occurs once a year, you will be charged the updated price." msgstr "" -#: templates/account.php:120, templates/forms/subscription-cancellation.php:106, templates/account/partials/addon.php:36 +#: templates/account.php:116, templates/forms/subscription-cancellation.php:106, templates/account/partials/addon.php:36 msgid "Cancelling the trial will immediately block access to all premium features. Are you sure?" msgstr "" -#: templates/account.php:121, templates/forms/subscription-cancellation.php:101, templates/account/partials/addon.php:37, templates/account/partials/site.php:318 +#: templates/account.php:117, templates/forms/subscription-cancellation.php:101, templates/account/partials/addon.php:37, templates/account/partials/site.php:318 msgid "You can still enjoy all %s features but you will not have access to %s security & feature updates, nor support." msgstr "" -#: templates/account.php:122, templates/forms/subscription-cancellation.php:102, templates/account/partials/addon.php:38, templates/account/partials/site.php:319 +#: templates/account.php:118, templates/forms/subscription-cancellation.php:102, templates/account/partials/addon.php:38, templates/account/partials/site.php:319 msgid "Once your license expires you can still use the Free version but you will NOT have access to the %s features." msgstr "" #. translators: %s: Plan title (e.g. "Professional") -#: templates/account.php:124, templates/account/partials/activate-license-button.php:31, templates/account/partials/addon.php:40 +#: templates/account.php:120, templates/account/partials/activate-license-button.php:31, templates/account/partials/addon.php:40 msgid "Activate %s Plan" msgstr "" #. translators: %s: Time period (e.g. Auto renews in "2 months") -#: templates/account.php:127, templates/account/partials/addon.php:43, templates/account/partials/site.php:293 +#: templates/account.php:123, templates/account/partials/addon.php:43, templates/account/partials/site.php:293 msgid "Auto renews in %s" msgstr "" #. translators: %s: Time period (e.g. Expires in "2 months") -#: templates/account.php:129, templates/account/partials/addon.php:45, templates/account/partials/site.php:295 +#: templates/account.php:125, templates/account/partials/addon.php:45, templates/account/partials/site.php:295 msgid "Expires in %s" msgstr "" -#: templates/account.php:130 +#: templates/account.php:126 msgctxt "as synchronize license" msgid "Sync License" msgstr "" -#: templates/account.php:131, templates/account/partials/addon.php:46 +#: templates/account.php:127, templates/account/partials/addon.php:46 msgid "Cancel Trial" msgstr "" -#: templates/account.php:132, templates/account/partials/addon.php:47 +#: templates/account.php:128, templates/account/partials/addon.php:47 msgid "Change Plan" msgstr "" -#: templates/account.php:133, templates/account/partials/addon.php:48 +#: templates/account.php:129, templates/account/partials/addon.php:48 msgctxt "verb" msgid "Upgrade" msgstr "" -#: templates/account.php:135, templates/account/partials/addon.php:50, templates/account/partials/site.php:320 +#: templates/account.php:131, templates/account/partials/addon.php:50, templates/account/partials/site.php:320 msgctxt "verb" msgid "Downgrade" msgstr "" -#: templates/account.php:137, templates/add-ons.php:246, templates/plugin-info/features.php:72, templates/account/partials/addon.php:52, templates/account/partials/site.php:33 +#: templates/account.php:133, templates/add-ons.php:246, templates/plugin-info/features.php:72, templates/account/partials/addon.php:52, templates/account/partials/site.php:33 msgid "Free" msgstr "" -#: templates/account.php:139, templates/debug.php:412, includes/customizer/class-fs-customizer-upsell-control.php:110, templates/account/partials/addon.php:54 +#: templates/account.php:135, templates/debug.php:412, includes/customizer/class-fs-customizer-upsell-control.php:110, templates/account/partials/addon.php:54 msgctxt "as product pricing plan" msgid "Plan" msgstr "" -#: templates/account.php:140 +#: templates/account.php:136 msgid "Bundle Plan" msgstr "" -#: templates/account.php:272 +#: templates/account.php:268 msgid "Free Trial" msgstr "" -#: templates/account.php:283 +#: templates/account.php:279 msgid "Account Details" msgstr "" -#: templates/account.php:290, templates/forms/data-debug-mode.php:33 -msgid "Start Debug" +#: templates/account.php:288 +msgid "Stop Debug" msgstr "" -#: templates/account.php:292 -msgid "Stop Debug" +#: templates/account.php:286, templates/forms/data-debug-mode.php:33 +msgid "Start Debug" msgstr "" -#: templates/account.php:299 +#: templates/account.php:295 msgid "Billing & Invoices" msgstr "" -#: templates/account.php:322, templates/account/partials/addon.php:236, templates/account/partials/deactivate-license-button.php:35 +#: templates/account.php:318, templates/account/partials/addon.php:236, templates/account/partials/deactivate-license-button.php:35 msgid "Deactivate License" msgstr "" -#: templates/account.php:345, templates/forms/subscription-cancellation.php:125 +#: templates/account.php:341, templates/forms/subscription-cancellation.php:125 msgid "Are you sure you want to proceed?" msgstr "" -#: templates/account.php:345, templates/account/partials/addon.php:260 +#: templates/account.php:341, templates/account/partials/addon.php:260 msgid "Cancel Subscription" msgstr "" -#: templates/account.php:374, templates/account/partials/addon.php:345 +#: templates/account.php:370, templates/account/partials/addon.php:345 msgctxt "as synchronize" msgid "Sync" msgstr "" -#: templates/account.php:389, templates/debug.php:575 +#: templates/account.php:385, templates/debug.php:575 msgid "Name" msgstr "" -#: templates/account.php:395, templates/debug.php:576 +#: templates/account.php:391, templates/debug.php:576 msgid "Email" msgstr "" -#: templates/account.php:402, templates/debug.php:410, templates/debug.php:625 +#: templates/account.php:398, templates/debug.php:410, templates/debug.php:625 msgid "User ID" msgstr "" -#: templates/account.php:420, templates/account.php:738, templates/account.php:789, templates/debug.php:267, templates/debug.php:404, templates/debug.php:515, templates/debug.php:574, templates/debug.php:623, templates/debug.php:702, templates/account/payments.php:35, templates/debug/logger.php:21 +#: templates/account.php:416, templates/account.php:734, templates/account.php:785, templates/debug.php:267, templates/debug.php:404, templates/debug.php:515, templates/debug.php:574, templates/debug.php:623, templates/debug.php:702, templates/account/payments.php:35, templates/debug/logger.php:21 msgid "ID" msgstr "" -#: templates/account.php:427 +#: templates/account.php:423 msgid "Site ID" msgstr "" -#: templates/account.php:430 +#: templates/account.php:426 msgid "No ID" msgstr "" -#: templates/account.php:435, templates/debug.php:274, templates/debug.php:413, templates/debug.php:519, templates/debug.php:578, templates/account/partials/site.php:228 +#: templates/account.php:431, templates/debug.php:274, templates/debug.php:413, templates/debug.php:519, templates/debug.php:578, templates/account/partials/site.php:228 msgid "Public Key" msgstr "" -#: templates/account.php:441, templates/debug.php:414, templates/debug.php:520, templates/debug.php:579, templates/account/partials/site.php:241 +#: templates/account.php:437, templates/debug.php:414, templates/debug.php:520, templates/debug.php:579, templates/account/partials/site.php:241 msgid "Secret Key" msgstr "" -#: templates/account.php:444 +#: templates/account.php:440 msgctxt "as secret encryption key missing" msgid "No Secret" msgstr "" -#: templates/account.php:471, templates/account/partials/site.php:120, templates/account/partials/site.php:122 -msgid "Trial" +#: templates/account.php:494, templates/debug.php:631, templates/account/partials/site.php:262 +msgid "License Key" msgstr "" -#: templates/account.php:498, templates/debug.php:631, templates/account/partials/site.php:262 -msgid "License Key" +#: templates/account.php:467, templates/account/partials/site.php:122, templates/account/partials/site.php:120 +msgid "Trial" msgstr "" -#: templates/account.php:529 +#: templates/account.php:525 msgid "Join the Beta program" msgstr "" -#: templates/account.php:535 +#: templates/account.php:531 msgid "not verified" msgstr "" -#: templates/account.php:544, templates/account/partials/addon.php:195 -msgid "Expired" +#: templates/account.php:600 +msgid "Free version" msgstr "" -#: templates/account.php:602 +#: templates/account.php:598 msgid "Premium version" msgstr "" -#: templates/account.php:604 -msgid "Free version" +#: templates/account.php:540, templates/account/partials/addon.php:195 +msgid "Expired" msgstr "" -#: templates/account.php:616 +#: templates/account.php:612 msgid "Verify Email" msgstr "" -#: templates/account.php:630 -msgid "Download %s Version" +#: templates/account.php:689, templates/forms/user-change.php:27 +msgid "Change User" msgstr "" -#: templates/account.php:646 -msgid "Download Paid Version" +#: templates/account.php:676 +msgid "What is your %s?" msgstr "" -#: templates/account.php:664, templates/account.php:927, templates/account/partials/site.php:250, templates/account/partials/site.php:272 +#: templates/account.php:684, templates/account/billing.php:21 msgctxt "verb" -msgid "Show" +msgid "Edit" msgstr "" -#: templates/account.php:680 -msgid "What is your %s?" +#: templates/account.php:660, templates/account.php:923, templates/account/partials/site.php:250, templates/account/partials/site.php:272 +msgctxt "verb" +msgid "Show" msgstr "" -#: templates/account.php:688, templates/account/billing.php:21 -msgctxt "verb" -msgid "Edit" +#: templates/account.php:626 +msgid "Download %s Version" msgstr "" -#: templates/account.php:693, templates/forms/user-change.php:27 -msgid "Change User" +#: templates/account.php:642 +msgid "Download Paid Version" msgstr "" -#: templates/account.php:717 +#: templates/account.php:713 msgid "Sites" msgstr "" -#: templates/account.php:730 +#: templates/account.php:726 msgid "Search by address" msgstr "" -#: templates/account.php:739, templates/debug.php:407 +#: templates/account.php:735, templates/debug.php:407 msgid "Address" msgstr "" -#: templates/account.php:740 +#: templates/account.php:736 msgid "License" msgstr "" -#: templates/account.php:741 +#: templates/account.php:737 msgid "Plan" msgstr "" -#: templates/account.php:792 +#: templates/account.php:788 msgctxt "as software license" msgid "License" msgstr "" -#: templates/account.php:921 +#: templates/account.php:917 msgctxt "verb" msgid "Hide" msgstr "" -#: templates/account.php:943, templates/forms/data-debug-mode.php:31, templates/forms/deactivation/form.php:358, templates/forms/deactivation/form.php:389 +#: templates/account.php:939, templates/forms/data-debug-mode.php:31, templates/forms/deactivation/form.php:358, templates/forms/deactivation/form.php:389 msgid "Processing" msgstr "" -#: templates/account.php:946 +#: templates/account.php:942 msgid "Get updates for bleeding edge Beta versions of %s." msgstr "" -#: templates/account.php:1004 +#: templates/account.php:1000 msgid "Cancelling %s" msgstr "" -#: templates/account.php:1004, templates/account.php:1021, templates/forms/subscription-cancellation.php:27, templates/forms/deactivation/form.php:178 +#: templates/account.php:1000, templates/account.php:1017, templates/forms/subscription-cancellation.php:27, templates/forms/deactivation/form.php:178 msgid "trial" msgstr "" -#: templates/account.php:1019, templates/forms/deactivation/form.php:195 +#: templates/account.php:1015, templates/forms/deactivation/form.php:195 msgid "Cancelling %s..." msgstr "" -#: templates/account.php:1022, templates/forms/subscription-cancellation.php:28, templates/forms/deactivation/form.php:179 +#: templates/account.php:1018, templates/forms/subscription-cancellation.php:28, templates/forms/deactivation/form.php:179 msgid "subscription" msgstr "" -#: templates/account.php:1036 +#: templates/account.php:1032 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?" msgstr "" -#: templates/account.php:1110 +#: templates/account.php:1106 msgid "Disabling white-label mode" msgstr "" -#: templates/account.php:1111 +#: templates/account.php:1107 msgid "Enabling white-label mode" msgstr "" @@ -1489,11 +1509,12 @@ msgctxt "installed add-on" msgid "Installed" msgstr "" -#: templates/admin-notice.php:13, templates/forms/license-activation.php:243, templates/forms/resend-key.php:80 +#: templates/admin-notice.php:17, templates/forms/license-activation.php:245, templates/forms/resend-key.php:80 msgctxt "as close a window" msgid "Dismiss" msgstr "" +#. translators: %s: Number of seconds #: templates/auto-installation.php:45 msgid "%s sec" msgstr "" @@ -1523,143 +1544,144 @@ msgid "PCI compliant" msgstr "" #. translators: %s: name (e.g. Hey John,) -#: templates/connect.php:127 +#: templates/connect.php:118 msgctxt "greeting" msgid "Hey %s," msgstr "" -#: templates/connect.php:187 -msgid "Never miss an important update" +#. translators: %1$s: plugin name (e.g., "Awesome Plugin"); %2$s: version (e.g., "1.2.3") +#: templates/connect.php:186 +msgid "Thank you for updating to %1$s v%2$s!" msgstr "" -#: templates/connect.php:195 -msgid "Thank you for updating to %1$s v%2$s!" +#: templates/connect.php:178 +msgid "Never miss an important update" msgstr "" -#: templates/connect.php:205 +#: templates/connect.php:196 msgid "Allow & Continue" msgstr "" -#: templates/connect.php:209 -msgid "Re-send activation email" +#. translators: %s: module type (plugin, theme, or add-on) +#: templates/connect.php:236 +msgid "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." msgstr "" -#: templates/connect.php:213 -msgid "Thanks %s!" +#: templates/connect.php:238 +msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." msgstr "" -#: templates/connect.php:214 -msgid "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." +#: templates/connect.php:241 +msgid "If you skip this, that's okay! %1$s will still work just fine." msgstr "" -#: templates/connect.php:225 -msgid "Welcome to %s! To get started, please enter your license key:" +#: templates/connect.php:227 +msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." msgstr "" -#: templates/connect.php:236 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info. This will help us make the %s more compatible with your site and better at doing what you need it to." +#: templates/connect.php:216 +msgid "Welcome to %s! To get started, please enter your license key:" msgstr "" -#. translators: %s: module type (plugin, theme, or add-on) -#: templates/connect.php:245 -msgid "We have introduced this opt-in so you never miss an important update and help us make the %s more compatible with your site and better at doing what you need it to." +#: templates/connect.php:200 +msgid "Re-send activation email" msgstr "" -#: templates/connect.php:247 -msgid "Opt in to get email notifications for security & feature updates, educational content, and occasional offers, and to share some basic WordPress environment info." +#: templates/connect.php:204 +msgid "Thanks %s!" msgstr "" -#: templates/connect.php:250 -msgid "If you skip this, that's okay! %1$s will still work just fine." +#: templates/connect.php:205 +msgid "You should receive a confirmation email for %s to your mailbox at %s. Please make sure you click the button in that email to %s." msgstr "" -#: templates/connect.php:280 +#: templates/connect.php:271 msgid "We're excited to introduce the Freemius network-level integration." msgstr "" -#: templates/connect.php:283 +#: templates/connect.php:285 +msgid "During the update process we detected %s site(s) in the network that are still pending your attention." +msgstr "" + +#: templates/connect.php:274 msgid "During the update process we detected %d site(s) that are still pending license activation." msgstr "" -#: templates/connect.php:285 +#: templates/connect.php:276 msgid "If you'd like to use the %s on those sites, please enter your license key below and click the activation button." msgstr "" -#: templates/connect.php:287 +#: templates/connect.php:278 msgid "%s's paid features" msgstr "" -#: templates/connect.php:292 +#: templates/connect.php:283 msgid "Alternatively, you can skip it for now and activate the license later, in your %s's network-level Account page." msgstr "" -#: templates/connect.php:294 -msgid "During the update process we detected %s site(s) in the network that are still pending your attention." -msgstr "" - -#: templates/connect.php:303, templates/forms/data-debug-mode.php:35, templates/forms/license-activation.php:42 +#: templates/connect.php:294, templates/forms/data-debug-mode.php:35, templates/forms/license-activation.php:42 msgid "License key" msgstr "" -#: templates/connect.php:306, templates/forms/license-activation.php:22 +#: templates/connect.php:297, templates/forms/license-activation.php:22 msgid "Can't find your license key?" msgstr "" -#: templates/connect.php:369, templates/connect.php:693, templates/forms/deactivation/retry-skip.php:20 +#: templates/connect.php:360, templates/connect.php:690, templates/forms/deactivation/retry-skip.php:20 msgctxt "verb" msgid "Skip" msgstr "" -#: templates/connect.php:372 +#: templates/connect.php:363 msgid "Delegate to Site Admins" msgstr "" -#: templates/connect.php:372 +#: templates/connect.php:363 msgid "If you click it, this decision will be delegated to the sites administrators." msgstr "" -#: templates/connect.php:399 +#: templates/connect.php:392 msgid "License issues?" msgstr "" -#: templates/connect.php:423 -msgid "For delivery of security & feature updates, and license management, %s needs to" -msgstr "" - -#: templates/connect.php:428 +#: templates/connect.php:421 msgid "This will allow %s to" msgstr "" -#: templates/connect.php:443 -msgid "Don't have a license key?" +#: templates/connect.php:416 +msgid "For delivery of security & feature updates, and license management, %s needs to" msgstr "" -#: templates/connect.php:446 +#: templates/connect.php:439 msgid "Have a license key?" msgstr "" -#: templates/connect.php:454 +#: templates/connect.php:436 +msgid "Don't have a license key?" +msgstr "" + +#: templates/connect.php:447 msgid "Freemius is our licensing and software updates engine" msgstr "" -#: templates/connect.php:457 +#: templates/connect.php:450 msgid "Privacy Policy" msgstr "" -#: templates/connect.php:459 -msgid "License Agreement" +#: templates/connect.php:455 +msgid "Terms of Service" msgstr "" -#: templates/connect.php:459 -msgid "Terms of Service" +#: templates/connect.php:453 +msgid "License Agreement" msgstr "" -#: templates/connect.php:879 +#: templates/connect.php:876 msgctxt "as in the process of sending an email" msgid "Sending email" msgstr "" -#: templates/connect.php:880 +#: templates/connect.php:877 msgctxt "as activating plugin" msgid "Activating" msgstr "" @@ -1808,6 +1830,7 @@ msgstr "" msgid "Simulate Network Upgrade" msgstr "" +#. translators: %s: 'plugin' or 'theme' #: templates/debug.php:398 msgid "%s Installs" msgstr "" @@ -1919,6 +1942,7 @@ msgstr "" msgid "Timestamp" msgstr "" +#. translators: %s: Page name #: templates/secure-https-header.php:28 msgid "Secure HTTPS %s page, running from an external domain" msgstr "" @@ -1927,7 +1951,7 @@ msgstr "" msgid "Support" msgstr "" -#: includes/debug/class-fs-debug-bar-panel.php:48, templates/debug/api-calls.php:54, templates/debug/logger.php:62 +#: includes/debug/class-fs-debug-bar-panel.php:51, templates/debug/api-calls.php:54, templates/debug/logger.php:62 msgctxt "milliseconds" msgid "ms" msgstr "" @@ -1948,10 +1972,6 @@ msgstr "" msgid "products" msgstr "" -#: includes/managers/class-fs-clone-manager.php:1205 -msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." -msgstr "" - #: includes/managers/class-fs-clone-manager.php:1211 msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of %3$s:%1$s" msgstr "" @@ -1960,6 +1980,10 @@ msgstr "" msgid "The products below have been placed into safe mode because we noticed that %2$s is an exact copy of these sites:%3$s%1$s" msgstr "" +#: includes/managers/class-fs-clone-manager.php:1205 +msgid "%1$s has been placed into safe mode because we noticed that %2$s is an exact copy of %3$s." +msgstr "" + #: includes/managers/class-fs-clone-manager.php:1238 msgid "the above-mentioned sites" msgstr "" @@ -2062,6 +2086,7 @@ msgstr "" msgid "Homepage URL & title, WP & PHP versions, and site language" msgstr "" +#. translators: %s: 'Plugin' or 'Theme' #: includes/managers/class-fs-permission-manager.php:195 msgid "To provide additional functionality that's relevant to your website, avoid WordPress or PHP version incompatibilities that can break your website, and recognize which languages & regions the %s should be translated and tailored to." msgstr "" @@ -2070,6 +2095,7 @@ msgstr "" msgid "View Basic %s Info" msgstr "" +#. translators: %s: 'Plugin' or 'Theme' #: includes/managers/class-fs-permission-manager.php:210 msgid "Current %s & SDK versions, and if active or uninstalled" msgstr "" @@ -2078,9 +2104,7 @@ msgstr "" msgid "View License Essentials" msgstr "" -#: includes/managers/class-fs-permission-manager.php:262 -msgstr "" - +#. translators: %s: 'Plugin' or 'Theme' #: includes/managers/class-fs-permission-manager.php:272 msgid "To let you manage & control where the license is activated and ensure %s security & feature updates are only delivered to websites you authorize." msgstr "" @@ -2089,6 +2113,7 @@ msgstr "" msgid "View %s State" msgstr "" +#. translators: %s: 'Plugin' or 'Theme' #: includes/managers/class-fs-permission-manager.php:287 msgid "Is active, deactivated, or uninstalled" msgstr "" @@ -2109,6 +2134,7 @@ msgstr "" msgid "WordPress & PHP versions, site language & title" msgstr "" +#. translators: %s: 'Plugin' or 'Theme' #: includes/managers/class-fs-permission-manager.php:330 msgid "To avoid breaking your website due to WordPress or PHP version incompatibilities, and recognize which languages & regions the %s should be translated and tailored to." msgstr "" @@ -2308,143 +2334,143 @@ msgstr "" msgid "Next" msgstr "" -#: templates/forms/affiliation.php:83 +#: templates/forms/affiliation.php:86 msgid "Non-expiring" msgstr "" -#: templates/forms/affiliation.php:86 +#: templates/forms/affiliation.php:89 msgid "Apply to become an affiliate" msgstr "" -#: templates/forms/affiliation.php:108 -msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." +#: templates/forms/affiliation.php:137 +msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." msgstr "" -#: templates/forms/affiliation.php:123 -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." +#: templates/forms/affiliation.php:134 +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." msgstr "" -#: templates/forms/affiliation.php:126 +#: templates/forms/affiliation.php:131 msgid "Your affiliation account was temporarily suspended." msgstr "" -#: templates/forms/affiliation.php:129 -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." +#: templates/forms/affiliation.php:128 +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." msgstr "" -#: templates/forms/affiliation.php:132 -msgid "Due to violation of our affiliation terms, we decided to temporarily block your affiliation account. If you have any questions, please contact support." +#: templates/forms/affiliation.php:113 +msgid "Your affiliate application for %s has been accepted! Log in to your affiliate area at: %s." msgstr "" -#: templates/forms/affiliation.php:145 +#: templates/forms/affiliation.php:150 msgid "Like the %s? Become our ambassador and earn cash ;-)" msgstr "" -#: templates/forms/affiliation.php:146 +#: templates/forms/affiliation.php:151 msgid "Refer new customers to our %s and earn %s commission on each successful sale you refer!" msgstr "" -#: templates/forms/affiliation.php:149 +#: templates/forms/affiliation.php:154 msgid "Program Summary" msgstr "" -#: templates/forms/affiliation.php:151 +#: templates/forms/affiliation.php:156 msgid "%s commission when a customer purchases a new license." msgstr "" -#: templates/forms/affiliation.php:153 +#: templates/forms/affiliation.php:158 msgid "Get commission for automated subscription renewals." msgstr "" -#: templates/forms/affiliation.php:156 +#: templates/forms/affiliation.php:161 msgid "%s tracking cookie after the first visit to maximize earnings potential." msgstr "" -#: templates/forms/affiliation.php:159 +#: templates/forms/affiliation.php:164 msgid "Unlimited commissions." msgstr "" -#: templates/forms/affiliation.php:161 +#: templates/forms/affiliation.php:166 msgid "%s minimum payout amount." msgstr "" -#: templates/forms/affiliation.php:162 +#: templates/forms/affiliation.php:167 msgid "Payouts are in USD and processed monthly via PayPal." msgstr "" -#: templates/forms/affiliation.php:163 +#: templates/forms/affiliation.php:168 msgid "As we reserve 30 days for potential refunds, we only pay commissions that are older than 30 days." msgstr "" -#: templates/forms/affiliation.php:166 +#: templates/forms/affiliation.php:171 msgid "Affiliate" msgstr "" -#: templates/forms/affiliation.php:169, templates/forms/resend-key.php:23 +#: templates/forms/affiliation.php:174, templates/forms/resend-key.php:23 msgid "Email address" msgstr "" -#: templates/forms/affiliation.php:173 +#: templates/forms/affiliation.php:178 msgid "Full name" msgstr "" -#: templates/forms/affiliation.php:177 +#: templates/forms/affiliation.php:182 msgid "PayPal account email address" msgstr "" -#: templates/forms/affiliation.php:181 +#: templates/forms/affiliation.php:186 msgid "Where are you going to promote the %s?" msgstr "" -#: templates/forms/affiliation.php:183 +#: templates/forms/affiliation.php:188 msgid "Enter the domain of your website or other websites from where you plan to promote the %s." msgstr "" -#: templates/forms/affiliation.php:185 +#: templates/forms/affiliation.php:190 msgid "Add another domain" msgstr "" -#: templates/forms/affiliation.php:189 +#: templates/forms/affiliation.php:194 msgid "Extra Domains" msgstr "" -#: templates/forms/affiliation.php:190 +#: templates/forms/affiliation.php:195 msgid "Extra domains where you will be marketing the product from." msgstr "" -#: templates/forms/affiliation.php:200 +#: templates/forms/affiliation.php:205 msgid "Promotion methods" msgstr "" -#: templates/forms/affiliation.php:203 +#: templates/forms/affiliation.php:208 msgid "Social media (Facebook, Twitter, etc.)" msgstr "" -#: templates/forms/affiliation.php:207 +#: templates/forms/affiliation.php:212 msgid "Mobile apps" msgstr "" -#: templates/forms/affiliation.php:211 +#: templates/forms/affiliation.php:216 msgid "Website, email, and social media statistics (optional)" msgstr "" -#: templates/forms/affiliation.php:214 +#: templates/forms/affiliation.php:219 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)." msgstr "" -#: templates/forms/affiliation.php:218 +#: templates/forms/affiliation.php:223 msgid "How will you promote us?" msgstr "" -#: templates/forms/affiliation.php:221 +#: templates/forms/affiliation.php:226 msgid "Please provide details on how you intend to promote %s (please be as specific as possible)." msgstr "" -#: templates/forms/affiliation.php:233, templates/forms/resend-key.php:22, templates/account/partials/disconnect-button.php:92 +#: templates/forms/affiliation.php:238, templates/forms/resend-key.php:22, templates/account/partials/disconnect-button.php:92 msgid "Cancel" msgstr "" -#: templates/forms/affiliation.php:235 +#: templates/forms/affiliation.php:240 msgid "Become an affiliate" msgstr "" @@ -2525,10 +2551,14 @@ msgstr "" msgid "Agree & Activate License" msgstr "" -#: templates/forms/license-activation.php:204 +#: templates/forms/license-activation.php:206 msgid "Associate with the license owner's account." msgstr "" +#: templates/forms/optout.php:104 +msgid "Keep automatic updates" +msgstr "" + #: templates/forms/optout.php:44 msgid "Communication" msgstr "" @@ -2549,10 +2579,6 @@ msgstr "" msgid "Extensions" msgstr "" -#: templates/forms/optout.php:104 -msgid "Keep automatic updates" -msgstr "" - #: templates/forms/premium-versions-upgrade-handler.php:40 msgid "There is a new version of %s available." msgstr "" @@ -2614,10 +2640,12 @@ msgstr "" msgid "Cancel %s & Proceed" msgstr "" +#. translators: %1$s: Number of trial days; %2$s: Plan name; #: templates/forms/trial-start.php:22 msgid "You are 1-click away from starting your %1$s-day free trial of the %2$s plan." msgstr "" +#. translators: %s: Link to freemius.com #: templates/forms/trial-start.php:28 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." msgstr "" @@ -2646,14 +2674,6 @@ msgstr "" msgid "Beta" msgstr "" -#: templates/partials/network-activation.php:32 -msgid "Activate license on all sites in the network." -msgstr "" - -#: templates/partials/network-activation.php:33 -msgid "Apply on all sites in the network." -msgstr "" - #: templates/partials/network-activation.php:36 msgid "Activate license on all pending sites." msgstr "" @@ -2662,6 +2682,14 @@ msgstr "" msgid "Apply on all pending sites." msgstr "" +#: templates/partials/network-activation.php:32 +msgid "Activate license on all sites in the network." +msgstr "" + +#: templates/partials/network-activation.php:33 +msgid "Apply on all sites in the network." +msgstr "" + #: templates/partials/network-activation.php:45, templates/partials/network-activation.php:79 msgid "allow" msgstr "" @@ -2674,7 +2702,7 @@ msgstr "" msgid "skip" msgstr "" -#: templates/plugin-info/description.php:72, templates/plugin-info/screenshots.php:31 +#: templates/plugin-info/description.php:67, templates/plugin-info/screenshots.php:26 msgid "Click to view full-size screenshot %d" msgstr "" @@ -2700,22 +2728,24 @@ msgstr "" msgid "%1$s will immediately stop all future recurring payments and your %s plan license will expire in %s." msgstr "" -#: templates/account/partials/addon.php:190 -msgid "Cancelled" -msgstr "" - #: templates/account/partials/addon.php:200 msgid "No expiration" msgstr "" -#: templates/account/partials/disconnect-button.php:74 -msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." +#: templates/account/partials/addon.php:190 +msgid "Cancelled" msgstr "" +#. translators: %s is replaced with the website's homepage address. #: templates/account/partials/disconnect-button.php:78 msgid "Disconnecting the website will permanently remove %s from your User Dashboard's account." msgstr "" +#: templates/account/partials/disconnect-button.php:74 +msgid "By disconnecting the website, previously shared diagnostic data about %1$s will be deleted and no longer visible to %2$s." +msgstr "" + +#. translators: %1$s is replaced by the paid plan name, %2$s is replaced with an anchor link with the text "User Dashboard". #: templates/account/partials/disconnect-button.php:84 msgid "If you wish to cancel your %1$s plan's subscription instead, please navigate to the %2$s and cancel it there." msgstr "" diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 00000000..6028ffcd --- /dev/null +++ b/package-lock.json @@ -0,0 +1,8738 @@ +{ + "name": "freemius-wordpress-sdk", + "version": "0.0.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "name": "freemius-wordpress-sdk", + "version": "0.0.0", + "license": "GPL-3.0", + "devDependencies": { + "@transifex/api": "^7.0.1", + "dotenv": "^16.4.1", + "fancy-log": "^2.0.0", + "gettext-parser": "^7.0.1", + "gulp": "^4.0.2", + "gulp-sort": "^2.0.0", + "gulp-wp-pot": "^2.5.0", + "node-fetch": "^3.3.2", + "patch-package": "^8.0.0" + } + }, + "node_modules/@transifex/api": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/@transifex/api/-/api-7.0.1.tgz", + "integrity": "sha512-mMgQNgWPRMihDFV1Z/YkJigo8cKZqS+vW6jykS36HNhxegFzyG90wb1xOGZdKlOufEcrm8h1uEOTtyfC7j17YQ==", + "dev": true, + "dependencies": { + "core-js": "^3.35.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/@yarnpkg/lockfile": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz", + "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==", + "dev": true + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "dev": true, + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ansi-colors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz", + "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", + "dev": true, + "dependencies": { + "ansi-wrap": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-gray": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", + "integrity": "sha512-HrgGIZUl8h2EHuZaU9hTR/cU5nhKxpVE1V6kdGsQ8e4zirElJ5fvtfc8N7Q1oq1aatO275i8pUFUCpNWCAnVWw==", + "dev": true, + "dependencies": { + "ansi-wrap": "0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/ansi-wrap": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", + "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/append-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", + "integrity": "sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==", + "dev": true, + "dependencies": { + "buffer-equal": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/archy": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", + "integrity": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==", + "dev": true + }, + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-filter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz", + "integrity": "sha512-A2BETWCqhsecSvCkWAeVBFLH6sXEUGASuzkpjL3GR1SlL/PWL6M3J8EAAld2Uubmh39tvkJTqC9LeLHCUKmFXA==", + "dev": true, + "dependencies": { + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz", + "integrity": "sha512-tVqVTHt+Q5Xb09qRkbu+DidW1yYzz5izWS2Xm2yFm7qJnmUfz4HPzNxbHkdRJbz2lrqI7S+z17xNYdFcBBO8Hw==", + "dev": true, + "dependencies": { + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", + "integrity": "sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-initial": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz", + "integrity": "sha512-BC4Yl89vneCYfpLrs5JU2aAu9/a+xWbeKhvISg9PT7eWFB9UlRvI+rKEtk6mgxWr3dSkk9gQ8hCrdqt06NXPdw==", + "dev": true, + "dependencies": { + "array-slice": "^1.0.0", + "is-number": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-initial/node_modules/is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-last": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz", + "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==", + "dev": true, + "dependencies": { + "is-number": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-last/node_modules/is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-slice": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", + "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-sort": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz", + "integrity": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==", + "dev": true, + "dependencies": { + "default-compare": "^1.0.0", + "get-value": "^2.0.6", + "kind-of": "^5.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/async-done": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz", + "integrity": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.2", + "process-nextick-args": "^2.0.0", + "stream-exhaust": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/async-each": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz", + "integrity": "sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ] + }, + "node_modules/async-settle": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz", + "integrity": "sha512-VPXfB4Vk49z1LHHodrEQ6Xf7W4gg1w0dAPROHngx7qgDjqmIQ+fXmwgGXTW/ITLai0YLSvWepJOP9EVpMnEAcw==", + "dev": true, + "dependencies": { + "async-done": "^1.2.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true, + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/bach": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", + "integrity": "sha512-bZOOfCb3gXBXbTFXq3OZtGR88LwGeJvzu6szttaIzymOTS4ZttBNOWSv7aLZja2EMycKtRYV0Oa8SNKH/zkxvg==", + "dev": true, + "dependencies": { + "arr-filter": "^1.1.1", + "arr-flatten": "^1.0.1", + "arr-map": "^2.0.0", + "array-each": "^1.0.0", + "array-initial": "^1.0.0", + "array-last": "^1.1.1", + "async-done": "^1.2.2", + "async-settle": "^1.0.0", + "now-and-later": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "node_modules/buffer-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.1.tgz", + "integrity": "sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==", + "dev": true, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "deprecated": "Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies", + "dev": true, + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==", + "dev": true, + "dependencies": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" + } + }, + "node_modules/clone-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", + "integrity": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/cloneable-readable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", + "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", + "dev": true, + "dependencies": { + "inherits": "^2.0.1", + "process-nextick-args": "^2.0.0", + "readable-stream": "^2.3.5" + } + }, + "node_modules/code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/collection-map": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz", + "integrity": "sha512-5D2XXSpkOnleOI21TG7p3T0bGAsZ/XknZpKBmGYyluO8pw4zA3K8ZlrBIbC4FXg3m6z/RNFiUFfT2sQK01+UHA==", + "dev": true, + "dependencies": { + "arr-map": "^2.0.2", + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "dev": true, + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true, + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/component-emitter": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.1.tgz", + "integrity": "sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/copy-props": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz", + "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==", + "dev": true, + "dependencies": { + "each-props": "^1.3.2", + "is-plain-object": "^5.0.0" + } + }, + "node_modules/core-js": { + "version": "3.35.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.35.1.tgz", + "integrity": "sha512-IgdsbxNyMskrTFxa9lWHyMwAJU5gXOPP+1yO+K59d50VLVAIDAbs7gIv705KzALModfK3ZrSZTPNpC0PQgIZuw==", + "dev": true, + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cross-spawn/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "dev": true, + "dependencies": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" + } + }, + "node_modules/data-uri-to-buffer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", + "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", + "dev": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/default-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz", + "integrity": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==", + "dev": true, + "dependencies": { + "kind-of": "^5.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-resolution": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz", + "integrity": "sha512-2xaP6GiwVwOEbXCGoJ4ufgC76m8cj805jrghScewJC2ZDsb9U0b4BIrba+xt/Uytyd0HvQ6+WymSRTfnYj59GQ==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/dotenv": { + "version": "16.4.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.1.tgz", + "integrity": "sha512-CjA3y+Dr3FyFDOAMnxZEGtnW9KBR2M0JvvUtXNW+dYJL5ROWxP9DUHCwgFqpMk0OXCc0ljhaNTr2w/kutYIcHQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/motdotla/dotenv?sponsor=1" + } + }, + "node_modules/duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/each-props": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz", + "integrity": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.1", + "object.defaults": "^1.1.0" + } + }, + "node_modules/each-props/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "dev": true, + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es5-ext": { + "version": "0.10.62", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", + "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.3", + "next-tick": "^1.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", + "dev": true, + "dependencies": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/es6-symbol": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "dev": true, + "dependencies": { + "d": "^1.0.1", + "ext": "^1.1.2" + } + }, + "node_modules/es6-weak-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", + "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", + "dev": true, + "dependencies": { + "d": "1", + "es5-ext": "^0.10.46", + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "dev": true, + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", + "dev": true, + "dependencies": { + "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ext": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", + "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", + "dev": true, + "dependencies": { + "type": "^2.7.2" + } + }, + "node_modules/ext/node_modules/type": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", + "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==", + "dev": true + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fancy-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-2.0.0.tgz", + "integrity": "sha512-9CzxZbACXMUXW13tS0tI8XsGGmxWzO2DmYrGuBJOJ8k8q2K7hwfJA5qHjuPPe8wtsco33YR9wc+Rlr5wYFvhSA==", + "dev": true, + "dependencies": { + "color-support": "^1.1.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/fast-levenshtein": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz", + "integrity": "sha512-Ia0sQNrMPXXkqVFt6w6M1n1oKo3NfKs+mvaV811Jwir7vAk9a6PVV9VPYf6X3BU97QiLEmuW3uXH9u87zDFfdw==", + "dev": true + }, + "node_modules/fetch-blob": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", + "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "paypal", + "url": "https://paypal.me/jimmywarting" + } + ], + "dependencies": { + "node-domexception": "^1.0.0", + "web-streams-polyfill": "^3.0.3" + }, + "engines": { + "node": "^12.20 || >= 14.13" + } + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, + "node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", + "dev": true, + "dependencies": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/find-yarn-workspace-root": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz", + "integrity": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==", + "dev": true, + "dependencies": { + "micromatch": "^4.0.2" + } + }, + "node_modules/find-yarn-workspace-root/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-yarn-workspace-root/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-yarn-workspace-root/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/find-yarn-workspace-root/node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/find-yarn-workspace-root/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/findup-sync": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", + "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", + "dev": true, + "dependencies": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/fined": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz", + "integrity": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.2", + "is-plain-object": "^2.0.3", + "object.defaults": "^1.1.0", + "object.pick": "^1.2.0", + "parse-filepath": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/fined/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/flagged-respawn": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz", + "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/for-own": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", + "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==", + "dev": true, + "dependencies": { + "for-in": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/formdata-polyfill": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", + "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "dev": true, + "dependencies": { + "fetch-blob": "^3.1.2" + }, + "engines": { + "node": ">=12.20.0" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "dev": true, + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fs-mkdirp-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", + "integrity": "sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "through2": "^2.0.3" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-caller-file": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", + "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", + "dev": true + }, + "node_modules/get-intrinsic": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/gettext-parser": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/gettext-parser/-/gettext-parser-7.0.1.tgz", + "integrity": "sha512-LU+ieGH3L9HmKEArTlX816/iiAlyA0fx/n/QSeQpkAaH/+jxMk/5UtDkAzcVvW+KlY25/U+IE6dnfkJ8ynt8pQ==", + "dev": true, + "dependencies": { + "content-type": "^1.0.5", + "encoding": "^0.1.13", + "readable-stream": "^4.3.0", + "safe-buffer": "^5.2.1" + } + }, + "node_modules/gettext-parser/node_modules/readable-stream": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.2.tgz", + "integrity": "sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==", + "dev": true, + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10", + "string_decoder": "^1.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/gettext-parser/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/gettext-parser/node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glob-stream": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", + "integrity": "sha512-uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw==", + "dev": true, + "dependencies": { + "extend": "^3.0.0", + "glob": "^7.1.1", + "glob-parent": "^3.1.0", + "is-negated-glob": "^1.0.0", + "ordered-read-streams": "^1.0.0", + "pumpify": "^1.3.5", + "readable-stream": "^2.1.5", + "remove-trailing-separator": "^1.0.1", + "to-absolute-glob": "^2.0.0", + "unique-stream": "^2.0.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/glob-watcher": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz", + "integrity": "sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==", + "dev": true, + "dependencies": { + "anymatch": "^2.0.0", + "async-done": "^1.2.0", + "chokidar": "^2.0.0", + "is-negated-glob": "^1.0.0", + "just-debounce": "^1.0.0", + "normalize-path": "^3.0.0", + "object.defaults": "^1.1.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "dependencies": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/glogg": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz", + "integrity": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==", + "dev": true, + "dependencies": { + "sparkles": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/gulp": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/gulp/-/gulp-4.0.2.tgz", + "integrity": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==", + "dev": true, + "dependencies": { + "glob-watcher": "^5.0.3", + "gulp-cli": "^2.2.0", + "undertaker": "^1.2.1", + "vinyl-fs": "^3.0.0" + }, + "bin": { + "gulp": "bin/gulp.js" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-cli": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz", + "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==", + "dev": true, + "dependencies": { + "ansi-colors": "^1.0.1", + "archy": "^1.0.0", + "array-sort": "^1.0.0", + "color-support": "^1.1.3", + "concat-stream": "^1.6.0", + "copy-props": "^2.0.1", + "fancy-log": "^1.3.2", + "gulplog": "^1.0.0", + "interpret": "^1.4.0", + "isobject": "^3.0.1", + "liftoff": "^3.1.0", + "matchdep": "^2.0.0", + "mute-stdout": "^1.0.0", + "pretty-hrtime": "^1.0.0", + "replace-homedir": "^1.0.0", + "semver-greatest-satisfied-range": "^1.1.0", + "v8flags": "^3.2.0", + "yargs": "^7.1.0" + }, + "bin": { + "gulp": "bin/gulp.js" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-cli/node_modules/fancy-log": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", + "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", + "dev": true, + "dependencies": { + "ansi-gray": "^0.1.1", + "color-support": "^1.1.3", + "parse-node-version": "^1.0.0", + "time-stamp": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-sort": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/gulp-sort/-/gulp-sort-2.0.0.tgz", + "integrity": "sha512-MyTel3FXOdh1qhw1yKhpimQrAmur9q1X0ZigLmCOxouQD+BD3za9/89O+HfbgBQvvh4igEbp0/PUWO+VqGYG1g==", + "dev": true, + "dependencies": { + "through2": "^2.0.1" + } + }, + "node_modules/gulp-wp-pot": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gulp-wp-pot/-/gulp-wp-pot-2.5.0.tgz", + "integrity": "sha512-3IIVEsgAaRFi4DWv5hRZcM7VEsCtGD4ZxgPL8qPdX+yrSpwD8I2+Q1cP3olXhn7KLJsnGSNuqor5sxo97H5pmQ==", + "dev": true, + "dependencies": { + "plugin-error": "^1.0.1", + "vinyl": "^2.2.1", + "wp-pot": "^1.9.6" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/gulp-wp-pot/node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/gulp-wp-pot/node_modules/clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", + "dev": true + }, + "node_modules/gulp-wp-pot/node_modules/replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulp-wp-pot/node_modules/vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dev": true, + "dependencies": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/gulplog": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", + "integrity": "sha512-hm6N8nrm3Y08jXie48jsC55eCZz9mnb4OirAStEk2deqeyhXU3C1otDVh+ccttMuc1sBi6RX6ZJ720hs9RCvgw==", + "dev": true, + "dependencies": { + "glogg": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", + "dev": true, + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "dependencies": { + "parse-passwd": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "node_modules/interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-absolute": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", + "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", + "dev": true, + "dependencies": { + "is-relative": "^1.0.0", + "is-windows": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz", + "integrity": "sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "dev": true, + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz", + "integrity": "sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==", + "dev": true, + "dependencies": { + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", + "dev": true, + "dependencies": { + "number-is-nan": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-negated-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", + "integrity": "sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-relative": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", + "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", + "dev": true, + "dependencies": { + "is-unc-path": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-unc-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", + "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", + "dev": true, + "dependencies": { + "unc-path-regex": "^0.1.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==", + "dev": true + }, + "node_modules/is-valid-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", + "integrity": "sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/json-stable-stringify": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.1.1.tgz", + "integrity": "sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "isarray": "^2.0.5", + "jsonify": "^0.0.1", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/json-stable-stringify/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz", + "integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/just-debounce": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.1.0.tgz", + "integrity": "sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==", + "dev": true + }, + "node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/klaw-sync": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/klaw-sync/-/klaw-sync-6.0.0.tgz", + "integrity": "sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.11" + } + }, + "node_modules/last-run": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", + "integrity": "sha512-U/VxvpX4N/rFvPzr3qG5EtLKEnNI0emvIQB3/ecEwv+8GHaUKbIB8vxv1Oai5FAF0d0r7LXHhLLe5K/yChm5GQ==", + "dev": true, + "dependencies": { + "default-resolution": "^2.0.0", + "es6-weak-map": "^2.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/lazystream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", + "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", + "dev": true, + "dependencies": { + "readable-stream": "^2.0.5" + }, + "engines": { + "node": ">= 0.6.3" + } + }, + "node_modules/lcid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==", + "dev": true, + "dependencies": { + "invert-kv": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lead": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", + "integrity": "sha512-IpSVCk9AYvLHo5ctcIXxOBpMWUe+4TKN3VPWAKUbJikkmsGp0VrSM8IttVc32D6J4WUsiPE6aEFRNmIoF/gdow==", + "dev": true, + "dependencies": { + "flush-write-stream": "^1.0.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/liftoff": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz", + "integrity": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==", + "dev": true, + "dependencies": { + "extend": "^3.0.0", + "findup-sync": "^3.0.0", + "fined": "^1.0.1", + "flagged-respawn": "^1.0.0", + "is-plain-object": "^2.0.4", + "object.map": "^1.0.0", + "rechoir": "^0.6.2", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/liftoff/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/load-json-file/node_modules/strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", + "dev": true, + "dependencies": { + "is-utf8": "^0.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-iterator": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", + "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", + "dev": true, + "dependencies": { + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/make-iterator/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "dev": true, + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matchdep": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz", + "integrity": "sha512-LFgVbaHIHMqCRuCZyfCtUOq9/Lnzhi7Z0KFUE2fhD54+JN2jLh3hC02RLkqauJ3U4soU6H1J3tfj/Byk7GoEjA==", + "dev": true, + "dependencies": { + "findup-sync": "^2.0.0", + "micromatch": "^3.0.4", + "resolve": "^1.4.0", + "stack-trace": "0.0.10" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/matchdep/node_modules/findup-sync": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", + "integrity": "sha512-vs+3unmJT45eczmcAZ6zMJtxN3l/QXeccaXQx5cu/MeJMhewVfoWZqibRkOxPnmoR59+Zy5hjabfQc6JLSah4g==", + "dev": true, + "dependencies": { + "detect-file": "^1.0.0", + "is-glob": "^3.1.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/matchdep/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/matched": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/matched/-/matched-5.0.1.tgz", + "integrity": "sha512-E1fhSTPRyhAlNaNvGXAgZQlq1hL0bgYMTk/6bktVlIhzUnX/SZs7296ACdVeNJE8xFNGSuvd9IpI7vSnmcqLvw==", + "dev": true, + "dependencies": { + "glob": "^7.1.6", + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/micromatch/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-deep/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-deep/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/mute-stdout": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.1.tgz", + "integrity": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/nan": { + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz", + "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==", + "dev": true, + "optional": true + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/next-tick": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", + "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", + "dev": true + }, + "node_modules/node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], + "engines": { + "node": ">=10.5.0" + } + }, + "node_modules/node-fetch": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", + "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", + "dev": true, + "dependencies": { + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/node-fetch" + } + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/now-and-later": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", + "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", + "dev": true, + "dependencies": { + "once": "^1.3.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "dev": true, + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "dev": true, + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.defaults": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", + "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==", + "dev": true, + "dependencies": { + "array-each": "^1.0.1", + "array-slice": "^1.0.0", + "for-own": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", + "integrity": "sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==", + "dev": true, + "dependencies": { + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.reduce": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz", + "integrity": "sha512-naLhxxpUESbNkRqc35oQ2scZSJueHGQNUfMW/0U37IgN6tE2dgDWg3whf+NEliy3F/QysrO48XKUz/nGPe+AQw==", + "dev": true, + "dependencies": { + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "dev": true, + "dependencies": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ordered-read-streams": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", + "integrity": "sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==", + "dev": true, + "dependencies": { + "readable-stream": "^2.0.1" + } + }, + "node_modules/os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==", + "dev": true, + "dependencies": { + "lcid": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/parse-filepath": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", + "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", + "dev": true, + "dependencies": { + "is-absolute": "^1.0.0", + "map-cache": "^0.2.0", + "path-root": "^0.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", + "dev": true, + "dependencies": { + "error-ex": "^1.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/patch-package": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/patch-package/-/patch-package-8.0.0.tgz", + "integrity": "sha512-da8BVIhzjtgScwDJ2TtKsfT5JFWz1hYoBl9rUQ1f38MC2HwnEIkK8VN3dKMKcP7P7bvvgzNDbfNHtx3MsQb5vA==", + "dev": true, + "dependencies": { + "@yarnpkg/lockfile": "^1.1.0", + "chalk": "^4.1.2", + "ci-info": "^3.7.0", + "cross-spawn": "^7.0.3", + "find-yarn-workspace-root": "^2.0.0", + "fs-extra": "^9.0.0", + "json-stable-stringify": "^1.0.2", + "klaw-sync": "^6.0.0", + "minimist": "^1.2.6", + "open": "^7.4.2", + "rimraf": "^2.6.3", + "semver": "^7.5.3", + "slash": "^2.0.0", + "tmp": "^0.0.33", + "yaml": "^2.2.2" + }, + "bin": { + "patch-package": "index.js" + }, + "engines": { + "node": ">=14", + "npm": ">5" + } + }, + "node_modules/patch-package/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", + "dev": true + }, + "node_modules/path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", + "dev": true, + "dependencies": { + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-root": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", + "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", + "dev": true, + "dependencies": { + "path-root-regex": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-root-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", + "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-sort": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/path-sort/-/path-sort-0.1.0.tgz", + "integrity": "sha512-70MSq7edKtbODYKkqXYzSMQxtYMjDgP3K6D15Fu4KUvpyBPlxDWPvv8JI9GjNDF2K5baPHFEtlg818dOmf2ifg==", + "dev": true + }, + "node_modules/path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/php-parser": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/php-parser/-/php-parser-3.1.5.tgz", + "integrity": "sha512-jEY2DcbgCm5aclzBdfW86GM6VEIWcSlhTBSHN1qhJguVePlYe28GhwS0yoeLYXpM2K8y6wzLwrbq814n2PHSoQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/plugin-error": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz", + "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==", + "dev": true, + "dependencies": { + "ansi-colors": "^1.0.1", + "arr-diff": "^4.0.0", + "arr-union": "^3.1.0", + "extend-shallow": "^3.0.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/plugin-error/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/plugin-error/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/plugin-error/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pretty-hrtime": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dev": true, + "dependencies": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + } + }, + "node_modules/read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", + "dev": true, + "dependencies": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", + "dev": true, + "dependencies": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", + "dev": true, + "dependencies": { + "resolve": "^1.1.6" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/remove-bom-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", + "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5", + "is-utf8": "^0.2.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/remove-bom-stream": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", + "integrity": "sha512-wigO8/O08XHb8YPzpDDT+QmRANfW6vLqxfaXm1YXhnFf3AkSLyjfG3GEFg4McZkmgL7KvCj5u2KczkvSP6NfHA==", + "dev": true, + "dependencies": { + "remove-bom-buffer": "^3.0.0", + "safe-buffer": "^5.1.0", + "through2": "^2.0.3" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", + "dev": true + }, + "node_modules/repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "dev": true, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/replace-homedir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz", + "integrity": "sha512-CHPV/GAglbIB1tnQgaiysb8H2yCy8WQ7lcEwQ/eT+kLj0QHV8LnJW0zpqpE7RSkrMSRoa+EBoag86clf7WAgSg==", + "dev": true, + "dependencies": { + "homedir-polyfill": "^1.0.1", + "is-absolute": "^1.0.0", + "remove-trailing-separator": "^1.1.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==", + "dev": true + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", + "dev": true, + "dependencies": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-options": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", + "integrity": "sha512-NYDgziiroVeDC29xq7bp/CacZERYsA9bXYd1ZmcJlF3BcrZv5pTb4NG7SjdyKDnXZ84aC4vo2u6sNKIA1LCu/A==", + "dev": true, + "dependencies": { + "value-or-function": "^3.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "deprecated": "https://github.com/lydell/resolve-url#deprecated", + "dev": true + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", + "dev": true, + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/semver": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz", + "integrity": "sha512-IrpJ+yoG4EOH8DFWuVg+8H1kW1Oaof0Wxe7cPcXW3x9BjkN/eVo54F15LyqemnDIUYskQWr9qvl/RihmSy6+xQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/semver-greatest-satisfied-range": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz", + "integrity": "sha512-Ny/iyOzSSa8M5ML46IAx3iXc6tfOsYU2R4AXi2UpHk60Zrgyq6eqPj/xiOfS0rRl/iiQ/rdJkVjw/5cdUyCntQ==", + "dev": true, + "dependencies": { + "sver-compat": "^1.5.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true + }, + "node_modules/set-function-length": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.0.tgz", + "integrity": "sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==", + "dev": true, + "dependencies": { + "define-data-property": "^1.1.1", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.2", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", + "dev": true, + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "deprecated": "See https://github.com/lydell/source-map-url#deprecated", + "dev": true + }, + "node_modules/sparkles": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz", + "integrity": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.4.0.tgz", + "integrity": "sha512-hcjppoJ68fhxA/cjbN4T8N6uCUejN8yFw69ttpqtBeCbF3u13n7mb31NB9jKwGTTWWnt9IbRA/mf1FprYS8wfw==", + "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.16", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", + "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==", + "dev": true + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stack-trace": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", + "dev": true, + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/stream-exhaust": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz", + "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==", + "dev": true + }, + "node_modules/stream-shift": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.3.tgz", + "integrity": "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==", + "dev": true + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", + "dev": true, + "dependencies": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/sver-compat": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz", + "integrity": "sha512-aFTHfmjwizMNlNE6dsGmoAM4lHjL0CyiobWaFiXWSlD7cIxshW422Nb8KbXCmR6z+0ZEPY+daXJrDyh/vuwTyg==", + "dev": true, + "dependencies": { + "es6-iterator": "^2.0.1", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/through2-filter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz", + "integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==", + "dev": true, + "dependencies": { + "through2": "~2.0.0", + "xtend": "~4.0.0" + } + }, + "node_modules/time-stamp": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", + "integrity": "sha512-gLCeArryy2yNTRzTGKbZbloctj64jkZ57hj5zdraXue6aFgd6PmvVtEyiUU+hvU0v7q08oVv8r8ev0tRo6bvgw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/to-absolute-glob": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", + "integrity": "sha512-rtwLUQEwT8ZeKQbyFJyomBRYXyE16U5VKuy0ftxLMK/PZb2fkOsg5r9kHdauuVDbsNdIBoC/HCthpidamQFXYA==", + "dev": true, + "dependencies": { + "is-absolute": "^1.0.0", + "is-negated-glob": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "dev": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-through": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", + "integrity": "sha512-+QIz37Ly7acM4EMdw2PRN389OneM5+d844tirkGp4dPKzI5OE72V9OsbFp+CIYJDahZ41ZV05hNtcPAQUAm9/Q==", + "dev": true, + "dependencies": { + "through2": "^2.0.3" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/type": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", + "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==", + "dev": true + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "dev": true + }, + "node_modules/unc-path-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", + "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/undertaker": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-1.3.0.tgz", + "integrity": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==", + "dev": true, + "dependencies": { + "arr-flatten": "^1.0.1", + "arr-map": "^2.0.0", + "bach": "^1.0.0", + "collection-map": "^1.0.0", + "es6-weak-map": "^2.0.1", + "fast-levenshtein": "^1.0.0", + "last-run": "^1.1.0", + "object.defaults": "^1.0.0", + "object.reduce": "^1.0.0", + "undertaker-registry": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/undertaker-registry": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz", + "integrity": "sha512-UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unique-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz", + "integrity": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==", + "dev": true, + "dependencies": { + "json-stable-stringify-without-jsonify": "^1.0.1", + "through2-filter": "^3.0.0" + } + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", + "dev": true, + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "dev": true, + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "dev": true, + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true, + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "deprecated": "Please see https://github.com/lydell/urix#deprecated", + "dev": true + }, + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/v8flags": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz", + "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==", + "dev": true, + "dependencies": { + "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/value-or-function": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", + "integrity": "sha512-jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-fs": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", + "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==", + "dev": true, + "dependencies": { + "fs-mkdirp-stream": "^1.0.0", + "glob-stream": "^6.1.0", + "graceful-fs": "^4.0.0", + "is-valid-glob": "^1.0.0", + "lazystream": "^1.0.0", + "lead": "^1.0.0", + "object.assign": "^4.0.4", + "pumpify": "^1.3.5", + "readable-stream": "^2.3.3", + "remove-bom-buffer": "^3.0.0", + "remove-bom-stream": "^1.2.0", + "resolve-options": "^1.1.0", + "through2": "^2.0.0", + "to-through": "^2.0.0", + "value-or-function": "^3.0.0", + "vinyl": "^2.0.0", + "vinyl-sourcemap": "^1.1.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-fs/node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/vinyl-fs/node_modules/clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", + "dev": true + }, + "node_modules/vinyl-fs/node_modules/replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-fs/node_modules/vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dev": true, + "dependencies": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-sourcemap": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", + "integrity": "sha512-NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA==", + "dev": true, + "dependencies": { + "append-buffer": "^1.0.2", + "convert-source-map": "^1.5.0", + "graceful-fs": "^4.1.6", + "normalize-path": "^2.1.1", + "now-and-later": "^2.0.0", + "remove-bom-buffer": "^3.0.0", + "vinyl": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-sourcemap/node_modules/clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "dev": true, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/vinyl-sourcemap/node_modules/clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", + "dev": true + }, + "node_modules/vinyl-sourcemap/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/vinyl-sourcemap/node_modules/replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vinyl-sourcemap/node_modules/vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dev": true, + "dependencies": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/web-streams-polyfill": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.2.tgz", + "integrity": "sha512-3pRGuxRF5gpuZc0W+EpwQRmCD7gRqcDOMt688KmdlDAgAyaB1XlN0zq2njfDNm44XVdIouE7pZ6GzbdyH47uIQ==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/which-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", + "integrity": "sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ==", + "dev": true + }, + "node_modules/wp-pot": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/wp-pot/-/wp-pot-1.10.2.tgz", + "integrity": "sha512-NJ9+dsSilghAYMiuGdURJSbKFf9Z2mH+P6ojT8Nw1Pp8KuwvHdRTFTYK73THlYzohUEXlQGpvKkz+mJb8K1ToA==", + "dev": true, + "dependencies": { + "espree": "^9.3.1", + "matched": "^5.0.1", + "path-sort": "^0.1.0", + "php-parser": "^3.0.3" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==", + "dev": true, + "dependencies": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true, + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", + "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==", + "dev": true + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yaml": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", + "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==", + "dev": true, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yargs": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.2.tgz", + "integrity": "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==", + "dev": true, + "dependencies": { + "camelcase": "^3.0.0", + "cliui": "^3.2.0", + "decamelize": "^1.1.1", + "get-caller-file": "^1.0.1", + "os-locale": "^1.4.0", + "read-pkg-up": "^1.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^1.0.2", + "which-module": "^1.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^5.0.1" + } + }, + "node_modules/yargs-parser": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz", + "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==", + "dev": true, + "dependencies": { + "camelcase": "^3.0.0", + "object.assign": "^4.1.0" + } + }, + "node_modules/yargs-parser/node_modules/camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/yargs/node_modules/camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + } + }, + "dependencies": { + "@transifex/api": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/@transifex/api/-/api-7.0.1.tgz", + "integrity": "sha512-mMgQNgWPRMihDFV1Z/YkJigo8cKZqS+vW6jykS36HNhxegFzyG90wb1xOGZdKlOufEcrm8h1uEOTtyfC7j17YQ==", + "dev": true, + "requires": { + "core-js": "^3.35.0" + } + }, + "@yarnpkg/lockfile": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz", + "integrity": "sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ==", + "dev": true + }, + "abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "dev": true, + "requires": { + "event-target-shim": "^5.0.0" + } + }, + "acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true + }, + "acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true + }, + "ansi-colors": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-1.1.0.tgz", + "integrity": "sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA==", + "dev": true, + "requires": { + "ansi-wrap": "^0.1.0" + } + }, + "ansi-gray": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", + "integrity": "sha512-HrgGIZUl8h2EHuZaU9hTR/cU5nhKxpVE1V6kdGsQ8e4zirElJ5fvtfc8N7Q1oq1aatO275i8pUFUCpNWCAnVWw==", + "dev": true, + "requires": { + "ansi-wrap": "0.1.0" + } + }, + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "dev": true + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "ansi-wrap": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", + "integrity": "sha512-ZyznvL8k/FZeQHr2T6LzcJ/+vBApDnMNZvfVFy3At0knswWd6rJ3/0Hhmpu8oqa6C92npmozs890sX9Dl6q+Qw==", + "dev": true + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "append-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", + "integrity": "sha512-WLbYiXzD3y/ATLZFufV/rZvWdZOs+Z/+5v1rBZ463Jn398pa6kcde27cvozYnBoxXblGZTFfoPpsaEw0orU5BA==", + "dev": true, + "requires": { + "buffer-equal": "^1.0.0" + } + }, + "archy": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", + "integrity": "sha512-Xg+9RwCg/0p32teKdGMPTPnVXKD0w3DfHnFTficozsAgsvq2XenPJq/MYpzzQ/v8zrOyJn6Ds39VA4JIDwFfqw==", + "dev": true + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "dev": true + }, + "arr-filter": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz", + "integrity": "sha512-A2BETWCqhsecSvCkWAeVBFLH6sXEUGASuzkpjL3GR1SlL/PWL6M3J8EAAld2Uubmh39tvkJTqC9LeLHCUKmFXA==", + "dev": true, + "requires": { + "make-iterator": "^1.0.0" + } + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true + }, + "arr-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz", + "integrity": "sha512-tVqVTHt+Q5Xb09qRkbu+DidW1yYzz5izWS2Xm2yFm7qJnmUfz4HPzNxbHkdRJbz2lrqI7S+z17xNYdFcBBO8Hw==", + "dev": true, + "requires": { + "make-iterator": "^1.0.0" + } + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "dev": true + }, + "array-each": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", + "integrity": "sha512-zHjL5SZa68hkKHBFBK6DJCTtr9sfTCPCaph/L7tMSLcTFgy+zX7E+6q5UArbtOtMBCtxdICpfTCspRse+ywyXA==", + "dev": true + }, + "array-initial": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz", + "integrity": "sha512-BC4Yl89vneCYfpLrs5JU2aAu9/a+xWbeKhvISg9PT7eWFB9UlRvI+rKEtk6mgxWr3dSkk9gQ8hCrdqt06NXPdw==", + "dev": true, + "requires": { + "array-slice": "^1.0.0", + "is-number": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true + } + } + }, + "array-last": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/array-last/-/array-last-1.3.0.tgz", + "integrity": "sha512-eOCut5rXlI6aCOS7Z7kCplKRKyiFQ6dHFBem4PwlwKeNFk2/XxTrhRh5T9PyaEWGy/NHTZWbY+nsZlNFJu9rYg==", + "dev": true, + "requires": { + "is-number": "^4.0.0" + }, + "dependencies": { + "is-number": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", + "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", + "dev": true + } + } + }, + "array-slice": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz", + "integrity": "sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w==", + "dev": true + }, + "array-sort": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-sort/-/array-sort-1.0.0.tgz", + "integrity": "sha512-ihLeJkonmdiAsD7vpgN3CRcx2J2S0TiYW+IS/5zHBI7mKUq3ySvBdzzBfD236ubDBQFiiyG3SWCPc+msQ9KoYg==", + "dev": true, + "requires": { + "default-compare": "^1.0.0", + "get-value": "^2.0.6", + "kind-of": "^5.0.2" + } + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "dev": true + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "dev": true + }, + "async-done": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/async-done/-/async-done-1.3.2.tgz", + "integrity": "sha512-uYkTP8dw2og1tu1nmza1n1CMW0qb8gWWlwqMmLb7MhBVs4BXrFziT6HXUd+/RlRA/i4H9AkofYloUbs1fwMqlw==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.2", + "process-nextick-args": "^2.0.0", + "stream-exhaust": "^1.0.1" + } + }, + "async-each": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz", + "integrity": "sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==", + "dev": true + }, + "async-settle": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz", + "integrity": "sha512-VPXfB4Vk49z1LHHodrEQ6Xf7W4gg1w0dAPROHngx7qgDjqmIQ+fXmwgGXTW/ITLai0YLSvWepJOP9EVpMnEAcw==", + "dev": true, + "requires": { + "async-done": "^1.2.2" + } + }, + "at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true + }, + "bach": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", + "integrity": "sha512-bZOOfCb3gXBXbTFXq3OZtGR88LwGeJvzu6szttaIzymOTS4ZttBNOWSv7aLZja2EMycKtRYV0Oa8SNKH/zkxvg==", + "dev": true, + "requires": { + "arr-filter": "^1.1.1", + "arr-flatten": "^1.0.1", + "arr-map": "^2.0.0", + "array-each": "^1.0.0", + "array-initial": "^1.0.0", + "array-last": "^1.1.1", + "async-done": "^1.2.2", + "async-settle": "^1.0.0", + "now-and-later": "^2.0.0" + } + }, + "balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + } + } + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true + }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + } + }, + "buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "dev": true, + "requires": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "buffer-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.1.tgz", + "integrity": "sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==", + "dev": true + }, + "buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "call-bind": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "dev": true, + "requires": { + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "dev": true, + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + } + }, + "ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "dev": true + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + } + } + } + }, + "cliui": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", + "integrity": "sha512-0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w==", + "dev": true, + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1", + "wrap-ansi": "^2.0.0" + } + }, + "clone-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", + "integrity": "sha512-KLLTJWrvwIP+OPfMn0x2PheDEP20RPUcGXj/ERegTgdmPEZylALQldygiqrPPu8P45uNuPs7ckmReLY6v/iA5g==", + "dev": true + }, + "cloneable-readable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", + "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", + "dev": true, + "requires": { + "inherits": "^2.0.1", + "process-nextick-args": "^2.0.0", + "readable-stream": "^2.3.5" + } + }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==", + "dev": true + }, + "collection-map": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz", + "integrity": "sha512-5D2XXSpkOnleOI21TG7p3T0bGAsZ/XknZpKBmGYyluO8pw4zA3K8ZlrBIbC4FXg3m6z/RNFiUFfT2sQK01+UHA==", + "dev": true, + "requires": { + "arr-map": "^2.0.2", + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + } + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "dev": true, + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true + }, + "component-emitter": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.1.tgz", + "integrity": "sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==", + "dev": true + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "dev": true + }, + "convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "dev": true + }, + "copy-props": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/copy-props/-/copy-props-2.0.5.tgz", + "integrity": "sha512-XBlx8HSqrT0ObQwmSzM7WE5k8FxTV75h1DX1Z3n6NhQ/UYYAvInWYmG06vFt7hQZArE2fuO62aihiWIVQwh1sw==", + "dev": true, + "requires": { + "each-props": "^1.3.2", + "is-plain-object": "^5.0.0" + } + }, + "core-js": { + "version": "3.35.1", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.35.1.tgz", + "integrity": "sha512-IgdsbxNyMskrTFxa9lWHyMwAJU5gXOPP+1yO+K59d50VLVAIDAbs7gIv705KzALModfK3ZrSZTPNpC0PQgIZuw==", + "dev": true + }, + "core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "dependencies": { + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "dev": true, + "requires": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" + } + }, + "data-uri-to-buffer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", + "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true + }, + "decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "dev": true + }, + "default-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/default-compare/-/default-compare-1.0.0.tgz", + "integrity": "sha512-QWfXlM0EkAbqOCbD/6HjdwT19j7WCkMyiRhWilc4H9/5h/RzTF9gv5LYh1+CmDV5d1rki6KAWLtQale0xt20eQ==", + "dev": true, + "requires": { + "kind-of": "^5.0.2" + } + }, + "default-resolution": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz", + "integrity": "sha512-2xaP6GiwVwOEbXCGoJ4ufgC76m8cj805jrghScewJC2ZDsb9U0b4BIrba+xt/Uytyd0HvQ6+WymSRTfnYj59GQ==", + "dev": true + }, + "define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "dev": true, + "requires": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + } + }, + "define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "requires": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", + "dev": true + }, + "dotenv": { + "version": "16.4.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.1.tgz", + "integrity": "sha512-CjA3y+Dr3FyFDOAMnxZEGtnW9KBR2M0JvvUtXNW+dYJL5ROWxP9DUHCwgFqpMk0OXCc0ljhaNTr2w/kutYIcHQ==", + "dev": true + }, + "duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dev": true, + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "each-props": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/each-props/-/each-props-1.3.2.tgz", + "integrity": "sha512-vV0Hem3zAGkJAyU7JSjixeU66rwdynTAa1vofCrSA5fEln+m67Az9CcnkVD776/fsN/UjIWmBDoNRS6t6G9RfA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.1", + "object.defaults": "^1.1.0" + }, + "dependencies": { + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "dev": true, + "requires": { + "iconv-lite": "^0.6.2" + } + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "requires": { + "once": "^1.4.0" + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "es5-ext": { + "version": "0.10.62", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.62.tgz", + "integrity": "sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==", + "dev": true, + "requires": { + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.3", + "next-tick": "^1.1.0" + } + }, + "es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==", + "dev": true, + "requires": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "es6-symbol": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "dev": true, + "requires": { + "d": "^1.0.1", + "ext": "^1.1.2" + } + }, + "es6-weak-map": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.3.tgz", + "integrity": "sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA==", + "dev": true, + "requires": { + "d": "1", + "es5-ext": "^0.10.46", + "es6-iterator": "^2.0.3", + "es6-symbol": "^3.1.1" + } + }, + "eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true + }, + "espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "requires": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + } + }, + "event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "dev": true + }, + "events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "dev": true, + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + } + } + } + }, + "expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1" + } + }, + "ext": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.7.0.tgz", + "integrity": "sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==", + "dev": true, + "requires": { + "type": "^2.7.2" + }, + "dependencies": { + "type": { + "version": "2.7.2", + "resolved": "https://registry.npmjs.org/type/-/type-2.7.2.tgz", + "integrity": "sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==", + "dev": true + } + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "requires": { + "is-extendable": "^0.1.0" + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + } + } + }, + "fancy-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-2.0.0.tgz", + "integrity": "sha512-9CzxZbACXMUXW13tS0tI8XsGGmxWzO2DmYrGuBJOJ8k8q2K7hwfJA5qHjuPPe8wtsco33YR9wc+Rlr5wYFvhSA==", + "dev": true, + "requires": { + "color-support": "^1.1.3" + } + }, + "fast-levenshtein": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz", + "integrity": "sha512-Ia0sQNrMPXXkqVFt6w6M1n1oKo3NfKs+mvaV811Jwir7vAk9a6PVV9VPYf6X3BU97QiLEmuW3uXH9u87zDFfdw==", + "dev": true + }, + "fetch-blob": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", + "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", + "dev": true, + "requires": { + "node-domexception": "^1.0.0", + "web-streams-polyfill": "^3.0.3" + } + }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true, + "optional": true + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + } + }, + "find-up": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", + "integrity": "sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA==", + "dev": true, + "requires": { + "path-exists": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "find-yarn-workspace-root": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz", + "integrity": "sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==", + "dev": true, + "requires": { + "micromatch": "^4.0.2" + }, + "dependencies": { + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, + "micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "requires": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } + } + } + }, + "findup-sync": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", + "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", + "dev": true, + "requires": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + } + }, + "fined": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz", + "integrity": "sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng==", + "dev": true, + "requires": { + "expand-tilde": "^2.0.2", + "is-plain-object": "^2.0.3", + "object.defaults": "^1.1.0", + "object.pick": "^1.2.0", + "parse-filepath": "^1.0.1" + }, + "dependencies": { + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "flagged-respawn": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz", + "integrity": "sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q==", + "dev": true + }, + "flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dev": true, + "requires": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "dev": true + }, + "for-own": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", + "integrity": "sha512-0OABksIGrxKK8K4kynWkQ7y1zounQxP+CWnyclVwj81KW3vlLlGUx57DKGcP/LH216GzqnstnPocF16Nxs0Ycg==", + "dev": true, + "requires": { + "for-in": "^1.0.1" + } + }, + "formdata-polyfill": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", + "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "dev": true, + "requires": { + "fetch-blob": "^3.1.2" + } + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "dev": true, + "requires": { + "map-cache": "^0.2.2" + } + }, + "fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "fs-mkdirp-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", + "integrity": "sha512-+vSd9frUnapVC2RZYfL3FCB2p3g4TBhaUmrsWlSudsGdnxIuUvBB2QM1VZeBtc49QFwrp+wQLrDs3+xxDgI5gQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "through2": "^2.0.3" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "dev": true, + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true + }, + "get-caller-file": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", + "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", + "dev": true + }, + "get-intrinsic": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "dev": true, + "requires": { + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + } + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "dev": true + }, + "gettext-parser": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/gettext-parser/-/gettext-parser-7.0.1.tgz", + "integrity": "sha512-LU+ieGH3L9HmKEArTlX816/iiAlyA0fx/n/QSeQpkAaH/+jxMk/5UtDkAzcVvW+KlY25/U+IE6dnfkJ8ynt8pQ==", + "dev": true, + "requires": { + "content-type": "^1.0.5", + "encoding": "^0.1.13", + "readable-stream": "^4.3.0", + "safe-buffer": "^5.2.1" + }, + "dependencies": { + "readable-stream": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.2.tgz", + "integrity": "sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==", + "dev": true, + "requires": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10", + "string_decoder": "^1.3.0" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "requires": { + "safe-buffer": "~5.2.0" + } + } + } + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "dev": true, + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "glob-stream": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", + "integrity": "sha512-uMbLGAP3S2aDOHUDfdoYcdIePUCfysbAd0IAoWVZbeGU/oNQ8asHVSshLDJUPWxfzj8zsCG7/XeHPHTtow0nsw==", + "dev": true, + "requires": { + "extend": "^3.0.0", + "glob": "^7.1.1", + "glob-parent": "^3.1.0", + "is-negated-glob": "^1.0.0", + "ordered-read-streams": "^1.0.0", + "pumpify": "^1.3.5", + "readable-stream": "^2.1.5", + "remove-trailing-separator": "^1.0.1", + "to-absolute-glob": "^2.0.0", + "unique-stream": "^2.0.2" + } + }, + "glob-watcher": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-5.0.5.tgz", + "integrity": "sha512-zOZgGGEHPklZNjZQaZ9f41i7F2YwE+tS5ZHrDhbBCk3stwahn5vQxnFmBJZHoYdusR6R1bLSXeGUy/BhctwKzw==", + "dev": true, + "requires": { + "anymatch": "^2.0.0", + "async-done": "^1.2.0", + "chokidar": "^2.0.0", + "is-negated-glob": "^1.0.0", + "just-debounce": "^1.0.0", + "normalize-path": "^3.0.0", + "object.defaults": "^1.1.0" + } + }, + "global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "requires": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + } + }, + "global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "dev": true, + "requires": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + } + }, + "glogg": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz", + "integrity": "sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA==", + "dev": true, + "requires": { + "sparkles": "^1.0.0" + } + }, + "gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.3" + } + }, + "graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "gulp": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/gulp/-/gulp-4.0.2.tgz", + "integrity": "sha512-dvEs27SCZt2ibF29xYgmnwwCYZxdxhQ/+LFWlbAW8y7jt68L/65402Lz3+CKy0Ov4rOs+NERmDq7YlZaDqUIfA==", + "dev": true, + "requires": { + "glob-watcher": "^5.0.3", + "gulp-cli": "^2.2.0", + "undertaker": "^1.2.1", + "vinyl-fs": "^3.0.0" + } + }, + "gulp-cli": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/gulp-cli/-/gulp-cli-2.3.0.tgz", + "integrity": "sha512-zzGBl5fHo0EKSXsHzjspp3y5CONegCm8ErO5Qh0UzFzk2y4tMvzLWhoDokADbarfZRL2pGpRp7yt6gfJX4ph7A==", + "dev": true, + "requires": { + "ansi-colors": "^1.0.1", + "archy": "^1.0.0", + "array-sort": "^1.0.0", + "color-support": "^1.1.3", + "concat-stream": "^1.6.0", + "copy-props": "^2.0.1", + "fancy-log": "^1.3.2", + "gulplog": "^1.0.0", + "interpret": "^1.4.0", + "isobject": "^3.0.1", + "liftoff": "^3.1.0", + "matchdep": "^2.0.0", + "mute-stdout": "^1.0.0", + "pretty-hrtime": "^1.0.0", + "replace-homedir": "^1.0.0", + "semver-greatest-satisfied-range": "^1.1.0", + "v8flags": "^3.2.0", + "yargs": "^7.1.0" + }, + "dependencies": { + "fancy-log": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz", + "integrity": "sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw==", + "dev": true, + "requires": { + "ansi-gray": "^0.1.1", + "color-support": "^1.1.3", + "parse-node-version": "^1.0.0", + "time-stamp": "^1.0.0" + } + } + } + }, + "gulp-sort": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/gulp-sort/-/gulp-sort-2.0.0.tgz", + "integrity": "sha512-MyTel3FXOdh1qhw1yKhpimQrAmur9q1X0ZigLmCOxouQD+BD3za9/89O+HfbgBQvvh4igEbp0/PUWO+VqGYG1g==", + "dev": true, + "requires": { + "through2": "^2.0.1" + } + }, + "gulp-wp-pot": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/gulp-wp-pot/-/gulp-wp-pot-2.5.0.tgz", + "integrity": "sha512-3IIVEsgAaRFi4DWv5hRZcM7VEsCtGD4ZxgPL8qPdX+yrSpwD8I2+Q1cP3olXhn7KLJsnGSNuqor5sxo97H5pmQ==", + "dev": true, + "requires": { + "plugin-error": "^1.0.1", + "vinyl": "^2.2.1", + "wp-pot": "^1.9.6" + }, + "dependencies": { + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "dev": true + }, + "clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", + "dev": true + }, + "replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true + }, + "vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dev": true, + "requires": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + } + } + } + }, + "gulplog": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", + "integrity": "sha512-hm6N8nrm3Y08jXie48jsC55eCZz9mnb4OirAStEk2deqeyhXU3C1otDVh+ccttMuc1sBi6RX6ZJ720hs9RCvgw==", + "dev": true, + "requires": { + "glogg": "^1.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "dev": true, + "requires": { + "get-intrinsic": "^1.2.2" + } + }, + "has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true + }, + "has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", + "dev": true, + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "requires": { + "function-bind": "^1.1.2" + } + }, + "homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "requires": { + "parse-passwd": "^1.0.0" + } + }, + "hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "requires": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + } + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "interpret": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.4.0.tgz", + "integrity": "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==", + "dev": true + }, + "invert-kv": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", + "integrity": "sha512-xgs2NH9AE66ucSq4cNG1nhSFghr5l6tdL15Pk+jl46bmmBapgoaY/AacXyaDznAqmGL99TiLSQgO/XazFSKYeQ==", + "dev": true + }, + "is-absolute": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz", + "integrity": "sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA==", + "dev": true, + "requires": { + "is-relative": "^1.0.0", + "is-windows": "^1.0.1" + } + }, + "is-accessor-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz", + "integrity": "sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==", + "dev": true, + "requires": { + "hasown": "^2.0.0" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "dev": true, + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, + "requires": { + "hasown": "^2.0.0" + } + }, + "is-data-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz", + "integrity": "sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==", + "dev": true, + "requires": { + "hasown": "^2.0.0" + } + }, + "is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + } + }, + "is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw==", + "dev": true, + "requires": { + "number-is-nan": "^1.0.0" + } + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-negated-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", + "integrity": "sha512-czXVVn/QEmgvej1f50BZ648vUI+em0xqMq2Sn+QncCLN4zj1UAxlT+kw/6ggQTOaZPd1HqKQGEqbpQVtJucWug==", + "dev": true + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "dev": true + }, + "is-relative": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz", + "integrity": "sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA==", + "dev": true, + "requires": { + "is-unc-path": "^1.0.0" + } + }, + "is-unc-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz", + "integrity": "sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ==", + "dev": true, + "requires": { + "unc-path-regex": "^0.1.2" + } + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==", + "dev": true + }, + "is-valid-glob": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", + "integrity": "sha512-AhiROmoEFDSsjx8hW+5sGwgKVIORcXnrlAx/R0ZSeaPw70Vw0CqkGBBhHGL58Uox2eXnU1AnvXJl1XlyedO5bA==", + "dev": true + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, + "requires": { + "is-docker": "^2.0.0" + } + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "dev": true + }, + "json-stable-stringify": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.1.1.tgz", + "integrity": "sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==", + "dev": true, + "requires": { + "call-bind": "^1.0.5", + "isarray": "^2.0.5", + "jsonify": "^0.0.1", + "object-keys": "^1.1.1" + }, + "dependencies": { + "isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + } + } + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "jsonify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.1.tgz", + "integrity": "sha512-2/Ki0GcmuqSrgFyelQq9M05y7PS0mEwuIzrf3f1fPqkVDVRvZrPZtVSMHxdgo8Aq0sxAOb/cr2aqqA3LeWHVPg==", + "dev": true + }, + "just-debounce": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/just-debounce/-/just-debounce-1.1.0.tgz", + "integrity": "sha512-qpcRocdkUmf+UTNBYx5w6dexX5J31AKK1OmPwH630a83DdVVUIngk55RSAiIGpQyoH0dlr872VHfPjnQnK1qDQ==", + "dev": true + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + }, + "klaw-sync": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/klaw-sync/-/klaw-sync-6.0.0.tgz", + "integrity": "sha512-nIeuVSzdCCs6TDPTqI8w1Yre34sSq7AkZ4B3sfOBbI2CgVSB4Du4aLQijFU2+lhAFCwt9+42Hel6lQNIv6AntQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11" + } + }, + "last-run": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", + "integrity": "sha512-U/VxvpX4N/rFvPzr3qG5EtLKEnNI0emvIQB3/ecEwv+8GHaUKbIB8vxv1Oai5FAF0d0r7LXHhLLe5K/yChm5GQ==", + "dev": true, + "requires": { + "default-resolution": "^2.0.0", + "es6-weak-map": "^2.0.1" + } + }, + "lazystream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", + "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", + "dev": true, + "requires": { + "readable-stream": "^2.0.5" + } + }, + "lcid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "integrity": "sha512-YiGkH6EnGrDGqLMITnGjXtGmNtjoXw9SVUzcaos8RBi7Ps0VBylkq+vOcY9QE5poLasPCR849ucFUkl0UzUyOw==", + "dev": true, + "requires": { + "invert-kv": "^1.0.0" + } + }, + "lead": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", + "integrity": "sha512-IpSVCk9AYvLHo5ctcIXxOBpMWUe+4TKN3VPWAKUbJikkmsGp0VrSM8IttVc32D6J4WUsiPE6aEFRNmIoF/gdow==", + "dev": true, + "requires": { + "flush-write-stream": "^1.0.2" + } + }, + "liftoff": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-3.1.0.tgz", + "integrity": "sha512-DlIPlJUkCV0Ips2zf2pJP0unEoT1kwYhiiPUGF3s/jtxTCjziNLoiVVh+jqWOWeFi6mmwQ5fNxvAUyPad4Dfog==", + "dev": true, + "requires": { + "extend": "^3.0.0", + "findup-sync": "^3.0.0", + "fined": "^1.0.1", + "flagged-respawn": "^1.0.0", + "is-plain-object": "^2.0.4", + "object.map": "^1.0.0", + "rechoir": "^0.6.2", + "resolve": "^1.1.7" + }, + "dependencies": { + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "load-json-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", + "integrity": "sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0", + "strip-bom": "^2.0.0" + }, + "dependencies": { + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g==", + "dev": true, + "requires": { + "is-utf8": "^0.2.0" + } + } + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "requires": { + "yallist": "^4.0.0" + } + }, + "make-iterator": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz", + "integrity": "sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw==", + "dev": true, + "requires": { + "kind-of": "^6.0.2" + }, + "dependencies": { + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + } + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "dev": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "dev": true, + "requires": { + "object-visit": "^1.0.0" + } + }, + "matchdep": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz", + "integrity": "sha512-LFgVbaHIHMqCRuCZyfCtUOq9/Lnzhi7Z0KFUE2fhD54+JN2jLh3hC02RLkqauJ3U4soU6H1J3tfj/Byk7GoEjA==", + "dev": true, + "requires": { + "findup-sync": "^2.0.0", + "micromatch": "^3.0.4", + "resolve": "^1.4.0", + "stack-trace": "0.0.10" + }, + "dependencies": { + "findup-sync": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", + "integrity": "sha512-vs+3unmJT45eczmcAZ6zMJtxN3l/QXeccaXQx5cu/MeJMhewVfoWZqibRkOxPnmoR59+Zy5hjabfQc6JLSah4g==", + "dev": true, + "requires": { + "detect-file": "^1.0.0", + "is-glob": "^3.1.0", + "micromatch": "^3.0.4", + "resolve-dir": "^1.0.1" + } + }, + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "dev": true, + "requires": { + "is-extglob": "^2.1.0" + } + } + } + }, + "matched": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/matched/-/matched-5.0.1.tgz", + "integrity": "sha512-E1fhSTPRyhAlNaNvGXAgZQlq1hL0bgYMTk/6bktVlIhzUnX/SZs7296ACdVeNJE8xFNGSuvd9IpI7vSnmcqLvw==", + "dev": true, + "requires": { + "glob": "^7.1.6", + "picomatch": "^2.2.1" + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + } + } + }, + "minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dev": true, + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "mute-stdout": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mute-stdout/-/mute-stdout-1.0.1.tgz", + "integrity": "sha512-kDcwXR4PS7caBpuRYYBUz9iVixUk3anO3f5OYFiIPwK/20vCzKCHyKoulbiDY1S53zD2bxUpxN/IJ+TnXjfvxg==", + "dev": true + }, + "nan": { + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz", + "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==", + "dev": true, + "optional": true + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true + } + } + }, + "next-tick": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.1.0.tgz", + "integrity": "sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==", + "dev": true + }, + "node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", + "dev": true + }, + "node-fetch": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", + "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", + "dev": true, + "requires": { + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" + } + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "now-and-later": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/now-and-later/-/now-and-later-2.0.1.tgz", + "integrity": "sha512-KGvQ0cB70AQfg107Xvs/Fbu+dGmZoTRJp2TaPwcwQm3/7PteUyN2BCgk8KBMPGBUXZdVwyWS8fDCGFygBm19UQ==", + "dev": true, + "requires": { + "once": "^1.3.2" + } + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ==", + "dev": true + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "dev": true, + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "dev": true, + "requires": { + "isobject": "^3.0.0" + } + }, + "object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + } + }, + "object.defaults": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", + "integrity": "sha512-c/K0mw/F11k4dEUBMW8naXUuBuhxRCfG7W+yFy8EcijU/rSmazOUd1XAEEe6bC0OuXY4HUKjTJv7xbxIMqdxrA==", + "dev": true, + "requires": { + "array-each": "^1.0.1", + "array-slice": "^1.0.0", + "for-own": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "object.map": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", + "integrity": "sha512-3+mAJu2PLfnSVGHwIWubpOFLscJANBKuB/6A4CxBstc4aqwQY0FWcsppuy4jU5GSB95yES5JHSI+33AWuS4k6w==", + "dev": true, + "requires": { + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + }, + "object.reduce": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz", + "integrity": "sha512-naLhxxpUESbNkRqc35oQ2scZSJueHGQNUfMW/0U37IgN6tE2dgDWg3whf+NEliy3F/QysrO48XKUz/nGPe+AQw==", + "dev": true, + "requires": { + "for-own": "^1.0.0", + "make-iterator": "^1.0.0" + } + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "requires": { + "wrappy": "1" + } + }, + "open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "dev": true, + "requires": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + } + }, + "ordered-read-streams": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", + "integrity": "sha512-Z87aSjx3r5c0ZB7bcJqIgIRX5bxR7A4aSzvIbaxd0oTkWBCOoKfuGHiKj60CHVUgg1Phm5yMZzBdt8XqRs73Mw==", + "dev": true, + "requires": { + "readable-stream": "^2.0.1" + } + }, + "os-locale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "integrity": "sha512-PRT7ZORmwu2MEFt4/fv3Q+mEfN4zetKxufQrkShY2oGvUms9r8otu5HfdyIFHkYXjO7laNsoVGmM2MANfuTA8g==", + "dev": true, + "requires": { + "lcid": "^1.0.0" + } + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "dev": true + }, + "parse-filepath": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", + "integrity": "sha512-FwdRXKCohSVeXqwtYonZTXtbGJKrn+HNyWDYVcp5yuJlesTwNH4rsmRZ+GrKAPJ5bLpRxESMeS+Rl0VCHRvB2Q==", + "dev": true, + "requires": { + "is-absolute": "^1.0.0", + "map-cache": "^0.2.0", + "path-root": "^0.1.1" + } + }, + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ==", + "dev": true, + "requires": { + "error-ex": "^1.2.0" + } + }, + "parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", + "dev": true + }, + "parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "dev": true + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "dev": true + }, + "patch-package": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/patch-package/-/patch-package-8.0.0.tgz", + "integrity": "sha512-da8BVIhzjtgScwDJ2TtKsfT5JFWz1hYoBl9rUQ1f38MC2HwnEIkK8VN3dKMKcP7P7bvvgzNDbfNHtx3MsQb5vA==", + "dev": true, + "requires": { + "@yarnpkg/lockfile": "^1.1.0", + "chalk": "^4.1.2", + "ci-info": "^3.7.0", + "cross-spawn": "^7.0.3", + "find-yarn-workspace-root": "^2.0.0", + "fs-extra": "^9.0.0", + "json-stable-stringify": "^1.0.2", + "klaw-sync": "^6.0.0", + "minimist": "^1.2.6", + "open": "^7.4.2", + "rimraf": "^2.6.3", + "semver": "^7.5.3", + "slash": "^2.0.0", + "tmp": "^0.0.33", + "yaml": "^2.2.2" + }, + "dependencies": { + "semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", + "dev": true + }, + "path-exists": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", + "integrity": "sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ==", + "dev": true, + "requires": { + "pinkie-promise": "^2.0.0" + } + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true + }, + "path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "path-root": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", + "integrity": "sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==", + "dev": true, + "requires": { + "path-root-regex": "^0.1.0" + } + }, + "path-root-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", + "integrity": "sha512-4GlJ6rZDhQZFE0DPVKh0e9jmZ5egZfxTkp7bcRDuPlJXbAwhxcl2dINPUAsjLdejqaLsCeg8axcLjIbvBjN4pQ==", + "dev": true + }, + "path-sort": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/path-sort/-/path-sort-0.1.0.tgz", + "integrity": "sha512-70MSq7edKtbODYKkqXYzSMQxtYMjDgP3K6D15Fu4KUvpyBPlxDWPvv8JI9GjNDF2K5baPHFEtlg818dOmf2ifg==", + "dev": true + }, + "path-type": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", + "integrity": "sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.2", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + } + }, + "php-parser": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/php-parser/-/php-parser-3.1.5.tgz", + "integrity": "sha512-jEY2DcbgCm5aclzBdfW86GM6VEIWcSlhTBSHN1qhJguVePlYe28GhwS0yoeLYXpM2K8y6wzLwrbq814n2PHSoQ==", + "dev": true + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==", + "dev": true, + "requires": { + "pinkie": "^2.0.0" + } + }, + "plugin-error": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/plugin-error/-/plugin-error-1.0.1.tgz", + "integrity": "sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA==", + "dev": true, + "requires": { + "ansi-colors": "^1.0.1", + "arr-diff": "^4.0.0", + "arr-union": "^3.1.0", + "extend-shallow": "^3.0.2" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "dev": true + }, + "pretty-hrtime": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", + "dev": true + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "dev": true + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dev": true, + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + } + }, + "read-pkg": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "integrity": "sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ==", + "dev": true, + "requires": { + "load-json-file": "^1.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^1.0.0" + } + }, + "read-pkg-up": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "integrity": "sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A==", + "dev": true, + "requires": { + "find-up": "^1.0.0", + "read-pkg": "^1.0.0" + } + }, + "readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + } + }, + "rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==", + "dev": true, + "requires": { + "resolve": "^1.1.6" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "remove-bom-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/remove-bom-buffer/-/remove-bom-buffer-3.0.0.tgz", + "integrity": "sha512-8v2rWhaakv18qcvNeli2mZ/TMTL2nEyAKRvzo1WtnZBl15SHyEhrCu2/xKlJyUFKHiHgfXIyuY6g2dObJJycXQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5", + "is-utf8": "^0.2.1" + } + }, + "remove-bom-stream": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", + "integrity": "sha512-wigO8/O08XHb8YPzpDDT+QmRANfW6vLqxfaXm1YXhnFf3AkSLyjfG3GEFg4McZkmgL7KvCj5u2KczkvSP6NfHA==", + "dev": true, + "requires": { + "remove-bom-buffer": "^3.0.0", + "safe-buffer": "^5.1.0", + "through2": "^2.0.3" + } + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", + "dev": true + }, + "repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "dev": true + }, + "replace-homedir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz", + "integrity": "sha512-CHPV/GAglbIB1tnQgaiysb8H2yCy8WQ7lcEwQ/eT+kLj0QHV8LnJW0zpqpE7RSkrMSRoa+EBoag86clf7WAgSg==", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1", + "is-absolute": "^1.0.0", + "remove-trailing-separator": "^1.1.0" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true + }, + "require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha512-IqSUtOVP4ksd1C/ej5zeEh/BIP2ajqpn8c5x+q99gvcIG/Qf0cud5raVnE/Dwd0ua9TXYDoDc0RE5hBSdz22Ug==", + "dev": true + }, + "resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "requires": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + } + }, + "resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", + "dev": true, + "requires": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + } + }, + "resolve-options": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", + "integrity": "sha512-NYDgziiroVeDC29xq7bp/CacZERYsA9bXYd1ZmcJlF3BcrZv5pTb4NG7SjdyKDnXZ84aC4vo2u6sNKIA1LCu/A==", + "dev": true, + "requires": { + "value-or-function": "^3.0.0" + } + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "dev": true + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dev": true, + "requires": { + "glob": "^7.1.3" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", + "dev": true, + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "semver": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz", + "integrity": "sha512-IrpJ+yoG4EOH8DFWuVg+8H1kW1Oaof0Wxe7cPcXW3x9BjkN/eVo54F15LyqemnDIUYskQWr9qvl/RihmSy6+xQ==", + "dev": true + }, + "semver-greatest-satisfied-range": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz", + "integrity": "sha512-Ny/iyOzSSa8M5ML46IAx3iXc6tfOsYU2R4AXi2UpHk60Zrgyq6eqPj/xiOfS0rRl/iiQ/rdJkVjw/5cdUyCntQ==", + "dev": true, + "requires": { + "sver-compat": "^1.5.0" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true + }, + "set-function-length": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.0.tgz", + "integrity": "sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==", + "dev": true, + "requires": { + "define-data-property": "^1.1.1", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.2", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.1" + } + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dev": true, + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "dependencies": { + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + } + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dev": true, + "requires": { + "is-descriptor": "^1.0.0" + } + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "requires": { + "kind-of": "^3.2.0" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "dev": true + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "dev": true, + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "dev": true + }, + "sparkles": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz", + "integrity": "sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw==", + "dev": true + }, + "spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.4.0.tgz", + "integrity": "sha512-hcjppoJ68fhxA/cjbN4T8N6uCUejN8yFw69ttpqtBeCbF3u13n7mb31NB9jKwGTTWWnt9IbRA/mf1FprYS8wfw==", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.16", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", + "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==", + "dev": true + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "requires": { + "extend-shallow": "^3.0.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "stack-trace": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", + "dev": true + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", + "dev": true, + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dev": true, + "requires": { + "is-descriptor": "^0.1.0" + } + }, + "is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + } + } + } + }, + "stream-exhaust": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/stream-exhaust/-/stream-exhaust-1.0.2.tgz", + "integrity": "sha512-b/qaq/GlBK5xaq1yrK9/zFcyRSTNxmcZwFLGSTG0mXgZl/4Z6GgiyYOXOvY7N3eEvFRAG1bkDRz5EPGSvPYQlw==", + "dev": true + }, + "stream-shift": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.3.tgz", + "integrity": "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==", + "dev": true + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw==", + "dev": true, + "requires": { + "code-point-at": "^1.0.0", + "is-fullwidth-code-point": "^1.0.0", + "strip-ansi": "^3.0.0" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dev": true, + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true + }, + "sver-compat": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz", + "integrity": "sha512-aFTHfmjwizMNlNE6dsGmoAM4lHjL0CyiobWaFiXWSlD7cIxshW422Nb8KbXCmR6z+0ZEPY+daXJrDyh/vuwTyg==", + "dev": true, + "requires": { + "es6-iterator": "^2.0.1", + "es6-symbol": "^3.1.1" + } + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "through2-filter": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/through2-filter/-/through2-filter-3.0.0.tgz", + "integrity": "sha512-jaRjI2WxN3W1V8/FMZ9HKIBXixtiqs3SQSX4/YGIiP3gL6djW48VoZq9tDqeCWs3MT8YY5wb/zli8VW8snY1CA==", + "dev": true, + "requires": { + "through2": "~2.0.0", + "xtend": "~4.0.0" + } + }, + "time-stamp": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", + "integrity": "sha512-gLCeArryy2yNTRzTGKbZbloctj64jkZ57hj5zdraXue6aFgd6PmvVtEyiUU+hvU0v7q08oVv8r8ev0tRo6bvgw==", + "dev": true + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "requires": { + "os-tmpdir": "~1.0.2" + } + }, + "to-absolute-glob": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", + "integrity": "sha512-rtwLUQEwT8ZeKQbyFJyomBRYXyE16U5VKuy0ftxLMK/PZb2fkOsg5r9kHdauuVDbsNdIBoC/HCthpidamQFXYA==", + "dev": true, + "requires": { + "is-absolute": "^1.0.0", + "is-negated-glob": "^1.0.0" + } + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "dev": true, + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dev": true, + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dev": true, + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "^3.0.1" + } + } + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dev": true, + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "to-through": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", + "integrity": "sha512-+QIz37Ly7acM4EMdw2PRN389OneM5+d844tirkGp4dPKzI5OE72V9OsbFp+CIYJDahZ41ZV05hNtcPAQUAm9/Q==", + "dev": true, + "requires": { + "through2": "^2.0.3" + } + }, + "type": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", + "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==", + "dev": true + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==", + "dev": true + }, + "unc-path-regex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", + "integrity": "sha512-eXL4nmJT7oCpkZsHZUOJo8hcX3GbsiDOa0Qu9F646fi8dT3XuSVopVqAcEiVzSKKH7UoDti23wNX3qGFxcW5Qg==", + "dev": true + }, + "undertaker": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/undertaker/-/undertaker-1.3.0.tgz", + "integrity": "sha512-/RXwi5m/Mu3H6IHQGww3GNt1PNXlbeCuclF2QYR14L/2CHPz3DFZkvB5hZ0N/QUkiXWCACML2jXViIQEQc2MLg==", + "dev": true, + "requires": { + "arr-flatten": "^1.0.1", + "arr-map": "^2.0.0", + "bach": "^1.0.0", + "collection-map": "^1.0.0", + "es6-weak-map": "^2.0.1", + "fast-levenshtein": "^1.0.0", + "last-run": "^1.1.0", + "object.defaults": "^1.0.0", + "object.reduce": "^1.0.0", + "undertaker-registry": "^1.0.0" + } + }, + "undertaker-registry": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz", + "integrity": "sha512-UR1khWeAjugW3548EfQmL9Z7pGMlBgXteQpr1IZeZBtnkCJQJIJ1Scj0mb9wQaPvUZ9Q17XqW6TIaPchJkyfqw==", + "dev": true + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dev": true, + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + } + }, + "unique-stream": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-2.3.1.tgz", + "integrity": "sha512-2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A==", + "dev": true, + "requires": { + "json-stable-stringify-without-jsonify": "^1.0.1", + "through2-filter": "^3.0.0" + } + }, + "universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", + "dev": true, + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "dev": true, + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "dev": true + } + } + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "dev": true + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "dev": true + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "v8flags": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz", + "integrity": "sha512-mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg==", + "dev": true, + "requires": { + "homedir-polyfill": "^1.0.1" + } + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "value-or-function": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", + "integrity": "sha512-jdBB2FrWvQC/pnPtIqcLsMaQgjhdb6B7tk1MMyTKapox+tQZbdRP4uLxu/JY0t7fbfDCUMnuelzEYv5GsxHhdg==", + "dev": true + }, + "vinyl-fs": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-3.0.3.tgz", + "integrity": "sha512-vIu34EkyNyJxmP0jscNzWBSygh7VWhqun6RmqVfXePrOwi9lhvRs//dOaGOTRUQr4tx7/zd26Tk5WeSVZitgng==", + "dev": true, + "requires": { + "fs-mkdirp-stream": "^1.0.0", + "glob-stream": "^6.1.0", + "graceful-fs": "^4.0.0", + "is-valid-glob": "^1.0.0", + "lazystream": "^1.0.0", + "lead": "^1.0.0", + "object.assign": "^4.0.4", + "pumpify": "^1.3.5", + "readable-stream": "^2.3.3", + "remove-bom-buffer": "^3.0.0", + "remove-bom-stream": "^1.2.0", + "resolve-options": "^1.1.0", + "through2": "^2.0.0", + "to-through": "^2.0.0", + "value-or-function": "^3.0.0", + "vinyl": "^2.0.0", + "vinyl-sourcemap": "^1.1.0" + }, + "dependencies": { + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "dev": true + }, + "clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", + "dev": true + }, + "replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true + }, + "vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dev": true, + "requires": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + } + } + } + }, + "vinyl-sourcemap": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", + "integrity": "sha512-NiibMgt6VJGJmyw7vtzhctDcfKch4e4n9TBeoWlirb7FMg9/1Ov9k+A5ZRAtywBpRPiyECvQRQllYM8dECegVA==", + "dev": true, + "requires": { + "append-buffer": "^1.0.2", + "convert-source-map": "^1.5.0", + "graceful-fs": "^4.1.6", + "normalize-path": "^2.1.1", + "now-and-later": "^2.0.0", + "remove-bom-buffer": "^3.0.0", + "vinyl": "^2.0.0" + }, + "dependencies": { + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==", + "dev": true + }, + "clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha512-au6ydSpg6nsrigcZ4m8Bc9hxjeW+GJ8xh5G3BJCMt4WXe1H10UNaVOamqQTmrx1kjVuxAHIQSNU6hY4Nsn9/ag==", + "dev": true + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "dev": true, + "requires": { + "remove-trailing-separator": "^1.0.1" + } + }, + "replace-ext": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", + "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", + "dev": true + }, + "vinyl": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.1.tgz", + "integrity": "sha512-LII3bXRFBZLlezoG5FfZVcXflZgWP/4dCwKtxd5ky9+LOtM4CS3bIRQsmR1KMnMW07jpE8fqR2lcxPZ+8sJIcw==", + "dev": true, + "requires": { + "clone": "^2.1.1", + "clone-buffer": "^1.0.0", + "clone-stats": "^1.0.0", + "cloneable-readable": "^1.0.0", + "remove-trailing-separator": "^1.0.1", + "replace-ext": "^1.0.0" + } + } + } + }, + "web-streams-polyfill": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/web-streams-polyfill/-/web-streams-polyfill-3.3.2.tgz", + "integrity": "sha512-3pRGuxRF5gpuZc0W+EpwQRmCD7gRqcDOMt688KmdlDAgAyaB1XlN0zq2njfDNm44XVdIouE7pZ6GzbdyH47uIQ==", + "dev": true + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "^2.0.0" + } + }, + "which-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", + "integrity": "sha512-F6+WgncZi/mJDrammbTuHe1q0R5hOXv/mBaiNA2TCNT/LTHusX0V+CJnj9XT8ki5ln2UZyyddDgHfCzyrOH7MQ==", + "dev": true + }, + "wp-pot": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/wp-pot/-/wp-pot-1.10.2.tgz", + "integrity": "sha512-NJ9+dsSilghAYMiuGdURJSbKFf9Z2mH+P6ojT8Nw1Pp8KuwvHdRTFTYK73THlYzohUEXlQGpvKkz+mJb8K1ToA==", + "dev": true, + "requires": { + "espree": "^9.3.1", + "matched": "^5.0.1", + "path-sort": "^0.1.0", + "php-parser": "^3.0.3" + } + }, + "wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha512-vAaEaDM946gbNpH5pLVNR+vX2ht6n0Bt3GXwVB1AuAqZosOvHNF3P7wDnh8KLkSqgUh0uh77le7Owgoz+Z9XBw==", + "dev": true, + "requires": { + "string-width": "^1.0.1", + "strip-ansi": "^3.0.1" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true + }, + "y18n": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz", + "integrity": "sha512-uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==", + "dev": true + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "yaml": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", + "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==", + "dev": true + }, + "yargs": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.2.tgz", + "integrity": "sha512-ZEjj/dQYQy0Zx0lgLMLR8QuaqTihnxirir7EwUHp1Axq4e3+k8jXU5K0VLbNvedv1f4EWtBonDIZm0NUr+jCcA==", + "dev": true, + "requires": { + "camelcase": "^3.0.0", + "cliui": "^3.2.0", + "decamelize": "^1.1.1", + "get-caller-file": "^1.0.1", + "os-locale": "^1.4.0", + "read-pkg-up": "^1.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^1.0.1", + "set-blocking": "^2.0.0", + "string-width": "^1.0.2", + "which-module": "^1.0.0", + "y18n": "^3.2.1", + "yargs-parser": "^5.0.1" + }, + "dependencies": { + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", + "dev": true + } + } + }, + "yargs-parser": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.1.tgz", + "integrity": "sha512-wpav5XYiddjXxirPoCTUPbqM0PXvJ9hiBMvuJgInvo4/lAOTZzUprArw17q2O1P2+GHhbBr18/iQwjL5Z9BqfA==", + "dev": true, + "requires": { + "camelcase": "^3.0.0", + "object.assign": "^4.1.0" + }, + "dependencies": { + "camelcase": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", + "integrity": "sha512-4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg==", + "dev": true + } + } + } + } +} diff --git a/package.json b/package.json index 5063bd58..9e83bace 100644 --- a/package.json +++ b/package.json @@ -7,22 +7,20 @@ "version": "0.0.0", "private": true, "main": "gulpfile.js", - "dependencies": {}, "scripts": { - "test": "echo \"Error: no test specified\" && exit 1", - "prune": "rimraf .codeclimate.yml .git .github .gitignore .travis.yml gulpfile.js composer.json" + "translate": "gulp translate", + "postinstall": "patch-package" }, "repository": "Freemius/wordpress-sdk.git", "devDependencies": { - "gulp": "^3.9.1", - "gulp-clean": "^0.3.2", - "gulp-fs": "0.0.2", - "gulp-gettext": "^0.3.0", - "gulp-path": "^3.0.3", - "gulp-pofill": "^1.0.0", - "gulp-rename": "^1.2.2", + "@transifex/api": "^7.0.1", + "dotenv": "^16.4.1", + "fancy-log": "^2.0.0", + "gettext-parser": "^7.0.1", + "gulp": "^4.0.2", "gulp-sort": "^2.0.0", - "gulp-transifex": "^0.1.17", - "gulp-wp-pot": "^2.0.6" + "gulp-wp-pot": "^2.5.0", + "node-fetch": "^3.3.2", + "patch-package": "^8.0.0" } } diff --git a/patches/wp-pot+1.10.2.patch b/patches/wp-pot+1.10.2.patch new file mode 100644 index 00000000..e89d85b5 --- /dev/null +++ b/patches/wp-pot+1.10.2.patch @@ -0,0 +1,48 @@ +diff --git a/node_modules/wp-pot/src/parsers/php-parser.js b/node_modules/wp-pot/src/parsers/php-parser.js +index c8f411d..319a5da 100644 +--- a/node_modules/wp-pot/src/parsers/php-parser.js ++++ b/node_modules/wp-pot/src/parsers/php-parser.js +@@ -220,6 +220,32 @@ class PHPParser { + return comment; + } + ++ /** ++ * Get method name from property lookup, going as deep as necessary. ++ * Example: $this->plugin->text_domain->translate ++ * ++ * @param {object} what ++ * @return {string} ++ * @private ++ */ ++ _getMethodNameFromPropertyLookup(what) { ++ let methodName = []; ++ ++ while(what) { ++ if (what.kind === 'propertylookup') { ++ methodName.push(what.offset.name); ++ what = what.what; ++ } else if (what.kind === 'variable') { ++ methodName.push(what.name); ++ what = null; ++ } else { ++ what = null; ++ } ++ } ++ ++ return `\$${methodName.reverse().join('->')}`; ++ } ++ + /** + * Check if ast is a valid function call + * +@@ -231,8 +257,8 @@ class PHPParser { + if (ast.kind === 'call') { + let methodName = ast.what.name; + +- if (ast.what.kind === 'propertylookup' && ast.what.what.kind === 'variable') { +- methodName = ['$', ast.what.what.name, '->', ast.what.offset.name].join(''); ++ if (ast.what.kind === 'propertylookup') { ++ methodName = this._getMethodNameFromPropertyLookup(ast.what); + } else if (ast.what.kind === 'name' && ast.what.resolution === 'fqn') { + methodName = ast.what.name.replace(/^\\/, ''); + }