diff --git a/README.md b/README.md index 43122f10..ea4bced3 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,12 @@ If you don't have Titanium SDK installed on your system have a look at [From zer ### Build the app * `ti build -p ios` or `ti build -p android` to build the app +### Build for release on Android + +``` +ti build -p android -b -K $pathKeyStoreFile -P $keystorePassword -L $alias -D production -T dist-playstore -O $outputDirectory +``` + ## Contact https://matomo.org diff --git a/app/controllers/account_creator_footer.js b/app/controllers/account_creator_footer.js index 46a2b9d8..6a57f746 100644 --- a/app/controllers/account_creator_footer.js +++ b/app/controllers/account_creator_footer.js @@ -19,7 +19,7 @@ function tryIt () require('login').login( accounts, - 'https://demo.matomo.org', + 'https://demo.matomo.cloud', '', '', '' diff --git a/app/controllers/accounts.js b/app/controllers/accounts.js index 92e1e0f7..4dca7668 100755 --- a/app/controllers/accounts.js +++ b/app/controllers/accounts.js @@ -73,18 +73,17 @@ function deleteAccountIfUserConfirmsButNotOniOS(event) cancel: 1, buttonNames: [L('General_Yes'), L('General_No')], selectedIndex: 1, - destructive: 0, title: L('Mobile_ConfirmRemoveAccount') }); dialog.addEventListener('click', function (clickEvent) { - if (!clickEvent || - clickEvent.cancel === clickEvent.index || - true === clickEvent.cancel) { - + if (!clickEvent) { return; } + if (clickEvent.index == 1) { + return; + } deleteAccount(event); }); diff --git a/app/controllers/all_websites_dashboard.js b/app/controllers/all_websites_dashboard.js index 5077d7e5..9cdd477c 100644 --- a/app/controllers/all_websites_dashboard.js +++ b/app/controllers/all_websites_dashboard.js @@ -184,17 +184,19 @@ function showLoadingMessage() $.loading.show(); } -function cancelSearchWebsite() +function changeSearchWebsite() { if (!$.searchBar) { return; } - $.searchBar.value = ''; - $.searchBar.blur(); + if (!$.searchBar.value) { - fetchListOfAvailableWebsites(); + $.searchBar.blur(); + + fetchListOfAvailableWebsites(); + } } function getSearchText() diff --git a/app/controllers/graph_detail.js b/app/controllers/graph_detail.js index 20c52ee5..59ea57d1 100644 --- a/app/controllers/graph_detail.js +++ b/app/controllers/graph_detail.js @@ -21,6 +21,7 @@ graphSwitcher.on('close', close); graphSwitcher.on('switch', function () { var url = getGraphUrlWithSize(getPictureWidth(), getPictureHeight()); + console.debug('imageDetailUrlWithSize', url); $.graphWidget.loadImage(url); }); @@ -81,7 +82,7 @@ function getPictureHeight() { } else { pictureHeight = height - 20; // 10px space left and right } - + return pictureHeight; } @@ -158,11 +159,15 @@ function getImageView(url, width, height) { return Alloy.createWidget('org.piwik.imageview', 'widget', options); } -var pictureWidth = getPictureWidth(); -var pictureHeight = getPictureHeight(); -var graphUrlWithSize = getGraphUrlWithSize(pictureWidth, pictureHeight); +function onPostlayout() { -$.graphWidget.loadImage(graphUrlWithSize); + var pictureWidth = getPictureWidth(); + var pictureHeight = getPictureHeight(); + var graphUrlWithSize = getGraphUrlWithSize(pictureWidth, pictureHeight); + + console.debug('imageDetailUrlWithSize', graphUrlWithSize); + $.graphWidget.loadImage(graphUrlWithSize); +} if (isTablet) { @@ -185,7 +190,6 @@ if (isTablet) { try { var pictureWidth = getOrientationSpecificWidth(); var pictureHeight = getOrientationSpecificHeight(); - $.index.remove($.graph); $.graph = null; @@ -260,4 +264,4 @@ function open() } } -exports.open = open; \ No newline at end of file +exports.open = open; diff --git a/app/controllers/report_without_dimension.js b/app/controllers/report_without_dimension.js index bf5ef1a7..a241eddd 100644 --- a/app/controllers/report_without_dimension.js +++ b/app/controllers/report_without_dimension.js @@ -274,7 +274,7 @@ function fixVerticalSeparatorHeight() var height = parseInt($.dimensions.size.height, 10); if (5 < height) { - $.verticalSeparator.setHeight($.dimensions.size.height); + $.verticalSeparator.height = ($.dimensions.size.height); } } diff --git a/app/controllers/visitor.js b/app/controllers/visitor.js index 811a958a..50eea288 100644 --- a/app/controllers/visitor.js +++ b/app/controllers/visitor.js @@ -14,7 +14,7 @@ var args = arguments[0] || {}; var visitor = args.visitor; var accountModel = require('session').getAccount(); -var accessUrl = accountModel ? accountModel.getBasePath() : 'https://demo.matomo.org/'; +var accessUrl = accountModel ? accountModel.getBasePath() : 'https://demo.matomo.cloud/'; var rows = []; diff --git a/app/controllers/visitor_overview.js b/app/controllers/visitor_overview.js index c78a3b46..8500bec5 100644 --- a/app/controllers/visitor_overview.js +++ b/app/controllers/visitor_overview.js @@ -11,7 +11,7 @@ function L(key) } var args = arguments[0] || {}; -var accessUrl = args.account ? args.account.getBasePath() : 'https://demo.matomo.org/'; +var accessUrl = args.account ? args.account.getBasePath() : 'https://demo.matomo.cloud/'; var visitor = args.visitor || null; function goalConversionDescription(visitor) @@ -132,4 +132,4 @@ function updateDisplayedValues(visitor) } } -updateDisplayedValues(visitor); \ No newline at end of file +updateDisplayedValues(visitor); diff --git a/app/lib/Piwik/Network/HttpRequest.js b/app/lib/Piwik/Network/HttpRequest.js index 44ceb1ec..2bc555da 100644 --- a/app/lib/Piwik/Network/HttpRequest.js +++ b/app/lib/Piwik/Network/HttpRequest.js @@ -159,7 +159,7 @@ HttpRequest.prototype.handle = function () { var settings = Alloy.createCollection('AppSettings').settings(); var validateSsl = settings.shouldValidateSsl(); - this.xhr = Ti.Network.createHTTPClient({validatesSecureCertificate: validateSsl, enableKeepAlive: false}); + this.xhr = Ti.Network.createHTTPClient({validatesSecureCertificate: !!validateSsl, enableKeepAlive: false}); var that = this; this.xhr.onload = function () { that.load(this); that = null; }; diff --git a/app/lib/i18n/ca.js b/app/lib/i18n/ca.js index a47cda25..e01f902e 100644 --- a/app/lib/i18n/ca.js +++ b/app/lib/i18n/ca.js @@ -4,4 +4,4 @@ * @link https://matomo.org * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later */ -module.exports = {"General_AboutPiwikX":"Sobre\u0020Matomo\u0020\u0025s","General_Action":"Acci\u00f3","General_AllWebsitesDashboard":"Tauler\u0020de\u0020tots\u0020els\u0020llocs\u0020web","General_Cancel":"Cancel\u00b7lar","General_ChooseDate":"Seleccioneu\u0020una\u0020data\u002c\u0020la\u0020data\u0020seleccionada\u0020actualment\u0020es\u003a\u0020\u0025s","General_ChooseLanguage":"Tria\u0020idioma","General_ChoosePeriod":"Triar\u0020per\u00edode","General_Close":"Tanca","General_ColumnNbVisits":"Visites","General_ColumnPageviews":"Visualitzacions\u0020de\u0020p\u00e0gina","General_ColumnRevenue":"Ingressos","General_CurrentMonth":"Mes\u0020actual","General_CurrentWeek":"Setmana\u0020actual","General_CurrentYear":"Any\u0020actual","General_Date":"Data","General_DateRangeFrom":"De","General_DateRangeTo":"Fins","General_Delete":"Esborra","General_Details":"Detalls","General_Documentation":"Documentaci\u00f3","General_Done":"Fet","General_Download":"Desc\u00e0rrega","General_Edit":"Edita","General_Error":"Error","General_Faq":"PMF","General_ForExampleShort":"p\u002eex\u002e","General_Forums":"F\u00f2rums","General_FromReferrer":"de","General_GeneralSettings":"Configuraci\u00f3\u0020general","General_GiveUsYourFeedback":"Qu\u00e8\u0020penseu\u0020del\u0020Matomo\u003f","General_Goal":"Objectiu","General_Help":"Ajuda","General_InvalidResponse":"Les\u0020dades\u0020rebudes\u0020s\u00f3n\u0020inv\u00e0lides\u002e","General_Language":"Idioma","General_LastDaysShort":"\u00daltims\u0020\u0025s\u0020dies","General_LoadingData":"Les\u0020dades\u0020s\u0027estan\u0020carregant\u2026","General_Metric":"M\u00e8trica","General_More":"M\u00e9s","General_NewVisitor":"Nova\u0020visita","General_Next":"Seg\u00fcent","General_No":"No","General_NotValid":"\u0025s\u0020no\u0020\u00e9s\u0020v\u00e0lid","General_NumberOfVisits":"N\u00famero\u0020de\u0020visites","General_NVisits":"\u0025s\u0020visites","General_Ok":"D\u0027acord","General_Others":"Altres","General_Outlink":"Enlla\u00e7\u0020extern","General_Password":"Contrasenya","General_Period":"Per\u00edode","General_PleaseUpdatePiwik":"Si\u0020us\u0020plau\u0020actualitzeu\u0020el\u0020Matomo","General_Plugins":"Connectors","General_Previous":"Anterior","General_PreviousDaysShort":"Anteriors\u0020\u0025s\u0020dies","General_Refresh":"Actualitza","General_Remove":"Elimina","General_Reports":"Informes","General_RequestTimedOut":"Una\u0020petici\u00f3\u0020a\u0020\u0025s\u0020ha\u0020caducat\u002e\u0020Proveu\u002dho\u0020de\u0020nou\u002e","General_Required":"\u0025s\u0020requerit","General_Save":"Desa","General_Settings":"Tauler\u0020de\u0020control","General_Subtotal":"Subtotal","General_Unknown":"Desconegut","General_Username":"Usuari","General_Value":"Valor","General_VisitConvertedNGoals":"La\u0020visita\u0020ha\u0020convertit\u0020\u0025s\u0020objectius","General_Visitor":"Visita","General_VisitorIP":"Ip\u0020del\u0020visitant","General_Visitors":"Visitants","General_VisitorSettings":"Configuraci\u00f3\u0020del\u0020visitant","General_VisitType":"Tipus\u0020de\u0020visitant","General_Website":"Lloc\u0020web","General_Yes":"S\u00ed","General_YourChangesHaveBeenSaved":"Els\u0020vostres\u0020canvis\u0020s\u0027han\u0020guardat","Mobile_AboutPiwikMobile":"Sobre\u0020el\u0020Matomo\u0020al\u0020m\u00f2bil","Mobile_AccessUrlLabel":"Url\u0020d\u0027access\u0020al\u0020Matomo","Mobile_Account":"Compte","Mobile_Accounts":"Comptes","Mobile_AddAccount":"Afegir\u0020un\u0020compte","Mobile_AddPiwikDemo":"Afegir\u0020una\u0020demo\u0020del\u0020Matomo","Mobile_Advanced":"Avan\u00e7at","Mobile_AnonymousAccess":"Acc\u00e8s\u0020an\u00f2nim","Mobile_AnonymousTracking":"Rastreig\u0020an\u00f2nim","Mobile_ChooseHttpTimeout":"Seleccioneu\u0020el\u0020temps\u0020d\u0027expiraci\u00f3\u0020HTTP","Mobile_ChooseMetric":"Trieu\u0020una\u0020m\u00e8trica","Mobile_ChooseReport":"Trieu\u0020un\u0020informe","Mobile_ChooseSegment":"Seleccioneu\u0020un\u0020segment","Mobile_ConfirmRemoveAccount":"Voleu\u0020eliminar\u0020aquest\u0020compte\u003f","Mobile_DefaultReportDate":"Data\u0020de\u0020l\u0027informe","Mobile_EmailUs":"Envia\u0027ns\u0020un\u0020email","Mobile_EnableGraphsLabel":"Mostra\u0020gr\u00e0fiques","Mobile_EvolutionGraph":"Gr\u00e0fic\u0020hist\u00f2ric","Mobile_HelpUsToImprovePiwikMobile":"T\u0027agradaria\u0020activar\u0020el\u0020rastreig\u0020an\u00f2nim\u0020de\u0020l\u0027us\u0020del\u0020Matomo\u0020en\u0020el\u0020teu\u0020m\u00f2bil\u003f","Mobile_HowtoDeleteAnAccountOniOS":"Pasa\u0020de\u0020l\u0027esquerra\u0020cap\u0020a\u0020la\u0020dreta\u0020per\u0020eliminar\u0020un\u0020compte","Mobile_HttpTimeout":"Temps\u0020d\u0027expiraci\u00f3\u0020HTTP","Mobile_LoadingReport":"Carregant\u0020\u0025s","Mobile_LoginCredentials":"Credencials","Mobile_LoginUseHttps":"Utilitza\u0020https","Mobile_MultiChartLabel":"Mostra\u0020minigr\u00e0fics","Mobile_NavigationBack":"Enrere","Mobile_NetworkError":"Error\u0020de\u0020xarxa","Mobile_NetworkErrorWithStatusCodeShort":"Error\u0020de\u0020xarxa\u0020\u0025s","Mobile_NetworkNotReachable":"La\u0020xarxa\u0020no\u0020\u00e9s\u0020accessible","Mobile_NoDataShort":"Sense\u0020\u00f3informaci","Mobile_NoPiwikAccount":"No\u0020teniu\u0020un\u0020compte\u0020de\u0020Matomo\u003f","Mobile_NoReportsShort":"Sense\u0020informes","Mobile_NoVisitorFound":"No\u0020s\u0027han\u0020trobat\u0020visitants","Mobile_NoVisitorsShort":"Sense\u0020visitants","Mobile_NoWebsiteFound":"No\u0020s\u0027ha\u0020trobat\u0020el\u0020lloc\u0020web","Mobile_NoWebsitesShort":"Sense\u0020llocs\u0020web","Mobile_PullDownToRefresh":"Estireu\u0020per\u0020actualitzar\u002e\u002e\u002e","Mobile_IgnoreSslError":"Ignorar\u0020error\u0020SSL","Mobile_RatingDontRemindMe":"No\u0020em\u0020recordis","Mobile_RatingNotNow":"Ara\u0020no","Mobile_RatingNow":"D\u0027acord\u002c\u0020el\u0020puntuar\u00e9\u0020ara","Mobile_ReleaseToRefresh":"Solta\u0020per\u0020refrescar\u002e\u002e\u002e","Mobile_Reloading":"Carregant\u002e\u002e\u002e","Mobile_SaveSuccessError":"La\u0020URL\u0020del\u0020Matomo\u0020o\u0020la\u0020combinaci\u00f3\u0020d\u0027usuari\u0020contrasenya\u0020es\u0020incorrecta\u002e","Mobile_SearchWebsite":"Cerca\u0020llocs\u0020web","Mobile_ShowAll":"Mostra\u002dho\u0020tot","Mobile_ShowLess":"Mostra\u0020menys","Mobile_StaticGraph":"Gr\u00e0fic\u0020de\u0020visi\u00f3\u0020general","Mobile_TopVisitedWebsites":"Llocs\u0020web\u0020m\u00e9s\u0020visitats","Mobile_TryIt":"Prova\u002dho","Mobile_UseSearchBarHint":"Nomes\u0020es\u0020mostren\u0020els\u0020\u0025s\u0020primers\u0020llocs\u0020webs\u0020aqu\u00ed\u002e\u0020Utilitzeu\u0020la\u0020barra\u0020de\u0020cerca\u0020per\u0020accedir\u0020als\u0020altres\u0020llocs\u0020web\u002e","Mobile_VerifyAccount":"Verificant\u0020el\u0020compte","Mobile_ValidateSslCertificate":"Validar\u0020certificat\u0020SSL","Mobile_VerifyLoginData":"Asegureu\u002dvos\u0020del\u0020que\u0020el\u0020vostre\u0020nom\u0020d\u0027usuari\u0020i\u0020contrasenya\u0020\u00e9s\u0020correcte\u002e","Mobile_YouAreOffline":"Ho\u0020sentim\u002c\u0020actualment\u0020est\u00e0s\u0020fora\u0020de\u0020l\u00ednia\u002e","CorePluginsAdmin_Activate":"Activa","CorePluginsAdmin_Deactivate":"Desactiva","CoreHome_PeriodRange":"Rang","CoreHome_ThereIsNoDataForThisReport":"No\u0020hi\u0020ha\u0020informaci\u00f3\u0020per\u0020aquest\u0020informe\u002e","Actions_SubmenuSitesearch":"Cerca\u0020al\u0020lloc","DevicesDetection_ColumnBrowser":"Navegador","Goals_AbandonedCart":"Cistella\u0020abandonada","Goals_Ecommerce":"Ecomer\u00e7","Goals_EcommerceOrder":"Ordre\u0020d\u0027ecomer\u00e7","SEO_Rank":"Ranking","Events_Event":"Esdeveniment","UserCountry_City":"Ciutat","UserCountry_Country":"Pa\u00eds","UserCountry_Region":"Regi\u00f3","VisitsSummary_NbActionsDescription":"\u0025s\u0020accions","Feedback_DoYouHaveBugReportOrFeatureRequest":"Teniu\u0020algun\u0020error\u0020que\u0020reportar\u0020o\u0020una\u0020petici\u00f3\u0020de\u0020noves\u0020funcionalitats\u003f","Feedback_ThankYou":"Gr\u00e0cies\u0020per\u0020ajudar\u002dnos\u0020a\u0020fer\u0020el\u0020Matomo\u0020millor\u0021","UsersManager_ManageAccess":"Gestiona\u0020els\u0020permisos","UsersManager_PrivView":"Vista","SitesManager_ExceptionInvalidUrl":"L\u0027adre\u00e7a\u0020\u0027\u0025s\u0027\u0020no\u0020\u00e9s\u0020v\u00e0lida\u002e","SitesManager_NotFound":"No\u0020s\u0027han\u0020trobat\u0020llocs\u0020web\u0020per","CoreUpdater_UpdateTitle":"Actualitzaci\u00f3\u0020del\u0020Matomo","Live_LastHours":"\u00daltimes\u0020\u0025s\u0020hores","Live_LastMinutes":"\u00daltims\u0020\u0025s\u0020minuts","CustomVariables_CustomVariables":"Variables\u0020personalitzades","Resolution_ColumnResolution":"Resoluci\u00f3","Intl_PeriodDay":"dia","Intl_PeriodMonth":"mes","Intl_PeriodWeek":"setmana","Intl_PeriodYear":"any","Intl_Today":"Avui","Intl_Yesterday":"Ahir"}; \ No newline at end of file +module.exports = {"General_AboutPiwikX":"Sobre\u0020Matomo\u0020\u0025s","General_Action":"Acci\u00f3","General_AllWebsitesDashboard":"Tauler\u0020de\u0020tots\u0020els\u0020llocs\u0020web","General_Cancel":"Cancel\u00b7lar","General_ChooseDate":"Seleccioneu\u0020una\u0020data","General_ChooseLanguage":"Tria\u0020idioma","General_ChoosePeriod":"Triar\u0020per\u00edode","General_Close":"Tanca","General_ColumnNbVisits":"Visites","General_ColumnPageviews":"Visualitzacions\u0020de\u0020p\u00e0gina","General_ColumnRevenue":"Ingressos","General_CurrentMonth":"Mes\u0020actual","General_CurrentWeek":"Setmana\u0020actual","General_CurrentYear":"Any\u0020actual","General_Date":"Data","General_DateRangeFrom":"De","General_DateRangeTo":"Fins","General_Delete":"Esborra","General_Details":"Detalls","General_Documentation":"Documentaci\u00f3","General_Done":"Fet","General_Download":"Desc\u00e0rrega","General_Edit":"Edita","General_Error":"Error","General_Faq":"PMF","General_ForExampleShort":"p\u002eex\u002e","General_Forums":"F\u00f2rums","General_FromReferrer":"de","General_GeneralSettings":"Configuraci\u00f3\u0020general","General_GiveUsYourFeedback":"Qu\u00e8\u0020penseu\u0020del\u0020Matomo\u003f","General_Goal":"Objectiu","General_Help":"Ajuda","General_InvalidResponse":"Les\u0020dades\u0020rebudes\u0020s\u00f3n\u0020inv\u00e0lides\u002e","General_Language":"Idioma","General_LastDaysShort":"\u00daltims\u0020\u0025s\u0020dies","General_LoadingData":"Les\u0020dades\u0020s\u0027estan\u0020carregant\u2026","General_Metric":"M\u00e8trica","General_More":"M\u00e9s","General_NewVisitor":"Nova\u0020visita","General_Next":"Seg\u00fcent","General_No":"No","General_NotValid":"\u0025s\u0020no\u0020\u00e9s\u0020v\u00e0lid","General_NumberOfVisits":"N\u00famero\u0020de\u0020visites","General_NVisits":"\u0025s\u0020visites","General_Ok":"D\u0027acord","General_Others":"Altres","General_Outlink":"Enlla\u00e7\u0020extern","General_Password":"Contrasenya","General_Period":"Per\u00edode","General_PleaseUpdatePiwik":"Si\u0020us\u0020plau\u0020actualitzeu\u0020el\u0020Matomo","General_Plugins":"Connectors","General_Previous":"Anterior","General_PreviousDaysShort":"Anteriors\u0020\u0025s\u0020dies","General_Refresh":"Actualitza","General_Remove":"Elimina","General_Reports":"Informes","General_RequestTimedOut":"Una\u0020petici\u00f3\u0020a\u0020\u0025s\u0020ha\u0020caducat\u002e\u0020Proveu\u002dho\u0020de\u0020nou\u002e","General_Required":"\u0025s\u0020requerit","General_Save":"Desa","General_Settings":"Tauler\u0020de\u0020control","General_Subtotal":"Subtotal","General_Unknown":"Desconegut","General_Username":"Usuari","General_Value":"Valor","General_VisitConvertedNGoals":"La\u0020visita\u0020ha\u0020convertit\u0020\u0025s\u0020objectius","General_Visitor":"Visita","General_VisitorIP":"Ip\u0020del\u0020visitant","General_Visitors":"Visitants","General_VisitorSettings":"Configuraci\u00f3\u0020del\u0020visitant","General_VisitType":"Tipus\u0020de\u0020visitant","General_Website":"Lloc\u0020web","General_Yes":"S\u00ed","General_YourChangesHaveBeenSaved":"Els\u0020vostres\u0020canvis\u0020s\u0027han\u0020guardat","Mobile_AboutPiwikMobile":"Sobre\u0020el\u0020Matomo\u0020al\u0020m\u00f2bil","Mobile_AccessUrlLabel":"Url\u0020d\u0027access\u0020al\u0020Matomo","Mobile_Account":"Compte","Mobile_Accounts":"Comptes","Mobile_AddAccount":"Afegir\u0020un\u0020compte","Mobile_AddPiwikDemo":"Afegir\u0020una\u0020demo\u0020del\u0020Matomo","Mobile_Advanced":"Avan\u00e7at","Mobile_AnonymousAccess":"Acc\u00e8s\u0020an\u00f2nim","Mobile_AnonymousTracking":"Rastreig\u0020an\u00f2nim","Mobile_ChooseHttpTimeout":"Seleccioneu\u0020el\u0020temps\u0020d\u0027expiraci\u00f3\u0020HTTP","Mobile_ChooseMetric":"Trieu\u0020una\u0020m\u00e8trica","Mobile_ChooseReport":"Trieu\u0020un\u0020informe","Mobile_ChooseSegment":"Seleccioneu\u0020un\u0020segment","Mobile_ConfirmRemoveAccount":"Voleu\u0020eliminar\u0020aquest\u0020compte\u003f","Mobile_DefaultReportDate":"Data\u0020de\u0020l\u0027informe","Mobile_EmailUs":"Envia\u0027ns\u0020un\u0020email","Mobile_EnableGraphsLabel":"Mostra\u0020gr\u00e0fiques","Mobile_EvolutionGraph":"Gr\u00e0fic\u0020hist\u00f2ric","Mobile_HelpUsToImprovePiwikMobile":"T\u0027agradaria\u0020activar\u0020el\u0020rastreig\u0020an\u00f2nim\u0020de\u0020l\u0027us\u0020del\u0020Matomo\u0020en\u0020el\u0020teu\u0020m\u00f2bil\u003f","Mobile_HowtoDeleteAnAccountOniOS":"Pasa\u0020de\u0020l\u0027esquerra\u0020cap\u0020a\u0020la\u0020dreta\u0020per\u0020eliminar\u0020un\u0020compte","Mobile_HttpTimeout":"Temps\u0020d\u0027expiraci\u00f3\u0020HTTP","Mobile_LoadingReport":"Carregant\u0020\u0025s","Mobile_LoginCredentials":"Credencials","Mobile_LoginUseHttps":"Utilitza\u0020https","Mobile_MultiChartLabel":"Mostra\u0020minigr\u00e0fics","Mobile_NavigationBack":"Enrere","Mobile_NetworkError":"Error\u0020de\u0020xarxa","Mobile_NetworkErrorWithStatusCodeShort":"Error\u0020de\u0020xarxa\u0020\u0025s","Mobile_NetworkNotReachable":"La\u0020xarxa\u0020no\u0020\u00e9s\u0020accessible","Mobile_NoDataShort":"Sense\u0020\u00f3informaci","Mobile_NoPiwikAccount":"No\u0020teniu\u0020un\u0020compte\u0020de\u0020Matomo\u003f","Mobile_NoReportsShort":"Sense\u0020informes","Mobile_NoVisitorFound":"No\u0020s\u0027han\u0020trobat\u0020visitants","Mobile_NoVisitorsShort":"Sense\u0020visitants","Mobile_NoWebsiteFound":"No\u0020s\u0027ha\u0020trobat\u0020el\u0020lloc\u0020web","Mobile_NoWebsitesShort":"Sense\u0020llocs\u0020web","Mobile_PullDownToRefresh":"Estireu\u0020per\u0020actualitzar\u002e\u002e\u002e","Mobile_IgnoreSslError":"Ignorar\u0020error\u0020SSL","Mobile_RatingDontRemindMe":"No\u0020em\u0020recordis","Mobile_RatingNotNow":"Ara\u0020no","Mobile_RatingNow":"D\u0027acord\u002c\u0020el\u0020puntuar\u00e9\u0020ara","Mobile_ReleaseToRefresh":"Solta\u0020per\u0020refrescar\u002e\u002e\u002e","Mobile_Reloading":"Carregant\u002e\u002e\u002e","Mobile_SaveSuccessError":"La\u0020URL\u0020del\u0020Matomo\u0020o\u0020la\u0020combinaci\u00f3\u0020d\u0027usuari\u0020contrasenya\u0020es\u0020incorrecta\u002e","Mobile_SearchWebsite":"Cerca\u0020llocs\u0020web","Mobile_ShowAll":"Mostra\u002dho\u0020tot","Mobile_ShowLess":"Mostra\u0020menys","Mobile_StaticGraph":"Gr\u00e0fic\u0020de\u0020visi\u00f3\u0020general","Mobile_TopVisitedWebsites":"Llocs\u0020web\u0020m\u00e9s\u0020visitats","Mobile_TryIt":"Prova\u002dho","Mobile_UseSearchBarHint":"Nomes\u0020es\u0020mostren\u0020els\u0020\u0025s\u0020primers\u0020llocs\u0020webs\u0020aqu\u00ed\u002e\u0020Utilitzeu\u0020la\u0020barra\u0020de\u0020cerca\u0020per\u0020accedir\u0020als\u0020altres\u0020llocs\u0020web\u002e","Mobile_VerifyAccount":"Verificant\u0020el\u0020compte","Mobile_ValidateSslCertificate":"Validar\u0020certificat\u0020SSL","Mobile_VerifyLoginData":"Asegureu\u002dvos\u0020del\u0020que\u0020el\u0020vostre\u0020nom\u0020d\u0027usuari\u0020i\u0020contrasenya\u0020\u00e9s\u0020correcte\u002e","Mobile_YouAreOffline":"Ho\u0020sentim\u002c\u0020actualment\u0020est\u00e0s\u0020fora\u0020de\u0020l\u00ednia\u002e","CorePluginsAdmin_Activate":"Activa","CorePluginsAdmin_Deactivate":"Desactiva","CoreHome_PeriodRange":"Rang","CoreHome_ThereIsNoDataForThisReport":"No\u0020hi\u0020ha\u0020informaci\u00f3\u0020per\u0020aquest\u0020informe\u002e","Actions_SubmenuSitesearch":"Cerca\u0020al\u0020lloc","DevicesDetection_ColumnBrowser":"Navegador","Goals_AbandonedCart":"Cistella\u0020abandonada","Goals_Ecommerce":"Ecomer\u00e7","Goals_EcommerceOrder":"Ordre\u0020d\u0027ecomer\u00e7","SEO_Rank":"Ranking","Events_Event":"Esdeveniment","UserCountry_City":"Ciutat","UserCountry_Country":"Pa\u00eds","UserCountry_Region":"Regi\u00f3","VisitsSummary_NbActionsDescription":"\u0025s\u0020accions","Feedback_DoYouHaveBugReportOrFeatureRequest":"Teniu\u0020algun\u0020error\u0020que\u0020reportar\u0020o\u0020una\u0020petici\u00f3\u0020de\u0020noves\u0020funcionalitats\u003f","Feedback_ThankYou":"Gr\u00e0cies\u0020per\u0020ajudar\u002dnos\u0020a\u0020fer\u0020el\u0020Matomo\u0020millor\u0021","UsersManager_ManageAccess":"Gestiona\u0020els\u0020permisos","UsersManager_PrivView":"Vista","SitesManager_ExceptionInvalidUrl":"L\u0027adre\u00e7a\u0020\u0027\u0025s\u0027\u0020no\u0020\u00e9s\u0020v\u00e0lida\u002e","SitesManager_NotFound":"No\u0020s\u0027han\u0020trobat\u0020llocs\u0020web\u0020per","CoreUpdater_UpdateTitle":"Actualitzaci\u00f3\u0020del\u0020Matomo","Live_LastHours":"\u00daltimes\u0020\u0025s\u0020hores","Live_LastMinutes":"\u00daltims\u0020\u0025s\u0020minuts","CustomVariables_CustomVariables":"Variables\u0020personalitzades","Resolution_ColumnResolution":"Resoluci\u00f3","Intl_PeriodDay":"dia","Intl_PeriodMonth":"mes","Intl_PeriodWeek":"setmana","Intl_PeriodYear":"any","Intl_Today":"Avui","Intl_Yesterday":"Ahir"}; diff --git a/app/lib/i18n/de.js b/app/lib/i18n/de.js index 4e2f631e..27e06eb4 100644 --- a/app/lib/i18n/de.js +++ b/app/lib/i18n/de.js @@ -4,4 +4,4 @@ * @link https://matomo.org * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later */ -module.exports = {"General_AboutPiwikX":"\u00dcber\u0020Matomo\u0020\u0025s","General_Action":"Aktion","General_AllWebsitesDashboard":"Dashboard\u0020aller\u0020Websites","General_Cancel":"Abbrechen","General_ChooseDate":"W\u00e4hlen\u0020Sie\u0020ein\u0020Datum\u002c\u0020aktuell\u0020gew\u00e4hltes\u0020Datum\u0020ist\u003a\u0020\u0025s","General_ChooseLanguage":"Sprache\u0020w\u00e4hlen","General_ChoosePeriod":"Zeitraum\u0020w\u00e4hlen","General_Close":"Schlie\u00dfen","General_ColumnNbVisits":"Besuche","General_ColumnPageviews":"Seitenansichten","General_ColumnRevenue":"Umsatz","General_CurrentMonth":"Aktueller\u0020Monat","General_CurrentWeek":"Aktuelle\u0020Woche","General_CurrentYear":"Aktuelles\u0020Jahr","General_Date":"Datum","General_DateRangeFrom":"Von","General_DateRangeTo":"Bis","General_Delete":"L\u00f6schen","General_Details":"Details","General_Documentation":"Dokumentation","General_Done":"Erledigt","General_Download":"Download","General_Edit":"\u00c4ndern","General_Error":"Fehler","General_ErrorRequest":"Oops\u2026\u0020w\u00e4hrend\u0020der\u0020Anfrage\u0020ist\u0020ein\u0020Problem\u0020aufgetreten\u002e\u0020M\u00f6glicherweise\u0020war\u0020der\u0020Server\u0020tempor\u00e4r\u0020\u00fcberlastet\u002c\u0020oder\u0020eventuell\u0020haben\u0020Sie\u0020einen\u0020Bericht\u0020mit\u0020zu\u0020vielen\u0020Daten\u0020angefordert\u002e\u0020Bitte\u0020noch\u0020einmal\u0020versuchen\u002e\u0020Wenn\u0020dieser\u0020Fehler\u0020wiederholt\u0020auftritt\u0020\u0025skontaktieren\u0020Sie\u0020bitte\u0020Ihren\u0020Matomo\u0020Administrator\u0025s\u002c\u0020um\u0020Unterst\u00fctzung\u0020zu\u0020erhalten\u002e","General_Faq":"FAQ","General_Flatten":"Flach\u0020anzeigen","General_ForExampleShort":"z\u002eB\u002e","General_Forums":"Forum","General_FromReferrer":"von","General_GeneralSettings":"Allgemeine\u0020Einstellungen","General_GiveUsYourFeedback":"Feedback\u0020geben\u0021","General_Goal":"Ziel","General_Help":"Hilfe","General_InvalidResponse":"Die\u0020empfangenen\u0020Daten\u0020sind\u0020nicht\u0020g\u00fcltig\u002e","General_Language":"Sprache","General_LastDaysShort":"Letzte\u0020\u0025s\u0020Tage","General_Live":"Echtzeit","General_LoadingData":"Lade\u0020Daten\u0020\u002e\u002e\u002e","General_Metric":"Metrik","General_More":"Mehr","General_NewVisitor":"Neuer\u0020Besucher","General_Next":"n\u00e4chste","General_No":"Nein","General_NotValid":"\u0025s\u0020ist\u0020nicht\u0020g\u00fcltig","General_NumberOfVisits":"Anzahl\u0020der\u0020Besuche","General_NVisits":"\u0025s\u0020Besuche","General_Ok":"OK","General_Others":"Andere","General_Outlink":"Ausgehender\u0020Verweis","General_Password":"Passwort","General_Period":"Zeitraum","General_PiwikXIsAvailablePleaseNotifyPiwikAdmin":"\u0025s\u0020ist\u0020verf\u00fcgbar\u002e\u0020Bitte\u0020benachrichtigen\u0020Sie\u0020den\u0020\u0025sMatomo\u0020Administrator\u0025s\u002e","General_PleaseUpdatePiwik":"Bitte\u0020Matomo\u0020aktualisieren","General_Plugins":"Plugins","General_Previous":"vorherige","General_PreviousDaysShort":"Vergangene\u0020\u0025s\u0020Tage","General_Refresh":"Aktualisieren","General_Remove":"Entfernen","General_Reports":"Berichte","General_RequestTimedOut":"Die\u0020Datenabfrage\u0020an\u0020\u0025s\u0020dauerte\u0020zu\u0020lange\u002e\u0020Bitte\u0020versuchen\u0020Sie\u0020es\u0020noch\u0020einmal\u002e","General_Required":"\u0025s\u0020ben\u00f6tigt","General_Save":"Speichern","General_Settings":"Einstellungen","General_Subtotal":"Zwischensumme","General_Unknown":"unbekannt","General_Username":"Benutzername","General_Value":"Wert","General_VisitConvertedNGoals":"Besuch\u0020erreichte\u0020\u0025s\u0020Ziele","General_Visitor":"Besucher","General_VisitorIP":"IP\u0020des\u0020Besuchers","General_Visitors":"Besucher","General_VisitorSettings":"Besuchereinstellungen","General_VisitType":"Art\u0020des\u0020Besuchs","General_Website":"Website","General_Yes":"Ja","General_YourChangesHaveBeenSaved":"Ihre\u0020\u00c4nderungen\u0020wurden\u0020gespeichert\u002e","Mobile_AboutPiwikMobile":"\u00dcber\u0020Matomo\u0020Mobile","Mobile_AccessUrlLabel":"URL\u0020zum\u0020Zugriff\u0020auf\u0020Matomo","Mobile_Account":"Account","Mobile_Accounts":"Accounts","Mobile_AddAccount":"Account\u0020hinzuf\u00fcgen","Mobile_AddPiwikDemo":"Matomo\u0020Demo\u0020hinzuf\u00fcgen","Mobile_Advanced":"Erweitert","Mobile_AnonymousAccess":"Anonymer\u0020Zugriff","Mobile_AnonymousTracking":"Anonymes\u0020Aufzeichnen","Mobile_AskForAnonymousTrackingPermission":"Falls\u0020aktiviert\u0020sendet\u0020Matomo\u0020Mobile\u0020anonyme\u0020Nutzungsdaten\u0020an\u0020matomo\u002eorg\u002e\u0020Die\u0020Erhebung\u0020dieser\u0020Daten\u0020hilft\u0020den\u0020Matomo\u0020Mobile\u0020Entwicklern\u0020besser\u0020zu\u0020verstehen\u002c\u0020wie\u0020diese\u0020Applikation\u0020genutzt\u0020wird\u002e\u0020Folgende\u0020Informationen\u0020werden\u0020gesendet\u003a\u0020Verwendung\u0020der\u0020Men\u00fcs\u0020und\u0020Einstellungen\u002c\u0020Betriebssystemname\u0020und\u0020Version\u0020und\u0020angezeigte\u0020Fehler\u0020in\u0020Matomo\u0020Mobile\u002e\u0020Es\u0020werden\u0020KEINE\u0020analytischen\u0020Daten\u0020aufgezeichnet\u002e\u0020Diese\u0020anonymen\u0020Daten\u0020werden\u0020niemals\u0020der\u0020\u00d6ffentlichkeit\u0020zug\u00e4nglich\u0020gemacht\u002e\u0020Anonyme\u0020Nutzungsdatenerfassung\u0020kann\u0020jederzeit\u0020in\u0020den\u0020Einstellungen\u0020wieder\u0020aktiviert\u0020bzw\u002e\u0020deaktiviert\u0020werden\u002e","Mobile_ChooseHttpTimeout":"W\u00e4hlen\u0020Sie\u0020einen\u0020Wert\u0020f\u00fcr\u0020den\u0020HTTP\u0020Timeout","Mobile_ChooseMetric":"W\u00e4hle\u0020Metrik","Mobile_ChooseReport":"W\u00e4hlen\u0020Sie\u0020einen\u0020Bericht","Mobile_ChooseSegment":"Segment\u0020ausw\u00e4hlen","Mobile_ConfirmRemoveAccount":"M\u00f6chten\u0020Sie\u0020diesen\u0020Account\u0020entfernen\u003f","Mobile_DefaultReportDate":"Berichtsdatum","Mobile_EmailUs":"E\u002dMail\u0020senden","Mobile_EnableGraphsLabel":"Graphen\u0020anzeigen","Mobile_EvolutionGraph":"Zeitdiagramm","Mobile_HelpUsToImprovePiwikMobile":"Anonyme\u0020Nutzungsdaten\u0020in\u0020Matomo\u0020Mobile\u0020aktivieren\u003f","Mobile_HowtoDeleteAnAccount":"Gedr\u00fcckt\u0020halten\u002c\u0020um\u0020einen\u0020Account\u0020zu\u0020entfernen\u002e","Mobile_HowtoDeleteAnAccountOniOS":"Von\u0020rechts\u0020nach\u0020links\u0020wischen\u002c\u0020um\u0020einen\u0020Account\u0020zu\u0020l\u00f6schen","Mobile_HowtoLoginAnonymous":"Benutzername\u0020und\u0020Passwort\u0020leer\u0020lassen\u0020f\u00fcr\u0020anonymes\u0020Anmelden","Mobile_HttpIsNotSecureWarning":"Bei\u0020der\u0020Verwendung\u0020von\u0020HTTP\u0020wird\u0020ihr\u0020Matomo\u0020Authorisierungstoken\u0020\u0028token\u005fauth\u0029\u0020im\u0020Klartext\u0020\u00fcbertragen\u002e\u0020Aus\u0020diesem\u0020Grund\u0020empfehlen\u0020wir\u0020HTTPS\u0020f\u00fcr\u0020eine\u0020sichere\u0020\u00dcbertragung\u0020von\u0020Daten\u0020\u00fcber\u0020das\u0020Internet\u002e\u0020M\u00f6chten\u0020Sie\u0020fortfahren\u003f","Mobile_HttpTimeout":"HTTP\u0020Timeout","Mobile_IncompatiblePiwikVersion":"Die\u0020Matomo\u0020Version\u002c\u0020die\u0020Sie\u0020verwenden\u002c\u0020ist\u0020nicht\u0020mit\u0020Matomo\u0020Mobile\u00202\u0020kompatibel\u002e\u0020Aktualisieren\u0020Sie\u0020Ihre\u0020Matomo\u0020Installation\u0020oder\u0020verwenden\u0020Sie\u0020alternativ\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_LoadingReport":"Lade\u0020\u0025s","Mobile_LoginCredentials":"Zugangsdaten","Mobile_LoginToPiwikToChangeSettings":"Melden\u0020Sie\u0020sich\u0020in\u0020Matomo\u0020an\u002c\u0020um\u0020Websites\u0020und\u0020User\u0020zu\u0020erstellen\u0020und\u0020zu\u0020aktualisieren\u0020oder\u0020um\u0020allgemeine\u0020Einstellungen\u0020wie\u0020\u0022Bericht\u002c\u0020der\u0020standardm\u00e4\u00dfig\u0020geladen\u0020wird\u0022\u0020zu\u0020\u00e4ndern\u002e","Mobile_LoginUseHttps":"Benutze\u0020HTTPS","Mobile_MultiChartLabel":"Multisite\u0020Graphen\u0020anzeigen","Mobile_NavigationBack":"Zur\u00fcck","Mobile_NetworkError":"Netzwerkfehler","Mobile_NetworkErrorWithStatusCode":"Folgender\u0020Fehler\u0020trat\u0020auf\u0020\u0022\u0025s\u0022\u002e\u0020Die\u0020Anfrage\u0020gab\u0020den\u0020Status\u0020\u0022\u0025s\u0022\u0020zur\u00fcck\u002e\u0020URL\u0020war\u0020\u0022\u0025s\u0022\u002e\u0020Bitte\u0020die\u0020eingegebene\u0020URL\u0020\u00fcberpr\u00fcfen\u0020und\u0020die\u0020Fehlerlog\u0020Dateien\u0020auf\u0020dem\u0020Server\u0020\u00fcberpr\u00fcfen\u002c\u0020um\u0020mehr\u0020Informationen\u0020zu\u0020diesem\u0020Fehler\u0020und\u0020wie\u0020er\u0020zu\u0020beheben\u0020ist\u002c\u0020zu\u0020erfahren\u002e","Mobile_NetworkErrorWithStatusCodeShort":"Netzwerkfehler\u0020\u0025s","Mobile_NetworkNotReachable":"Netzwerk\u0020ist\u0020nicht\u0020erreichbar","Mobile_NoAccountIsSelected":"Kein\u0020Zugang\u0020ausgew\u00e4hlt\u002e\u0020F\u00fcgen\u0020Sie\u0020einen\u0020neuen\u0020Account\u0020hinzu\u002c\u0020wenn\u0020Sie\u0020keinen\u0020konfiguriert\u0020haben\u002e","Mobile_NoDataShort":"Keine\u0020Daten","Mobile_NoPiwikAccount":"Kein\u0020Matomo\u0020Account\u003f","Mobile_NoReportsShort":"Keine\u0020Berichte","Mobile_NoVisitorFound":"Kein\u0020Besucher\u0020gefunden","Mobile_NoVisitorsShort":"Keine\u0020Besucher","Mobile_NoWebsiteFound":"Website\u0020nicht\u0020gefunden","Mobile_NoWebsitesShort":"Keine\u0020Websites","Mobile_PullDownToRefresh":"Zum\u0020Aktualisieren\u0020herunterziehen\u002e\u002e\u002e","Mobile_PossibleSslError":"M\u00f6glicher\u0020SSL\u002dZertifikats\u002dFehler","Mobile_PossibleSslErrorExplanation":"Ein\u0020Fehler\u0020ist\u0020aufgetreten\u002c\u0020welcher\u0020durch\u0020ein\u0020invalides\u0020oder\u0020selbst\u0020signiertes\u0020SSL\u0020Zertifikat\u0020verursacht\u0020sein\u0020k\u00f6nnte\u003a\u0020\u0022\u0025s\u0022\u002e\u0020Die\u0020Anmeldung\u0020k\u00f6nnte\u0020funktionieren\u002c\u0020indem\u0020die\u0020Validierung\u0020des\u0020SSL\u0020Zertifikat\u0020ignoriert\u0020wird\u002c\u0020aber\u0020es\u0020ist\u0020weniger\u0020sicher\u002e\u0020Die\u0020Einstellung\u0020kann\u0020jederzeit\u0020nachtr\u00e4glich\u0020ge\u00e4ndert\u0020werden\u002e","Mobile_IgnoreSslError":"Ignoriere\u0020SSL\u002dFehler","Mobile_RatingDontRemindMe":"Bitte\u0020nicht\u0020daran\u0020erinnern","Mobile_RatingNotNow":"Nicht\u0020jetzt","Mobile_RatingNow":"OK\u002c\u0020ich\u0020bewerte\u0020es\u0020jetzt","Mobile_RatingPleaseRateUs":"Matomo\u0020Mobile\u0020App\u0020ist\u0020Freie\u0020Software\u002c\u0020wir\u0020w\u00fcrden\u0020es\u0020sehr\u0020zu\u0020sch\u00e4tzen\u0020wissen\u002c\u0020wenn\u0020Sie\u00201\u0020Minute\u0020Ihrer\u0020wertvollen\u0020Zeit\u0020opfern\u0020w\u00fcrden\u002c\u0020um\u0020diese\u0020App\u0020im\u0020\u0025s\u0020zu\u0020bewerten\u002e\u0020Falls\u0020Sie\u0020Vorschl\u00e4ge\u0020f\u00fcr\u0020neue\u0020Features\u0020haben\u0020oder\u0020Fehler\u0020melden\u0020m\u00f6chten\u002c\u0020bitte\u0020kontaktieren\u0020Sie\u0020\u0025s","Mobile_ReleaseToRefresh":"Zum\u0020Aktualisieren\u0020loslassen\u002e\u002e\u002e","Mobile_Reloading":"Wird\u0020neu\u0020geladen\u002e\u002e\u002e","Mobile_RequestTimedOutShort":"Netzwerk\u0020Zeit\u00fcberschreitung","Mobile_RestrictedCompatibility":"Eingeschr\u00e4nkte\u0020Kompatibilit\u00e4t","Mobile_RestrictedCompatibilityExplanation":"Die\u0020Matomo\u0020Version\u0020\u0025s\u002c\u0020die\u0020Sie\u0020verwenden\u002c\u0020wird\u0020nicht\u0020vollst\u00e4ndig\u0020von\u0020Matomo\u0020Mobile\u00202\u0020unterst\u00fctzt\u002e\u0020Es\u0020k\u00f6nnten\u0020Bugs\u0020auftreten\u002e\u0020Wir\u0020empfehlen\u0020Matomo\u0020auf\u0020die\u0020neueste\u0020Version\u0020zu\u0020aktualisieren\u0020oder\u0020Matomo\u0020Mobile\u00201\u0020zu\u0020verwenden\u002e","Mobile_SaveSuccessError":"Matomo\u0020URL\u0020oder\u0020Benutzername\u002d\u002fPasswort\u002dKombination\u0020ist\u0020falsch\u002e","Mobile_SearchWebsite":"Websites\u0020durchsuchen","Mobile_ShowAll":"Alle\u0020anzeigen","Mobile_ShowLess":"Weniger\u0020anzeigen","Mobile_StaticGraph":"\u00dcbersichts\u002dGraph","Mobile_TopVisitedWebsites":"Top\u0020besuchte\u0020Websites","Mobile_TryIt":"Probieren\u0020Sie\u0020es\u0020aus\u0021","Mobile_UseSearchBarHint":"Hier\u0020werden\u0020nur\u0020die\u0020ersten\u0020\u0025s\u0020Websites\u0020angezeigt\u002e\u0020Bitte\u0020benutzen\u0020Sie\u0020die\u0020Suchbox\u002c\u0020um\u0020auf\u0020die\u0020restlichen\u0020Seiten\u0020zuzugreifen\u002e","Mobile_VerifyAccount":"Account\u0020wird\u0020\u00fcberpr\u00fcft\u002e\u002e\u002e","Mobile_ValidateSslCertificate":"Validiere\u0020SSL\u0020Zertifikat","Mobile_VerifyLoginData":"Bitte\u0020\u00fcberpr\u00fcfen\u0020Sie\u002c\u0020ob\u0020die\u0020Kombination\u0020aus\u0020Benutzername\u0020und\u0020Passwort\u0020korrekt\u0020ist\u002e","Mobile_YouAreOffline":"Sie\u0020sind\u0020derzeit\u0020offline","CorePluginsAdmin_Activate":"Aktivieren","CorePluginsAdmin_Deactivate":"Deaktivieren","CoreHome_PeriodRange":"Zeitspanne","CoreHome_TableNoData":"Keine\u0020Daten\u0020f\u00fcr\u0020diese\u0020Tabelle\u002e","CoreHome_ThereIsNoDataForThisReport":"Es\u0020stehen\u0020keine\u0020Daten\u0020f\u00fcr\u0020diesen\u0020Bericht\u0020zur\u0020Verf\u00fcgung\u002e","Actions_SubmenuSitesearch":"Interne\u0020Suche","DevicesDetection_ColumnBrowser":"Browser","Goals_AbandonedCart":"Verlassener\u0020Warenkorb","Goals_Ecommerce":"Ecommerce","Goals_EcommerceOrder":"Ecommerce\u0020Bestellung","SEO_Rank":"Rang","Events_Event":"Ereignis","UserCountry_City":"Stadt","UserCountry_Country":"Land","UserCountry_Region":"Region","VisitsSummary_NbActionsDescription":"\u0025s\u0020Aktionen","Feedback_DoYouHaveBugReportOrFeatureRequest":"M\u00f6chten\u0020Sie\u0020einen\u0020Fehler\u0020melden\u0020oder\u0020haben\u0020Sie\u0020eine\u0020Idee\u0020f\u00fcr\u0020eine\u0020neue\u0020Funktion\u003f","Feedback_ThankYou":"Danke\u0020f\u00fcr\u0020Ihre\u0020Unterst\u00fctzung\u002c\u0020Matomo\u0020zu\u0020verbessern\u0021","TwoFactorAuth_Verify":"Verifizieren","UsersManager_ManageAccess":"Zugriffsverwaltung","UsersManager_PrivView":"Ansicht","SitesManager_ExceptionInvalidUrl":"Die\u0020Adresse\u0020\u0027\u0025s\u0027\u0020ist\u0020keine\u0020g\u00fcltige\u0020URL\u002e","SitesManager_MenuManage":"Verwalten","SitesManager_NotFound":"Keine\u0020Websites\u0020gefunden\u0020f\u00fcr","CoreUpdater_UpdateTitle":"Aktualisieren","UserCountryMap_RealTimeMap":"Besucherkarte\u0020in\u0020Echtzeit","Live_LastHours":"Letzte\u0020\u0025s\u0020Stunden","Live_LastMinutes":"Letzte\u0020\u0025s\u0020Minuten","Live_VisitorLog":"Besucher\u002dLog","Live_VisitorsInRealTime":"Besuche\u0020in\u0020Echtzeit","CustomVariables_CustomVariables":"Benutzerdefinierte\u0020Variablen","SegmentEditor_DefaultAllVisits":"Alle\u0020Besuche","Resolution_ColumnResolution":"Aufl\u00f6sung","Intl_PeriodDay":"Tag","Intl_PeriodMonth":"Monat","Intl_PeriodWeek":"Woche","Intl_PeriodYear":"Jahr","Intl_Today":"Heute","Intl_Yesterday":"Gestern"}; +module.exports = {"General_AboutPiwikX":"\u00dcber\u0020Matomo\u0020\u0025s","General_Action":"Aktion","General_AllWebsitesDashboard":"Dashboard\u0020aller\u0020Websites","General_Cancel":"Abbrechen","General_ChooseDate":"W\u00e4hlen\u0020Sie\u0020ein\u0020Datum","General_ChooseLanguage":"Sprache\u0020w\u00e4hlen","General_ChoosePeriod":"Zeitraum\u0020w\u00e4hlen","General_Close":"Schlie\u00dfen","General_ColumnNbVisits":"Besuche","General_ColumnPageviews":"Seitenansichten","General_ColumnRevenue":"Umsatz","General_CurrentMonth":"Aktueller\u0020Monat","General_CurrentWeek":"Aktuelle\u0020Woche","General_CurrentYear":"Aktuelles\u0020Jahr","General_Date":"Datum","General_DateRangeFrom":"Von","General_DateRangeTo":"Bis","General_Delete":"L\u00f6schen","General_Details":"Details","General_Documentation":"Dokumentation","General_Done":"Erledigt","General_Download":"Download","General_Edit":"\u00c4ndern","General_Error":"Fehler","General_ErrorRequest":"Oops\u2026\u0020w\u00e4hrend\u0020der\u0020Anfrage\u0020ist\u0020ein\u0020Problem\u0020aufgetreten\u002e\u0020M\u00f6glicherweise\u0020war\u0020der\u0020Server\u0020tempor\u00e4r\u0020\u00fcberlastet\u002c\u0020oder\u0020eventuell\u0020haben\u0020Sie\u0020einen\u0020Bericht\u0020mit\u0020zu\u0020vielen\u0020Daten\u0020angefordert\u002e\u0020Bitte\u0020noch\u0020einmal\u0020versuchen\u002e\u0020Wenn\u0020dieser\u0020Fehler\u0020wiederholt\u0020auftritt\u0020\u0025skontaktieren\u0020Sie\u0020bitte\u0020Ihren\u0020Matomo\u0020Administrator\u0025s\u002c\u0020um\u0020Unterst\u00fctzung\u0020zu\u0020erhalten\u002e","General_Faq":"FAQ","General_Flatten":"Flach\u0020anzeigen","General_ForExampleShort":"z\u002eB\u002e","General_Forums":"Forum","General_FromReferrer":"von","General_GeneralSettings":"Allgemeine\u0020Einstellungen","General_GiveUsYourFeedback":"Feedback\u0020geben\u0021","General_Goal":"Ziel","General_Help":"Hilfe","General_InvalidResponse":"Die\u0020empfangenen\u0020Daten\u0020sind\u0020nicht\u0020g\u00fcltig\u002e","General_Language":"Sprache","General_LastDaysShort":"Letzte\u0020\u0025s\u0020Tage","General_Live":"Echtzeit","General_LoadingData":"Lade\u0020Daten\u0020\u002e\u002e\u002e","General_Metric":"Metrik","General_More":"Mehr","General_NewVisitor":"Neuer\u0020Besucher","General_Next":"n\u00e4chste","General_No":"Nein","General_NotValid":"\u0025s\u0020ist\u0020nicht\u0020g\u00fcltig","General_NumberOfVisits":"Anzahl\u0020der\u0020Besuche","General_NVisits":"\u0025s\u0020Besuche","General_Ok":"OK","General_Others":"Andere","General_Outlink":"Ausgehender\u0020Verweis","General_Password":"Passwort","General_Period":"Zeitraum","General_PiwikXIsAvailablePleaseNotifyPiwikAdmin":"\u0025s\u0020ist\u0020verf\u00fcgbar\u002e\u0020Bitte\u0020benachrichtigen\u0020Sie\u0020den\u0020\u0025sMatomo\u0020Administrator\u0025s\u002e","General_PleaseUpdatePiwik":"Bitte\u0020Matomo\u0020aktualisieren","General_Plugins":"Plugins","General_Previous":"vorherige","General_PreviousDaysShort":"Vergangene\u0020\u0025s\u0020Tage","General_Refresh":"Aktualisieren","General_Remove":"Entfernen","General_Reports":"Berichte","General_RequestTimedOut":"Die\u0020Datenabfrage\u0020an\u0020\u0025s\u0020dauerte\u0020zu\u0020lange\u002e\u0020Bitte\u0020versuchen\u0020Sie\u0020es\u0020noch\u0020einmal\u002e","General_Required":"\u0025s\u0020ben\u00f6tigt","General_Save":"Speichern","General_Settings":"Einstellungen","General_Subtotal":"Zwischensumme","General_Unknown":"unbekannt","General_Username":"Benutzername","General_Value":"Wert","General_VisitConvertedNGoals":"Besuch\u0020erreichte\u0020\u0025s\u0020Ziele","General_Visitor":"Besucher","General_VisitorIP":"IP\u0020des\u0020Besuchers","General_Visitors":"Besucher","General_VisitorSettings":"Besuchereinstellungen","General_VisitType":"Art\u0020des\u0020Besuchs","General_Website":"Website","General_Yes":"Ja","General_YourChangesHaveBeenSaved":"Ihre\u0020\u00c4nderungen\u0020wurden\u0020gespeichert\u002e","Mobile_AboutPiwikMobile":"\u00dcber\u0020Matomo\u0020Mobile","Mobile_AccessUrlLabel":"URL\u0020zum\u0020Zugriff\u0020auf\u0020Matomo","Mobile_Account":"Account","Mobile_Accounts":"Accounts","Mobile_AddAccount":"Account\u0020hinzuf\u00fcgen","Mobile_AddPiwikDemo":"Matomo\u0020Demo\u0020hinzuf\u00fcgen","Mobile_Advanced":"Erweitert","Mobile_AnonymousAccess":"Anonymer\u0020Zugriff","Mobile_AnonymousTracking":"Anonymes\u0020Aufzeichnen","Mobile_AskForAnonymousTrackingPermission":"Falls\u0020aktiviert\u0020sendet\u0020Matomo\u0020Mobile\u0020anonyme\u0020Nutzungsdaten\u0020an\u0020matomo\u002eorg\u002e\u0020Die\u0020Erhebung\u0020dieser\u0020Daten\u0020hilft\u0020den\u0020Matomo\u0020Mobile\u0020Entwicklern\u0020besser\u0020zu\u0020verstehen\u002c\u0020wie\u0020diese\u0020Applikation\u0020genutzt\u0020wird\u002e\u0020Folgende\u0020Informationen\u0020werden\u0020gesendet\u003a\u0020Verwendung\u0020der\u0020Men\u00fcs\u0020und\u0020Einstellungen\u002c\u0020Betriebssystemname\u0020und\u0020Version\u0020und\u0020angezeigte\u0020Fehler\u0020in\u0020Matomo\u0020Mobile\u002e\u0020Es\u0020werden\u0020KEINE\u0020analytischen\u0020Daten\u0020aufgezeichnet\u002e\u0020Diese\u0020anonymen\u0020Daten\u0020werden\u0020niemals\u0020der\u0020\u00d6ffentlichkeit\u0020zug\u00e4nglich\u0020gemacht\u002e\u0020Anonyme\u0020Nutzungsdatenerfassung\u0020kann\u0020jederzeit\u0020in\u0020den\u0020Einstellungen\u0020wieder\u0020aktiviert\u0020bzw\u002e\u0020deaktiviert\u0020werden\u002e","Mobile_ChooseHttpTimeout":"W\u00e4hlen\u0020Sie\u0020einen\u0020Wert\u0020f\u00fcr\u0020den\u0020HTTP\u0020Timeout","Mobile_ChooseMetric":"W\u00e4hle\u0020Metrik","Mobile_ChooseReport":"W\u00e4hlen\u0020Sie\u0020einen\u0020Bericht","Mobile_ChooseSegment":"Segment\u0020ausw\u00e4hlen","Mobile_ConfirmRemoveAccount":"M\u00f6chten\u0020Sie\u0020diesen\u0020Account\u0020entfernen\u003f","Mobile_DefaultReportDate":"Berichtsdatum","Mobile_EmailUs":"E\u002dMail\u0020senden","Mobile_EnableGraphsLabel":"Graphen\u0020anzeigen","Mobile_EvolutionGraph":"Zeitdiagramm","Mobile_HelpUsToImprovePiwikMobile":"Anonyme\u0020Nutzungsdaten\u0020in\u0020Matomo\u0020Mobile\u0020aktivieren\u003f","Mobile_HowtoDeleteAnAccount":"Gedr\u00fcckt\u0020halten\u002c\u0020um\u0020einen\u0020Account\u0020zu\u0020entfernen\u002e","Mobile_HowtoDeleteAnAccountOniOS":"Von\u0020rechts\u0020nach\u0020links\u0020wischen\u002c\u0020um\u0020einen\u0020Account\u0020zu\u0020l\u00f6schen","Mobile_HowtoLoginAnonymous":"Benutzername\u0020und\u0020Passwort\u0020leer\u0020lassen\u0020f\u00fcr\u0020anonymes\u0020Anmelden","Mobile_HttpIsNotSecureWarning":"Bei\u0020der\u0020Verwendung\u0020von\u0020HTTP\u0020wird\u0020ihr\u0020Matomo\u0020Authorisierungstoken\u0020\u0028token\u005fauth\u0029\u0020im\u0020Klartext\u0020\u00fcbertragen\u002e\u0020Aus\u0020diesem\u0020Grund\u0020empfehlen\u0020wir\u0020HTTPS\u0020f\u00fcr\u0020eine\u0020sichere\u0020\u00dcbertragung\u0020von\u0020Daten\u0020\u00fcber\u0020das\u0020Internet\u002e\u0020M\u00f6chten\u0020Sie\u0020fortfahren\u003f","Mobile_HttpTimeout":"HTTP\u0020Timeout","Mobile_IncompatiblePiwikVersion":"Die\u0020Matomo\u0020Version\u002c\u0020die\u0020Sie\u0020verwenden\u002c\u0020ist\u0020nicht\u0020mit\u0020Matomo\u0020Mobile\u00202\u0020kompatibel\u002e\u0020Aktualisieren\u0020Sie\u0020Ihre\u0020Matomo\u0020Installation\u0020oder\u0020verwenden\u0020Sie\u0020alternativ\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_LoadingReport":"Lade\u0020\u0025s","Mobile_LoginCredentials":"Zugangsdaten","Mobile_LoginToPiwikToChangeSettings":"Melden\u0020Sie\u0020sich\u0020in\u0020Matomo\u0020an\u002c\u0020um\u0020Websites\u0020und\u0020User\u0020zu\u0020erstellen\u0020und\u0020zu\u0020aktualisieren\u0020oder\u0020um\u0020allgemeine\u0020Einstellungen\u0020wie\u0020\u0022Bericht\u002c\u0020der\u0020standardm\u00e4\u00dfig\u0020geladen\u0020wird\u0022\u0020zu\u0020\u00e4ndern\u002e","Mobile_LoginUseHttps":"Benutze\u0020HTTPS","Mobile_MultiChartLabel":"Multisite\u0020Graphen\u0020anzeigen","Mobile_NavigationBack":"Zur\u00fcck","Mobile_NetworkError":"Netzwerkfehler","Mobile_NetworkErrorWithStatusCode":"Folgender\u0020Fehler\u0020trat\u0020auf\u0020\u0022\u0025s\u0022\u002e\u0020Die\u0020Anfrage\u0020gab\u0020den\u0020Status\u0020\u0022\u0025s\u0022\u0020zur\u00fcck\u002e\u0020URL\u0020war\u0020\u0022\u0025s\u0022\u002e\u0020Bitte\u0020die\u0020eingegebene\u0020URL\u0020\u00fcberpr\u00fcfen\u0020und\u0020die\u0020Fehlerlog\u0020Dateien\u0020auf\u0020dem\u0020Server\u0020\u00fcberpr\u00fcfen\u002c\u0020um\u0020mehr\u0020Informationen\u0020zu\u0020diesem\u0020Fehler\u0020und\u0020wie\u0020er\u0020zu\u0020beheben\u0020ist\u002c\u0020zu\u0020erfahren\u002e","Mobile_NetworkErrorWithStatusCodeShort":"Netzwerkfehler\u0020\u0025s","Mobile_NetworkNotReachable":"Netzwerk\u0020ist\u0020nicht\u0020erreichbar","Mobile_NoAccountIsSelected":"Kein\u0020Zugang\u0020ausgew\u00e4hlt\u002e\u0020F\u00fcgen\u0020Sie\u0020einen\u0020neuen\u0020Account\u0020hinzu\u002c\u0020wenn\u0020Sie\u0020keinen\u0020konfiguriert\u0020haben\u002e","Mobile_NoDataShort":"Keine\u0020Daten","Mobile_NoPiwikAccount":"Kein\u0020Matomo\u0020Account\u003f","Mobile_NoReportsShort":"Keine\u0020Berichte","Mobile_NoVisitorFound":"Kein\u0020Besucher\u0020gefunden","Mobile_NoVisitorsShort":"Keine\u0020Besucher","Mobile_NoWebsiteFound":"Website\u0020nicht\u0020gefunden","Mobile_NoWebsitesShort":"Keine\u0020Websites","Mobile_PullDownToRefresh":"Zum\u0020Aktualisieren\u0020herunterziehen\u002e\u002e\u002e","Mobile_PossibleSslError":"M\u00f6glicher\u0020SSL\u002dZertifikats\u002dFehler","Mobile_PossibleSslErrorExplanation":"Ein\u0020Fehler\u0020ist\u0020aufgetreten\u002c\u0020welcher\u0020durch\u0020ein\u0020invalides\u0020oder\u0020selbst\u0020signiertes\u0020SSL\u0020Zertifikat\u0020verursacht\u0020sein\u0020k\u00f6nnte\u003a\u0020\u0022\u0025s\u0022\u002e\u0020Die\u0020Anmeldung\u0020k\u00f6nnte\u0020funktionieren\u002c\u0020indem\u0020die\u0020Validierung\u0020des\u0020SSL\u0020Zertifikat\u0020ignoriert\u0020wird\u002c\u0020aber\u0020es\u0020ist\u0020weniger\u0020sicher\u002e\u0020Die\u0020Einstellung\u0020kann\u0020jederzeit\u0020nachtr\u00e4glich\u0020ge\u00e4ndert\u0020werden\u002e","Mobile_IgnoreSslError":"Ignoriere\u0020SSL\u002dFehler","Mobile_RatingDontRemindMe":"Bitte\u0020nicht\u0020daran\u0020erinnern","Mobile_RatingNotNow":"Nicht\u0020jetzt","Mobile_RatingNow":"OK\u002c\u0020ich\u0020bewerte\u0020es\u0020jetzt","Mobile_RatingPleaseRateUs":"Matomo\u0020Mobile\u0020App\u0020ist\u0020Freie\u0020Software\u002c\u0020wir\u0020w\u00fcrden\u0020es\u0020sehr\u0020zu\u0020sch\u00e4tzen\u0020wissen\u002c\u0020wenn\u0020Sie\u00201\u0020Minute\u0020Ihrer\u0020wertvollen\u0020Zeit\u0020opfern\u0020w\u00fcrden\u002c\u0020um\u0020diese\u0020App\u0020im\u0020\u0025s\u0020zu\u0020bewerten\u002e\u0020Falls\u0020Sie\u0020Vorschl\u00e4ge\u0020f\u00fcr\u0020neue\u0020Features\u0020haben\u0020oder\u0020Fehler\u0020melden\u0020m\u00f6chten\u002c\u0020bitte\u0020kontaktieren\u0020Sie\u0020\u0025s","Mobile_ReleaseToRefresh":"Zum\u0020Aktualisieren\u0020loslassen\u002e\u002e\u002e","Mobile_Reloading":"Wird\u0020neu\u0020geladen\u002e\u002e\u002e","Mobile_RequestTimedOutShort":"Netzwerk\u0020Zeit\u00fcberschreitung","Mobile_RestrictedCompatibility":"Eingeschr\u00e4nkte\u0020Kompatibilit\u00e4t","Mobile_RestrictedCompatibilityExplanation":"Die\u0020Matomo\u0020Version\u0020\u0025s\u002c\u0020die\u0020Sie\u0020verwenden\u002c\u0020wird\u0020nicht\u0020vollst\u00e4ndig\u0020von\u0020Matomo\u0020Mobile\u00202\u0020unterst\u00fctzt\u002e\u0020Es\u0020k\u00f6nnten\u0020Bugs\u0020auftreten\u002e\u0020Wir\u0020empfehlen\u0020Matomo\u0020auf\u0020die\u0020neueste\u0020Version\u0020zu\u0020aktualisieren\u0020oder\u0020Matomo\u0020Mobile\u00201\u0020zu\u0020verwenden\u002e","Mobile_SaveSuccessError":"Matomo\u0020URL\u0020oder\u0020Benutzername\u002d\u002fPasswort\u002dKombination\u0020ist\u0020falsch\u002e","Mobile_SearchWebsite":"Websites\u0020durchsuchen","Mobile_ShowAll":"Alle\u0020anzeigen","Mobile_ShowLess":"Weniger\u0020anzeigen","Mobile_StaticGraph":"\u00dcbersichts\u002dGraph","Mobile_TopVisitedWebsites":"Top\u0020besuchte\u0020Websites","Mobile_TryIt":"Probieren\u0020Sie\u0020es\u0020aus\u0021","Mobile_UseSearchBarHint":"Hier\u0020werden\u0020nur\u0020die\u0020ersten\u0020\u0025s\u0020Websites\u0020angezeigt\u002e\u0020Bitte\u0020benutzen\u0020Sie\u0020die\u0020Suchbox\u002c\u0020um\u0020auf\u0020die\u0020restlichen\u0020Seiten\u0020zuzugreifen\u002e","Mobile_VerifyAccount":"Account\u0020wird\u0020\u00fcberpr\u00fcft\u002e\u002e\u002e","Mobile_ValidateSslCertificate":"Validiere\u0020SSL\u0020Zertifikat","Mobile_VerifyLoginData":"Bitte\u0020\u00fcberpr\u00fcfen\u0020Sie\u002c\u0020ob\u0020die\u0020Kombination\u0020aus\u0020Benutzername\u0020und\u0020Passwort\u0020korrekt\u0020ist\u002e","Mobile_YouAreOffline":"Sie\u0020sind\u0020derzeit\u0020offline","CorePluginsAdmin_Activate":"Aktivieren","CorePluginsAdmin_Deactivate":"Deaktivieren","CoreHome_PeriodRange":"Zeitspanne","CoreHome_TableNoData":"Keine\u0020Daten\u0020f\u00fcr\u0020diese\u0020Tabelle\u002e","CoreHome_ThereIsNoDataForThisReport":"Es\u0020stehen\u0020keine\u0020Daten\u0020f\u00fcr\u0020diesen\u0020Bericht\u0020zur\u0020Verf\u00fcgung\u002e","Actions_SubmenuSitesearch":"Interne\u0020Suche","DevicesDetection_ColumnBrowser":"Browser","Goals_AbandonedCart":"Verlassener\u0020Warenkorb","Goals_Ecommerce":"Ecommerce","Goals_EcommerceOrder":"Ecommerce\u0020Bestellung","SEO_Rank":"Rang","Events_Event":"Ereignis","UserCountry_City":"Stadt","UserCountry_Country":"Land","UserCountry_Region":"Region","VisitsSummary_NbActionsDescription":"\u0025s\u0020Aktionen","Feedback_DoYouHaveBugReportOrFeatureRequest":"M\u00f6chten\u0020Sie\u0020einen\u0020Fehler\u0020melden\u0020oder\u0020haben\u0020Sie\u0020eine\u0020Idee\u0020f\u00fcr\u0020eine\u0020neue\u0020Funktion\u003f","Feedback_ThankYou":"Danke\u0020f\u00fcr\u0020Ihre\u0020Unterst\u00fctzung\u002c\u0020Matomo\u0020zu\u0020verbessern\u0021","TwoFactorAuth_Verify":"Verifizieren","UsersManager_ManageAccess":"Zugriffsverwaltung","UsersManager_PrivView":"Ansicht","SitesManager_ExceptionInvalidUrl":"Die\u0020Adresse\u0020\u0027\u0025s\u0027\u0020ist\u0020keine\u0020g\u00fcltige\u0020URL\u002e","SitesManager_MenuManage":"Verwalten","SitesManager_NotFound":"Keine\u0020Websites\u0020gefunden\u0020f\u00fcr","CoreUpdater_UpdateTitle":"Aktualisieren","UserCountryMap_RealTimeMap":"Besucherkarte\u0020in\u0020Echtzeit","Live_LastHours":"Letzte\u0020\u0025s\u0020Stunden","Live_LastMinutes":"Letzte\u0020\u0025s\u0020Minuten","Live_VisitorLog":"Besucher\u002dLog","Live_VisitorsInRealTime":"Besuche\u0020in\u0020Echtzeit","CustomVariables_CustomVariables":"Benutzerdefinierte\u0020Variablen","SegmentEditor_DefaultAllVisits":"Alle\u0020Besuche","Resolution_ColumnResolution":"Aufl\u00f6sung","Intl_PeriodDay":"Tag","Intl_PeriodMonth":"Monat","Intl_PeriodWeek":"Woche","Intl_PeriodYear":"Jahr","Intl_Today":"Heute","Intl_Yesterday":"Gestern"}; diff --git a/app/lib/i18n/default.js b/app/lib/i18n/default.js index 3ad936d8..106a8b98 100644 --- a/app/lib/i18n/default.js +++ b/app/lib/i18n/default.js @@ -134,7 +134,7 @@ module.exports = { Mobile_Advanced: 'Advanced', Mobile_AnonymousAccess: 'Anonymous access', Mobile_AnonymousTracking: 'Anonymous tracking', - Mobile_AccessUrlLabel: 'URL eg https://demo.matomo.org', + Mobile_AccessUrlLabel: 'URL eg https://demo.matomo.cloud', Mobile_AskForAnonymousTrackingPermission: 'When enabled, Matomo Mobile will send anonymous usage data to matomo.org. The intent is to use this data to help Matomo Mobile developers better understand how the app is used. Information sent is: menus and settings clicked on, OS name and version, any error displayed in Matomo Mobile. We will NOT track any of your analytics data. This anonymous data will never be made public. You can disable/enable anonymous tracking in Settings at any time.', Mobile_ChooseHttpTimeout: 'Choose HTTP timeout value', Mobile_ChooseMetric: 'Choose Metric', diff --git a/app/lib/i18n/en.js b/app/lib/i18n/en.js index ad7df208..e63af0de 100644 --- a/app/lib/i18n/en.js +++ b/app/lib/i18n/en.js @@ -4,4 +4,4 @@ * @link https://matomo.org * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later */ -module.exports = {"General_AboutPiwikX":"About\u0020Matomo\u0020\u0025s","General_Action":"Action","General_AllWebsitesDashboard":"All\u0020Websites\u0020dashboard","General_Cancel":"Cancel","General_ChooseDate":"Choose\u0020date\u002c\u0020currently\u0020selected\u0020date\u0020is\u003a\u0020\u0025s","General_ChooseLanguage":"Choose\u0020language","General_ChoosePeriod":"Choose\u0020period","General_Close":"Close","General_ColumnNbVisits":"Visits","General_ColumnPageviews":"Pageviews","General_ColumnRevenue":"Revenue","General_CurrentMonth":"Current\u0020Month","General_CurrentWeek":"Current\u0020Week","General_CurrentYear":"Current\u0020Year","General_Date":"Date","General_DateRangeFrom":"From","General_DateRangeTo":"To","General_Delete":"Delete","General_Details":"Details","General_Documentation":"Documentation","General_Done":"Done","General_Download":"Download","General_Edit":"Edit","General_Error":"Error","General_ErrorRequest":"Oops\u2026\u0020there\u0020was\u0020a\u0020problem\u0020during\u0020the\u0020request\u002e\u0020Maybe\u0020the\u0020server\u0020had\u0020a\u0020temporary\u0020issue\u002c\u0020or\u0020maybe\u0020you\u0020requested\u0020a\u0020report\u0020with\u0020too\u0020much\u0020data\u002e\u0020Please\u0020try\u0020again\u002e\u0020If\u0020this\u0020error\u0020occurs\u0020repeatedly\u0020please\u0020\u0025scontact\u0020your\u0020Matomo\u0020administrator\u0025s\u0020for\u0020assistance\u002e","General_Faq":"FAQ","General_Flatten":"Flatten","General_ForExampleShort":"eg\u002e","General_Forums":"Forums","General_FromReferrer":"from","General_GeneralSettings":"General\u0020settings","General_GiveUsYourFeedback":"Give\u0020us\u0020Feedback\u0021","General_Goal":"Goal","General_Help":"Help","General_InvalidResponse":"The\u0020received\u0020data\u0020is\u0020invalid\u002e","General_Language":"Language","General_LastDaysShort":"Last\u0020\u0025s\u0020days","General_Live":"Live","General_LoadingData":"Loading\u0020data\u002e\u002e\u002e","General_Metric":"Metric","General_More":"More","General_NewVisitor":"New\u0020Visitor","General_Next":"Next","General_No":"No","General_NotValid":"\u0025s\u0020is\u0020not\u0020valid","General_NumberOfVisits":"Number\u0020of\u0020visits","General_NVisits":"\u0025s\u0020visits","General_Ok":"Ok","General_Others":"Others","General_Outlink":"Outlink","General_Password":"Password","General_Period":"Period","General_PiwikXIsAvailablePleaseNotifyPiwikAdmin":"\u0025s\u0020is\u0020available\u002e\u0020Please\u0020notify\u0020the\u0020\u0025sMatomo\u0020administrator\u0025s\u002e","General_PleaseUpdatePiwik":"Please\u0020update\u0020your\u0020Matomo","General_Plugins":"Plugins","General_Previous":"Previous","General_PreviousDaysShort":"Previous\u0020\u0025s\u0020days","General_Refresh":"Refresh","General_Remove":"Remove","General_Reports":"Reports","General_RequestTimedOut":"A\u0020data\u0020request\u0020to\u0020\u0025s\u0020timed\u0020out\u002e\u0020Please\u0020try\u0020again\u002e","General_Required":"\u0025s\u0020required","General_Save":"Save","General_Settings":"Settings","General_Subtotal":"Subtotal","General_Unknown":"Unknown","General_Username":"Username","General_Value":"Value","General_VisitConvertedNGoals":"Visit\u0020converted\u0020\u0025s\u0020Goals","General_Visitor":"Visitor","General_VisitorIP":"Visitor\u0020IP","General_Visitors":"Visitors","General_VisitorSettings":"Visitor\u0020Settings","General_VisitType":"Visit\u0020type","General_Website":"Website","General_Yes":"Yes","General_YourChangesHaveBeenSaved":"Your\u0020changes\u0020have\u0020been\u0020saved\u002e","Mobile_AboutPiwikMobile":"About\u0020Matomo\u0020Mobile","Mobile_AccessUrlLabel":"Matomo\u0020Access\u0020Url","Mobile_Account":"Account","Mobile_Accounts":"Accounts","Mobile_AddAccount":"Add\u0020account","Mobile_AddPiwikDemo":"Add\u0020Matomo\u0020Demo","Mobile_Advanced":"Advanced","Mobile_AnonymousAccess":"Anonymous\u0020access","Mobile_AnonymousTracking":"Anonymous\u0020tracking","Mobile_AskForAnonymousTrackingPermission":"When\u0020enabled\u002c\u0020Matomo\u0020Mobile\u0020will\u0020send\u0020anonymous\u0020usage\u0020data\u0020to\u0020matomo\u002eorg\u002e\u0020The\u0020intent\u0020is\u0020to\u0020use\u0020this\u0020data\u0020to\u0020help\u0020Matomo\u0020Mobile\u0020developers\u0020better\u0020understand\u0020how\u0020the\u0020app\u0020is\u0020used\u002e\u0020Information\u0020sent\u0020is\u003a\u0020menus\u0020and\u0020settings\u0020clicked\u0020on\u002c\u0020OS\u0020name\u0020and\u0020version\u002c\u0020any\u0020error\u0020displayed\u0020in\u0020Matomo\u0020Mobile\u002e\u0020We\u0020will\u0020NOT\u0020track\u0020any\u0020of\u0020your\u0020analytics\u0020data\u002e\u0020This\u0020anonymous\u0020data\u0020will\u0020never\u0020be\u0020made\u0020public\u002e\u0020You\u0020can\u0020disable\u002fenable\u0020anonymous\u0020tracking\u0020in\u0020Settings\u0020at\u0020any\u0020time\u002e","Mobile_ChooseHttpTimeout":"Choose\u0020HTTP\u0020timeout\u0020value","Mobile_ChooseMetric":"Choose\u0020metric","Mobile_ChooseReport":"Choose\u0020a\u0020report","Mobile_ChooseSegment":"Choose\u0020segment","Mobile_ConfirmRemoveAccount":"Do\u0020you\u0020want\u0020to\u0020remove\u0020this\u0020account\u003f","Mobile_DefaultReportDate":"Report\u0020date","Mobile_EmailUs":"Email\u0020us","Mobile_EnableGraphsLabel":"Display\u0020graphs","Mobile_EvolutionGraph":"Historical\u0020Graph","Mobile_HelpUsToImprovePiwikMobile":"Would\u0020you\u0020like\u0020to\u0020enable\u0020anonymous\u0020usage\u0020tracking\u0020in\u0020Matomo\u0020Mobile\u003f","Mobile_HowtoDeleteAnAccount":"Press\u0020long\u0020to\u0020remove\u0020an\u0020account\u002e","Mobile_HowtoDeleteAnAccountOniOS":"Swipe\u0020right\u0020to\u0020left\u0020to\u0020delete\u0020an\u0020account","Mobile_HowtoLoginAnonymous":"Leave\u0020username\u0020and\u0020password\u0020empty\u0020for\u0020anonymous\u0020login","Mobile_HttpIsNotSecureWarning":"Your\u0020Matomo\u0020authorization\u0020token\u0020\u0028token\u005fauth\u0029\u0020is\u0020sent\u0020in\u0020clear\u0020text\u0020if\u0020you\u0020use\u0020\u0027HTTP\u0027\u002e\u0020For\u0020this\u0020reason\u0020we\u0020recommend\u0020HTTPS\u0020for\u0020secure\u0020transport\u0020of\u0020data\u0020over\u0020the\u0020internet\u002e\u0020Do\u0020you\u0020want\u0020to\u0020proceed\u003f","Mobile_HttpTimeout":"HTTP\u0020Timeout","Mobile_IncompatiblePiwikVersion":"The\u0020Matomo\u0020version\u0020you\u0020are\u0020using\u0020is\u0020incompatible\u0020with\u0020Matomo\u0020Mobile\u00202\u002e\u0020Update\u0020your\u0020Matomo\u0020installation\u0020and\u0020try\u0020again\u0020or\u0020install\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_LoadingReport":"Loading\u0020\u0025s","Mobile_LoginCredentials":"Credentials","Mobile_LoginToPiwikToChangeSettings":"Login\u0020to\u0020your\u0020Matomo\u0020server\u0020to\u0020create\u0020and\u0020update\u0020websites\u002c\u0020users\u0020or\u0020to\u0020change\u0020General\u0020Settings\u0020like\u0020\u0022Report\u0020to\u0020load\u0020by\u0020default\u0022\u002e","Mobile_LoginUseHttps":"Use\u0020https","Mobile_MultiChartLabel":"Display\u0020sparklines","Mobile_NavigationBack":"Back","Mobile_NetworkError":"Network\u0020Error","Mobile_NetworkErrorWithStatusCode":"There\u0020was\u0020an\u0020error\u0020\u0022\u0025s\u0022\u002e\u0020The\u0020request\u0020returned\u0020the\u0020status\u0020\u0022\u0025s\u0022\u002e\u0020URL\u0020was\u0020\u0022\u0025s\u0022\u002e\u0020Please\u0020check\u0020your\u0020entered\u0020URL\u0020and\u0020the\u0020error\u0020logs\u0020on\u0020this\u0020server\u0020for\u0020more\u0020information\u0020about\u0020the\u0020error\u0020and\u0020how\u0020to\u0020resolve\u0020it\u002e","Mobile_NetworkErrorWithStatusCodeShort":"Network\u0020Error\u0020\u0025s","Mobile_NetworkNotReachable":"Network\u0020not\u0020reachable","Mobile_NoAccountIsSelected":"You\u0020have\u0020to\u0020select\u0020an\u0020account\u002e\u0020Add\u0020a\u0020new\u0020account\u0020if\u0020you\u0020haven\u0027t\u0020configured\u0020one\u002e","Mobile_NoDataShort":"No\u0020Data","Mobile_NoPiwikAccount":"No\u0020Matomo\u0020Account\u003f","Mobile_NoReportsShort":"No\u0020Reports","Mobile_NoVisitorFound":"No\u0020visitor\u0020found","Mobile_NoVisitorsShort":"No\u0020Visitors","Mobile_NoWebsiteFound":"No\u0020website\u0020found","Mobile_NoWebsitesShort":"No\u0020Websites","Mobile_PullDownToRefresh":"Pull\u0020down\u0020to\u0020refresh\u002e\u002e\u002e","Mobile_PossibleSslError":"Possible\u0020SSL\u0020certificate\u0020error","Mobile_PossibleSslErrorExplanation":"An\u0020error\u0020occurred\u0020that\u0020could\u0020be\u0020caused\u0020by\u0020an\u0020invalid\u0020or\u0020self\u0020signed\u0020certificate\u003a\u0020\u0022\u0025s\u0022\u002e\u0020Login\u0020might\u0020work\u0020for\u0020you\u0020when\u0020ignoring\u0020SSL\u0020validation\u0020but\u0020it\u0020is\u0020less\u0020secure\u002e\u0020You\u0020can\u0020change\u0020SSL\u0020validation\u0020at\u0020any\u0020time\u0020in\u0020the\u0020settings\u002e","Mobile_IgnoreSslError":"Ignore\u0020SSL\u0020Error","Mobile_RatingDontRemindMe":"Don\u0027t\u0020remind\u0020me","Mobile_RatingNotNow":"Not\u0020now","Mobile_RatingNow":"OK\u002c\u0020I\u0027ll\u0020rate\u0020it\u0020now","Mobile_RatingPleaseRateUs":"Matomo\u0020Mobile\u0020App\u0020is\u0020a\u0020Free\u0020Software\u002c\u0020we\u0020would\u0020really\u0020appreciate\u0020if\u0020you\u0020took\u00201\u0020minute\u0020to\u0020rate\u0020the\u0020app\u0020in\u0020the\u0020\u0025s\u002e\u0020If\u0020you\u0020have\u0020suggestions\u0020of\u0020new\u0020features\u0020or\u0020bug\u0020reports\u002c\u0020please\u0020contact\u0020\u0025s","Mobile_ReleaseToRefresh":"Release\u0020to\u0020refresh\u002e\u002e\u002e","Mobile_Reloading":"Reloading\u002e\u002e\u002e","Mobile_RequestTimedOutShort":"Network\u0020Timeout\u0020Error","Mobile_RestrictedCompatibility":"Restricted\u0020compatibility","Mobile_RestrictedCompatibilityExplanation":"The\u0020Matomo\u0020version\u0020\u0025s\u0020you\u0020are\u0020using\u0020is\u0020not\u0020fully\u0020supported\u0020by\u0020Matomo\u0020Mobile\u00202\u002e\u0020You\u0020may\u0020experience\u0020some\u0020bugs\u002e\u0020We\u0020recommend\u0020to\u0020either\u0020update\u0020Matomo\u0020to\u0020the\u0020latest\u0020version\u0020or\u0020to\u0020use\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_SaveSuccessError":"Matomo\u0020URL\u0020or\u0020username\u0020and\u0020password\u0020combination\u0020is\u0020wrong\u002e","Mobile_SearchWebsite":"Search\u0020websites","Mobile_ShowAll":"Show\u0020all","Mobile_ShowLess":"Show\u0020less","Mobile_StaticGraph":"Overview\u0020Graph","Mobile_TopVisitedWebsites":"Top\u0020visited\u0020websites","Mobile_TryIt":"Try\u0020It\u0021","Mobile_UseSearchBarHint":"Only\u0020the\u0020first\u0020\u0025s\u0020websites\u0020are\u0020displayed\u0020here\u002e\u0020Please\u0020use\u0020the\u0020search\u0020bar\u0020to\u0020access\u0020your\u0020other\u0020websites\u002e","Mobile_VerifyAccount":"Verifying\u0020Account","Mobile_ValidateSslCertificate":"Validate\u0020SSL\u0020Certificate","Mobile_VerifyLoginData":"Make\u0020sure\u0020your\u0020username\u0020and\u0020password\u0020combination\u0020is\u0020correct\u002e","Mobile_YouAreOffline":"Sorry\u002c\u0020you\u0020are\u0020currently\u0020offline","CorePluginsAdmin_Activate":"Activate","CorePluginsAdmin_Deactivate":"Deactivate","CoreHome_PeriodRange":"Range","CoreHome_TableNoData":"No\u0020data\u0020for\u0020this\u0020table\u002e","CoreHome_ThereIsNoDataForThisReport":"There\u0020is\u0020no\u0020data\u0020for\u0020this\u0020report\u002e","Actions_SubmenuSitesearch":"Site\u0020Search","DevicesDetection_ColumnBrowser":"Browser","Goals_AbandonedCart":"Abandoned\u0020Cart","Goals_Ecommerce":"Ecommerce","Goals_EcommerceOrder":"Ecommerce\u0020order","SEO_Rank":"Rank","Events_Event":"Event","UserCountry_City":"City","UserCountry_Country":"Country","UserCountry_Region":"Region","VisitsSummary_NbActionsDescription":"\u0025s\u0020actions","Feedback_DoYouHaveBugReportOrFeatureRequest":"Do\u0020you\u0020have\u0020a\u0020bug\u0020to\u0020report\u0020or\u0020a\u0020feature\u0020request\u003f","Feedback_ThankYou":"Thank\u0020you\u0020for\u0020helping\u0020us\u0020to\u0020make\u0020Matomo\u0020better\u0021","TwoFactorAuth_Verify":"Verify","UsersManager_ManageAccess":"Manage\u0020access","UsersManager_PrivView":"View","SitesManager_ExceptionInvalidUrl":"The\u0020url\u0020\u0027\u0025s\u0027\u0020is\u0020not\u0020a\u0020valid\u0020URL\u002e","SitesManager_MenuManage":"Manage","SitesManager_NotFound":"No\u0020websites\u0020found\u0020for","CoreUpdater_UpdateTitle":"Update","UserCountryMap_RealTimeMap":"Real\u002dtime\u0020Map","Live_LastHours":"Last\u0020\u0025s\u0020hours","Live_LastMinutes":"Last\u0020\u0025s\u0020minutes","Live_VisitorLog":"Visits\u0020Log","Live_VisitorsInRealTime":"Visits\u0020in\u0020Real\u002dtime","CustomVariables_CustomVariables":"Custom\u0020Variables","SegmentEditor_DefaultAllVisits":"All\u0020visits","Resolution_ColumnResolution":"Resolution","Intl_PeriodDay":"day","Intl_PeriodMonth":"month","Intl_PeriodWeek":"week","Intl_PeriodYear":"year","Intl_Today":"Today","Intl_Yesterday":"Yesterday"}; +module.exports = {"General_AboutPiwikX":"About\u0020Matomo\u0020\u0025s","General_Action":"Action","General_AllWebsitesDashboard":"All\u0020Websites\u0020dashboard","General_Cancel":"Cancel","General_ChooseDate":"Choose\u0020date","General_ChooseLanguage":"Choose\u0020language","General_ChoosePeriod":"Choose\u0020period","General_Close":"Close","General_ColumnNbVisits":"Visits","General_ColumnPageviews":"Pageviews","General_ColumnRevenue":"Revenue","General_CurrentMonth":"Current\u0020Month","General_CurrentWeek":"Current\u0020Week","General_CurrentYear":"Current\u0020Year","General_Date":"Date","General_DateRangeFrom":"From","General_DateRangeTo":"To","General_Delete":"Delete","General_Details":"Details","General_Documentation":"Documentation","General_Done":"Done","General_Download":"Download","General_Edit":"Edit","General_Error":"Error","General_ErrorRequest":"Oops\u2026\u0020there\u0020was\u0020a\u0020problem\u0020during\u0020the\u0020request\u002e\u0020Maybe\u0020the\u0020server\u0020had\u0020a\u0020temporary\u0020issue\u002c\u0020or\u0020maybe\u0020you\u0020requested\u0020a\u0020report\u0020with\u0020too\u0020much\u0020data\u002e\u0020Please\u0020try\u0020again\u002e\u0020If\u0020this\u0020error\u0020occurs\u0020repeatedly\u0020please\u0020\u0025scontact\u0020your\u0020Matomo\u0020administrator\u0025s\u0020for\u0020assistance\u002e","General_Faq":"FAQ","General_Flatten":"Flatten","General_ForExampleShort":"eg\u002e","General_Forums":"Forums","General_FromReferrer":"from","General_GeneralSettings":"General\u0020settings","General_GiveUsYourFeedback":"Give\u0020us\u0020Feedback\u0021","General_Goal":"Goal","General_Help":"Help","General_InvalidResponse":"The\u0020received\u0020data\u0020is\u0020invalid\u002e","General_Language":"Language","General_LastDaysShort":"Last\u0020\u0025s\u0020days","General_Live":"Live","General_LoadingData":"Loading\u0020data\u002e\u002e\u002e","General_Metric":"Metric","General_More":"More","General_NewVisitor":"New\u0020Visitor","General_Next":"Next","General_No":"No","General_NotValid":"\u0025s\u0020is\u0020not\u0020valid","General_NumberOfVisits":"Number\u0020of\u0020visits","General_NVisits":"\u0025s\u0020visits","General_Ok":"Ok","General_Others":"Others","General_Outlink":"Outlink","General_Password":"Password","General_Period":"Period","General_PiwikXIsAvailablePleaseNotifyPiwikAdmin":"\u0025s\u0020is\u0020available\u002e\u0020Please\u0020notify\u0020the\u0020\u0025sMatomo\u0020administrator\u0025s\u002e","General_PleaseUpdatePiwik":"Please\u0020update\u0020your\u0020Matomo","General_Plugins":"Plugins","General_Previous":"Previous","General_PreviousDaysShort":"Previous\u0020\u0025s\u0020days","General_Refresh":"Refresh","General_Remove":"Remove","General_Reports":"Reports","General_RequestTimedOut":"A\u0020data\u0020request\u0020to\u0020\u0025s\u0020timed\u0020out\u002e\u0020Please\u0020try\u0020again\u002e","General_Required":"\u0025s\u0020required","General_Save":"Save","General_Settings":"Settings","General_Subtotal":"Subtotal","General_Unknown":"Unknown","General_Username":"Username","General_Value":"Value","General_VisitConvertedNGoals":"Visit\u0020converted\u0020\u0025s\u0020Goals","General_Visitor":"Visitor","General_VisitorIP":"Visitor\u0020IP","General_Visitors":"Visitors","General_VisitorSettings":"Visitor\u0020Settings","General_VisitType":"Visit\u0020type","General_Website":"Website","General_Yes":"Yes","General_YourChangesHaveBeenSaved":"Your\u0020changes\u0020have\u0020been\u0020saved\u002e","Mobile_AboutPiwikMobile":"About\u0020Matomo\u0020Mobile","Mobile_AccessUrlLabel":"Matomo\u0020Access\u0020Url","Mobile_Account":"Account","Mobile_Accounts":"Accounts","Mobile_AddAccount":"Add\u0020account","Mobile_AddPiwikDemo":"Add\u0020Matomo\u0020Demo","Mobile_Advanced":"Advanced","Mobile_AnonymousAccess":"Anonymous\u0020access","Mobile_AnonymousTracking":"Anonymous\u0020tracking","Mobile_AskForAnonymousTrackingPermission":"When\u0020enabled\u002c\u0020Matomo\u0020Mobile\u0020will\u0020send\u0020anonymous\u0020usage\u0020data\u0020to\u0020matomo\u002eorg\u002e\u0020The\u0020intent\u0020is\u0020to\u0020use\u0020this\u0020data\u0020to\u0020help\u0020Matomo\u0020Mobile\u0020developers\u0020better\u0020understand\u0020how\u0020the\u0020app\u0020is\u0020used\u002e\u0020Information\u0020sent\u0020is\u003a\u0020menus\u0020and\u0020settings\u0020clicked\u0020on\u002c\u0020OS\u0020name\u0020and\u0020version\u002c\u0020any\u0020error\u0020displayed\u0020in\u0020Matomo\u0020Mobile\u002e\u0020We\u0020will\u0020NOT\u0020track\u0020any\u0020of\u0020your\u0020analytics\u0020data\u002e\u0020This\u0020anonymous\u0020data\u0020will\u0020never\u0020be\u0020made\u0020public\u002e\u0020You\u0020can\u0020disable\u002fenable\u0020anonymous\u0020tracking\u0020in\u0020Settings\u0020at\u0020any\u0020time\u002e","Mobile_ChooseHttpTimeout":"Choose\u0020HTTP\u0020timeout\u0020value","Mobile_ChooseMetric":"Choose\u0020metric","Mobile_ChooseReport":"Choose\u0020a\u0020report","Mobile_ChooseSegment":"Choose\u0020segment","Mobile_ConfirmRemoveAccount":"Do\u0020you\u0020want\u0020to\u0020remove\u0020this\u0020account\u003f","Mobile_DefaultReportDate":"Report\u0020date","Mobile_EmailUs":"Email\u0020us","Mobile_EnableGraphsLabel":"Display\u0020graphs","Mobile_EvolutionGraph":"Historical\u0020Graph","Mobile_HelpUsToImprovePiwikMobile":"Would\u0020you\u0020like\u0020to\u0020enable\u0020anonymous\u0020usage\u0020tracking\u0020in\u0020Matomo\u0020Mobile\u003f","Mobile_HowtoDeleteAnAccount":"Press\u0020long\u0020to\u0020remove\u0020an\u0020account\u002e","Mobile_HowtoDeleteAnAccountOniOS":"Swipe\u0020right\u0020to\u0020left\u0020to\u0020delete\u0020an\u0020account","Mobile_HowtoLoginAnonymous":"Leave\u0020username\u0020and\u0020password\u0020empty\u0020for\u0020anonymous\u0020login","Mobile_HttpIsNotSecureWarning":"Your\u0020Matomo\u0020authorization\u0020token\u0020\u0028token\u005fauth\u0029\u0020is\u0020sent\u0020in\u0020clear\u0020text\u0020if\u0020you\u0020use\u0020\u0027HTTP\u0027\u002e\u0020For\u0020this\u0020reason\u0020we\u0020recommend\u0020HTTPS\u0020for\u0020secure\u0020transport\u0020of\u0020data\u0020over\u0020the\u0020internet\u002e\u0020Do\u0020you\u0020want\u0020to\u0020proceed\u003f","Mobile_HttpTimeout":"HTTP\u0020Timeout","Mobile_IncompatiblePiwikVersion":"The\u0020Matomo\u0020version\u0020you\u0020are\u0020using\u0020is\u0020incompatible\u0020with\u0020Matomo\u0020Mobile\u00202\u002e\u0020Update\u0020your\u0020Matomo\u0020installation\u0020and\u0020try\u0020again\u0020or\u0020install\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_LoadingReport":"Loading\u0020\u0025s","Mobile_LoginCredentials":"Credentials","Mobile_LoginToPiwikToChangeSettings":"Login\u0020to\u0020your\u0020Matomo\u0020server\u0020to\u0020create\u0020and\u0020update\u0020websites\u002c\u0020users\u0020or\u0020to\u0020change\u0020General\u0020Settings\u0020like\u0020\u0022Report\u0020to\u0020load\u0020by\u0020default\u0022\u002e","Mobile_LoginUseHttps":"Use\u0020https","Mobile_MultiChartLabel":"Display\u0020sparklines","Mobile_NavigationBack":"Back","Mobile_NetworkError":"Network\u0020Error","Mobile_NetworkErrorWithStatusCode":"There\u0020was\u0020an\u0020error\u0020\u0022\u0025s\u0022\u002e\u0020The\u0020request\u0020returned\u0020the\u0020status\u0020\u0022\u0025s\u0022\u002e\u0020URL\u0020was\u0020\u0022\u0025s\u0022\u002e\u0020Please\u0020check\u0020your\u0020entered\u0020URL\u0020and\u0020the\u0020error\u0020logs\u0020on\u0020this\u0020server\u0020for\u0020more\u0020information\u0020about\u0020the\u0020error\u0020and\u0020how\u0020to\u0020resolve\u0020it\u002e","Mobile_NetworkErrorWithStatusCodeShort":"Network\u0020Error\u0020\u0025s","Mobile_NetworkNotReachable":"Network\u0020not\u0020reachable","Mobile_NoAccountIsSelected":"You\u0020have\u0020to\u0020select\u0020an\u0020account\u002e\u0020Add\u0020a\u0020new\u0020account\u0020if\u0020you\u0020haven\u0027t\u0020configured\u0020one\u002e","Mobile_NoDataShort":"No\u0020Data","Mobile_NoPiwikAccount":"No\u0020Matomo\u0020Account\u003f","Mobile_NoReportsShort":"No\u0020Reports","Mobile_NoVisitorFound":"No\u0020visitor\u0020found","Mobile_NoVisitorsShort":"No\u0020Visitors","Mobile_NoWebsiteFound":"No\u0020website\u0020found","Mobile_NoWebsitesShort":"No\u0020Websites","Mobile_PullDownToRefresh":"Pull\u0020down\u0020to\u0020refresh\u002e\u002e\u002e","Mobile_PossibleSslError":"Possible\u0020SSL\u0020certificate\u0020error","Mobile_PossibleSslErrorExplanation":"An\u0020error\u0020occurred\u0020that\u0020could\u0020be\u0020caused\u0020by\u0020an\u0020invalid\u0020or\u0020self\u0020signed\u0020certificate\u003a\u0020\u0022\u0025s\u0022\u002e\u0020Login\u0020might\u0020work\u0020for\u0020you\u0020when\u0020ignoring\u0020SSL\u0020validation\u0020but\u0020it\u0020is\u0020less\u0020secure\u002e\u0020You\u0020can\u0020change\u0020SSL\u0020validation\u0020at\u0020any\u0020time\u0020in\u0020the\u0020settings\u002e","Mobile_IgnoreSslError":"Ignore\u0020SSL\u0020Error","Mobile_RatingDontRemindMe":"Don\u0027t\u0020remind\u0020me","Mobile_RatingNotNow":"Not\u0020now","Mobile_RatingNow":"OK\u002c\u0020I\u0027ll\u0020rate\u0020it\u0020now","Mobile_RatingPleaseRateUs":"Matomo\u0020Mobile\u0020App\u0020is\u0020a\u0020Free\u0020Software\u002c\u0020we\u0020would\u0020really\u0020appreciate\u0020if\u0020you\u0020took\u00201\u0020minute\u0020to\u0020rate\u0020the\u0020app\u0020in\u0020the\u0020\u0025s\u002e\u0020If\u0020you\u0020have\u0020suggestions\u0020of\u0020new\u0020features\u0020or\u0020bug\u0020reports\u002c\u0020please\u0020contact\u0020\u0025s","Mobile_ReleaseToRefresh":"Release\u0020to\u0020refresh\u002e\u002e\u002e","Mobile_Reloading":"Reloading\u002e\u002e\u002e","Mobile_RequestTimedOutShort":"Network\u0020Timeout\u0020Error","Mobile_RestrictedCompatibility":"Restricted\u0020compatibility","Mobile_RestrictedCompatibilityExplanation":"The\u0020Matomo\u0020version\u0020\u0025s\u0020you\u0020are\u0020using\u0020is\u0020not\u0020fully\u0020supported\u0020by\u0020Matomo\u0020Mobile\u00202\u002e\u0020You\u0020may\u0020experience\u0020some\u0020bugs\u002e\u0020We\u0020recommend\u0020to\u0020either\u0020update\u0020Matomo\u0020to\u0020the\u0020latest\u0020version\u0020or\u0020to\u0020use\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_SaveSuccessError":"Matomo\u0020URL\u0020or\u0020username\u0020and\u0020password\u0020combination\u0020is\u0020wrong\u002e","Mobile_SearchWebsite":"Search\u0020websites","Mobile_ShowAll":"Show\u0020all","Mobile_ShowLess":"Show\u0020less","Mobile_StaticGraph":"Overview\u0020Graph","Mobile_TopVisitedWebsites":"Top\u0020visited\u0020websites","Mobile_TryIt":"Try\u0020It\u0021","Mobile_UseSearchBarHint":"Only\u0020the\u0020first\u0020\u0025s\u0020websites\u0020are\u0020displayed\u0020here\u002e\u0020Please\u0020use\u0020the\u0020search\u0020bar\u0020to\u0020access\u0020your\u0020other\u0020websites\u002e","Mobile_VerifyAccount":"Verifying\u0020Account","Mobile_ValidateSslCertificate":"Validate\u0020SSL\u0020Certificate","Mobile_VerifyLoginData":"Make\u0020sure\u0020your\u0020username\u0020and\u0020password\u0020combination\u0020is\u0020correct\u002e","Mobile_YouAreOffline":"Sorry\u002c\u0020you\u0020are\u0020currently\u0020offline","CorePluginsAdmin_Activate":"Activate","CorePluginsAdmin_Deactivate":"Deactivate","CoreHome_PeriodRange":"Range","CoreHome_TableNoData":"No\u0020data\u0020for\u0020this\u0020table\u002e","CoreHome_ThereIsNoDataForThisReport":"There\u0020is\u0020no\u0020data\u0020for\u0020this\u0020report\u002e","Actions_SubmenuSitesearch":"Site\u0020Search","DevicesDetection_ColumnBrowser":"Browser","Goals_AbandonedCart":"Abandoned\u0020Cart","Goals_Ecommerce":"Ecommerce","Goals_EcommerceOrder":"Ecommerce\u0020order","SEO_Rank":"Rank","Events_Event":"Event","UserCountry_City":"City","UserCountry_Country":"Country","UserCountry_Region":"Region","VisitsSummary_NbActionsDescription":"\u0025s\u0020actions","Feedback_DoYouHaveBugReportOrFeatureRequest":"Do\u0020you\u0020have\u0020a\u0020bug\u0020to\u0020report\u0020or\u0020a\u0020feature\u0020request\u003f","Feedback_ThankYou":"Thank\u0020you\u0020for\u0020helping\u0020us\u0020to\u0020make\u0020Matomo\u0020better\u0021","TwoFactorAuth_Verify":"Verify","UsersManager_ManageAccess":"Manage\u0020access","UsersManager_PrivView":"View","SitesManager_ExceptionInvalidUrl":"The\u0020url\u0020\u0027\u0025s\u0027\u0020is\u0020not\u0020a\u0020valid\u0020URL\u002e","SitesManager_MenuManage":"Manage","SitesManager_NotFound":"No\u0020websites\u0020found\u0020for","CoreUpdater_UpdateTitle":"Update","UserCountryMap_RealTimeMap":"Real\u002dtime\u0020Map","Live_LastHours":"Last\u0020\u0025s\u0020hours","Live_LastMinutes":"Last\u0020\u0025s\u0020minutes","Live_VisitorLog":"Visits\u0020Log","Live_VisitorsInRealTime":"Visits\u0020in\u0020Real\u002dtime","CustomVariables_CustomVariables":"Custom\u0020Variables","SegmentEditor_DefaultAllVisits":"All\u0020visits","Resolution_ColumnResolution":"Resolution","Intl_PeriodDay":"day","Intl_PeriodMonth":"month","Intl_PeriodWeek":"week","Intl_PeriodYear":"year","Intl_Today":"Today","Intl_Yesterday":"Yesterday"}; diff --git a/app/lib/i18n/es.js b/app/lib/i18n/es.js index 97f6d81a..ec6af5a2 100644 --- a/app/lib/i18n/es.js +++ b/app/lib/i18n/es.js @@ -4,4 +4,4 @@ * @link https://matomo.org * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later */ -module.exports = {"General_AboutPiwikX":"Acerca\u0020de\u0020Matomo\u0020\u0025s","General_Action":"Acci\u00f3n","General_AllWebsitesDashboard":"Panel\u0020de\u0020todos\u0020los\u0020sitios\u0020de\u0020internet","General_Cancel":"Cancelar","General_ChooseDate":"Elige\u0020la\u0020fecha\u002c\u0020actualmente\u0020la\u0020fecha\u0020seleccionada\u0020es\u003a\u0020\u0025s","General_ChooseLanguage":"Elegir\u0020idioma","General_ChoosePeriod":"Elegir\u0020periodo","General_Close":"Cerrar","General_ColumnNbVisits":"Visitas","General_ColumnPageviews":"P\u00e1ginas\u0020vistas","General_ColumnRevenue":"Ingresos","General_CurrentMonth":"Mes\u0020actual","General_CurrentWeek":"Semana\u0020actual","General_CurrentYear":"A\u00f1o\u0020actual","General_Date":"Fecha","General_DateRangeFrom":"Desde","General_DateRangeTo":"A","General_Delete":"Borrar","General_Details":"Detalles","General_Documentation":"Documentaci\u00f3n","General_Done":"Hecho","General_Download":"Descargar","General_Edit":"Editar","General_Error":"Error","General_ErrorRequest":"Oops\u002e\u002e\u002e\u0020hubo\u0020un\u0020problema\u0020durante\u0020la\u0020petici\u00f3n\u002e\u0020Tal\u0020vez\u0020el\u0020servidor\u0020tuvo\u0020un\u0020problema\u0020temporal\u002c\u0020o\u0020tal\u0020vez\u0020pidi\u00f3\u0020un\u0020informe\u0020con\u0020demasiada\u0020informaci\u00f3n\u002e\u0020Por\u0020favor\u0020vuelva\u0020a\u0020intentarlo\u002e\u0020Si\u0020el\u0020error\u0020ocurre\u0020repetidamente\u002c\u0020\u0025scont\u00e1cte\u0020con\u0020su\u0020administrador\u0020Matomo\u0025s\u0020para\u0020ayudarlo\u002e","General_Faq":"FAQ","General_Flatten":"Aplanar","General_ForExampleShort":"ej\u002e","General_Forums":"Foros","General_FromReferrer":"desde","General_GeneralSettings":"Ajustes\u0020generales","General_GiveUsYourFeedback":"\u00a1Env\u00edanos\u0020tus\u0020comentarios\u0021","General_Goal":"Objetivo","General_Help":"Ayuda","General_InvalidResponse":"Los\u0020datos\u0020recibidos\u0020son\u0020inv\u00e1lidos\u002e","General_Language":"Idioma","General_LastDaysShort":"\u00daltimos\u0020\u0025s\u0020d\u00edas","General_Live":"En\u0020vivo","General_LoadingData":"Cargando\u0020datos\u002e\u002e\u002e","General_Metric":"M\u00e9trica","General_More":"M\u00e1s","General_NewVisitor":"Nuevo\u0020visitante","General_Next":"Siguiente","General_No":"No","General_NotValid":"\u0025s\u0020no\u0020es\u0020v\u00e1lido","General_NumberOfVisits":"N\u00famero\u0020de\u0020visitas","General_NVisits":"\u0025s\u0020visitas","General_Ok":"Aceptar","General_Others":"Otros","General_Outlink":"Enlace\u0020externo","General_Password":"Contrase\u00f1a","General_Period":"Periodo","General_PiwikXIsAvailablePleaseNotifyPiwikAdmin":"\u0025s\u0020est\u00e1\u0020disponible\u002e\u0020Por\u0020favor\u0020alerte\u0020al\u0020\u0025s\u0020administrador\u0020Matomo\u0025s\u002e","General_PleaseUpdatePiwik":"Por\u0020favor\u0020actualice\u0020su\u0020Matomo","General_Plugins":"Complementos","General_Previous":"Anterior","General_PreviousDaysShort":"\u0025s\u0020d\u00edas\u0020previos","General_Refresh":"Actualizar","General_Remove":"Quitar","General_Reports":"Informes","General_RequestTimedOut":"Un\u0020pedido\u0020de\u0020informaci\u00f3n\u0020a\u0020\u0025s\u0020se\u0020desconect\u00f3\u002e\u0020Por\u0020favor\u002c\u0020intente\u0020de\u0020nuevo\u002e","General_Required":"\u0025s\u0020necesario","General_Save":"Guardar","General_Settings":"Configuraci\u00f3n","General_Subtotal":"Subtotal","General_Unknown":"Desconocido","General_Username":"Nombre\u0020de\u0020usuario","General_Value":"Valor","General_VisitConvertedNGoals":"La\u0020visita\u0020cumpli\u00f3\u0020\u0025s\u0020objetivos","General_Visitor":"Visitante","General_VisitorIP":"IP\u0020del\u0020visitante","General_Visitors":"Visitantes","General_VisitorSettings":"Configuraci\u00f3n\u0020de\u0020visitantes","General_VisitType":"Tipo\u0020de\u0020visita","General_Website":"Sitio\u0020de\u0020internet","General_Yes":"S\u00ed","General_YourChangesHaveBeenSaved":"Se\u0020han\u0020guardado\u0020los\u0020cambios\u002e","Mobile_AboutPiwikMobile":"Acerca\u0020de\u0020Matomo\u0020Mobile","Mobile_AccessUrlLabel":"Url\u0020de\u0020acceso","Mobile_Account":"Cuenta","Mobile_Accounts":"Cuentas","Mobile_AddAccount":"Agregar\u0020cuenta","Mobile_AddPiwikDemo":"Agregar\u0020una\u0020demo\u0020de\u0020Matomo","Mobile_Advanced":"Avanzado","Mobile_AnonymousAccess":"Acceso\u0020an\u00f3nimo","Mobile_AnonymousTracking":"Rastreo\u0020an\u00f3nimo","Mobile_AskForAnonymousTrackingPermission":"Cuando\u0020est\u00e1\u0020activado\u002c\u0020Matomo\u0020Mobile\u0020enviar\u00e1\u0020los\u0020datos\u0020de\u0020uso\u0020de\u0020manera\u0020an\u00f3nima\u0020a\u0020matomo\u002eorg\u002e\u0020El\u0020prop\u00f3sito\u0020es\u0020utilizar\u0020esta\u0020informaci\u00f3n\u0020para\u0020ayudar\u0020a\u0020los\u0020desarrolladores\u0020de\u0020Matomo\u0020Mobile\u0020a\u0020entender\u0020mejor\u0020c\u00f3mo\u0020se\u0020utiliza\u0020la\u0020aplicaci\u00f3n\u002e\u0020La\u0020informaci\u00f3n\u0020enviada\u0020es\u003a\u0020men\u00fas\u0020y\u0020configuraciones\u0020en\u0020las\u0020que\u0020se\u0020ha\u0020hecho\u0020clic\u002c\u0020nombre\u0020y\u0020versi\u00f3n\u0020del\u0020sistema\u0020operativo\u002c\u0020cualquier\u0020error\u0020mostrado\u0020en\u0020Matomo\u0020Mobile\u002e\u0020No\u0020vamos\u0020a\u0020rastrear\u0020NINGUNO\u0020de\u0020los\u0020datos\u0020anal\u00edticos\u002e\u0020Estos\u0020datos\u0020an\u00f3nimos\u0020nunca\u0020se\u0020har\u00e1n\u0020p\u00fablicos\u002e\u0020En\u0020cualquier\u0020momento\u0020puede\u0020activar\u002fdesactivar\u0020el\u0020seguimiento\u0020an\u00f3nimo\u0020en\u0020la\u0020opci\u00f3n\u0020Configuraci\u00f3n\u002e","Mobile_ChooseHttpTimeout":"Elije\u0020el\u0020valor\u0020de\u0020tiempo\u0020de\u0020espera\u0020HTTP","Mobile_ChooseMetric":"Elige\u0020la\u0020m\u00e9trica","Mobile_ChooseReport":"Elige\u0020un\u0020informe","Mobile_ChooseSegment":"Escoger\u0020segmento","Mobile_ConfirmRemoveAccount":"\u00bfDesea\u0020eliminar\u0020esta\u0020cuenta\u003f","Mobile_DefaultReportDate":"Fecha\u0020del\u0020reporte","Mobile_EmailUs":"Env\u00edenos\u0020un\u0020correo\u0020electr\u00f3nico","Mobile_EnableGraphsLabel":"Mostrar\u0020gr\u00e1ficos","Mobile_EvolutionGraph":"Gr\u00e1fico\u0020hist\u00f3rico","Mobile_HelpUsToImprovePiwikMobile":"\u00bfDeseas\u0020habilitar\u0020el\u0020rastreo\u0020de\u0020uso\u0020an\u00f3nimo\u0020en\u0020Matomo\u0020Mobile\u003f","Mobile_HowtoDeleteAnAccount":"Mantenga\u0020pulsado\u0020para\u0020eliminar\u0020una\u0020cuenta\u002e","Mobile_HowtoDeleteAnAccountOniOS":"Deslizar\u0020de\u0020izquierda\u0020a\u0020derecha\u0020para\u0020eliminar\u0020una\u0020cuenta","Mobile_HowtoLoginAnonymous":"Deja\u0020el\u0020nombre\u0020de\u0020usuario\u0020y\u0020contrase\u00f1a\u0020vac\u00edos\u0020para\u0020iniciar\u0020sesi\u00f3n\u0020como\u0020an\u00f3nimo","Mobile_HttpIsNotSecureWarning":"Su\u0020c\u00f3digo\u0020de\u0020autorizaci\u00f3n\u0020\u0028token\u005fauth\u0029\u0020de\u0020Matomo\u0020es\u0020enviado\u0020como\u0020texto\u0020no\u0020cifrado\u0020si\u0020usa\u0020\u0027HTTP\u0027\u002e\u0020Por\u0020este\u0020motivo\u002c\u0020se\u0020recomienda\u0020HTTPS\u0020para\u0020el\u0020transporte\u0020seguro\u0020de\u0020datos\u0020a\u0020trav\u00e9s\u0020de\u0020Internet\u002e\u0020\u00bfDesea\u0020continuar\u003f","Mobile_HttpTimeout":"Tiempo\u0020de\u0020espera\u0020HTTP","Mobile_IncompatiblePiwikVersion":"La\u0020versi\u00f3n\u0020de\u0020Matomo\u0020que\u0020est\u00e1\u0020utilizando\u0020no\u0020es\u0020compatible\u0020con\u0020Matomo\u0020Mobile\u00202\u002e\u0020Actualice\u0020la\u0020instalaci\u00f3n\u0020de\u0020Matomo\u0020y\u0020vuelva\u0020a\u0020probar\u0020o\u0020instale\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_LoadingReport":"Cargando\u0020\u0025s","Mobile_LoginCredentials":"Credenciales","Mobile_LoginToPiwikToChangeSettings":"Acceda\u0020a\u0020su\u0020servidor\u0020Matomo\u0020para\u0020crear\u0020y\u0020actualizar\u0020sitios\u0020de\u0020internet\u002c\u0020usuarios\u0020o\u0020para\u0020cambiar\u0020los\u0020Ajustes\u0020Generales\u0020como\u0020\u0022Informe\u0020a\u0020cargar\u0020por\u0020defecto\u0022","Mobile_LoginUseHttps":"Usar\u0020https","Mobile_MultiChartLabel":"Mostrar\u0020minigr\u00e1ficos","Mobile_NavigationBack":"Atr\u00e1s","Mobile_NetworkError":"Error\u0020en\u0020la\u0020red","Mobile_NetworkErrorWithStatusCode":"Hubo\u0020un\u0020error\u0020\u0022\u0025s\u0022\u002e\u0020El\u0020pedido\u0020retorn\u00f3\u0020el\u0020estado\u0020\u0022\u0025s\u0022\u002e\u0020La\u0020URL\u0020fue\u0020\u0022\u0025s\u0022\u002e\u0020Por\u0020favor\u002c\u0020revise\u0020la\u0020URL\u0020ingresada\u0020y\u0020el\u0020dato\u0020de\u0020registro\u0020de\u0020error\u0020en\u0020este\u0020servidor\u0020para\u0020una\u0020mayor\u0020informaci\u00f3n\u0020acerca\u0020del\u0020error\u0020y\u0020c\u00f3mo\u0020resolverlo\u002e","Mobile_NetworkErrorWithStatusCodeShort":"Error\u0020de\u0020red\u0020\u0025s","Mobile_NetworkNotReachable":"Red\u0020inaccesible","Mobile_NoAccountIsSelected":"Tiene\u0020que\u0020seleccionar\u0020una\u0020cuenta\u002e\u0020Agrega\u0020una\u0020nueva\u0020cuenta\u0020si\u0020no\u0020ha\u0020configurado\u0020una\u002e","Mobile_NoDataShort":"No\u0020hay\u0020datos","Mobile_NoPiwikAccount":"\u00bfNo\u0020tiene\u0020una\u0020cuenta\u0020de\u0020Matomo\u003f","Mobile_NoReportsShort":"Sin\u0020Informes","Mobile_NoVisitorFound":"No\u0020se\u0020han\u0020registrado\u0020visitantes","Mobile_NoVisitorsShort":"No\u0020hay\u0020visitantes","Mobile_NoWebsiteFound":"No\u0020se\u0020han\u0020encontrado\u0020sitios","Mobile_NoWebsitesShort":"No\u0020hay\u0020sitios\u0020de\u0020internet","Mobile_PullDownToRefresh":"Bajar\u0020para\u0020actualizar\u002e\u002e\u002e","Mobile_PossibleSslError":"Posible\u0020error\u0020en\u0020certificado\u0020SSL","Mobile_PossibleSslErrorExplanation":"El\u0020error\u0020que\u0020ocurri\u00f3\u0020puede\u0020estar\u0020causado\u0020por\u0020un\u0020certificado\u0020inv\u00e1lido\u0020o\u0020autofirmado\u003a\u0020\u0022\u0025s\u0022\u002e\u0020Iniciar\u0020una\u0020sesi\u00f3n\u0020quiz\u00e1s\u0020funcione\u0020si\u0020ignora\u0020la\u0020verificaci\u00f3n\u0020SSL\u0020pero\u0020es\u0020menos\u0020seguro\u002e\u0020Puede\u0020cambiar\u0020la\u0020validaci\u00f3n\u0020SSL\u0020en\u0020cualquier\u0020momento\u0020en\u0020los\u0020ajustes\u002e","Mobile_IgnoreSslError":"Ignorar\u0020error\u0020SSL","Mobile_RatingDontRemindMe":"No\u0020recordarme","Mobile_RatingNotNow":"Ahora\u0020no","Mobile_RatingNow":"Est\u00e1\u0020bien\u002c\u0020lo\u0020evaluar\u00e9\u0020ahora","Mobile_RatingPleaseRateUs":"Matomo\u0020Mobile\u0020App\u0020es\u0020software\u0020libre\u002c\u0020realmente\u0020apreciar\u00edamos\u0020que\u0020se\u0020tomara\u00201\u0020minuto\u0020para\u0020evaluar\u0020la\u0020aplicaci\u00f3n\u0020en\u0020el\u0020\u0025s\u002e\u0020Si\u0020posee\u0020sugerencias\u0020de\u0020nuevas\u0020caracter\u00edsticas\u0020o\u0020informes\u0020de\u0020error\u002c\u0020por\u0020favor\u0020p\u00f3ngase\u0020en\u0020contacto\u0020con\u0020\u0025s","Mobile_ReleaseToRefresh":"Suelte\u0020para\u0020actualizar\u002e\u002e\u002e","Mobile_Reloading":"Recargando\u002e\u002e\u002e","Mobile_RequestTimedOutShort":"Error\u0020de\u0020tiempo\u0020de\u0020espera\u0020de\u0020red","Mobile_RestrictedCompatibility":"Compatibilidad\u0020limitada","Mobile_RestrictedCompatibilityExplanation":"La\u0020versi\u00f3n\u0020\u0025s\u0020de\u0020Matomo\u0020que\u0020est\u00e1s\u0020utilizando\u0020no\u0020es\u0020completamente\u0020compatible\u0020con\u0020Matomo\u0020Mobile\u00202\u002e\u0020Pueden\u0020producirse\u0020algunos\u0020errores\u002e\u0020Se\u0020recomienda\u0020actualizar\u0020Matomo\u0020a\u0020la\u0020ultima\u0020versi\u00f3n\u0020disponibile\u0020o\u0020utilizar\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_SaveSuccessError":"URL\u0020de\u0020Matomo\u0020o\u0020la\u0020combinaci\u00f3n\u0020de\u0020nombre\u0020de\u0020usuario\u0020y\u0020contrase\u00f1a\u0020est\u00e1\u0020equivocada\u002e","Mobile_SearchWebsite":"Buscar\u0020sitios\u0020de\u0020internet","Mobile_ShowAll":"Mostrar\u0020todo","Mobile_ShowLess":"Mostrar\u0020menos","Mobile_StaticGraph":"Gr\u00e1fico\u0020de\u0020informaci\u00f3n\u0020general","Mobile_TopVisitedWebsites":"Principales\u0020sitios\u0020de\u0020internet\u0020visitados","Mobile_TryIt":"\u00a1Pru\u00e9belo\u0021","Mobile_UseSearchBarHint":"S\u00f3lo\u0020son\u0020mostrados\u0020los\u0020primeros\u0020\u0025s\u0020sitios\u0020de\u0020internet\u0020aqu\u00ed\u002e\u0020Por\u0020favor\u002c\u0020utilice\u0020la\u0020barra\u0020de\u0020b\u00fasqueda\u0020para\u0020acceder\u0020a\u0020otros\u0020sitios\u0020de\u0020internet\u002e","Mobile_VerifyAccount":"Verificando\u0020cuenta","Mobile_ValidateSslCertificate":"Validar\u0020certificado\u0020SSL","Mobile_VerifyLoginData":"Aseg\u00farese\u0020que\u0020la\u0020combinaci\u00f3n\u0020de\u0020nombre\u0020de\u0020usuario\u0020y\u0020contrase\u00f1a\u0020sea\u0020correcta\u002e","Mobile_YouAreOffline":"Disculpe\u002c\u0020est\u00e1\u0020actualmente\u0020desconectado","CorePluginsAdmin_Activate":"Activar","CorePluginsAdmin_Deactivate":"Desactivar","CoreHome_PeriodRange":"Rango","CoreHome_TableNoData":"Sin\u0020datos\u0020para\u0020esta\u0020tabla\u002e","CoreHome_ThereIsNoDataForThisReport":"No\u0020hay\u0020datos\u0020para\u0020este\u0020informe\u002e","Actions_SubmenuSitesearch":"B\u00fasqueda\u0020interna","DevicesDetection_ColumnBrowser":"Navegador","Goals_AbandonedCart":"Carrito\u0020abandonado","Goals_Ecommerce":"Comercio\u0020Electr\u00f3nico","Goals_EcommerceOrder":"Pedido\u0020de\u0020Comercio\u0020Electr\u00f3nico","SEO_Rank":"Rango","Events_Event":"Evento","UserCountry_City":"Ciudad","UserCountry_Country":"Pa\u00eds","UserCountry_Region":"Regi\u00f3n","VisitsSummary_NbActionsDescription":"\u0025s\u0020acciones","Feedback_DoYouHaveBugReportOrFeatureRequest":"\u00bfTienes\u0020un\u0020error\u0020que\u0020informar\u0020o\u0020una\u0020nueva\u0020caracter\u00edstica\u003f","Feedback_ThankYou":"\u00a1Gracias\u0020por\u0020ayudarnos\u0020a\u0020hacer\u0020Matomo\u0020aun\u0020mejor\u0021","TwoFactorAuth_Verify":"Verificar","UsersManager_ManageAccess":"Administrar\u0020el\u0020acceso","UsersManager_PrivView":"Ver","SitesManager_ExceptionInvalidUrl":"La\u0020URL\u0020\u0027\u0025s\u0027\u0020no\u0020es\u0020una\u0020URL\u0020v\u00e1lida\u002e","SitesManager_MenuManage":"Administrar","SitesManager_NotFound":"Ning\u00fan\u0020sitio\u0020de\u0020internet\u0020encontrado","CoreUpdater_UpdateTitle":"Actualizar","UserCountryMap_RealTimeMap":"Mapa\u0020en\u0020Tiempo\u0020real","Live_LastHours":"\u00daltimas\u0020\u0025s\u0020horas","Live_LastMinutes":"\u00daltimos\u0020\u0025s\u0020minutos","Live_VisitorLog":"Registro\u0020de\u0020visitas","Live_VisitorsInRealTime":"Visitas\u0020en\u0020tiempo\u0020real","CustomVariables_CustomVariables":"Variables\u0020Personalizadas","SegmentEditor_DefaultAllVisits":"Todas\u0020las\u0020visitas","Resolution_ColumnResolution":"Resoluci\u00f3n","Intl_PeriodDay":"d\u00eda","Intl_PeriodMonth":"mes","Intl_PeriodWeek":"semana","Intl_PeriodYear":"a\u00f1o","Intl_Today":"Hoy","Intl_Yesterday":"Ayer"}; +module.exports = {"General_AboutPiwikX":"Acerca\u0020de\u0020Matomo\u0020\u0025s","General_Action":"Acci\u00f3n","General_AllWebsitesDashboard":"Panel\u0020de\u0020todos\u0020los\u0020sitios\u0020de\u0020internet","General_Cancel":"Cancelar","General_ChooseDate":"Elige\u0020la\u0020fecha","General_ChooseLanguage":"Elegir\u0020idioma","General_ChoosePeriod":"Elegir\u0020periodo","General_Close":"Cerrar","General_ColumnNbVisits":"Visitas","General_ColumnPageviews":"P\u00e1ginas\u0020vistas","General_ColumnRevenue":"Ingresos","General_CurrentMonth":"Mes\u0020actual","General_CurrentWeek":"Semana\u0020actual","General_CurrentYear":"A\u00f1o\u0020actual","General_Date":"Fecha","General_DateRangeFrom":"Desde","General_DateRangeTo":"A","General_Delete":"Borrar","General_Details":"Detalles","General_Documentation":"Documentaci\u00f3n","General_Done":"Hecho","General_Download":"Descargar","General_Edit":"Editar","General_Error":"Error","General_ErrorRequest":"Oops\u002e\u002e\u002e\u0020hubo\u0020un\u0020problema\u0020durante\u0020la\u0020petici\u00f3n\u002e\u0020Tal\u0020vez\u0020el\u0020servidor\u0020tuvo\u0020un\u0020problema\u0020temporal\u002c\u0020o\u0020tal\u0020vez\u0020pidi\u00f3\u0020un\u0020informe\u0020con\u0020demasiada\u0020informaci\u00f3n\u002e\u0020Por\u0020favor\u0020vuelva\u0020a\u0020intentarlo\u002e\u0020Si\u0020el\u0020error\u0020ocurre\u0020repetidamente\u002c\u0020\u0025scont\u00e1cte\u0020con\u0020su\u0020administrador\u0020Matomo\u0025s\u0020para\u0020ayudarlo\u002e","General_Faq":"FAQ","General_Flatten":"Aplanar","General_ForExampleShort":"ej\u002e","General_Forums":"Foros","General_FromReferrer":"desde","General_GeneralSettings":"Ajustes\u0020generales","General_GiveUsYourFeedback":"\u00a1Env\u00edanos\u0020tus\u0020comentarios\u0021","General_Goal":"Objetivo","General_Help":"Ayuda","General_InvalidResponse":"Los\u0020datos\u0020recibidos\u0020son\u0020inv\u00e1lidos\u002e","General_Language":"Idioma","General_LastDaysShort":"\u00daltimos\u0020\u0025s\u0020d\u00edas","General_Live":"En\u0020vivo","General_LoadingData":"Cargando\u0020datos\u002e\u002e\u002e","General_Metric":"M\u00e9trica","General_More":"M\u00e1s","General_NewVisitor":"Nuevo\u0020visitante","General_Next":"Siguiente","General_No":"No","General_NotValid":"\u0025s\u0020no\u0020es\u0020v\u00e1lido","General_NumberOfVisits":"N\u00famero\u0020de\u0020visitas","General_NVisits":"\u0025s\u0020visitas","General_Ok":"Aceptar","General_Others":"Otros","General_Outlink":"Enlace\u0020externo","General_Password":"Contrase\u00f1a","General_Period":"Periodo","General_PiwikXIsAvailablePleaseNotifyPiwikAdmin":"\u0025s\u0020est\u00e1\u0020disponible\u002e\u0020Por\u0020favor\u0020alerte\u0020al\u0020\u0025s\u0020administrador\u0020Matomo\u0025s\u002e","General_PleaseUpdatePiwik":"Por\u0020favor\u0020actualice\u0020su\u0020Matomo","General_Plugins":"Complementos","General_Previous":"Anterior","General_PreviousDaysShort":"\u0025s\u0020d\u00edas\u0020previos","General_Refresh":"Actualizar","General_Remove":"Quitar","General_Reports":"Informes","General_RequestTimedOut":"Un\u0020pedido\u0020de\u0020informaci\u00f3n\u0020a\u0020\u0025s\u0020se\u0020desconect\u00f3\u002e\u0020Por\u0020favor\u002c\u0020intente\u0020de\u0020nuevo\u002e","General_Required":"\u0025s\u0020necesario","General_Save":"Guardar","General_Settings":"Configuraci\u00f3n","General_Subtotal":"Subtotal","General_Unknown":"Desconocido","General_Username":"Nombre\u0020de\u0020usuario","General_Value":"Valor","General_VisitConvertedNGoals":"La\u0020visita\u0020cumpli\u00f3\u0020\u0025s\u0020objetivos","General_Visitor":"Visitante","General_VisitorIP":"IP\u0020del\u0020visitante","General_Visitors":"Visitantes","General_VisitorSettings":"Configuraci\u00f3n\u0020de\u0020visitantes","General_VisitType":"Tipo\u0020de\u0020visita","General_Website":"Sitio\u0020de\u0020internet","General_Yes":"S\u00ed","General_YourChangesHaveBeenSaved":"Se\u0020han\u0020guardado\u0020los\u0020cambios\u002e","Mobile_AboutPiwikMobile":"Acerca\u0020de\u0020Matomo\u0020Mobile","Mobile_AccessUrlLabel":"Url\u0020de\u0020acceso","Mobile_Account":"Cuenta","Mobile_Accounts":"Cuentas","Mobile_AddAccount":"Agregar\u0020cuenta","Mobile_AddPiwikDemo":"Agregar\u0020una\u0020demo\u0020de\u0020Matomo","Mobile_Advanced":"Avanzado","Mobile_AnonymousAccess":"Acceso\u0020an\u00f3nimo","Mobile_AnonymousTracking":"Rastreo\u0020an\u00f3nimo","Mobile_AskForAnonymousTrackingPermission":"Cuando\u0020est\u00e1\u0020activado\u002c\u0020Matomo\u0020Mobile\u0020enviar\u00e1\u0020los\u0020datos\u0020de\u0020uso\u0020de\u0020manera\u0020an\u00f3nima\u0020a\u0020matomo\u002eorg\u002e\u0020El\u0020prop\u00f3sito\u0020es\u0020utilizar\u0020esta\u0020informaci\u00f3n\u0020para\u0020ayudar\u0020a\u0020los\u0020desarrolladores\u0020de\u0020Matomo\u0020Mobile\u0020a\u0020entender\u0020mejor\u0020c\u00f3mo\u0020se\u0020utiliza\u0020la\u0020aplicaci\u00f3n\u002e\u0020La\u0020informaci\u00f3n\u0020enviada\u0020es\u003a\u0020men\u00fas\u0020y\u0020configuraciones\u0020en\u0020las\u0020que\u0020se\u0020ha\u0020hecho\u0020clic\u002c\u0020nombre\u0020y\u0020versi\u00f3n\u0020del\u0020sistema\u0020operativo\u002c\u0020cualquier\u0020error\u0020mostrado\u0020en\u0020Matomo\u0020Mobile\u002e\u0020No\u0020vamos\u0020a\u0020rastrear\u0020NINGUNO\u0020de\u0020los\u0020datos\u0020anal\u00edticos\u002e\u0020Estos\u0020datos\u0020an\u00f3nimos\u0020nunca\u0020se\u0020har\u00e1n\u0020p\u00fablicos\u002e\u0020En\u0020cualquier\u0020momento\u0020puede\u0020activar\u002fdesactivar\u0020el\u0020seguimiento\u0020an\u00f3nimo\u0020en\u0020la\u0020opci\u00f3n\u0020Configuraci\u00f3n\u002e","Mobile_ChooseHttpTimeout":"Elije\u0020el\u0020valor\u0020de\u0020tiempo\u0020de\u0020espera\u0020HTTP","Mobile_ChooseMetric":"Elige\u0020la\u0020m\u00e9trica","Mobile_ChooseReport":"Elige\u0020un\u0020informe","Mobile_ChooseSegment":"Escoger\u0020segmento","Mobile_ConfirmRemoveAccount":"\u00bfDesea\u0020eliminar\u0020esta\u0020cuenta\u003f","Mobile_DefaultReportDate":"Fecha\u0020del\u0020reporte","Mobile_EmailUs":"Env\u00edenos\u0020un\u0020correo\u0020electr\u00f3nico","Mobile_EnableGraphsLabel":"Mostrar\u0020gr\u00e1ficos","Mobile_EvolutionGraph":"Gr\u00e1fico\u0020hist\u00f3rico","Mobile_HelpUsToImprovePiwikMobile":"\u00bfDeseas\u0020habilitar\u0020el\u0020rastreo\u0020de\u0020uso\u0020an\u00f3nimo\u0020en\u0020Matomo\u0020Mobile\u003f","Mobile_HowtoDeleteAnAccount":"Mantenga\u0020pulsado\u0020para\u0020eliminar\u0020una\u0020cuenta\u002e","Mobile_HowtoDeleteAnAccountOniOS":"Deslizar\u0020de\u0020izquierda\u0020a\u0020derecha\u0020para\u0020eliminar\u0020una\u0020cuenta","Mobile_HowtoLoginAnonymous":"Deja\u0020el\u0020nombre\u0020de\u0020usuario\u0020y\u0020contrase\u00f1a\u0020vac\u00edos\u0020para\u0020iniciar\u0020sesi\u00f3n\u0020como\u0020an\u00f3nimo","Mobile_HttpIsNotSecureWarning":"Su\u0020c\u00f3digo\u0020de\u0020autorizaci\u00f3n\u0020\u0028token\u005fauth\u0029\u0020de\u0020Matomo\u0020es\u0020enviado\u0020como\u0020texto\u0020no\u0020cifrado\u0020si\u0020usa\u0020\u0027HTTP\u0027\u002e\u0020Por\u0020este\u0020motivo\u002c\u0020se\u0020recomienda\u0020HTTPS\u0020para\u0020el\u0020transporte\u0020seguro\u0020de\u0020datos\u0020a\u0020trav\u00e9s\u0020de\u0020Internet\u002e\u0020\u00bfDesea\u0020continuar\u003f","Mobile_HttpTimeout":"Tiempo\u0020de\u0020espera\u0020HTTP","Mobile_IncompatiblePiwikVersion":"La\u0020versi\u00f3n\u0020de\u0020Matomo\u0020que\u0020est\u00e1\u0020utilizando\u0020no\u0020es\u0020compatible\u0020con\u0020Matomo\u0020Mobile\u00202\u002e\u0020Actualice\u0020la\u0020instalaci\u00f3n\u0020de\u0020Matomo\u0020y\u0020vuelva\u0020a\u0020probar\u0020o\u0020instale\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_LoadingReport":"Cargando\u0020\u0025s","Mobile_LoginCredentials":"Credenciales","Mobile_LoginToPiwikToChangeSettings":"Acceda\u0020a\u0020su\u0020servidor\u0020Matomo\u0020para\u0020crear\u0020y\u0020actualizar\u0020sitios\u0020de\u0020internet\u002c\u0020usuarios\u0020o\u0020para\u0020cambiar\u0020los\u0020Ajustes\u0020Generales\u0020como\u0020\u0022Informe\u0020a\u0020cargar\u0020por\u0020defecto\u0022","Mobile_LoginUseHttps":"Usar\u0020https","Mobile_MultiChartLabel":"Mostrar\u0020minigr\u00e1ficos","Mobile_NavigationBack":"Atr\u00e1s","Mobile_NetworkError":"Error\u0020en\u0020la\u0020red","Mobile_NetworkErrorWithStatusCode":"Hubo\u0020un\u0020error\u0020\u0022\u0025s\u0022\u002e\u0020El\u0020pedido\u0020retorn\u00f3\u0020el\u0020estado\u0020\u0022\u0025s\u0022\u002e\u0020La\u0020URL\u0020fue\u0020\u0022\u0025s\u0022\u002e\u0020Por\u0020favor\u002c\u0020revise\u0020la\u0020URL\u0020ingresada\u0020y\u0020el\u0020dato\u0020de\u0020registro\u0020de\u0020error\u0020en\u0020este\u0020servidor\u0020para\u0020una\u0020mayor\u0020informaci\u00f3n\u0020acerca\u0020del\u0020error\u0020y\u0020c\u00f3mo\u0020resolverlo\u002e","Mobile_NetworkErrorWithStatusCodeShort":"Error\u0020de\u0020red\u0020\u0025s","Mobile_NetworkNotReachable":"Red\u0020inaccesible","Mobile_NoAccountIsSelected":"Tiene\u0020que\u0020seleccionar\u0020una\u0020cuenta\u002e\u0020Agrega\u0020una\u0020nueva\u0020cuenta\u0020si\u0020no\u0020ha\u0020configurado\u0020una\u002e","Mobile_NoDataShort":"No\u0020hay\u0020datos","Mobile_NoPiwikAccount":"\u00bfNo\u0020tiene\u0020una\u0020cuenta\u0020de\u0020Matomo\u003f","Mobile_NoReportsShort":"Sin\u0020Informes","Mobile_NoVisitorFound":"No\u0020se\u0020han\u0020registrado\u0020visitantes","Mobile_NoVisitorsShort":"No\u0020hay\u0020visitantes","Mobile_NoWebsiteFound":"No\u0020se\u0020han\u0020encontrado\u0020sitios","Mobile_NoWebsitesShort":"No\u0020hay\u0020sitios\u0020de\u0020internet","Mobile_PullDownToRefresh":"Bajar\u0020para\u0020actualizar\u002e\u002e\u002e","Mobile_PossibleSslError":"Posible\u0020error\u0020en\u0020certificado\u0020SSL","Mobile_PossibleSslErrorExplanation":"El\u0020error\u0020que\u0020ocurri\u00f3\u0020puede\u0020estar\u0020causado\u0020por\u0020un\u0020certificado\u0020inv\u00e1lido\u0020o\u0020autofirmado\u003a\u0020\u0022\u0025s\u0022\u002e\u0020Iniciar\u0020una\u0020sesi\u00f3n\u0020quiz\u00e1s\u0020funcione\u0020si\u0020ignora\u0020la\u0020verificaci\u00f3n\u0020SSL\u0020pero\u0020es\u0020menos\u0020seguro\u002e\u0020Puede\u0020cambiar\u0020la\u0020validaci\u00f3n\u0020SSL\u0020en\u0020cualquier\u0020momento\u0020en\u0020los\u0020ajustes\u002e","Mobile_IgnoreSslError":"Ignorar\u0020error\u0020SSL","Mobile_RatingDontRemindMe":"No\u0020recordarme","Mobile_RatingNotNow":"Ahora\u0020no","Mobile_RatingNow":"Est\u00e1\u0020bien\u002c\u0020lo\u0020evaluar\u00e9\u0020ahora","Mobile_RatingPleaseRateUs":"Matomo\u0020Mobile\u0020App\u0020es\u0020software\u0020libre\u002c\u0020realmente\u0020apreciar\u00edamos\u0020que\u0020se\u0020tomara\u00201\u0020minuto\u0020para\u0020evaluar\u0020la\u0020aplicaci\u00f3n\u0020en\u0020el\u0020\u0025s\u002e\u0020Si\u0020posee\u0020sugerencias\u0020de\u0020nuevas\u0020caracter\u00edsticas\u0020o\u0020informes\u0020de\u0020error\u002c\u0020por\u0020favor\u0020p\u00f3ngase\u0020en\u0020contacto\u0020con\u0020\u0025s","Mobile_ReleaseToRefresh":"Suelte\u0020para\u0020actualizar\u002e\u002e\u002e","Mobile_Reloading":"Recargando\u002e\u002e\u002e","Mobile_RequestTimedOutShort":"Error\u0020de\u0020tiempo\u0020de\u0020espera\u0020de\u0020red","Mobile_RestrictedCompatibility":"Compatibilidad\u0020limitada","Mobile_RestrictedCompatibilityExplanation":"La\u0020versi\u00f3n\u0020\u0025s\u0020de\u0020Matomo\u0020que\u0020est\u00e1s\u0020utilizando\u0020no\u0020es\u0020completamente\u0020compatible\u0020con\u0020Matomo\u0020Mobile\u00202\u002e\u0020Pueden\u0020producirse\u0020algunos\u0020errores\u002e\u0020Se\u0020recomienda\u0020actualizar\u0020Matomo\u0020a\u0020la\u0020ultima\u0020versi\u00f3n\u0020disponibile\u0020o\u0020utilizar\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_SaveSuccessError":"URL\u0020de\u0020Matomo\u0020o\u0020la\u0020combinaci\u00f3n\u0020de\u0020nombre\u0020de\u0020usuario\u0020y\u0020contrase\u00f1a\u0020est\u00e1\u0020equivocada\u002e","Mobile_SearchWebsite":"Buscar\u0020sitios\u0020de\u0020internet","Mobile_ShowAll":"Mostrar\u0020todo","Mobile_ShowLess":"Mostrar\u0020menos","Mobile_StaticGraph":"Gr\u00e1fico\u0020de\u0020informaci\u00f3n\u0020general","Mobile_TopVisitedWebsites":"Principales\u0020sitios\u0020de\u0020internet\u0020visitados","Mobile_TryIt":"\u00a1Pru\u00e9belo\u0021","Mobile_UseSearchBarHint":"S\u00f3lo\u0020son\u0020mostrados\u0020los\u0020primeros\u0020\u0025s\u0020sitios\u0020de\u0020internet\u0020aqu\u00ed\u002e\u0020Por\u0020favor\u002c\u0020utilice\u0020la\u0020barra\u0020de\u0020b\u00fasqueda\u0020para\u0020acceder\u0020a\u0020otros\u0020sitios\u0020de\u0020internet\u002e","Mobile_VerifyAccount":"Verificando\u0020cuenta","Mobile_ValidateSslCertificate":"Validar\u0020certificado\u0020SSL","Mobile_VerifyLoginData":"Aseg\u00farese\u0020que\u0020la\u0020combinaci\u00f3n\u0020de\u0020nombre\u0020de\u0020usuario\u0020y\u0020contrase\u00f1a\u0020sea\u0020correcta\u002e","Mobile_YouAreOffline":"Disculpe\u002c\u0020est\u00e1\u0020actualmente\u0020desconectado","CorePluginsAdmin_Activate":"Activar","CorePluginsAdmin_Deactivate":"Desactivar","CoreHome_PeriodRange":"Rango","CoreHome_TableNoData":"Sin\u0020datos\u0020para\u0020esta\u0020tabla\u002e","CoreHome_ThereIsNoDataForThisReport":"No\u0020hay\u0020datos\u0020para\u0020este\u0020informe\u002e","Actions_SubmenuSitesearch":"B\u00fasqueda\u0020interna","DevicesDetection_ColumnBrowser":"Navegador","Goals_AbandonedCart":"Carrito\u0020abandonado","Goals_Ecommerce":"Comercio\u0020Electr\u00f3nico","Goals_EcommerceOrder":"Pedido\u0020de\u0020Comercio\u0020Electr\u00f3nico","SEO_Rank":"Rango","Events_Event":"Evento","UserCountry_City":"Ciudad","UserCountry_Country":"Pa\u00eds","UserCountry_Region":"Regi\u00f3n","VisitsSummary_NbActionsDescription":"\u0025s\u0020acciones","Feedback_DoYouHaveBugReportOrFeatureRequest":"\u00bfTienes\u0020un\u0020error\u0020que\u0020informar\u0020o\u0020una\u0020nueva\u0020caracter\u00edstica\u003f","Feedback_ThankYou":"\u00a1Gracias\u0020por\u0020ayudarnos\u0020a\u0020hacer\u0020Matomo\u0020aun\u0020mejor\u0021","TwoFactorAuth_Verify":"Verificar","UsersManager_ManageAccess":"Administrar\u0020el\u0020acceso","UsersManager_PrivView":"Ver","SitesManager_ExceptionInvalidUrl":"La\u0020URL\u0020\u0027\u0025s\u0027\u0020no\u0020es\u0020una\u0020URL\u0020v\u00e1lida\u002e","SitesManager_MenuManage":"Administrar","SitesManager_NotFound":"Ning\u00fan\u0020sitio\u0020de\u0020internet\u0020encontrado","CoreUpdater_UpdateTitle":"Actualizar","UserCountryMap_RealTimeMap":"Mapa\u0020en\u0020Tiempo\u0020real","Live_LastHours":"\u00daltimas\u0020\u0025s\u0020horas","Live_LastMinutes":"\u00daltimos\u0020\u0025s\u0020minutos","Live_VisitorLog":"Registro\u0020de\u0020visitas","Live_VisitorsInRealTime":"Visitas\u0020en\u0020tiempo\u0020real","CustomVariables_CustomVariables":"Variables\u0020Personalizadas","SegmentEditor_DefaultAllVisits":"Todas\u0020las\u0020visitas","Resolution_ColumnResolution":"Resoluci\u00f3n","Intl_PeriodDay":"d\u00eda","Intl_PeriodMonth":"mes","Intl_PeriodWeek":"semana","Intl_PeriodYear":"a\u00f1o","Intl_Today":"Hoy","Intl_Yesterday":"Ayer"}; diff --git a/app/lib/i18n/fr.js b/app/lib/i18n/fr.js index 6a74af17..dee1e729 100644 --- a/app/lib/i18n/fr.js +++ b/app/lib/i18n/fr.js @@ -4,4 +4,4 @@ * @link https://matomo.org * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later */ -module.exports = {"General_AboutPiwikX":"\u00c0\u0020propos\u0020de\u0020Matomo\u0020\u0025s","General_Action":"Action","General_AllWebsitesDashboard":"Tableau\u0020de\u0020bord\u0020de\u0020tous\u0020les\u0020sites","General_Cancel":"Annuler","General_ChooseDate":"Choisissez\u0020une\u0020date\u002c\u0020date\u0020actuellement\u0020s\u00e9lectionn\u00e9e\u0020\u003a\u0020\u0025s","General_ChooseLanguage":"S\u00e9lectionnez\u0020la\u0020langue","General_ChoosePeriod":"S\u00e9lectionnez\u0020la\u0020p\u00e9riode","General_Close":"Fermer","General_ColumnNbVisits":"Visites","General_ColumnPageviews":"Vues","General_ColumnRevenue":"Revenu","General_CurrentMonth":"Mois\u0020courant","General_CurrentWeek":"Semaine\u0020courante","General_CurrentYear":"Ann\u00e9e\u0020courante","General_Date":"Date","General_DateRangeFrom":"Du","General_DateRangeTo":"Au","General_Delete":"Supprimer","General_Details":"D\u00e9tails","General_Documentation":"Documentation","General_Done":"Effectu\u00e9","General_Download":"T\u00e9l\u00e9charger","General_Edit":"\u00c9diter","General_Error":"Erreur","General_ErrorRequest":"Oups\u002e\u002e\u002e\u0020Il\u0020y\u0020a\u0020eu\u0020un\u0020probl\u00e8me\u0020pendant\u0020le\u0020traitement\u0020de\u0020la\u0020requ\u00eate\u002e\u0020Peut\u002d\u00eatre\u0020que\u0020le\u0020serveur\u0020a\u0020eu\u0020un\u0020souci\u0020temporaire\u002c\u0020ou\u0020peut\u002d\u00eatre\u0020que\u0020vous\u0020avez\u0020demand\u00e9\u0020un\u0020rapport\u0020avec\u0020trop\u0020de\u0020donn\u00e9es\u002e\u0020Veuillez\u0020r\u00e9essayer\u002e\u0020Si\u0020cette\u0020erreur\u0020se\u0020r\u00e9p\u00e8te\u0020veuillez\u0020\u0025scontacter\u0020votre\u0020administrateur\u0020Matomo\u0025s\u0020pour\u0020obtenir\u0020de\u0020l\u0027aide\u002e","General_Faq":"FAQ","General_Flatten":"Aplatir","General_ForExampleShort":"ex\u002e","General_Forums":"Forums","General_FromReferrer":"de","General_GeneralSettings":"Param\u00e8tres\u0020g\u00e9n\u00e9raux","General_GiveUsYourFeedback":"Envoyez\u002dnous\u0020vos\u0020commentaires\u0020\u0021","General_Goal":"Objectif","General_Help":"Aide","General_InvalidResponse":"Les\u0020donn\u00e9es\u0020re\u00e7ues\u0020sont\u0020invalides","General_Language":"Langue","General_LastDaysShort":"Derniers\u0020\u0025s\u0020jours","General_Live":"En\u0020direct","General_LoadingData":"Chargement\u0020des\u0020donn\u00e9es\u002e\u002e\u002e","General_Metric":"M\u00e9trique","General_More":"Plus","General_NewVisitor":"Nouveau\u0020visiteur","General_Next":"Suivant","General_No":"Non","General_NotValid":"\u0025s\u0020n\u0027est\u0020pas\u0020valide","General_NumberOfVisits":"Nombre\u0020de\u0020visites","General_NVisits":"\u0025s\u0020visites","General_Ok":"Ok","General_Others":"Autres","General_Outlink":"Lien\u0020sortant","General_Password":"Mot\u0020de\u0020passe","General_Period":"P\u00e9riode","General_PiwikXIsAvailablePleaseNotifyPiwikAdmin":"\u0025s\u0020est\u0020disponible\u002e\u0020Veuillez\u0020informer\u0020\u0025sl\u0027administrateur\u0020Matomo\u0025s\u002e","General_PleaseUpdatePiwik":"Merci\u0020de\u0020mettre\u0020\u00e0\u0020jour\u0020Matomo","General_Plugins":"Plugins","General_Previous":"Pr\u00e9c\u00e9dent","General_PreviousDaysShort":"\u0025s\u0020jours\u0020pr\u00e9c\u00e9dent","General_Refresh":"Actualiser","General_Remove":"Supprimer","General_Reports":"Rapports","General_RequestTimedOut":"Une\u0020requ\u00eate\u0020vers\u0020\u0025s\u0020a\u0020expir\u00e9\u002e\u0020Veuillez\u0020r\u00e9essayer\u002e","General_Required":"\u0025s\u0020requis","General_Save":"Enregistrer","General_Settings":"Param\u00e8tres","General_Subtotal":"Sous\u002dTotal","General_Unknown":"Inconnu","General_Username":"Nom\u0020d\u0027utilisateur","General_Value":"Valeur","General_VisitConvertedNGoals":"La\u0020visite\u0020a\u0020converti\u0020\u0025s\u0020objectifs","General_Visitor":"Visiteur","General_VisitorIP":"IP\u0020du\u0020visiteur","General_Visitors":"Visiteurs","General_VisitorSettings":"Param\u00e8tres\u0020visiteur","General_VisitType":"Type\u0020de\u0020visite","General_Website":"Site","General_Yes":"Oui","General_YourChangesHaveBeenSaved":"Vos\u0020modifications\u0020ont\u0020\u00e9t\u00e9\u0020enregistr\u00e9es\u002e","Mobile_AboutPiwikMobile":"\u00c0\u0020propos\u0020de\u0020Matomo\u0020Mobile","Mobile_AccessUrlLabel":"URL\u0020d\u0027acc\u00e8s\u0020\u00e0\u0020Matomo","Mobile_Account":"Compte","Mobile_Accounts":"Comptes","Mobile_AddAccount":"Ajouter\u0020un\u0020compte","Mobile_AddPiwikDemo":"Ajouter\u0020une\u0020d\u00e9mo\u0020Matomo","Mobile_Advanced":"Avanc\u00e9","Mobile_AnonymousAccess":"Acc\u00e8s\u0020anonyme","Mobile_AnonymousTracking":"Tra\u00e7age\u0020anonyme","Mobile_AskForAnonymousTrackingPermission":"Quand\u0020activ\u00e9\u002c\u0020Matomo\u0020Mobile\u0020enverra\u0020les\u0020donn\u00e9es\u0020d\u0027utilisation\u0020anonyme\u0020vers\u0020matomo\u002eorg\u002e\u0020Le\u0020but\u0020est\u0020d\u0027utiliser\u0020ces\u0020donn\u00e9es\u0020pour\u0020aider\u0020les\u0020d\u00e9veloppeurs\u0020de\u0020Matomo\u0020Mobile\u0020\u00e0\u0020mieux\u0020comprendre\u0020comment\u0020l\u0027application\u0020est\u0020utilis\u00e9e\u002e\u0020Les\u0020informations\u0020envoy\u00e9es\u0020sont\u0020\u003a\u0020clics\u0020sur\u0020les\u0020menus\u0020et\u0020param\u00e8tres\u002c\u0020nom\u0020et\u0020version\u0020de\u0020l\u0027OS\u002c\u0020toute\u0020erreur\u0020affich\u00e9e\u0020dans\u0020Matomo\u0020Mobile\u002e\u0020Nous\u0020ne\u0020traquerons\u0020PAS\u0020vos\u0020donn\u00e9es\u002e\u0020Ces\u0020donn\u00e9es\u0020anonymes\u0020ne\u0020seront\u0020jamais\u0020publi\u00e9es\u002e\u0020Vous\u0020pouvez\u0020d\u00e9sactiver\u002factiver\u0020le\u0020tra\u00e7age\u0020anonyme\u0020dans\u0020les\u0020Param\u00e8tres\u0020\u00e0\u0020tout\u0020moment\u002e","Mobile_ChooseHttpTimeout":"Choisir\u0020la\u0020valeur\u0020du\u0020timeout\u0020HTTP","Mobile_ChooseMetric":"Choisissez\u0020un\u0020m\u00e9trique","Mobile_ChooseReport":"Choisir\u0020un\u0020rapport","Mobile_ChooseSegment":"S\u00e9lectionner\u0020segment","Mobile_ConfirmRemoveAccount":"Souhaitez\u002dvous\u0020supprimer\u0020ce\u0020compte\u0020\u003f","Mobile_DefaultReportDate":"Date\u0020du\u0020rapport","Mobile_EmailUs":"Nous\u0020\u00e9crire","Mobile_EnableGraphsLabel":"Afficher\u0020les\u0020graphs","Mobile_EvolutionGraph":"Graphique\u0020d\u0027historique","Mobile_HelpUsToImprovePiwikMobile":"Voulez\u002dvous\u0020activer\u0020le\u0020tra\u00e7age\u0020d\u0027utilisation\u0020anonyme\u0020dans\u0020Matomo\u0020Mobile\u0020\u003f","Mobile_HowtoDeleteAnAccount":"Appuyez\u0020longtemps\u0020pour\u0020supprimer\u0020un\u0020compte\u002e","Mobile_HowtoDeleteAnAccountOniOS":"Faites\u0020glisser\u0020de\u0020gauche\u0020\u00e0\u0020droite\u0020pour\u0020supprimer\u0020un\u0020compte","Mobile_HowtoLoginAnonymous":"Laissez\u0020le\u0020login\u0020et\u0020le\u0020mot\u0020de\u0020passe\u0020vide\u0020pour\u0020une\u0020connexion\u0020anonyme\u002e","Mobile_HttpIsNotSecureWarning":"Votre\u0020token\u0020d\u0027authentification\u0020Matomo\u0020\u0028token\u005fauth\u0029\u0020est\u0020envoy\u00e9e\u0020en\u0020texte\u0020clair\u0020si\u0020vous\u0020utilisez\u0020\u0022HTTP\u0022\u002e\u0020Pour\u0020cette\u0020raison\u002c\u0020nous\u0020recommandons\u0020d\u0027utiliser\u0020HTTPS\u0020pour\u0020s\u00e9curiser\u0020le\u0020transport\u0020des\u0020donn\u00e9es\u0020sur\u0020Internet\u002e\u0020Voulez\u002dvous\u0020le\u0020faire\u0020\u003f","Mobile_HttpTimeout":"Timeout\u0020HTTP","Mobile_IncompatiblePiwikVersion":"La\u0020version\u0020de\u0020Matomo\u0020que\u0020vous\u0020utilisez\u0020est\u0020incompatible\u0020avec\u0020Matomo\u0020Mobile\u00202\u002e\u0020Mettez\u0020\u00e0\u0020jour\u0020votre\u0020installation\u0020de\u0020Matomo\u0020et\u0020essayez\u0020\u00e0\u0020nouveau\u0020ou\u0020bien\u0020installez\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_LoadingReport":"Chargement\u0020\u0025s","Mobile_LoginCredentials":"Identifiants","Mobile_LoginToPiwikToChangeSettings":"Connectez\u002dvous\u0020\u00e0\u0020votre\u0020serveur\u0020Matomo\u0020pour\u0020ajouter\u0020et\u0020mettre\u0020\u00e0\u0020jour\u0020les\u0020comptes\u0020de\u0020vos\u0020sites\u002c\u0020les\u0020utilisateurs\u0020ou\u0020pour\u0020modifier\u0020les\u0020r\u00e9glages\u0020g\u00e9n\u00e9raux\u0020tels\u0020que\u0020les\u0020\u0022rapports\u0020\u00e0\u0020charger\u0020par\u0020d\u00e9faut\u0022\u0020et\u0020les\u0020\u0022date\u0020de\u0020rapports\u0020\u00e0\u0020charger\u0020par\u0020d\u00e9faut\u0022\u002e","Mobile_LoginUseHttps":"Utiliser\u0020HTTPS","Mobile_MultiChartLabel":"Afficher\u0020les\u0020sparklines","Mobile_NavigationBack":"Retour","Mobile_NetworkError":"Erreur\u0020r\u00e9seau","Mobile_NetworkErrorWithStatusCode":"Erreur\u0020rencontr\u00e9e\u0020\u0022\u0025s\u0022\u002e\u0020La\u0020requ\u00eate\u0020a\u0020retourn\u00e9\u0020le\u0020statut\u0020\u0022\u0025s\u002e\u0020L\u0027URL\u0020\u00e9tait\u0020\u0022\u0025s\u0022\u002e\u0020Veuillez\u0020v\u00e9rifier\u0020que\u0020vous\u0020avez\u0020entr\u00e9\u0020l\u0027URL\u0020correctement\u0020et\u0020consulter\u0020les\u0020logs\u0020du\u0020serveur\u0020pour\u0020plus\u0020d\u0027informations\u0020\u00e0\u0020propos\u0020de\u0020l\u0027erreur\u0020et\u0020sur\u0020comment\u0020la\u0020r\u00e9soudre\u002e","Mobile_NetworkErrorWithStatusCodeShort":"Erreur\u0020r\u00e9seau\u0020\u0025s","Mobile_NetworkNotReachable":"R\u00e9seau\u0020inaccessible","Mobile_NoAccountIsSelected":"Vous\u0020devez\u0020s\u00e9lectionner\u0020un\u0020compte\u002e\u0020Ajoutez\u0020un\u0020nouveau\u0020compte\u0020si\u0020aucun\u0020n\u0027a\u0020\u00e9t\u00e9\u0020configur\u00e9\u002e","Mobile_NoDataShort":"Donn\u00e9es\u0020absentes","Mobile_NoPiwikAccount":"Pas\u0020de\u0020compte\u0020Matomo\u0020\u003f","Mobile_NoReportsShort":"Pas\u0020de\u0020rapport","Mobile_NoVisitorFound":"Aucun\u0020visiteur\u0020trouv\u00e9","Mobile_NoVisitorsShort":"Aucun\u0020visiteur","Mobile_NoWebsiteFound":"Aucun\u0020site\u0020trouv\u00e9","Mobile_NoWebsitesShort":"Pas\u0020de\u0020site\u0020internet","Mobile_PullDownToRefresh":"Faites\u0020glisser\u0020vers\u0020le\u0020bas\u0020pour\u0020actualiser","Mobile_PossibleSslError":"Erreur\u0020potentielle\u0020de\u0020certificat\u0020SSL","Mobile_PossibleSslErrorExplanation":"Une\u0020erreur\u0020peut\u0020\u00eatre\u0020caus\u00e9e\u0020par\u0020un\u0020certificat\u0020invalide\u0020ou\u0020auto\u002dsign\u00e9\u0020\u003a\u0020\u0022\u0025s\u0022\u002e\u0020La\u0020connexion\u0020peut\u0020fonctionner\u0020pour\u0020vous\u0020en\u0020ignorant\u0020la\u0020validation\u0020SSL\u0020mais\u0020cela\u0020est\u0020moins\u0020s\u00e9curis\u00e9\u002e\u0020Vous\u0020pouvez\u0020modifier\u0020la\u0020validation\u0020SSL\u0020\u00e0\u0020n\u0027importe\u0020quel\u0020moment\u0020depuis\u0020les\u0020param\u00e8tres\u002e","Mobile_IgnoreSslError":"Ignorer\u0020les\u0020erreurs\u0020SSL","Mobile_RatingDontRemindMe":"Ne\u0020pas\u0020me\u0020rappeler","Mobile_RatingNotNow":"Pas\u0020maintenant","Mobile_RatingNow":"OK\u002c\u0020je\u0020vais\u0020le\u0020noter\u0020maintenant","Mobile_RatingPleaseRateUs":"L\u0027application\u0020Matomo\u0020Mobile\u0020est\u0020un\u0020logiciel\u0020gratuit\u002c\u0020nous\u0020vous\u0020serions\u0020tr\u00e8s\u0020reconnaissant\u0020si\u0020vous\u0020preniez\u00201\u0020minute\u0020pour\u0020noter\u0020l\u0027application\u0020sur\u0020le\u0020\u0025s\u002e\u0020Si\u0020vous\u0020avez\u0020des\u0020suggestions\u0020de\u0020nouvelles\u0020fonctionnalit\u00e9s\u0020ou\u0020si\u0020vous\u0020souhaitez\u0020signaler\u0020un\u0020bug\u002c\u0020veuillez\u0020contacter\u0020\u0025s","Mobile_ReleaseToRefresh":"Rel\u00e2chez\u0020pour\u0020actualiser\u002e\u002e\u002e","Mobile_Reloading":"Recharchement\u002e\u002e\u002e","Mobile_RequestTimedOutShort":"Erreur\u0020r\u00e9seau\u002c\u0020d\u00e9lai\u0020d\u00e9pass\u00e9\u0020\u0028timeout\u0029","Mobile_RestrictedCompatibility":"Compatibilit\u00e9\u0020limit\u00e9e","Mobile_RestrictedCompatibilityExplanation":"La\u0020version\u0020\u0025s\u0020de\u0020Matomo\u0020que\u0020vous\u0020utilisez\u0020n\u0027est\u0020pas\u0020enti\u00e8rement\u0020support\u00e9e\u0020par\u0020Matomo\u0020Mobile\u00202\u002e\u0020Vous\u0020pourriez\u0020rencontrer\u0020des\u0020bugs\u002e\u0020Nous\u0020recommandons\u0020que\u0020vous\u0020mettiez\u0020\u00e0\u0020jour\u0020Matomo\u0020vers\u0020la\u0020derni\u00e8re\u0020version\u0020ou\u0020bien\u0020que\u0020vous\u0020utilisiez\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_SaveSuccessError":"Veuillez\u0020v\u00e9rifier\u0020les\u0020param\u00e8tres","Mobile_SearchWebsite":"Rechercher\u0020les\u0020sites\u0020Internet","Mobile_ShowAll":"Afficher\u0020tout","Mobile_ShowLess":"Afficher\u0020moins","Mobile_StaticGraph":"Graphique\u0020d\u0027aper\u00e7u","Mobile_TopVisitedWebsites":"Les\u0020sites\u0020les\u0020plus\u0020visit\u00e9s","Mobile_TryIt":"Essayez\u0020le\u0020\u0021","Mobile_UseSearchBarHint":"Seuls\u0020les\u0020\u0025s\u0020premiers\u0020sites\u0020Internet\u0020sont\u0020affich\u00e9s\u0020ici\u002e\u0020Veuillez\u0020utiliser\u0020la\u0020barre\u0020de\u0020recherche\u0020pour\u0020acc\u00e9der\u0020aux\u0020autres\u0020sites\u0020Internet\u002e","Mobile_VerifyAccount":"V\u00e9rification\u0020du\u0020compte","Mobile_ValidateSslCertificate":"Valider\u0020le\u0020certificat\u0020SSL","Mobile_VerifyLoginData":"Verifier\u0020votre\u0020nom\u0020d\u0027utilisateur\u0020et\u0020votre\u0020mot\u0020de\u0020passe\u002e","Mobile_YouAreOffline":"D\u00e9sol\u00e9\u002c\u0020vous\u0020\u00eates\u0020actuellement\u0020d\u00e9connect\u00e9\u0028e\u0029","CorePluginsAdmin_Activate":"Activer","CorePluginsAdmin_Deactivate":"D\u00e9sactiver","CoreHome_PeriodRange":"Etendue","CoreHome_TableNoData":"Aucune\u0020donn\u00e9e\u0020pour\u0020cette\u0020table\u002e","CoreHome_ThereIsNoDataForThisReport":"Il\u0020n\u0027y\u0020a\u0020pas\u0020de\u0020donn\u00e9es\u0020pour\u0020ce\u0020rapport\u002e","Actions_SubmenuSitesearch":"Recherche\u0020sur\u0020le\u0020site","DevicesDetection_ColumnBrowser":"Navigateur","Goals_AbandonedCart":"Panier\u0020abandonn\u00e9","Goals_Ecommerce":"E\u002dCommerce","Goals_EcommerceOrder":"Commande\u0020E\u002dCommerce","SEO_Rank":"Notation","Events_Event":"Ev\u00e8nement","UserCountry_City":"Ville","UserCountry_Country":"Pays","UserCountry_Region":"R\u00e9gion","VisitsSummary_NbActionsDescription":"\u0025s\u0020actions\u0020\u0028pages\u0020vues\u002c\u0020t\u00e9l\u00e9chargements\u0020et\u0020liens\u0020de\u0020sortie\u0029","Feedback_DoYouHaveBugReportOrFeatureRequest":"Avez\u002dvous\u0020un\u0020bug\u0020\u00e0\u0020rapporter\u0020ou\u0020une\u0020fonctionnalit\u00e9\u0020\u00e0\u0020demander\u0020\u003f","Feedback_ThankYou":"Merci\u0020d\u0027avoir\u0020aid\u00e9\u0020\u00e0\u0020am\u00e9liorer\u0020Matomo\u0021","TwoFactorAuth_Verify":"V\u00e9rifier","UsersManager_ManageAccess":"Gestion\u0020des\u0020acc\u00e8s\u0020utilisateurs","UsersManager_PrivView":"Vue","SitesManager_ExceptionInvalidUrl":"L\u0027url\u0020\u0027\u0025s\u0027\u0020n\u0027est\u0020pas\u0020une\u0020URL\u0020valide\u002e","SitesManager_MenuManage":"G\u00e9rer","SitesManager_NotFound":"Aucun\u0020site\u0020trouv\u00e9\u0020pour","CoreUpdater_UpdateTitle":"Mise\u0020\u00e0\u0020jour","UserCountryMap_RealTimeMap":"Carte\u0020en\u0020temps\u002dr\u00e9el","Live_LastHours":"Derni\u00e8res\u0020\u0025s\u0020heures","Live_LastMinutes":"Derni\u00e8res\u0020\u0025s\u0020minutes","Live_VisitorLog":"Journal\u0020des\u0020Visites","Live_VisitorsInRealTime":"Visites\u0020en\u0020temps\u002dr\u00e9el","CustomVariables_CustomVariables":"Variables\u0020personnalis\u00e9es","SegmentEditor_DefaultAllVisits":"Toutes\u0020les\u0020visites","Resolution_ColumnResolution":"R\u00e9solution","Intl_PeriodDay":"jour","Intl_PeriodMonth":"mois","Intl_PeriodWeek":"semaine","Intl_PeriodYear":"ann\u00e9e","Intl_Today":"Aujourd\u2019hui","Intl_Yesterday":"Hier"}; +module.exports = {"General_AboutPiwikX":"\u00c0\u0020propos\u0020de\u0020Matomo\u0020\u0025s","General_Action":"Action","General_AllWebsitesDashboard":"Tableau\u0020de\u0020bord\u0020de\u0020tous\u0020les\u0020sites","General_Cancel":"Annuler","General_ChooseDate":"Choisissez une date","General_ChooseLanguage":"S\u00e9lectionnez\u0020la\u0020langue","General_ChoosePeriod":"S\u00e9lectionnez\u0020la\u0020p\u00e9riode","General_Close":"Fermer","General_ColumnNbVisits":"Visites","General_ColumnPageviews":"Vues","General_ColumnRevenue":"Revenu","General_CurrentMonth":"Mois\u0020courant","General_CurrentWeek":"Semaine\u0020courante","General_CurrentYear":"Ann\u00e9e\u0020courante","General_Date":"Date","General_DateRangeFrom":"Du","General_DateRangeTo":"Au","General_Delete":"Supprimer","General_Details":"D\u00e9tails","General_Documentation":"Documentation","General_Done":"Effectu\u00e9","General_Download":"T\u00e9l\u00e9charger","General_Edit":"\u00c9diter","General_Error":"Erreur","General_ErrorRequest":"Oups\u002e\u002e\u002e\u0020Il\u0020y\u0020a\u0020eu\u0020un\u0020probl\u00e8me\u0020pendant\u0020le\u0020traitement\u0020de\u0020la\u0020requ\u00eate\u002e\u0020Peut\u002d\u00eatre\u0020que\u0020le\u0020serveur\u0020a\u0020eu\u0020un\u0020souci\u0020temporaire\u002c\u0020ou\u0020peut\u002d\u00eatre\u0020que\u0020vous\u0020avez\u0020demand\u00e9\u0020un\u0020rapport\u0020avec\u0020trop\u0020de\u0020donn\u00e9es\u002e\u0020Veuillez\u0020r\u00e9essayer\u002e\u0020Si\u0020cette\u0020erreur\u0020se\u0020r\u00e9p\u00e8te\u0020veuillez\u0020\u0025scontacter\u0020votre\u0020administrateur\u0020Matomo\u0025s\u0020pour\u0020obtenir\u0020de\u0020l\u0027aide\u002e","General_Faq":"FAQ","General_Flatten":"Aplatir","General_ForExampleShort":"ex\u002e","General_Forums":"Forums","General_FromReferrer":"de","General_GeneralSettings":"Param\u00e8tres\u0020g\u00e9n\u00e9raux","General_GiveUsYourFeedback":"Envoyez\u002dnous\u0020vos\u0020commentaires\u0020\u0021","General_Goal":"Objectif","General_Help":"Aide","General_InvalidResponse":"Les\u0020donn\u00e9es\u0020re\u00e7ues\u0020sont\u0020invalides","General_Language":"Langue","General_LastDaysShort":"Derniers\u0020\u0025s\u0020jours","General_Live":"En\u0020direct","General_LoadingData":"Chargement\u0020des\u0020donn\u00e9es\u002e\u002e\u002e","General_Metric":"M\u00e9trique","General_More":"Plus","General_NewVisitor":"Nouveau\u0020visiteur","General_Next":"Suivant","General_No":"Non","General_NotValid":"\u0025s\u0020n\u0027est\u0020pas\u0020valide","General_NumberOfVisits":"Nombre\u0020de\u0020visites","General_NVisits":"\u0025s\u0020visites","General_Ok":"Ok","General_Others":"Autres","General_Outlink":"Lien\u0020sortant","General_Password":"Mot\u0020de\u0020passe","General_Period":"P\u00e9riode","General_PiwikXIsAvailablePleaseNotifyPiwikAdmin":"\u0025s\u0020est\u0020disponible\u002e\u0020Veuillez\u0020informer\u0020\u0025sl\u0027administrateur\u0020Matomo\u0025s\u002e","General_PleaseUpdatePiwik":"Merci\u0020de\u0020mettre\u0020\u00e0\u0020jour\u0020Matomo","General_Plugins":"Plugins","General_Previous":"Pr\u00e9c\u00e9dent","General_PreviousDaysShort":"\u0025s\u0020jours\u0020pr\u00e9c\u00e9dent","General_Refresh":"Actualiser","General_Remove":"Supprimer","General_Reports":"Rapports","General_RequestTimedOut":"Une\u0020requ\u00eate\u0020vers\u0020\u0025s\u0020a\u0020expir\u00e9\u002e\u0020Veuillez\u0020r\u00e9essayer\u002e","General_Required":"\u0025s\u0020requis","General_Save":"Enregistrer","General_Settings":"Param\u00e8tres","General_Subtotal":"Sous\u002dTotal","General_Unknown":"Inconnu","General_Username":"Nom\u0020d\u0027utilisateur","General_Value":"Valeur","General_VisitConvertedNGoals":"La\u0020visite\u0020a\u0020converti\u0020\u0025s\u0020objectifs","General_Visitor":"Visiteur","General_VisitorIP":"IP\u0020du\u0020visiteur","General_Visitors":"Visiteurs","General_VisitorSettings":"Param\u00e8tres\u0020visiteur","General_VisitType":"Type\u0020de\u0020visite","General_Website":"Site","General_Yes":"Oui","General_YourChangesHaveBeenSaved":"Vos\u0020modifications\u0020ont\u0020\u00e9t\u00e9\u0020enregistr\u00e9es\u002e","Mobile_AboutPiwikMobile":"\u00c0\u0020propos\u0020de\u0020Matomo\u0020Mobile","Mobile_AccessUrlLabel":"URL\u0020d\u0027acc\u00e8s\u0020\u00e0\u0020Matomo","Mobile_Account":"Compte","Mobile_Accounts":"Comptes","Mobile_AddAccount":"Ajouter\u0020un\u0020compte","Mobile_AddPiwikDemo":"Ajouter\u0020une\u0020d\u00e9mo\u0020Matomo","Mobile_Advanced":"Avanc\u00e9","Mobile_AnonymousAccess":"Acc\u00e8s\u0020anonyme","Mobile_AnonymousTracking":"Tra\u00e7age\u0020anonyme","Mobile_AskForAnonymousTrackingPermission":"Quand\u0020activ\u00e9\u002c\u0020Matomo\u0020Mobile\u0020enverra\u0020les\u0020donn\u00e9es\u0020d\u0027utilisation\u0020anonyme\u0020vers\u0020matomo\u002eorg\u002e\u0020Le\u0020but\u0020est\u0020d\u0027utiliser\u0020ces\u0020donn\u00e9es\u0020pour\u0020aider\u0020les\u0020d\u00e9veloppeurs\u0020de\u0020Matomo\u0020Mobile\u0020\u00e0\u0020mieux\u0020comprendre\u0020comment\u0020l\u0027application\u0020est\u0020utilis\u00e9e\u002e\u0020Les\u0020informations\u0020envoy\u00e9es\u0020sont\u0020\u003a\u0020clics\u0020sur\u0020les\u0020menus\u0020et\u0020param\u00e8tres\u002c\u0020nom\u0020et\u0020version\u0020de\u0020l\u0027OS\u002c\u0020toute\u0020erreur\u0020affich\u00e9e\u0020dans\u0020Matomo\u0020Mobile\u002e\u0020Nous\u0020ne\u0020traquerons\u0020PAS\u0020vos\u0020donn\u00e9es\u002e\u0020Ces\u0020donn\u00e9es\u0020anonymes\u0020ne\u0020seront\u0020jamais\u0020publi\u00e9es\u002e\u0020Vous\u0020pouvez\u0020d\u00e9sactiver\u002factiver\u0020le\u0020tra\u00e7age\u0020anonyme\u0020dans\u0020les\u0020Param\u00e8tres\u0020\u00e0\u0020tout\u0020moment\u002e","Mobile_ChooseHttpTimeout":"Choisir\u0020la\u0020valeur\u0020du\u0020timeout\u0020HTTP","Mobile_ChooseMetric":"Choisissez\u0020un\u0020m\u00e9trique","Mobile_ChooseReport":"Choisir\u0020un\u0020rapport","Mobile_ChooseSegment":"S\u00e9lectionner\u0020segment","Mobile_ConfirmRemoveAccount":"Souhaitez\u002dvous\u0020supprimer\u0020ce\u0020compte\u0020\u003f","Mobile_DefaultReportDate":"Date\u0020du\u0020rapport","Mobile_EmailUs":"Nous\u0020\u00e9crire","Mobile_EnableGraphsLabel":"Afficher\u0020les\u0020graphs","Mobile_EvolutionGraph":"Graphique\u0020d\u0027historique","Mobile_HelpUsToImprovePiwikMobile":"Voulez\u002dvous\u0020activer\u0020le\u0020tra\u00e7age\u0020d\u0027utilisation\u0020anonyme\u0020dans\u0020Matomo\u0020Mobile\u0020\u003f","Mobile_HowtoDeleteAnAccount":"Appuyez\u0020longtemps\u0020pour\u0020supprimer\u0020un\u0020compte\u002e","Mobile_HowtoDeleteAnAccountOniOS":"Faites\u0020glisser\u0020de\u0020gauche\u0020\u00e0\u0020droite\u0020pour\u0020supprimer\u0020un\u0020compte","Mobile_HowtoLoginAnonymous":"Laissez\u0020le\u0020login\u0020et\u0020le\u0020mot\u0020de\u0020passe\u0020vide\u0020pour\u0020une\u0020connexion\u0020anonyme\u002e","Mobile_HttpIsNotSecureWarning":"Votre\u0020token\u0020d\u0027authentification\u0020Matomo\u0020\u0028token\u005fauth\u0029\u0020est\u0020envoy\u00e9e\u0020en\u0020texte\u0020clair\u0020si\u0020vous\u0020utilisez\u0020\u0022HTTP\u0022\u002e\u0020Pour\u0020cette\u0020raison\u002c\u0020nous\u0020recommandons\u0020d\u0027utiliser\u0020HTTPS\u0020pour\u0020s\u00e9curiser\u0020le\u0020transport\u0020des\u0020donn\u00e9es\u0020sur\u0020Internet\u002e\u0020Voulez\u002dvous\u0020le\u0020faire\u0020\u003f","Mobile_HttpTimeout":"Timeout\u0020HTTP","Mobile_IncompatiblePiwikVersion":"La\u0020version\u0020de\u0020Matomo\u0020que\u0020vous\u0020utilisez\u0020est\u0020incompatible\u0020avec\u0020Matomo\u0020Mobile\u00202\u002e\u0020Mettez\u0020\u00e0\u0020jour\u0020votre\u0020installation\u0020de\u0020Matomo\u0020et\u0020essayez\u0020\u00e0\u0020nouveau\u0020ou\u0020bien\u0020installez\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_LoadingReport":"Chargement\u0020\u0025s","Mobile_LoginCredentials":"Identifiants","Mobile_LoginToPiwikToChangeSettings":"Connectez\u002dvous\u0020\u00e0\u0020votre\u0020serveur\u0020Matomo\u0020pour\u0020ajouter\u0020et\u0020mettre\u0020\u00e0\u0020jour\u0020les\u0020comptes\u0020de\u0020vos\u0020sites\u002c\u0020les\u0020utilisateurs\u0020ou\u0020pour\u0020modifier\u0020les\u0020r\u00e9glages\u0020g\u00e9n\u00e9raux\u0020tels\u0020que\u0020les\u0020\u0022rapports\u0020\u00e0\u0020charger\u0020par\u0020d\u00e9faut\u0022\u0020et\u0020les\u0020\u0022date\u0020de\u0020rapports\u0020\u00e0\u0020charger\u0020par\u0020d\u00e9faut\u0022\u002e","Mobile_LoginUseHttps":"Utiliser\u0020HTTPS","Mobile_MultiChartLabel":"Afficher\u0020les\u0020sparklines","Mobile_NavigationBack":"Retour","Mobile_NetworkError":"Erreur\u0020r\u00e9seau","Mobile_NetworkErrorWithStatusCode":"Erreur\u0020rencontr\u00e9e\u0020\u0022\u0025s\u0022\u002e\u0020La\u0020requ\u00eate\u0020a\u0020retourn\u00e9\u0020le\u0020statut\u0020\u0022\u0025s\u002e\u0020L\u0027URL\u0020\u00e9tait\u0020\u0022\u0025s\u0022\u002e\u0020Veuillez\u0020v\u00e9rifier\u0020que\u0020vous\u0020avez\u0020entr\u00e9\u0020l\u0027URL\u0020correctement\u0020et\u0020consulter\u0020les\u0020logs\u0020du\u0020serveur\u0020pour\u0020plus\u0020d\u0027informations\u0020\u00e0\u0020propos\u0020de\u0020l\u0027erreur\u0020et\u0020sur\u0020comment\u0020la\u0020r\u00e9soudre\u002e","Mobile_NetworkErrorWithStatusCodeShort":"Erreur\u0020r\u00e9seau\u0020\u0025s","Mobile_NetworkNotReachable":"R\u00e9seau\u0020inaccessible","Mobile_NoAccountIsSelected":"Vous\u0020devez\u0020s\u00e9lectionner\u0020un\u0020compte\u002e\u0020Ajoutez\u0020un\u0020nouveau\u0020compte\u0020si\u0020aucun\u0020n\u0027a\u0020\u00e9t\u00e9\u0020configur\u00e9\u002e","Mobile_NoDataShort":"Donn\u00e9es\u0020absentes","Mobile_NoPiwikAccount":"Pas\u0020de\u0020compte\u0020Matomo\u0020\u003f","Mobile_NoReportsShort":"Pas\u0020de\u0020rapport","Mobile_NoVisitorFound":"Aucun\u0020visiteur\u0020trouv\u00e9","Mobile_NoVisitorsShort":"Aucun\u0020visiteur","Mobile_NoWebsiteFound":"Aucun\u0020site\u0020trouv\u00e9","Mobile_NoWebsitesShort":"Pas\u0020de\u0020site\u0020internet","Mobile_PullDownToRefresh":"Faites\u0020glisser\u0020vers\u0020le\u0020bas\u0020pour\u0020actualiser","Mobile_PossibleSslError":"Erreur\u0020potentielle\u0020de\u0020certificat\u0020SSL","Mobile_PossibleSslErrorExplanation":"Une\u0020erreur\u0020peut\u0020\u00eatre\u0020caus\u00e9e\u0020par\u0020un\u0020certificat\u0020invalide\u0020ou\u0020auto\u002dsign\u00e9\u0020\u003a\u0020\u0022\u0025s\u0022\u002e\u0020La\u0020connexion\u0020peut\u0020fonctionner\u0020pour\u0020vous\u0020en\u0020ignorant\u0020la\u0020validation\u0020SSL\u0020mais\u0020cela\u0020est\u0020moins\u0020s\u00e9curis\u00e9\u002e\u0020Vous\u0020pouvez\u0020modifier\u0020la\u0020validation\u0020SSL\u0020\u00e0\u0020n\u0027importe\u0020quel\u0020moment\u0020depuis\u0020les\u0020param\u00e8tres\u002e","Mobile_IgnoreSslError":"Ignorer\u0020les\u0020erreurs\u0020SSL","Mobile_RatingDontRemindMe":"Ne\u0020pas\u0020me\u0020rappeler","Mobile_RatingNotNow":"Pas\u0020maintenant","Mobile_RatingNow":"OK\u002c\u0020je\u0020vais\u0020le\u0020noter\u0020maintenant","Mobile_RatingPleaseRateUs":"L\u0027application\u0020Matomo\u0020Mobile\u0020est\u0020un\u0020logiciel\u0020gratuit\u002c\u0020nous\u0020vous\u0020serions\u0020tr\u00e8s\u0020reconnaissant\u0020si\u0020vous\u0020preniez\u00201\u0020minute\u0020pour\u0020noter\u0020l\u0027application\u0020sur\u0020le\u0020\u0025s\u002e\u0020Si\u0020vous\u0020avez\u0020des\u0020suggestions\u0020de\u0020nouvelles\u0020fonctionnalit\u00e9s\u0020ou\u0020si\u0020vous\u0020souhaitez\u0020signaler\u0020un\u0020bug\u002c\u0020veuillez\u0020contacter\u0020\u0025s","Mobile_ReleaseToRefresh":"Rel\u00e2chez\u0020pour\u0020actualiser\u002e\u002e\u002e","Mobile_Reloading":"Recharchement\u002e\u002e\u002e","Mobile_RequestTimedOutShort":"Erreur\u0020r\u00e9seau\u002c\u0020d\u00e9lai\u0020d\u00e9pass\u00e9\u0020\u0028timeout\u0029","Mobile_RestrictedCompatibility":"Compatibilit\u00e9\u0020limit\u00e9e","Mobile_RestrictedCompatibilityExplanation":"La\u0020version\u0020\u0025s\u0020de\u0020Matomo\u0020que\u0020vous\u0020utilisez\u0020n\u0027est\u0020pas\u0020enti\u00e8rement\u0020support\u00e9e\u0020par\u0020Matomo\u0020Mobile\u00202\u002e\u0020Vous\u0020pourriez\u0020rencontrer\u0020des\u0020bugs\u002e\u0020Nous\u0020recommandons\u0020que\u0020vous\u0020mettiez\u0020\u00e0\u0020jour\u0020Matomo\u0020vers\u0020la\u0020derni\u00e8re\u0020version\u0020ou\u0020bien\u0020que\u0020vous\u0020utilisiez\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_SaveSuccessError":"Veuillez\u0020v\u00e9rifier\u0020les\u0020param\u00e8tres","Mobile_SearchWebsite":"Rechercher\u0020les\u0020sites\u0020Internet","Mobile_ShowAll":"Afficher\u0020tout","Mobile_ShowLess":"Afficher\u0020moins","Mobile_StaticGraph":"Graphique\u0020d\u0027aper\u00e7u","Mobile_TopVisitedWebsites":"Les\u0020sites\u0020les\u0020plus\u0020visit\u00e9s","Mobile_TryIt":"Essayez\u0020le\u0020\u0021","Mobile_UseSearchBarHint":"Seuls\u0020les\u0020\u0025s\u0020premiers\u0020sites\u0020Internet\u0020sont\u0020affich\u00e9s\u0020ici\u002e\u0020Veuillez\u0020utiliser\u0020la\u0020barre\u0020de\u0020recherche\u0020pour\u0020acc\u00e9der\u0020aux\u0020autres\u0020sites\u0020Internet\u002e","Mobile_VerifyAccount":"V\u00e9rification\u0020du\u0020compte","Mobile_ValidateSslCertificate":"Valider\u0020le\u0020certificat\u0020SSL","Mobile_VerifyLoginData":"Verifier\u0020votre\u0020nom\u0020d\u0027utilisateur\u0020et\u0020votre\u0020mot\u0020de\u0020passe\u002e","Mobile_YouAreOffline":"D\u00e9sol\u00e9\u002c\u0020vous\u0020\u00eates\u0020actuellement\u0020d\u00e9connect\u00e9\u0028e\u0029","CorePluginsAdmin_Activate":"Activer","CorePluginsAdmin_Deactivate":"D\u00e9sactiver","CoreHome_PeriodRange":"Etendue","CoreHome_TableNoData":"Aucune\u0020donn\u00e9e\u0020pour\u0020cette\u0020table\u002e","CoreHome_ThereIsNoDataForThisReport":"Il\u0020n\u0027y\u0020a\u0020pas\u0020de\u0020donn\u00e9es\u0020pour\u0020ce\u0020rapport\u002e","Actions_SubmenuSitesearch":"Recherche\u0020sur\u0020le\u0020site","DevicesDetection_ColumnBrowser":"Navigateur","Goals_AbandonedCart":"Panier\u0020abandonn\u00e9","Goals_Ecommerce":"E\u002dCommerce","Goals_EcommerceOrder":"Commande\u0020E\u002dCommerce","SEO_Rank":"Notation","Events_Event":"Ev\u00e8nement","UserCountry_City":"Ville","UserCountry_Country":"Pays","UserCountry_Region":"R\u00e9gion","VisitsSummary_NbActionsDescription":"\u0025s\u0020actions\u0020\u0028pages\u0020vues\u002c\u0020t\u00e9l\u00e9chargements\u0020et\u0020liens\u0020de\u0020sortie\u0029","Feedback_DoYouHaveBugReportOrFeatureRequest":"Avez\u002dvous\u0020un\u0020bug\u0020\u00e0\u0020rapporter\u0020ou\u0020une\u0020fonctionnalit\u00e9\u0020\u00e0\u0020demander\u0020\u003f","Feedback_ThankYou":"Merci\u0020d\u0027avoir\u0020aid\u00e9\u0020\u00e0\u0020am\u00e9liorer\u0020Matomo\u0021","TwoFactorAuth_Verify":"V\u00e9rifier","UsersManager_ManageAccess":"Gestion\u0020des\u0020acc\u00e8s\u0020utilisateurs","UsersManager_PrivView":"Vue","SitesManager_ExceptionInvalidUrl":"L\u0027url\u0020\u0027\u0025s\u0027\u0020n\u0027est\u0020pas\u0020une\u0020URL\u0020valide\u002e","SitesManager_MenuManage":"G\u00e9rer","SitesManager_NotFound":"Aucun\u0020site\u0020trouv\u00e9\u0020pour","CoreUpdater_UpdateTitle":"Mise\u0020\u00e0\u0020jour","UserCountryMap_RealTimeMap":"Carte\u0020en\u0020temps\u002dr\u00e9el","Live_LastHours":"Derni\u00e8res\u0020\u0025s\u0020heures","Live_LastMinutes":"Derni\u00e8res\u0020\u0025s\u0020minutes","Live_VisitorLog":"Journal\u0020des\u0020Visites","Live_VisitorsInRealTime":"Visites\u0020en\u0020temps\u002dr\u00e9el","CustomVariables_CustomVariables":"Variables\u0020personnalis\u00e9es","SegmentEditor_DefaultAllVisits":"Toutes\u0020les\u0020visites","Resolution_ColumnResolution":"R\u00e9solution","Intl_PeriodDay":"jour","Intl_PeriodMonth":"mois","Intl_PeriodWeek":"semaine","Intl_PeriodYear":"ann\u00e9e","Intl_Today":"Aujourd\u2019hui","Intl_Yesterday":"Hier"}; diff --git a/app/lib/i18n/it.js b/app/lib/i18n/it.js index d83a6c80..03bbb11e 100644 --- a/app/lib/i18n/it.js +++ b/app/lib/i18n/it.js @@ -4,4 +4,4 @@ * @link https://matomo.org * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later */ -module.exports = {"General_AboutPiwikX":"Informazioni\u0020su\u0020Matomo\u0020\u0025s","General_Action":"Azione","General_AllWebsitesDashboard":"Le\u0020dashboard\u0020di\u0020tutti\u0020i\u0020siti","General_Cancel":"Annulla","General_ChooseDate":"Scegli\u0020una\u0020data\u002c\u0020attualmente\u0020\u00e8\u0020selezionata\u003a\u0020\u0025s","General_ChooseLanguage":"Scegli\u0020la\u0020lingua","General_ChoosePeriod":"Scegli\u0020il\u0020periodo","General_Close":"Chiudi","General_ColumnNbVisits":"Visite","General_ColumnPageviews":"Visualizzazioni\u0020pagina","General_ColumnRevenue":"Ricavo","General_CurrentMonth":"Mese\u0020corrente","General_CurrentWeek":"Settimana\u0020corrente","General_CurrentYear":"Anno\u0020corrente","General_Date":"Data","General_DateRangeFrom":"Da","General_DateRangeTo":"A","General_Delete":"Cancella","General_Details":"Dettagli","General_Documentation":"Documentazione","General_Done":"Fatto","General_Download":"Download","General_Edit":"Modifica","General_Error":"Errore","General_ErrorRequest":"Ooops\u002e\u002e\u002e\u0020c\u0027\u00e8\u0020stato\u0020un\u0020problema\u0020durante\u0020la\u0020richiesta\u002e\u0020Forse\u0020il\u0020server\u0020ha\u0020avuto\u0020un\u0020problema\u0020temporaneo\u0020o\u0020forse\u0020hai\u0020richiesto\u0020un\u0020report\u0020con\u0020troppi\u0020dati\u002e\u0020Si\u0020prega\u0020di\u0020provare\u0020nuovamente\u002e\u0020Se\u0020questo\u0020errore\u0020si\u0020verifica\u0020ripetutamente\u002c\u0020\u0025scontatta\u0020il\u0020tuo\u0020amministratore\u0020di\u0020Matomo\u0025s\u0020per\u0020avere\u0020assistenza\u002e","General_Faq":"FAQ","General_Flatten":"Piano","General_ForExampleShort":"es\u002e","General_Forums":"Forum","General_FromReferrer":"da","General_GeneralSettings":"Impostazioni\u0020generali","General_GiveUsYourFeedback":"Suggerimenti\u003f","General_Goal":"Goal","General_Help":"Aiuto","General_InvalidResponse":"I\u0020dati\u0020ricevuti\u0020non\u0020sono\u0020validi\u002e","General_Language":"Lingua","General_LastDaysShort":"Ultimi\u0020\u0025s\u0020giorni","General_Live":"Dal\u0020vivo","General_LoadingData":"Sto\u0020caricando\u0020i\u0020dati\u002e\u002e\u002e","General_Metric":"Metrica","General_More":"Di\u0020pi\u00f9","General_NewVisitor":"Nuovo\u0020visitatore","General_Next":"Successivo","General_No":"No","General_NotValid":"\u0025s\u0020non\u0020\u00e8\u0020valido","General_NumberOfVisits":"Numero\u0020di\u0020visite","General_NVisits":"\u0025s\u0020visite","General_Ok":"Ok","General_Others":"Altri","General_Outlink":"Outlink\u0020\u0028link\u0020esterno\u0029","General_Password":"Password","General_Period":"Periodo","General_PiwikXIsAvailablePleaseNotifyPiwikAdmin":"\u0025s\u0020\u00e8\u0020disponibile\u002e\u0020Avvisa\u0020l\u0027\u0025samministratore\u0020di\u0020Matomo\u0025s\u002e","General_PleaseUpdatePiwik":"Per\u0020favore\u002c\u0020aggiorna\u0020il\u0020tuo\u0020Matomo","General_Plugins":"Plugin","General_Previous":"Precedente","General_PreviousDaysShort":"\u0025s\u0020giorni\u0020precedenti","General_Refresh":"Aggiorna","General_Remove":"Rimuovi","General_Reports":"Report","General_RequestTimedOut":"Una\u0020richiesta\u0020di\u0020dati\u0020a\u0020\u0025s\u0020\u00e8\u0020scaduta\u002e\u0020Si\u0020prega\u0020di\u0020riprovare\u002e","General_Required":"\u0025s\u0020richiesto","General_Save":"Salva","General_Settings":"Impostazioni","General_Subtotal":"Subtotale","General_Unknown":"Sconosciuto","General_Username":"Nome\u0020utente","General_Value":"Valore","General_VisitConvertedNGoals":"Visite\u0020convertite\u0020\u0025s\u0020in\u0020Goal","General_Visitor":"Visitatore","General_VisitorIP":"IP\u0020visitatore","General_Visitors":"Visitatori","General_VisitorSettings":"Impostazioni\u0020visitatori","General_VisitType":"Tipo\u0020di\u0020visita","General_Website":"Sito\u003a","General_Yes":"S\u00ec","General_YourChangesHaveBeenSaved":"Le\u0020impostazioni\u0020sono\u0020state\u0020salvate\u002e","Mobile_AboutPiwikMobile":"Informazioni\u0020su\u0020Matomo\u0020Mobile","Mobile_AccessUrlLabel":"Url\u0020di\u0020accesso\u0020a\u0020Matomo","Mobile_Account":"Account","Mobile_Accounts":"Accounts","Mobile_AddAccount":"Aggiungi\u0020account","Mobile_AddPiwikDemo":"Aggiungi\u0020Demo","Mobile_Advanced":"Avanzate","Mobile_AnonymousAccess":"Accesso\u0020anonimo","Mobile_AnonymousTracking":"Tracciamento\u0020anonimo","Mobile_AskForAnonymousTrackingPermission":"Se\u0020abilitato\u002c\u0020Matomo\u0020Mobile\u0020invier\u00e0\u0020dati\u0020di\u0020utilizzo\u0020anonimi\u0020a\u0020matomo\u002eorg\u002e\u0020L\u0027intento\u0020\u00e8\u0020quello\u0020di\u0020utilizzare\u0020questi\u0020dati\u0020per\u0020aiutare\u0020gli\u0020sviluppatori\u0020di\u0020Matomo\u0020Mobile\u0020a\u0020capire\u0020meglio\u0020come\u0020viene\u0020utilizzata\u0020l\u0027app\u002e\u0020Le\u0020informazioni\u0020inviate\u0020sono\u003a\u0020men\u00f9\u0020e\u0020impostazioni\u0020cliccati\u002c\u0020nome\u0020e\u0020versione\u0020del\u0020sistema\u0020operativo\u002c\u0020eventuali\u0020errori\u0020visualizzati\u0020in\u0020Matomo\u0020Mobile\u002e\u0020NON\u0020tracciamo\u0020nessuno\u0020dei\u0020tuoi\u0020dati\u0020di\u0020analisi\u002e\u0020Questi\u0020dati\u0020anonimi\u0020non\u0020saranno\u0020mai\u0020resi\u0020pubblici\u002e\u0020Puoi\u0020disabilitare\u002fabilitare\u0020il\u0020tracciamento\u0020anonimo\u0020nelle\u0020Impostazioni\u0020in\u0020qualsiasi\u0020momento\u002e","Mobile_ChooseHttpTimeout":"Scegliere\u0020il\u0020valore\u0020di\u0020timeout\u0020HTTP","Mobile_ChooseMetric":"Scegli\u0020metrica","Mobile_ChooseReport":"Scegli\u0020report","Mobile_ChooseSegment":"Scegli\u0020segmento","Mobile_ConfirmRemoveAccount":"Vuoi\u0020rimuovere\u0020questo\u0020account\u003f","Mobile_DefaultReportDate":"Data\u0020report","Mobile_EmailUs":"Scrivici","Mobile_EnableGraphsLabel":"Mostra\u0020grafici","Mobile_EvolutionGraph":"Grafico\u0020Storico","Mobile_HelpUsToImprovePiwikMobile":"Vuoi\u0020abilitare\u0020il\u0020tracciamento\u0020anonimo\u0020in\u0020Matomo\u0020Mobile\u003f","Mobile_HowtoDeleteAnAccount":"Premi\u0020a\u0020lungo\u0020per\u0020rimuovere\u0020un\u0020account","Mobile_HowtoDeleteAnAccountOniOS":"Far\u0020scorrere\u0020da\u0020sinistra\u0020a\u0020destra\u0020per\u0020eliminare\u0020un\u0020account","Mobile_HowtoLoginAnonymous":"Lascia\u0020vuoti\u0020username\u0020e\u0020password\u0020per\u0020un\u0020login\u0020anonimo","Mobile_HttpIsNotSecureWarning":"Il\u0020tuo\u0020token\u0020di\u0020autorizzazione\u0020Matomo\u0020\u0028token\u005fauth\u0029\u0020viene\u0020inviato\u0020in\u0020chiaro\u0020se\u0020si\u0020utilizza\u0020\u0027HTTP\u0027\u002e\u0020Per\u0020questo\u0020motivo\u0020si\u0020consiglia\u0020HTTPS\u0020per\u0020il\u0020trasporto\u0020sicuro\u0020dei\u0020dati\u0020su\u0020Internet\u002e\u0020Vuoi\u0020continuare\u003f","Mobile_HttpTimeout":"Timeout\u0020HTTP","Mobile_IncompatiblePiwikVersion":"La\u0020versione\u0020di\u0020Matomo\u0020che\u0020stai\u0020utilizzando\u0020\u00e8\u0020incompatibile\u0020con\u0020Matomo\u0020Mobile\u00202\u002e\u0020Aggiorna\u0020la\u0020tua\u0020installazione\u0020e\u0020prova\u0020ancora\u0020o\u0020installa\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_LoadingReport":"Sto\u0020caricando\u0020\u0025s","Mobile_LoginCredentials":"Credenziali","Mobile_LoginToPiwikToChangeSettings":"Accedi\u0020al\u0020server\u0020di\u0020Matomo\u0020per\u0020creare\u0020e\u0020aggiornare\u0020i\u0020siti\u0020web\u002c\u0020gli\u0020utenti\u0020o\u0020per\u0020modificare\u0020le\u0020Impostazioni\u0020Generali\u0020come\u0020\u0022Report\u0020da\u0020caricare\u0020di\u0020default\u0022\u002e","Mobile_LoginUseHttps":"Usa\u0020https","Mobile_MultiChartLabel":"Mostra\u0020sparklines","Mobile_NavigationBack":"Indietro","Mobile_NetworkError":"Errore\u0020di\u0020Rete","Mobile_NetworkErrorWithStatusCode":"C\u0027\u00e8\u0020stato\u0020un\u0020errore\u0020\u0022\u0025s\u0022\u002e\u0020La\u0020richiesta\u0020ha\u0020restituito\u0020lo\u0020status\u0020\u0022\u0025s\u0022\u002e\u0020L\u0027URL\u0020era\u0020\u0022\u0025s\u0022\u002e\u0020Si\u0020prega\u0020di\u0020controllare\u0020l\u0027URL\u0020digitata\u0020e\u0020i\u0020log\u0020di\u0020errore\u0020su\u0020questo\u0020server\u0020per\u0020maggiori\u0020informazioni\u0020sull\u0027errore\u0020e\u0020su\u0020come\u0020risolverlo\u002e","Mobile_NetworkErrorWithStatusCodeShort":"Errore\u0020di\u0020Rete\u0020\u0025s","Mobile_NetworkNotReachable":"Rete\u0020non\u0020raggiungibile","Mobile_NoAccountIsSelected":"Devi\u0020scegliere\u0020un\u0020account\u002e\u0020Aggiungi\u0020un\u0020nuovo\u0020account\u0020se\u0020non\u0020ne\u0020hai\u0020configurato\u0020uno\u002e","Mobile_NoDataShort":"Nessun\u0020Dato","Mobile_NoPiwikAccount":"Non\u0020hai\u0020un\u0020account\u0020Matomo\u003f","Mobile_NoReportsShort":"Nessun\u0020Report","Mobile_NoVisitorFound":"Nessun\u0020visitatore","Mobile_NoVisitorsShort":"Nessun\u0020Visitatore","Mobile_NoWebsiteFound":"Nessun\u0020sito\u0020web","Mobile_NoWebsitesShort":"Nessun\u0020Sito\u0020Web","Mobile_PullDownToRefresh":"Tira\u0020gi\u00f9\u0020per\u0020aggiornare\u002e\u002e\u002e","Mobile_PossibleSslError":"Possibile\u0020errore\u0020nel\u0020certificato\u0020SSL","Mobile_PossibleSslErrorExplanation":"Si\u0020\u00e8\u0020verificato\u0020un\u0020errore\u0020che\u0020potrebbe\u0020essere\u0020causato\u0020da\u0020un\u0020certificato\u0020non\u0020valido\u0020o\u0020autofirmato\u003a\u0020\u0022\u0025s\u0022\u002e\u0020Il\u0020login\u0020potrebbe\u0020funzionare\u0020meglio\u0020ignorando\u0020la\u0020convalida\u0020SSL\u0020ma\u0020ci\u00f2\u0020\u00e8\u0020meno\u0020sicuro\u002e\u0020Puoi\u0020cambiare\u0020la\u0020convalida\u0020SSL\u0020in\u0020ogni\u0020momento\u0020nelle\u0020impostazioni\u002e","Mobile_IgnoreSslError":"Ignora\u0020errore\u0020SSL","Mobile_RatingDontRemindMe":"Non\u0020ricordarmelo","Mobile_RatingNotNow":"Non\u0020ora","Mobile_RatingNow":"OK\u002c\u0020do\u0020un\u0020voto\u0020ora","Mobile_RatingPleaseRateUs":"Matomo\u0020Mobile\u0020App\u0020\u00e8\u0020un\u0020software\u0020gratuito\u002c\u0020apprezzeremmo\u0020molto\u0020se\u0020tu\u0020dedicassi\u00201\u0020minuto\u0020per\u0020valutare\u0020l\u0027app\u0020in\u0020\u0025s\u002e\u0020Se\u0020hai\u0020suggerimenti\u0020per\u0020nuove\u0020funzioni\u0020o\u0020segnalazioni\u0020di\u0020bug\u002c\u0020si\u0020prega\u0020di\u0020contattare\u0020\u0025s\u002e","Mobile_ReleaseToRefresh":"Rilascia\u0020per\u0020aggiornare\u002e\u002e\u002e","Mobile_Reloading":"Ricaricando\u002e\u002e\u002e","Mobile_RequestTimedOutShort":"Errore\u0020di\u0020Timeout\u0020Rete","Mobile_RestrictedCompatibility":"Compatibilit\u00e0\u0020limitata","Mobile_RestrictedCompatibilityExplanation":"La\u0020versione\u0020\u0025s\u0020di\u0020Matomo\u0020che\u0020stai\u0020utilizzando\u0020non\u0020\u00e8\u0020completamente\u0020supportata\u0020da\u0020Matomo\u0020Mobile\u00202\u002e\u0020Potresti\u0020riscontrare\u0020alcuni\u0020bugs\u002e\u0020Raccomandiamo\u0020di\u0020aggiornare\u0020Matomo\u0020all\u0027ultima\u0020versione\u0020o\u0020di\u0020utilizzare\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_SaveSuccessError":"L\u0027URL\u0020di\u0020Matomo\u0020o\u0020la\u0020combinazione\u0020nome\u0020utente\u0020e\u0020password\u0020sono\u0020sbagliati\u002c","Mobile_SearchWebsite":"Cerca\u0020siti","Mobile_ShowAll":"Mostra\u0020tutto","Mobile_ShowLess":"Mostra\u0020meno","Mobile_StaticGraph":"Grafico\u0020Globale","Mobile_TopVisitedWebsites":"Primi\u0020siti\u0020visitati","Mobile_TryIt":"Provalo\u0021","Mobile_UseSearchBarHint":"Solo\u0020i\u0020primi\u0020\u0025s\u0020siti\u0020sono\u0020mostrati\u0020qui\u002e\u0020Usa\u0020la\u0020barra\u0020di\u0020ricerca\u0020per\u0020accedere\u0020ai\u0020tuoi\u0020altri\u0020siti\u002e","Mobile_VerifyAccount":"Verifica\u0020Account","Mobile_ValidateSslCertificate":"Valida\u0020Certificato\u0020SSL","Mobile_VerifyLoginData":"Verifica\u0020username\u0020e\u0020password\u002e","Mobile_YouAreOffline":"Spiacente\u002c\u0020sei\u0020al\u0020momento\u0020offline","CorePluginsAdmin_Activate":"Attiva","CorePluginsAdmin_Deactivate":"Disattiva","CoreHome_PeriodRange":"Intervallo","CoreHome_TableNoData":"Nessun\u0020dato\u0020per\u0020questa\u0020tabella\u002e","CoreHome_ThereIsNoDataForThisReport":"Non\u0020c\u0027\u00e8\u0020nessun\u0020dato\u0020in\u0020questo\u0020report\u002e","Actions_SubmenuSitesearch":"Ricerca\u0020sul\u0020Sito","DevicesDetection_ColumnBrowser":"Browser","Goals_AbandonedCart":"Ordini\u0020abbandonati","Goals_Ecommerce":"Ecommerce","Goals_EcommerceOrder":"Ordini\u0020Ecommerce","SEO_Rank":"Rank","Events_Event":"Evento","UserCountry_City":"Citt\u00e0","UserCountry_Country":"Paese","UserCountry_Region":"Regione","VisitsSummary_NbActionsDescription":"\u0025s\u0020azioni","Feedback_DoYouHaveBugReportOrFeatureRequest":"Hai\u0020un\u0020bug\u0020da\u0020segnalare\u0020o\u0020una\u0020richiesta\u0020di\u0020funzionalit\u00e0\u003f","Feedback_ThankYou":"Grazie\u0020per\u0020il\u0020tuo\u0020aiuto\u0020per\u0020rendere\u0020Matomo\u0020migliore\u0021","TwoFactorAuth_Verify":"Verifica","UsersManager_ManageAccess":"Amministra\u0020l\u0027accesso","UsersManager_PrivView":"Vista","SitesManager_ExceptionInvalidUrl":"L\u0027indirizzo\u0020\u0022\u0025s\u0022\u0020non\u0020\u00e8\u0020un\u0020URL\u0020valido\u002e","SitesManager_MenuManage":"Amministrazione","SitesManager_NotFound":"Nessun\u0020sito\u0020trovato\u0020per","CoreUpdater_UpdateTitle":"Aggiorna","UserCountryMap_RealTimeMap":"Mappa\u0020Real\u0020Time","Live_LastHours":"Ultime\u0020\u0025s\u0020ore","Live_LastMinutes":"Ultimi\u0020\u0025s\u0020minuti","Live_VisitorLog":"Log\u0020Visite","Live_VisitorsInRealTime":"Visite\u0020in\u0020Tempo\u0020Reale","CustomVariables_CustomVariables":"Variabile\u0020Personalizzata","SegmentEditor_DefaultAllVisits":"Tutte\u0020le\u0020visite","Resolution_ColumnResolution":"Risoluzione","Intl_PeriodDay":"giorno","Intl_PeriodMonth":"mese","Intl_PeriodWeek":"settimana","Intl_PeriodYear":"anno","Intl_Today":"Oggi","Intl_Yesterday":"Ieri"}; +module.exports = {"General_AboutPiwikX":"Informazioni\u0020su\u0020Matomo\u0020\u0025s","General_Action":"Azione","General_AllWebsitesDashboard":"Le\u0020dashboard\u0020di\u0020tutti\u0020i\u0020siti","General_Cancel":"Annulla","General_ChooseDate":"Scegli una data","General_ChooseLanguage":"Scegli\u0020la\u0020lingua","General_ChoosePeriod":"Scegli\u0020il\u0020periodo","General_Close":"Chiudi","General_ColumnNbVisits":"Visite","General_ColumnPageviews":"Visualizzazioni\u0020pagina","General_ColumnRevenue":"Ricavo","General_CurrentMonth":"Mese\u0020corrente","General_CurrentWeek":"Settimana\u0020corrente","General_CurrentYear":"Anno\u0020corrente","General_Date":"Data","General_DateRangeFrom":"Da","General_DateRangeTo":"A","General_Delete":"Cancella","General_Details":"Dettagli","General_Documentation":"Documentazione","General_Done":"Fatto","General_Download":"Download","General_Edit":"Modifica","General_Error":"Errore","General_ErrorRequest":"Ooops\u002e\u002e\u002e\u0020c\u0027\u00e8\u0020stato\u0020un\u0020problema\u0020durante\u0020la\u0020richiesta\u002e\u0020Forse\u0020il\u0020server\u0020ha\u0020avuto\u0020un\u0020problema\u0020temporaneo\u0020o\u0020forse\u0020hai\u0020richiesto\u0020un\u0020report\u0020con\u0020troppi\u0020dati\u002e\u0020Si\u0020prega\u0020di\u0020provare\u0020nuovamente\u002e\u0020Se\u0020questo\u0020errore\u0020si\u0020verifica\u0020ripetutamente\u002c\u0020\u0025scontatta\u0020il\u0020tuo\u0020amministratore\u0020di\u0020Matomo\u0025s\u0020per\u0020avere\u0020assistenza\u002e","General_Faq":"FAQ","General_Flatten":"Piano","General_ForExampleShort":"es\u002e","General_Forums":"Forum","General_FromReferrer":"da","General_GeneralSettings":"Impostazioni\u0020generali","General_GiveUsYourFeedback":"Suggerimenti\u003f","General_Goal":"Goal","General_Help":"Aiuto","General_InvalidResponse":"I\u0020dati\u0020ricevuti\u0020non\u0020sono\u0020validi\u002e","General_Language":"Lingua","General_LastDaysShort":"Ultimi\u0020\u0025s\u0020giorni","General_Live":"Dal\u0020vivo","General_LoadingData":"Sto\u0020caricando\u0020i\u0020dati\u002e\u002e\u002e","General_Metric":"Metrica","General_More":"Di\u0020pi\u00f9","General_NewVisitor":"Nuovo\u0020visitatore","General_Next":"Successivo","General_No":"No","General_NotValid":"\u0025s\u0020non\u0020\u00e8\u0020valido","General_NumberOfVisits":"Numero\u0020di\u0020visite","General_NVisits":"\u0025s\u0020visite","General_Ok":"Ok","General_Others":"Altri","General_Outlink":"Outlink\u0020\u0028link\u0020esterno\u0029","General_Password":"Password","General_Period":"Periodo","General_PiwikXIsAvailablePleaseNotifyPiwikAdmin":"\u0025s\u0020\u00e8\u0020disponibile\u002e\u0020Avvisa\u0020l\u0027\u0025samministratore\u0020di\u0020Matomo\u0025s\u002e","General_PleaseUpdatePiwik":"Per\u0020favore\u002c\u0020aggiorna\u0020il\u0020tuo\u0020Matomo","General_Plugins":"Plugin","General_Previous":"Precedente","General_PreviousDaysShort":"\u0025s\u0020giorni\u0020precedenti","General_Refresh":"Aggiorna","General_Remove":"Rimuovi","General_Reports":"Report","General_RequestTimedOut":"Una\u0020richiesta\u0020di\u0020dati\u0020a\u0020\u0025s\u0020\u00e8\u0020scaduta\u002e\u0020Si\u0020prega\u0020di\u0020riprovare\u002e","General_Required":"\u0025s\u0020richiesto","General_Save":"Salva","General_Settings":"Impostazioni","General_Subtotal":"Subtotale","General_Unknown":"Sconosciuto","General_Username":"Nome\u0020utente","General_Value":"Valore","General_VisitConvertedNGoals":"Visite\u0020convertite\u0020\u0025s\u0020in\u0020Goal","General_Visitor":"Visitatore","General_VisitorIP":"IP\u0020visitatore","General_Visitors":"Visitatori","General_VisitorSettings":"Impostazioni\u0020visitatori","General_VisitType":"Tipo\u0020di\u0020visita","General_Website":"Sito\u003a","General_Yes":"S\u00ec","General_YourChangesHaveBeenSaved":"Le\u0020impostazioni\u0020sono\u0020state\u0020salvate\u002e","Mobile_AboutPiwikMobile":"Informazioni\u0020su\u0020Matomo\u0020Mobile","Mobile_AccessUrlLabel":"Url\u0020di\u0020accesso\u0020a\u0020Matomo","Mobile_Account":"Account","Mobile_Accounts":"Accounts","Mobile_AddAccount":"Aggiungi\u0020account","Mobile_AddPiwikDemo":"Aggiungi\u0020Demo","Mobile_Advanced":"Avanzate","Mobile_AnonymousAccess":"Accesso\u0020anonimo","Mobile_AnonymousTracking":"Tracciamento\u0020anonimo","Mobile_AskForAnonymousTrackingPermission":"Se\u0020abilitato\u002c\u0020Matomo\u0020Mobile\u0020invier\u00e0\u0020dati\u0020di\u0020utilizzo\u0020anonimi\u0020a\u0020matomo\u002eorg\u002e\u0020L\u0027intento\u0020\u00e8\u0020quello\u0020di\u0020utilizzare\u0020questi\u0020dati\u0020per\u0020aiutare\u0020gli\u0020sviluppatori\u0020di\u0020Matomo\u0020Mobile\u0020a\u0020capire\u0020meglio\u0020come\u0020viene\u0020utilizzata\u0020l\u0027app\u002e\u0020Le\u0020informazioni\u0020inviate\u0020sono\u003a\u0020men\u00f9\u0020e\u0020impostazioni\u0020cliccati\u002c\u0020nome\u0020e\u0020versione\u0020del\u0020sistema\u0020operativo\u002c\u0020eventuali\u0020errori\u0020visualizzati\u0020in\u0020Matomo\u0020Mobile\u002e\u0020NON\u0020tracciamo\u0020nessuno\u0020dei\u0020tuoi\u0020dati\u0020di\u0020analisi\u002e\u0020Questi\u0020dati\u0020anonimi\u0020non\u0020saranno\u0020mai\u0020resi\u0020pubblici\u002e\u0020Puoi\u0020disabilitare\u002fabilitare\u0020il\u0020tracciamento\u0020anonimo\u0020nelle\u0020Impostazioni\u0020in\u0020qualsiasi\u0020momento\u002e","Mobile_ChooseHttpTimeout":"Scegliere\u0020il\u0020valore\u0020di\u0020timeout\u0020HTTP","Mobile_ChooseMetric":"Scegli\u0020metrica","Mobile_ChooseReport":"Scegli\u0020report","Mobile_ChooseSegment":"Scegli\u0020segmento","Mobile_ConfirmRemoveAccount":"Vuoi\u0020rimuovere\u0020questo\u0020account\u003f","Mobile_DefaultReportDate":"Data\u0020report","Mobile_EmailUs":"Scrivici","Mobile_EnableGraphsLabel":"Mostra\u0020grafici","Mobile_EvolutionGraph":"Grafico\u0020Storico","Mobile_HelpUsToImprovePiwikMobile":"Vuoi\u0020abilitare\u0020il\u0020tracciamento\u0020anonimo\u0020in\u0020Matomo\u0020Mobile\u003f","Mobile_HowtoDeleteAnAccount":"Premi\u0020a\u0020lungo\u0020per\u0020rimuovere\u0020un\u0020account","Mobile_HowtoDeleteAnAccountOniOS":"Far\u0020scorrere\u0020da\u0020sinistra\u0020a\u0020destra\u0020per\u0020eliminare\u0020un\u0020account","Mobile_HowtoLoginAnonymous":"Lascia\u0020vuoti\u0020username\u0020e\u0020password\u0020per\u0020un\u0020login\u0020anonimo","Mobile_HttpIsNotSecureWarning":"Il\u0020tuo\u0020token\u0020di\u0020autorizzazione\u0020Matomo\u0020\u0028token\u005fauth\u0029\u0020viene\u0020inviato\u0020in\u0020chiaro\u0020se\u0020si\u0020utilizza\u0020\u0027HTTP\u0027\u002e\u0020Per\u0020questo\u0020motivo\u0020si\u0020consiglia\u0020HTTPS\u0020per\u0020il\u0020trasporto\u0020sicuro\u0020dei\u0020dati\u0020su\u0020Internet\u002e\u0020Vuoi\u0020continuare\u003f","Mobile_HttpTimeout":"Timeout\u0020HTTP","Mobile_IncompatiblePiwikVersion":"La\u0020versione\u0020di\u0020Matomo\u0020che\u0020stai\u0020utilizzando\u0020\u00e8\u0020incompatibile\u0020con\u0020Matomo\u0020Mobile\u00202\u002e\u0020Aggiorna\u0020la\u0020tua\u0020installazione\u0020e\u0020prova\u0020ancora\u0020o\u0020installa\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_LoadingReport":"Sto\u0020caricando\u0020\u0025s","Mobile_LoginCredentials":"Credenziali","Mobile_LoginToPiwikToChangeSettings":"Accedi\u0020al\u0020server\u0020di\u0020Matomo\u0020per\u0020creare\u0020e\u0020aggiornare\u0020i\u0020siti\u0020web\u002c\u0020gli\u0020utenti\u0020o\u0020per\u0020modificare\u0020le\u0020Impostazioni\u0020Generali\u0020come\u0020\u0022Report\u0020da\u0020caricare\u0020di\u0020default\u0022\u002e","Mobile_LoginUseHttps":"Usa\u0020https","Mobile_MultiChartLabel":"Mostra\u0020sparklines","Mobile_NavigationBack":"Indietro","Mobile_NetworkError":"Errore\u0020di\u0020Rete","Mobile_NetworkErrorWithStatusCode":"C\u0027\u00e8\u0020stato\u0020un\u0020errore\u0020\u0022\u0025s\u0022\u002e\u0020La\u0020richiesta\u0020ha\u0020restituito\u0020lo\u0020status\u0020\u0022\u0025s\u0022\u002e\u0020L\u0027URL\u0020era\u0020\u0022\u0025s\u0022\u002e\u0020Si\u0020prega\u0020di\u0020controllare\u0020l\u0027URL\u0020digitata\u0020e\u0020i\u0020log\u0020di\u0020errore\u0020su\u0020questo\u0020server\u0020per\u0020maggiori\u0020informazioni\u0020sull\u0027errore\u0020e\u0020su\u0020come\u0020risolverlo\u002e","Mobile_NetworkErrorWithStatusCodeShort":"Errore\u0020di\u0020Rete\u0020\u0025s","Mobile_NetworkNotReachable":"Rete\u0020non\u0020raggiungibile","Mobile_NoAccountIsSelected":"Devi\u0020scegliere\u0020un\u0020account\u002e\u0020Aggiungi\u0020un\u0020nuovo\u0020account\u0020se\u0020non\u0020ne\u0020hai\u0020configurato\u0020uno\u002e","Mobile_NoDataShort":"Nessun\u0020Dato","Mobile_NoPiwikAccount":"Non\u0020hai\u0020un\u0020account\u0020Matomo\u003f","Mobile_NoReportsShort":"Nessun\u0020Report","Mobile_NoVisitorFound":"Nessun\u0020visitatore","Mobile_NoVisitorsShort":"Nessun\u0020Visitatore","Mobile_NoWebsiteFound":"Nessun\u0020sito\u0020web","Mobile_NoWebsitesShort":"Nessun\u0020Sito\u0020Web","Mobile_PullDownToRefresh":"Tira\u0020gi\u00f9\u0020per\u0020aggiornare\u002e\u002e\u002e","Mobile_PossibleSslError":"Possibile\u0020errore\u0020nel\u0020certificato\u0020SSL","Mobile_PossibleSslErrorExplanation":"Si\u0020\u00e8\u0020verificato\u0020un\u0020errore\u0020che\u0020potrebbe\u0020essere\u0020causato\u0020da\u0020un\u0020certificato\u0020non\u0020valido\u0020o\u0020autofirmato\u003a\u0020\u0022\u0025s\u0022\u002e\u0020Il\u0020login\u0020potrebbe\u0020funzionare\u0020meglio\u0020ignorando\u0020la\u0020convalida\u0020SSL\u0020ma\u0020ci\u00f2\u0020\u00e8\u0020meno\u0020sicuro\u002e\u0020Puoi\u0020cambiare\u0020la\u0020convalida\u0020SSL\u0020in\u0020ogni\u0020momento\u0020nelle\u0020impostazioni\u002e","Mobile_IgnoreSslError":"Ignora\u0020errore\u0020SSL","Mobile_RatingDontRemindMe":"Non\u0020ricordarmelo","Mobile_RatingNotNow":"Non\u0020ora","Mobile_RatingNow":"OK\u002c\u0020do\u0020un\u0020voto\u0020ora","Mobile_RatingPleaseRateUs":"Matomo\u0020Mobile\u0020App\u0020\u00e8\u0020un\u0020software\u0020gratuito\u002c\u0020apprezzeremmo\u0020molto\u0020se\u0020tu\u0020dedicassi\u00201\u0020minuto\u0020per\u0020valutare\u0020l\u0027app\u0020in\u0020\u0025s\u002e\u0020Se\u0020hai\u0020suggerimenti\u0020per\u0020nuove\u0020funzioni\u0020o\u0020segnalazioni\u0020di\u0020bug\u002c\u0020si\u0020prega\u0020di\u0020contattare\u0020\u0025s\u002e","Mobile_ReleaseToRefresh":"Rilascia\u0020per\u0020aggiornare\u002e\u002e\u002e","Mobile_Reloading":"Ricaricando\u002e\u002e\u002e","Mobile_RequestTimedOutShort":"Errore\u0020di\u0020Timeout\u0020Rete","Mobile_RestrictedCompatibility":"Compatibilit\u00e0\u0020limitata","Mobile_RestrictedCompatibilityExplanation":"La\u0020versione\u0020\u0025s\u0020di\u0020Matomo\u0020che\u0020stai\u0020utilizzando\u0020non\u0020\u00e8\u0020completamente\u0020supportata\u0020da\u0020Matomo\u0020Mobile\u00202\u002e\u0020Potresti\u0020riscontrare\u0020alcuni\u0020bugs\u002e\u0020Raccomandiamo\u0020di\u0020aggiornare\u0020Matomo\u0020all\u0027ultima\u0020versione\u0020o\u0020di\u0020utilizzare\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_SaveSuccessError":"L\u0027URL\u0020di\u0020Matomo\u0020o\u0020la\u0020combinazione\u0020nome\u0020utente\u0020e\u0020password\u0020sono\u0020sbagliati\u002c","Mobile_SearchWebsite":"Cerca\u0020siti","Mobile_ShowAll":"Mostra\u0020tutto","Mobile_ShowLess":"Mostra\u0020meno","Mobile_StaticGraph":"Grafico\u0020Globale","Mobile_TopVisitedWebsites":"Primi\u0020siti\u0020visitati","Mobile_TryIt":"Provalo\u0021","Mobile_UseSearchBarHint":"Solo\u0020i\u0020primi\u0020\u0025s\u0020siti\u0020sono\u0020mostrati\u0020qui\u002e\u0020Usa\u0020la\u0020barra\u0020di\u0020ricerca\u0020per\u0020accedere\u0020ai\u0020tuoi\u0020altri\u0020siti\u002e","Mobile_VerifyAccount":"Verifica\u0020Account","Mobile_ValidateSslCertificate":"Valida\u0020Certificato\u0020SSL","Mobile_VerifyLoginData":"Verifica\u0020username\u0020e\u0020password\u002e","Mobile_YouAreOffline":"Spiacente\u002c\u0020sei\u0020al\u0020momento\u0020offline","CorePluginsAdmin_Activate":"Attiva","CorePluginsAdmin_Deactivate":"Disattiva","CoreHome_PeriodRange":"Intervallo","CoreHome_TableNoData":"Nessun\u0020dato\u0020per\u0020questa\u0020tabella\u002e","CoreHome_ThereIsNoDataForThisReport":"Non\u0020c\u0027\u00e8\u0020nessun\u0020dato\u0020in\u0020questo\u0020report\u002e","Actions_SubmenuSitesearch":"Ricerca\u0020sul\u0020Sito","DevicesDetection_ColumnBrowser":"Browser","Goals_AbandonedCart":"Ordini\u0020abbandonati","Goals_Ecommerce":"Ecommerce","Goals_EcommerceOrder":"Ordini\u0020Ecommerce","SEO_Rank":"Rank","Events_Event":"Evento","UserCountry_City":"Citt\u00e0","UserCountry_Country":"Paese","UserCountry_Region":"Regione","VisitsSummary_NbActionsDescription":"\u0025s\u0020azioni","Feedback_DoYouHaveBugReportOrFeatureRequest":"Hai\u0020un\u0020bug\u0020da\u0020segnalare\u0020o\u0020una\u0020richiesta\u0020di\u0020funzionalit\u00e0\u003f","Feedback_ThankYou":"Grazie\u0020per\u0020il\u0020tuo\u0020aiuto\u0020per\u0020rendere\u0020Matomo\u0020migliore\u0021","TwoFactorAuth_Verify":"Verifica","UsersManager_ManageAccess":"Amministra\u0020l\u0027accesso","UsersManager_PrivView":"Vista","SitesManager_ExceptionInvalidUrl":"L\u0027indirizzo\u0020\u0022\u0025s\u0022\u0020non\u0020\u00e8\u0020un\u0020URL\u0020valido\u002e","SitesManager_MenuManage":"Amministrazione","SitesManager_NotFound":"Nessun\u0020sito\u0020trovato\u0020per","CoreUpdater_UpdateTitle":"Aggiorna","UserCountryMap_RealTimeMap":"Mappa\u0020Real\u0020Time","Live_LastHours":"Ultime\u0020\u0025s\u0020ore","Live_LastMinutes":"Ultimi\u0020\u0025s\u0020minuti","Live_VisitorLog":"Log\u0020Visite","Live_VisitorsInRealTime":"Visite\u0020in\u0020Tempo\u0020Reale","CustomVariables_CustomVariables":"Variabile\u0020Personalizzata","SegmentEditor_DefaultAllVisits":"Tutte\u0020le\u0020visite","Resolution_ColumnResolution":"Risoluzione","Intl_PeriodDay":"giorno","Intl_PeriodMonth":"mese","Intl_PeriodWeek":"settimana","Intl_PeriodYear":"anno","Intl_Today":"Oggi","Intl_Yesterday":"Ieri"}; diff --git a/app/lib/i18n/nl.js b/app/lib/i18n/nl.js index e011e984..20527862 100644 --- a/app/lib/i18n/nl.js +++ b/app/lib/i18n/nl.js @@ -4,4 +4,4 @@ * @link https://matomo.org * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later */ -module.exports = {"General_AboutPiwikX":"Over\u0020Matomo\u0020\u0025s","General_Action":"Actie","General_AllWebsitesDashboard":"Dashboard\u0020van\u0020alle\u0020websites","General_Cancel":"Annuleren","General_ChooseDate":"Kies\u0020datum\u002c\u0020momenteel\u0020geselecteerde\u0020datum\u0020is\u003a\u0020\u0025s","General_ChooseLanguage":"Kies\u0020taal","General_ChoosePeriod":"Kies\u0020periode","General_Close":"Sluiten","General_ColumnNbVisits":"Bezoeken","General_ColumnPageviews":"Paginaweergaven","General_ColumnRevenue":"Inkomsten","General_CurrentMonth":"Huidige\u0020maand","General_CurrentWeek":"Huidige\u0020week","General_CurrentYear":"Huidig\u0020jaar","General_Date":"Datum","General_DateRangeFrom":"Van","General_DateRangeTo":"Tot","General_Delete":"Verwijderen","General_Details":"Details","General_Documentation":"Documentatie","General_Done":"Klaar","General_Download":"Downloaden","General_Edit":"Bewerken","General_Error":"Fout","General_ErrorRequest":"Oeps\u002e\u002e\u002e\u0020er\u0020ontstond\u0020een\u0020probleem\u0020tijdens\u0020het\u0020verzoek\u002e\u0020Misschien\u0020had\u0020de\u0020server\u0020een\u0020tijdelijk\u0020probleem\u002c\u0020of\u0020vroeg\u0020je\u0020een\u0020rapport\u0020op\u0020met\u0020teveel\u0020data\u002e\u0020Probeer\u0020het\u0020opnieuw\u002e\u0020Als\u0020het\u0020probleem\u0020zich\u0020voor\u0020blijft\u0020doen\u002c\u0020neem\u0020dan\u0020\u0025scontact\u0020op\u0020met\u0020de\u0020Matomo\u002dbeheerder\u0025s\u002e","General_Faq":"Veelgestelde\u0020vragen","General_Flatten":"Plat\u0020maken","General_ForExampleShort":"bijv\u002e","General_Forums":"Forums","General_FromReferrer":"van","General_GeneralSettings":"Algemene\u0020instellingen","General_GiveUsYourFeedback":"Geef\u0020ons\u0020feedback\u0021","General_Goal":"Doelstelling","General_Help":"Help","General_InvalidResponse":"De\u0020ontvangen\u0020gegevens\u0020zijn\u0020ongeldig\u002e","General_Language":"Taal","General_LastDaysShort":"Laatste\u0020\u0025s\u0020dagen","General_Live":"Live","General_LoadingData":"Gegevens\u0020laden\u2026","General_Metric":"Statistiek","General_More":"Meer","General_NewVisitor":"Nieuwe\u0020bezoeker","General_Next":"Volgende","General_No":"Nee","General_NotValid":"\u0025s\u0020is\u0020niet\u0020geldig","General_NumberOfVisits":"Aantal\u0020bezoeken","General_NVisits":"\u0025s\u0020bezoeken","General_Ok":"Ok","General_Others":"Overige","General_Outlink":"Uitgaande\u0020link","General_Password":"Wachtwoord","General_Period":"Periode","General_PiwikXIsAvailablePleaseNotifyPiwikAdmin":"\u0025s\u0020is\u0020beschikbaar\u002e\u0020Breng\u0020de\u0020\u0025sMatomo\u002dbeheerder\u0025s\u0020op\u0020de\u0020hoogte\u002e","General_PleaseUpdatePiwik":"Update\u0020uw\u0020Matomo","General_Plugins":"Plugins","General_Previous":"Vorige","General_PreviousDaysShort":"Afgelopen\u0020\u0025s\u0020dagen","General_Refresh":"Vernieuwen","General_Remove":"Verwijderen","General_Reports":"Rapporten","General_RequestTimedOut":"Een\u0020data\u0020verzoek\u0020naar\u0020\u0025s\u0020is\u0020verlopen\u002e\u0020Probeer\u0020opnieuw\u002e","General_Required":"\u0025s\u0020vereist","General_Save":"Opslaan","General_Settings":"Instellingen","General_Subtotal":"Subtotaal","General_Unknown":"Onbekend","General_Username":"Gebruikersnaam","General_Value":"Waarde","General_VisitConvertedNGoals":"Bezoek\u0020heeft\u0020\u0025s\u0020doelen\u0020bereikt","General_Visitor":"Bezoeker","General_VisitorIP":"Bezoeker\u002dIP","General_Visitors":"Bezoekers","General_VisitorSettings":"Bezoekersinstellingen","General_VisitType":"Soort\u0020bezoek","General_Website":"Website","General_Yes":"Ja","General_YourChangesHaveBeenSaved":"Uw\u0020wijzigingen\u0020zijn\u0020opgeslagen\u002e","Mobile_AboutPiwikMobile":"Over\u0020Matomo\u0020Mobile","Mobile_AccessUrlLabel":"Matomo\u0020toegangs\u002durl","Mobile_Account":"Account","Mobile_Accounts":"Accounts","Mobile_AddAccount":"Account\u0020toevoegen","Mobile_AddPiwikDemo":"Matomo\u002ddemo\u0020toevoegen","Mobile_Advanced":"Geavanceerd","Mobile_AnonymousAccess":"Anonieme\u0020toegang","Mobile_AnonymousTracking":"Anonieme\u0020tracking","Mobile_AskForAnonymousTrackingPermission":"Als\u0020dit\u0020is\u0020ingeschakeld\u002c\u0020stuurt\u0020Matomo\u0020Mobile\u0020anonieme\u0020gebruiksgegevens\u0020naar\u0020matomo\u002eorg\u002e\u0020Met\u0020deze\u0020gegevens\u0020begrijpen\u0020Matomo\u0020Mobile\u002dontwikkelaars\u0020beter\u0020hoe\u0020de\u0020applicatie\u0020wordt\u0020gebruikt\u002e\u0020De\u0020gebruiksgegevens\u0020bevatten\u003a\u0020kliks\u0020in\u0020menu\u0027s\u0020en\u0020instellingen\u002c\u0020OS\u002dnaam\u0020en\u0020\u002dversie\u0020en\u0020elke\u0020fout\u0020die\u0020Matomo\u0020Mobile\u0020weergeeft\u002e\u0020We\u0020versturen\u0020GEEN\u0020van\u0020uw\u0020analytics\u0020gegevens\u002e\u0020De\u0020verzamelde\u0020anonieme\u0020gegevens\u0020maakt\u0020Matomo\u0020nooit\u0020openbaar\u002e\u0020U\u0020kunt\u0020het\u0020delen\u0020van\u0020deze\u0020anonieme\u0020gegevens\u0020op\u0020elk\u0020gewenst\u0020moment\u0020in\u002d\u0020of\u0020uitschakelen\u0020via\u0020de\u0020app\u002dinstellingen\u002e","Mobile_ChooseHttpTimeout":"Kies\u0020HTTP\u0020time\u002dout\u0020waarde","Mobile_ChooseMetric":"Kies\u0020statistiek","Mobile_ChooseReport":"Kies\u0020een\u0020rapport","Mobile_ChooseSegment":"Kies\u0020segment","Mobile_ConfirmRemoveAccount":"Wilt\u0020u\u0020dit\u0020account\u0020verwijderen\u003f","Mobile_DefaultReportDate":"Rapportdatum","Mobile_EmailUs":"E\u002dmail\u0020ons","Mobile_EnableGraphsLabel":"Grafieken\u0020tonen","Mobile_EvolutionGraph":"Historische\u0020grafiek","Mobile_HelpUsToImprovePiwikMobile":"Wilt\u0020u\u0020anonieme\u0020gebruikstracking\u0020in\u0020Matomo\u0020Mobile\u0020inschakelen\u003f","Mobile_HowtoDeleteAnAccount":"Lang\u0020drukken\u0020om\u0020een\u0020account\u0020te\u0020verwijderen\u002e","Mobile_HowtoDeleteAnAccountOniOS":"Van\u0020rechts\u0020naar\u0020links\u0020vegen\u0020om\u0020een\u0020account\u0020te\u0020verwijderen","Mobile_HowtoLoginAnonymous":"Laat\u0020gebruikersnaam\u0020en\u0020wachtwoord\u0020leeg\u0020voor\u0020anoniem\u0020inloggen\u002e","Mobile_HttpIsNotSecureWarning":"Uw\u0020Matomo\u002dautorisatietoken\u0020\u0028token\u005fauth\u0029\u0020wordt\u0020niet\u0020versleuteld\u0020verzonden\u0020als\u0020u\u0020HTTP\u0020gebruikt\u002e\u0020Om\u0020deze\u0020reden\u0020adviseren\u0020wij\u0020om\u0020HTTPS\u0020te\u0020gebruiken\u002c\u0020zodat\u0020gegevens\u0020versleuteld\u0020worden\u0020overgedragen\u0020via\u0020het\u0020internet\u002e\u0020Wilt\u0020u\u0020doorgaan\u003f","Mobile_HttpTimeout":"HTTP\u0020Timeout","Mobile_IncompatiblePiwikVersion":"De\u0020Matomo\u002dversie\u0020die\u0020u\u0020gebruikt\u0020is\u0020incompatibel\u0020met\u0020Matomo\u0020Mobile\u00202\u002e\u0020Update\u0020uw\u0020Matomo\u002dinstallatie\u0020en\u0020probeer\u0020het\u0020nogmaals\u0020of\u0020installeer\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_LoadingReport":"Bezig\u0020met\u0020laden\u0020van\u0020\u0025s","Mobile_LoginCredentials":"Inloggegevens","Mobile_LoginToPiwikToChangeSettings":"Log\u0020in\u0020op\u0020je\u0020Matomo\u002dserver\u0020om\u0020websites\u0020of\u0020gebruikers\u0020aan\u0020te\u0020maken\u0020of\u0020te\u0020wijzigen\u002c\u0020of\u0020om\u0020algemene\u0020instellingen\u0020te\u0020wijzigen\u002c\u0020zoals\u0020welk\u0020rapport\u0020er\u0020standaard\u0020geladen\u0020wordt\u002e","Mobile_LoginUseHttps":"Gebruik\u0020https","Mobile_MultiChartLabel":"Toon\u0020grafieklijnen","Mobile_NavigationBack":"Terug","Mobile_NetworkError":"Netwerkfout","Mobile_NetworkErrorWithStatusCode":"Er\u0020was\u0020een\u0020probleem\u0020\u0022\u0025s\u0022\u002e\u0020Het\u0020verzoek\u0020retourneerde\u0020de\u0020status\u0020\u0022\u0025s\u0022\u002e\u0020URL\u0020was\u0020\u0022\u0025s\u0022\u002e\u0020Controleer\u0020je\u0020ingevoerde\u0020URL\u0020en\u0020de\u0020error\u0020logs\u0020op\u0020deze\u0020server\u0020voor\u0020meer\u0020informatie\u0020over\u0020deze\u0020fout\u0020en\u0020hoe\u0020je\u0020deze\u0020kunt\u0020oplossen\u002e","Mobile_NetworkErrorWithStatusCodeShort":"Netwerkfout\u0020\u0025s","Mobile_NetworkNotReachable":"Netwerk\u0020niet\u0020bereikbaar","Mobile_NoAccountIsSelected":"U\u0020moet\u0020een\u0020account\u0020selecteren\u002e\u0020Voeg\u0020een\u0020nieuwe\u0020account\u0020toe\u0020als\u0020u\u0020er\u0020nog\u0020niet\u0020een\u0020gemaakt\u0020heeft\u002e","Mobile_NoDataShort":"Geen\u0020gegevens","Mobile_NoPiwikAccount":"Geen\u0020Matomo\u002daccount\u003f","Mobile_NoReportsShort":"Geen\u0020rapporten","Mobile_NoVisitorFound":"Geen\u0020bezoeker\u0020gevonden","Mobile_NoVisitorsShort":"Geen\u0020bezoekers","Mobile_NoWebsiteFound":"Geen\u0020website\u0020gevonden","Mobile_NoWebsitesShort":"Geen\u0020websites","Mobile_PullDownToRefresh":"Sleep\u0020omlaag\u0020om\u0020te\u0020vernieuwen\u002e\u002e\u002e","Mobile_PossibleSslError":"Mogelijke\u0020SSL\u002dcertificaatfout","Mobile_PossibleSslErrorExplanation":"Er\u0020is\u0020een\u0020fout\u0020opgetreden\u002c\u0020waarvan\u0020de\u0020oorzaak\u0020een\u0020foutief\u0020of\u0020self\u002dsigned\u0020certificaat\u0020kan\u0020zijn\u003a\u0020\u0022\u0025s\u0022\u002e\u0020Inloggen\u0020kan\u0020werken\u0020als\u0020je\u0020SSL\u002dvalidatie\u0020negeert\u002c\u0020maar\u0020dit\u0020is\u0020minder\u0020veilig\u002e\u0020Je\u0020kunt\u0020de\u0020SSL\u002dvalidatie\u0020op\u0020elk\u0020moment\u0020wijzigen\u0020in\u0020de\u0020instellingen\u002e","Mobile_IgnoreSslError":"SSL\u002dfout\u0020negeren","Mobile_RatingDontRemindMe":"Herinner\u0020me\u0020er\u0020niet\u0020aan","Mobile_RatingNotNow":"Niet\u0020nu","Mobile_RatingNow":"OK\u002c\u0020ik\u0020zal\u0020het\u0020nu\u0020beoordelen","Mobile_RatingPleaseRateUs":"De\u0020Matomo\u0020Mobile\u002dapp\u0020is\u0020gratis\u0020software\u002e\u0020We\u0020zouden\u0020het\u0020erg\u0020op\u0020prijs\u0020stellen\u0020als\u0020u\u00201\u0020minuut\u0020de\u0020tijd\u0020neemt\u0020om\u0020de\u0020app\u0020in\u0020de\u0020\u0025s\u0020te\u0020beoordelen\u002e\u0020Als\u0020u\u0020suggesties\u0020voor\u0020nieuwe\u0020functies\u0020of\u0020foutrapporten\u0020heeft\u002c\u0020neem\u0020dan\u0020contact\u0020op\u0020met\u0020\u0025s","Mobile_ReleaseToRefresh":"Laat\u0020los\u0020om\u0020te\u0020vernieuwen\u002e\u002e\u002e","Mobile_Reloading":"Herladen\u002e\u002e\u002e","Mobile_RequestTimedOutShort":"Netwerk\u0020Timeout","Mobile_RestrictedCompatibility":"Beperkte\u0020compatibiliteit","Mobile_RestrictedCompatibilityExplanation":"De\u0020Matomo\u002dversie\u0020\u0025s\u0020die\u0020u\u0020gebruikt\u0020wordt\u0020niet\u0020volledig\u0020door\u0020Matomo\u0020Mobile\u00202\u0020ondersteund\u002e\u0020U\u0020kunt\u0020een\u0020aantal\u0020bugs\u0020ervaren\u002e\u0020We\u0020raden\u0020u\u0020aan\u0020om\u0020Matomo\u0020naar\u0020de\u0020nieuwste\u0020versie\u0020bij\u0020te\u0020werken\u0020of\u0020om\u0020Matomo\u0020Mobile\u00201\u0020te\u0020gebruiken\u002e","Mobile_SaveSuccessError":"Matomo\u002dURL\u0020of\u0020gebruikersnaam\u002d\u0020en\u0020wachtwoordcombinatie\u0020is\u0020onjuist\u002e","Mobile_SearchWebsite":"Zoek\u0020websites","Mobile_ShowAll":"Alles\u0020tonen","Mobile_ShowLess":"Minder\u0020tonen","Mobile_StaticGraph":"Overzichtsgrafiek","Mobile_TopVisitedWebsites":"Top\u0020bezochte\u0020websites","Mobile_TryIt":"Probeer\u0020het\u0021","Mobile_UseSearchBarHint":"Alleen\u0020de\u0020eerste\u0020\u0025s\u0020websites\u0020worden\u0020hier\u0020weergeven\u002e\u0020Gebruik\u0020de\u0020zoekbalk\u0020om\u0020toegang\u0020tot\u0020uw\u0020andere\u0020websites\u0020te\u0020krijgen\u002e","Mobile_VerifyAccount":"Verifi\u00ebren\u0020account","Mobile_ValidateSslCertificate":"SSL\u002dcertificaat\u0020valideren","Mobile_VerifyLoginData":"Zorg\u0020ervoor\u0020dat\u0020uw\u0020gebruikersnaam\u002d\u0020en\u0020wachtwoordcombinatie\u0020juist\u0020zijn\u002e","Mobile_YouAreOffline":"Sorry\u002c\u0020u\u0020bent\u0020momenteel\u0020offline\u002e","CorePluginsAdmin_Activate":"Activeren","CorePluginsAdmin_Deactivate":"Deactiveren","CoreHome_PeriodRange":"Bereik","CoreHome_TableNoData":"Geen\u0020gegevens\u0020voor\u0020deze\u0020tabel\u002e","CoreHome_ThereIsNoDataForThisReport":"Er\u0020zijn\u0020geen\u0020gegevens\u0020voor\u0020dit\u0020rapport\u002e","Actions_SubmenuSitesearch":"Lokale\u0020zoekopdracht","DevicesDetection_ColumnBrowser":"Browser","Goals_AbandonedCart":"Verlaat\u0020winkelwagen","Goals_Ecommerce":"E\u002dcommerce","Goals_EcommerceOrder":"E\u002dcommerce\u0020order","SEO_Rank":"Ranking","Events_Event":"Gebeurtenis","UserCountry_City":"Stad","UserCountry_Country":"Land","UserCountry_Region":"Regio","VisitsSummary_NbActionsDescription":"\u0025s\u0020acties","Feedback_DoYouHaveBugReportOrFeatureRequest":"Heeft\u0020u\u0020een\u0020bugmelding\u0020of\u0020een\u0020verzoek\u0020voor\u0020nieuwe\u0020functies\u003f","Feedback_ThankYou":"Bedankt\u0020voor\u0020uw\u0020hulp\u0020om\u0020Matomo\u0020beter\u0020te\u0020maken\u0021","TwoFactorAuth_Verify":"Verifi\u00ebren","UsersManager_ManageAccess":"Toegang\u0020beheren","UsersManager_PrivView":"Bekijken","SitesManager_ExceptionInvalidUrl":"De\u0020url\u0020\u0027\u0025s\u0027\u0020is\u0020geen\u0020geldige\u0020URL\u002e","SitesManager_MenuManage":"Beheren","SitesManager_NotFound":"Geen\u0020websites\u0020gevonden\u0020voor","CoreUpdater_UpdateTitle":"Update","UserCountryMap_RealTimeMap":"Realtime\u0020Kaart","Live_LastHours":"Laatste\u0020\u0025s\u0020uur","Live_LastMinutes":"Laatste\u0020\u0025s\u0020minuten","Live_VisitorLog":"Bezoekerslogboek","CustomVariables_CustomVariables":"Aangepaste\u0020variabelen","SegmentEditor_DefaultAllVisits":"Alle\u0020bezoeken","Resolution_ColumnResolution":"Resolutie","Intl_PeriodDay":"dag","Intl_PeriodMonth":"maand","Intl_PeriodWeek":"week","Intl_PeriodYear":"jaar","Intl_Today":"Vandaag","Intl_Yesterday":"Gisteren"}; +module.exports = {"General_AboutPiwikX":"Over\u0020Matomo\u0020\u0025s","General_Action":"Actie","General_AllWebsitesDashboard":"Dashboard\u0020van\u0020alle\u0020websites","General_Cancel":"Annuleren","General_ChooseDate":"Kies datum","General_ChooseLanguage":"Kies\u0020taal","General_ChoosePeriod":"Kies\u0020periode","General_Close":"Sluiten","General_ColumnNbVisits":"Bezoeken","General_ColumnPageviews":"Paginaweergaven","General_ColumnRevenue":"Inkomsten","General_CurrentMonth":"Huidige\u0020maand","General_CurrentWeek":"Huidige\u0020week","General_CurrentYear":"Huidig\u0020jaar","General_Date":"Datum","General_DateRangeFrom":"Van","General_DateRangeTo":"Tot","General_Delete":"Verwijderen","General_Details":"Details","General_Documentation":"Documentatie","General_Done":"Klaar","General_Download":"Downloaden","General_Edit":"Bewerken","General_Error":"Fout","General_ErrorRequest":"Oeps\u002e\u002e\u002e\u0020er\u0020ontstond\u0020een\u0020probleem\u0020tijdens\u0020het\u0020verzoek\u002e\u0020Misschien\u0020had\u0020de\u0020server\u0020een\u0020tijdelijk\u0020probleem\u002c\u0020of\u0020vroeg\u0020je\u0020een\u0020rapport\u0020op\u0020met\u0020teveel\u0020data\u002e\u0020Probeer\u0020het\u0020opnieuw\u002e\u0020Als\u0020het\u0020probleem\u0020zich\u0020voor\u0020blijft\u0020doen\u002c\u0020neem\u0020dan\u0020\u0025scontact\u0020op\u0020met\u0020de\u0020Matomo\u002dbeheerder\u0025s\u002e","General_Faq":"Veelgestelde\u0020vragen","General_Flatten":"Plat\u0020maken","General_ForExampleShort":"bijv\u002e","General_Forums":"Forums","General_FromReferrer":"van","General_GeneralSettings":"Algemene\u0020instellingen","General_GiveUsYourFeedback":"Geef\u0020ons\u0020feedback\u0021","General_Goal":"Doelstelling","General_Help":"Help","General_InvalidResponse":"De\u0020ontvangen\u0020gegevens\u0020zijn\u0020ongeldig\u002e","General_Language":"Taal","General_LastDaysShort":"Laatste\u0020\u0025s\u0020dagen","General_Live":"Live","General_LoadingData":"Gegevens\u0020laden\u2026","General_Metric":"Statistiek","General_More":"Meer","General_NewVisitor":"Nieuwe\u0020bezoeker","General_Next":"Volgende","General_No":"Nee","General_NotValid":"\u0025s\u0020is\u0020niet\u0020geldig","General_NumberOfVisits":"Aantal\u0020bezoeken","General_NVisits":"\u0025s\u0020bezoeken","General_Ok":"Ok","General_Others":"Overige","General_Outlink":"Uitgaande\u0020link","General_Password":"Wachtwoord","General_Period":"Periode","General_PiwikXIsAvailablePleaseNotifyPiwikAdmin":"\u0025s\u0020is\u0020beschikbaar\u002e\u0020Breng\u0020de\u0020\u0025sMatomo\u002dbeheerder\u0025s\u0020op\u0020de\u0020hoogte\u002e","General_PleaseUpdatePiwik":"Update\u0020uw\u0020Matomo","General_Plugins":"Plugins","General_Previous":"Vorige","General_PreviousDaysShort":"Afgelopen\u0020\u0025s\u0020dagen","General_Refresh":"Vernieuwen","General_Remove":"Verwijderen","General_Reports":"Rapporten","General_RequestTimedOut":"Een\u0020data\u0020verzoek\u0020naar\u0020\u0025s\u0020is\u0020verlopen\u002e\u0020Probeer\u0020opnieuw\u002e","General_Required":"\u0025s\u0020vereist","General_Save":"Opslaan","General_Settings":"Instellingen","General_Subtotal":"Subtotaal","General_Unknown":"Onbekend","General_Username":"Gebruikersnaam","General_Value":"Waarde","General_VisitConvertedNGoals":"Bezoek\u0020heeft\u0020\u0025s\u0020doelen\u0020bereikt","General_Visitor":"Bezoeker","General_VisitorIP":"Bezoeker\u002dIP","General_Visitors":"Bezoekers","General_VisitorSettings":"Bezoekersinstellingen","General_VisitType":"Soort\u0020bezoek","General_Website":"Website","General_Yes":"Ja","General_YourChangesHaveBeenSaved":"Uw\u0020wijzigingen\u0020zijn\u0020opgeslagen\u002e","Mobile_AboutPiwikMobile":"Over\u0020Matomo\u0020Mobile","Mobile_AccessUrlLabel":"Matomo\u0020toegangs\u002durl","Mobile_Account":"Account","Mobile_Accounts":"Accounts","Mobile_AddAccount":"Account\u0020toevoegen","Mobile_AddPiwikDemo":"Matomo\u002ddemo\u0020toevoegen","Mobile_Advanced":"Geavanceerd","Mobile_AnonymousAccess":"Anonieme\u0020toegang","Mobile_AnonymousTracking":"Anonieme\u0020tracking","Mobile_AskForAnonymousTrackingPermission":"Als\u0020dit\u0020is\u0020ingeschakeld\u002c\u0020stuurt\u0020Matomo\u0020Mobile\u0020anonieme\u0020gebruiksgegevens\u0020naar\u0020matomo\u002eorg\u002e\u0020Met\u0020deze\u0020gegevens\u0020begrijpen\u0020Matomo\u0020Mobile\u002dontwikkelaars\u0020beter\u0020hoe\u0020de\u0020applicatie\u0020wordt\u0020gebruikt\u002e\u0020De\u0020gebruiksgegevens\u0020bevatten\u003a\u0020kliks\u0020in\u0020menu\u0027s\u0020en\u0020instellingen\u002c\u0020OS\u002dnaam\u0020en\u0020\u002dversie\u0020en\u0020elke\u0020fout\u0020die\u0020Matomo\u0020Mobile\u0020weergeeft\u002e\u0020We\u0020versturen\u0020GEEN\u0020van\u0020uw\u0020analytics\u0020gegevens\u002e\u0020De\u0020verzamelde\u0020anonieme\u0020gegevens\u0020maakt\u0020Matomo\u0020nooit\u0020openbaar\u002e\u0020U\u0020kunt\u0020het\u0020delen\u0020van\u0020deze\u0020anonieme\u0020gegevens\u0020op\u0020elk\u0020gewenst\u0020moment\u0020in\u002d\u0020of\u0020uitschakelen\u0020via\u0020de\u0020app\u002dinstellingen\u002e","Mobile_ChooseHttpTimeout":"Kies\u0020HTTP\u0020time\u002dout\u0020waarde","Mobile_ChooseMetric":"Kies\u0020statistiek","Mobile_ChooseReport":"Kies\u0020een\u0020rapport","Mobile_ChooseSegment":"Kies\u0020segment","Mobile_ConfirmRemoveAccount":"Wilt\u0020u\u0020dit\u0020account\u0020verwijderen\u003f","Mobile_DefaultReportDate":"Rapportdatum","Mobile_EmailUs":"E\u002dmail\u0020ons","Mobile_EnableGraphsLabel":"Grafieken\u0020tonen","Mobile_EvolutionGraph":"Historische\u0020grafiek","Mobile_HelpUsToImprovePiwikMobile":"Wilt\u0020u\u0020anonieme\u0020gebruikstracking\u0020in\u0020Matomo\u0020Mobile\u0020inschakelen\u003f","Mobile_HowtoDeleteAnAccount":"Lang\u0020drukken\u0020om\u0020een\u0020account\u0020te\u0020verwijderen\u002e","Mobile_HowtoDeleteAnAccountOniOS":"Van\u0020rechts\u0020naar\u0020links\u0020vegen\u0020om\u0020een\u0020account\u0020te\u0020verwijderen","Mobile_HowtoLoginAnonymous":"Laat\u0020gebruikersnaam\u0020en\u0020wachtwoord\u0020leeg\u0020voor\u0020anoniem\u0020inloggen\u002e","Mobile_HttpIsNotSecureWarning":"Uw\u0020Matomo\u002dautorisatietoken\u0020\u0028token\u005fauth\u0029\u0020wordt\u0020niet\u0020versleuteld\u0020verzonden\u0020als\u0020u\u0020HTTP\u0020gebruikt\u002e\u0020Om\u0020deze\u0020reden\u0020adviseren\u0020wij\u0020om\u0020HTTPS\u0020te\u0020gebruiken\u002c\u0020zodat\u0020gegevens\u0020versleuteld\u0020worden\u0020overgedragen\u0020via\u0020het\u0020internet\u002e\u0020Wilt\u0020u\u0020doorgaan\u003f","Mobile_HttpTimeout":"HTTP\u0020Timeout","Mobile_IncompatiblePiwikVersion":"De\u0020Matomo\u002dversie\u0020die\u0020u\u0020gebruikt\u0020is\u0020incompatibel\u0020met\u0020Matomo\u0020Mobile\u00202\u002e\u0020Update\u0020uw\u0020Matomo\u002dinstallatie\u0020en\u0020probeer\u0020het\u0020nogmaals\u0020of\u0020installeer\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_LoadingReport":"Bezig\u0020met\u0020laden\u0020van\u0020\u0025s","Mobile_LoginCredentials":"Inloggegevens","Mobile_LoginToPiwikToChangeSettings":"Log\u0020in\u0020op\u0020je\u0020Matomo\u002dserver\u0020om\u0020websites\u0020of\u0020gebruikers\u0020aan\u0020te\u0020maken\u0020of\u0020te\u0020wijzigen\u002c\u0020of\u0020om\u0020algemene\u0020instellingen\u0020te\u0020wijzigen\u002c\u0020zoals\u0020welk\u0020rapport\u0020er\u0020standaard\u0020geladen\u0020wordt\u002e","Mobile_LoginUseHttps":"Gebruik\u0020https","Mobile_MultiChartLabel":"Toon\u0020grafieklijnen","Mobile_NavigationBack":"Terug","Mobile_NetworkError":"Netwerkfout","Mobile_NetworkErrorWithStatusCode":"Er\u0020was\u0020een\u0020probleem\u0020\u0022\u0025s\u0022\u002e\u0020Het\u0020verzoek\u0020retourneerde\u0020de\u0020status\u0020\u0022\u0025s\u0022\u002e\u0020URL\u0020was\u0020\u0022\u0025s\u0022\u002e\u0020Controleer\u0020je\u0020ingevoerde\u0020URL\u0020en\u0020de\u0020error\u0020logs\u0020op\u0020deze\u0020server\u0020voor\u0020meer\u0020informatie\u0020over\u0020deze\u0020fout\u0020en\u0020hoe\u0020je\u0020deze\u0020kunt\u0020oplossen\u002e","Mobile_NetworkErrorWithStatusCodeShort":"Netwerkfout\u0020\u0025s","Mobile_NetworkNotReachable":"Netwerk\u0020niet\u0020bereikbaar","Mobile_NoAccountIsSelected":"U\u0020moet\u0020een\u0020account\u0020selecteren\u002e\u0020Voeg\u0020een\u0020nieuwe\u0020account\u0020toe\u0020als\u0020u\u0020er\u0020nog\u0020niet\u0020een\u0020gemaakt\u0020heeft\u002e","Mobile_NoDataShort":"Geen\u0020gegevens","Mobile_NoPiwikAccount":"Geen\u0020Matomo\u002daccount\u003f","Mobile_NoReportsShort":"Geen\u0020rapporten","Mobile_NoVisitorFound":"Geen\u0020bezoeker\u0020gevonden","Mobile_NoVisitorsShort":"Geen\u0020bezoekers","Mobile_NoWebsiteFound":"Geen\u0020website\u0020gevonden","Mobile_NoWebsitesShort":"Geen\u0020websites","Mobile_PullDownToRefresh":"Sleep\u0020omlaag\u0020om\u0020te\u0020vernieuwen\u002e\u002e\u002e","Mobile_PossibleSslError":"Mogelijke\u0020SSL\u002dcertificaatfout","Mobile_PossibleSslErrorExplanation":"Er\u0020is\u0020een\u0020fout\u0020opgetreden\u002c\u0020waarvan\u0020de\u0020oorzaak\u0020een\u0020foutief\u0020of\u0020self\u002dsigned\u0020certificaat\u0020kan\u0020zijn\u003a\u0020\u0022\u0025s\u0022\u002e\u0020Inloggen\u0020kan\u0020werken\u0020als\u0020je\u0020SSL\u002dvalidatie\u0020negeert\u002c\u0020maar\u0020dit\u0020is\u0020minder\u0020veilig\u002e\u0020Je\u0020kunt\u0020de\u0020SSL\u002dvalidatie\u0020op\u0020elk\u0020moment\u0020wijzigen\u0020in\u0020de\u0020instellingen\u002e","Mobile_IgnoreSslError":"SSL\u002dfout\u0020negeren","Mobile_RatingDontRemindMe":"Herinner\u0020me\u0020er\u0020niet\u0020aan","Mobile_RatingNotNow":"Niet\u0020nu","Mobile_RatingNow":"OK\u002c\u0020ik\u0020zal\u0020het\u0020nu\u0020beoordelen","Mobile_RatingPleaseRateUs":"De\u0020Matomo\u0020Mobile\u002dapp\u0020is\u0020gratis\u0020software\u002e\u0020We\u0020zouden\u0020het\u0020erg\u0020op\u0020prijs\u0020stellen\u0020als\u0020u\u00201\u0020minuut\u0020de\u0020tijd\u0020neemt\u0020om\u0020de\u0020app\u0020in\u0020de\u0020\u0025s\u0020te\u0020beoordelen\u002e\u0020Als\u0020u\u0020suggesties\u0020voor\u0020nieuwe\u0020functies\u0020of\u0020foutrapporten\u0020heeft\u002c\u0020neem\u0020dan\u0020contact\u0020op\u0020met\u0020\u0025s","Mobile_ReleaseToRefresh":"Laat\u0020los\u0020om\u0020te\u0020vernieuwen\u002e\u002e\u002e","Mobile_Reloading":"Herladen\u002e\u002e\u002e","Mobile_RequestTimedOutShort":"Netwerk\u0020Timeout","Mobile_RestrictedCompatibility":"Beperkte\u0020compatibiliteit","Mobile_RestrictedCompatibilityExplanation":"De\u0020Matomo\u002dversie\u0020\u0025s\u0020die\u0020u\u0020gebruikt\u0020wordt\u0020niet\u0020volledig\u0020door\u0020Matomo\u0020Mobile\u00202\u0020ondersteund\u002e\u0020U\u0020kunt\u0020een\u0020aantal\u0020bugs\u0020ervaren\u002e\u0020We\u0020raden\u0020u\u0020aan\u0020om\u0020Matomo\u0020naar\u0020de\u0020nieuwste\u0020versie\u0020bij\u0020te\u0020werken\u0020of\u0020om\u0020Matomo\u0020Mobile\u00201\u0020te\u0020gebruiken\u002e","Mobile_SaveSuccessError":"Matomo\u002dURL\u0020of\u0020gebruikersnaam\u002d\u0020en\u0020wachtwoordcombinatie\u0020is\u0020onjuist\u002e","Mobile_SearchWebsite":"Zoek\u0020websites","Mobile_ShowAll":"Alles\u0020tonen","Mobile_ShowLess":"Minder\u0020tonen","Mobile_StaticGraph":"Overzichtsgrafiek","Mobile_TopVisitedWebsites":"Top\u0020bezochte\u0020websites","Mobile_TryIt":"Probeer\u0020het\u0021","Mobile_UseSearchBarHint":"Alleen\u0020de\u0020eerste\u0020\u0025s\u0020websites\u0020worden\u0020hier\u0020weergeven\u002e\u0020Gebruik\u0020de\u0020zoekbalk\u0020om\u0020toegang\u0020tot\u0020uw\u0020andere\u0020websites\u0020te\u0020krijgen\u002e","Mobile_VerifyAccount":"Verifi\u00ebren\u0020account","Mobile_ValidateSslCertificate":"SSL\u002dcertificaat\u0020valideren","Mobile_VerifyLoginData":"Zorg\u0020ervoor\u0020dat\u0020uw\u0020gebruikersnaam\u002d\u0020en\u0020wachtwoordcombinatie\u0020juist\u0020zijn\u002e","Mobile_YouAreOffline":"Sorry\u002c\u0020u\u0020bent\u0020momenteel\u0020offline\u002e","CorePluginsAdmin_Activate":"Activeren","CorePluginsAdmin_Deactivate":"Deactiveren","CoreHome_PeriodRange":"Bereik","CoreHome_TableNoData":"Geen\u0020gegevens\u0020voor\u0020deze\u0020tabel\u002e","CoreHome_ThereIsNoDataForThisReport":"Er\u0020zijn\u0020geen\u0020gegevens\u0020voor\u0020dit\u0020rapport\u002e","Actions_SubmenuSitesearch":"Lokale\u0020zoekopdracht","DevicesDetection_ColumnBrowser":"Browser","Goals_AbandonedCart":"Verlaat\u0020winkelwagen","Goals_Ecommerce":"E\u002dcommerce","Goals_EcommerceOrder":"E\u002dcommerce\u0020order","SEO_Rank":"Ranking","Events_Event":"Gebeurtenis","UserCountry_City":"Stad","UserCountry_Country":"Land","UserCountry_Region":"Regio","VisitsSummary_NbActionsDescription":"\u0025s\u0020acties","Feedback_DoYouHaveBugReportOrFeatureRequest":"Heeft\u0020u\u0020een\u0020bugmelding\u0020of\u0020een\u0020verzoek\u0020voor\u0020nieuwe\u0020functies\u003f","Feedback_ThankYou":"Bedankt\u0020voor\u0020uw\u0020hulp\u0020om\u0020Matomo\u0020beter\u0020te\u0020maken\u0021","TwoFactorAuth_Verify":"Verifi\u00ebren","UsersManager_ManageAccess":"Toegang\u0020beheren","UsersManager_PrivView":"Bekijken","SitesManager_ExceptionInvalidUrl":"De\u0020url\u0020\u0027\u0025s\u0027\u0020is\u0020geen\u0020geldige\u0020URL\u002e","SitesManager_MenuManage":"Beheren","SitesManager_NotFound":"Geen\u0020websites\u0020gevonden\u0020voor","CoreUpdater_UpdateTitle":"Update","UserCountryMap_RealTimeMap":"Realtime\u0020Kaart","Live_LastHours":"Laatste\u0020\u0025s\u0020uur","Live_LastMinutes":"Laatste\u0020\u0025s\u0020minuten","Live_VisitorLog":"Bezoekerslogboek","CustomVariables_CustomVariables":"Aangepaste\u0020variabelen","SegmentEditor_DefaultAllVisits":"Alle\u0020bezoeken","Resolution_ColumnResolution":"Resolutie","Intl_PeriodDay":"dag","Intl_PeriodMonth":"maand","Intl_PeriodWeek":"week","Intl_PeriodYear":"jaar","Intl_Today":"Vandaag","Intl_Yesterday":"Gisteren"}; diff --git a/app/lib/i18n/pl.js b/app/lib/i18n/pl.js index a56e9745..fd92ed46 100644 --- a/app/lib/i18n/pl.js +++ b/app/lib/i18n/pl.js @@ -4,4 +4,4 @@ * @link https://matomo.org * @license http://www.gnu.org/licenses/gpl-3.0.html Gpl v3 or later */ -module.exports = {"General_AboutPiwikX":"O\u0020Matomo\u0020\u0025s","General_Action":"Aktywno\u015b\u0107","General_AllWebsitesDashboard":"Tablica\u0020analiz\u0020wszystkich\u0020stron","General_Cancel":"Anuluj","General_ChooseDate":"Wybierz\u0020dat\u0119\u002c\u0020aktualnie\u0020wybrana\u0020data\u002c\u0020to\u003a\u0020\u0025s","General_ChooseLanguage":"Wybierz\u0020j\u0119zyk","General_ChoosePeriod":"Wybierz\u0020okres","General_Close":"Zamknij","General_ColumnNbVisits":"Odwiedziny","General_ColumnPageviews":"Liczba\u0020ods\u0142on","General_ColumnRevenue":"Przychody","General_CurrentMonth":"bie\u017c\u0105cy\u0020miesi\u0105c","General_CurrentWeek":"bie\u017c\u0105cy\u0020tydzie\u0144","General_CurrentYear":"bie\u017c\u0105cy\u0020rok","General_Date":"Data","General_DateRangeFrom":"od","General_DateRangeTo":"do","General_Delete":"Usu\u0144","General_Details":"Szczeg\u00f3\u0142y","General_Documentation":"Dokumentacja","General_Done":"Wykonano","General_Download":"Pobierz","General_Edit":"Edycja","General_Error":"B\u0142\u0105d","General_ErrorRequest":"Uppps\u002e\u002e\u002e\u0020wyst\u0105pi\u0142\u0020problem\u0020z\u0020obs\u0142ug\u0105\u0020\u017c\u0105dania\u002e\u0020Mo\u017cliwe\u002c\u0020\u017ce\u0020na\u0020serwerze\u0020wyst\u0105pi\u0142a\u0020anomalia\u0020lub\u0020za\u017c\u0105dany\u0020raport\u0020zawiera\u0142\u0020zbyt\u0020du\u017co\u0020danych\u002e\u0020Prosz\u0119\u0020spr\u00f3buj\u0020p\u00f3\u017aniej\u002e\u0020Je\u015bli\u0020b\u0142\u0105d\u0020b\u0119dzie\u0020si\u0119\u0020powtarza\u0142\u0020prosz\u0119\u0020\u0025sskontaktuj\u0020si\u0119\u0020ze\u0020swoim\u0020administratorem\u0020Matomo\u0020\u0025s\u0020w\u0020celu\u0020uzyskania\u0020pomocy\u002e","General_Faq":"FAQ","General_Flatten":"P\u0142aski","General_ForExampleShort":"np\u002e","General_Forums":"Forum","General_FromReferrer":"z","General_GeneralSettings":"Og\u00f3lne\u0020ustawienia","General_GiveUsYourFeedback":"Zdaj\u0020relacj\u0119\u0021","General_Goal":"Cel","General_Help":"Pomoc","General_InvalidResponse":"Otrzymane\u0020dane\u0020nie\u0020s\u0105\u0020prawid\u0142owe\u002e","General_Language":"J\u0119zyk","General_LastDaysShort":"Ostatnie\u0020\u0025s\u0020dni","General_Live":"Na\u0020\u017cywo","General_LoadingData":"\u0141aduj\u0119\u0020dane\u002e\u002e\u002e","General_Metric":"Wska\u017anik","General_More":"Wi\u0119cej","General_NewVisitor":"Nowy\u0020ogl\u0105daj\u0105cy","General_Next":"Dalej","General_No":"Nie","General_NotValid":"\u0025s\u0020nie\u0020jest\u0020poprawny","General_NumberOfVisits":"Ilo\u015b\u0107\u0020odwiedzin","General_NVisits":"\u0025s\u0020wizyt","General_Ok":"Ok","General_Others":"Pozosta\u0142e","General_Outlink":"Link\u0020zewn\u0119trzne","General_Password":"Has\u0142o","General_Period":"Okres","General_PiwikXIsAvailablePleaseNotifyPiwikAdmin":"\u0025s\u0020jest\u0020dost\u0119pny\u002e\u0020Prosimy\u0020powiadomi\u0107\u0025sMatomo\u0020administratora\u0025s\u002e","General_PleaseUpdatePiwik":"Prosimy\u0020o\u0020aktualizacj\u0119\u0020oprogramowania\u0020Matomo","General_Plugins":"Wtyczki","General_Previous":"Wstecz","General_PreviousDaysShort":"Poprzednie\u0020\u0025s\u0020dni","General_Refresh":"Od\u015bwie\u017c","General_Remove":"Usu\u0144","General_Reports":"Raporty","General_RequestTimedOut":"\u017b\u0105danie\u0020danych\u0020w\u0020procesie\u0020\u0025s\u0020nie\u0020zosta\u0142o\u0020wykonane\u0020w\u0020wyznaczonym\u0020czasie\u0020\u002d\u0020time\u0020out\u002e\u0020Spr\u00f3buj\u0020ponownie\u002e","General_Required":"\u0025s\u0020wymagane","General_Save":"Zapisz","General_Settings":"Konfiguracja","General_Subtotal":"Razem","General_Unknown":"Nieznany","General_Username":"Nazwa\u0020u\u017cytkownika","General_Value":"Parametr","General_VisitConvertedNGoals":"Odwiedziny\u0020przekszta\u0142ci\u0142y\u0020si\u0119\u0020\u0025s\u0020jako\u0020osi\u0105gni\u0119te\u0020cele\u0020ze\u0020zdefiniowanych\u0020wcze\u015bniej\u0020za\u0142o\u017ce\u0144","General_Visitor":"Odwiedzaj\u0105cy","General_VisitorIP":"IP\u0020odwiedzaj\u0105cego","General_Visitors":"Ogl\u0105daj\u0105cy","General_VisitorSettings":"Konfiguracje\u0020u\u017cytkownika","General_VisitType":"Typ\u0020wizyty","General_Website":"Strona\u0020WWW","General_Yes":"Tak","General_YourChangesHaveBeenSaved":"Twoje\u0020modyfikacje\u0020zosta\u0142y\u0020zapisane\u0020pomy\u015blnie\u002e","Mobile_AboutPiwikMobile":"O\u0020Matomo\u0020Mobile","Mobile_AccessUrlLabel":"Adres\u0020dost\u0119powy\u0020Matomo","Mobile_Account":"Konto","Mobile_Accounts":"Konta","Mobile_AddAccount":"Dodaj\u0020konto","Mobile_AddPiwikDemo":"Dodaj\u0020Matomo\u0020Demo","Mobile_Advanced":"Zaawansowane","Mobile_AnonymousAccess":"Dost\u0119p\u0020anonimowy","Mobile_AnonymousTracking":"Anonimowe\u0020\u015bledzenie","Mobile_AskForAnonymousTrackingPermission":"Po\u0020aktywacji\u002c\u0020Matomo\u0020Mobile\u0020b\u0119dzie\u0020wysy\u0142a\u0142\u0020anonimowe\u0020statystyki\u0020u\u017cytkowania\u0020do\u0020matomo\u002eorg\u002e\u0020Pos\u0142u\u017c\u0105\u0020one\u0020deweloperom\u0020Matomo\u0020Mobile\u0020do\u0020lepszego\u0020zrozumienia\u0020sposob\u00f3w\u0020korzystania\u0020z\u0020aplikacji\u002e\u0020Wysy\u0142ane\u0020informacje\u0020to\u003a\u0020klikni\u0119cia\u0020menu\u0020i\u0020ustawie\u0144\u002c\u0020nazwa\u0020i\u0020wersja\u0020systemu\u0020operacyjnego\u002c\u0020ka\u017cdy\u0020b\u0142\u0105d\u0020wy\u015bwietlony\u0020w\u0020Matomo\u0020Mobile\u002e\u0020NIE\u0020B\u0118DZIEMY\u0020\u015bledzili\u0020\u017cadnych\u0020Twoich\u0020statystyk\u002e\u0020Te\u0020anonimowe\u0020dane\u0020nigdy\u0020nie\u0020zostan\u0105\u0020upublicznione\u002e\u0020W\u0020dowolnym\u0020momencie\u0020mo\u017cesz\u0020w\u0142\u0105czy\u0107\u0020lub\u0020wy\u0142\u0105czy\u0107\u0020anonimowe\u0020statystyki\u0020w\u0020Ustawieniach\u002e","Mobile_ChooseHttpTimeout":"Czas\u0020oczekiwania\u0020na\u0020odpowied\u017a","Mobile_ChooseMetric":"Wybierz\u0020wska\u017anik","Mobile_ChooseReport":"Wybierz\u0020raport","Mobile_ChooseSegment":"Wybierz\u0020segment","Mobile_ConfirmRemoveAccount":"Czy\u0020chcesz\u0020usun\u0105\u0107\u0020to\u0020konto\u003f","Mobile_DefaultReportDate":"Data\u0020raportu","Mobile_EmailUs":"Wy\u015blij\u0020nam\u0020wiadomo\u015b\u0107\u0020email","Mobile_EnableGraphsLabel":"Wy\u015bwietlanie\u0020wykres\u00f3w","Mobile_EvolutionGraph":"Graf\u0020Historyczny","Mobile_HelpUsToImprovePiwikMobile":"Czy\u0020chcesz\u0020w\u0142\u0105czy\u0107\u0020anonimowe\u0020\u015bledzenie\u0020wykorzystania\u0020w\u0020Matomo\u0020Mobile\u003f","Mobile_HowtoDeleteAnAccount":"Naci\u015bnij\u0020i\u0020przytrzymaj\u0020by\u0020usun\u0105\u0107\u0020konto\u002e","Mobile_HowtoDeleteAnAccountOniOS":"W\u0020celu\u0020usuni\u0119cia\u0020konta\u0020przeci\u0105gnij\u0020z\u0020prawej\u0020do\u0020lewej","Mobile_HowtoLoginAnonymous":"Pozostaw\u0020nazw\u0119\u0020i\u0020has\u0142o\u0020uzytkownika\u0020pustymi\u0020dla\u0020logowania\u0020anonimowego","Mobile_HttpIsNotSecureWarning":"Tw\u00f3j\u0020token\u0020autoryzacji\u0020Matomo\u0020\u0028tiken\u005fauth\u0029\u0020b\u0119dzie\u0020przesy\u0142any\u0020jako\u0020zwyk\u0142y\u0020tekst\u002c\u0020gdy\u0020u\u017cywasz\u0020\u0027HTTP\u0027\u002e\u0020Z\u0020tego\u0020powodu\u0020zalecamy\u0020korzystanie\u0020z\u0020HTTPS\u0020umo\u017cliwiaj\u0105cego\u0020bezpieczny\u0020przesy\u0142\u0020danych\u0020przez\u0020Internet\u002e\u0020Czy\u0020chcesz\u0020kontynuowa\u0107\u003f","Mobile_HttpTimeout":"HTTP\u0020Timeout\u0020\u002d\u0020Przekroczono\u0020maksymalny\u0020dozwolony\u0020czas","Mobile_IncompatiblePiwikVersion":"Obecnie\u0020zainstalowana\u0020wersja\u0020Matomo\u0020nie\u0020jest\u0020zgodna\u0020z\u0020Matomo\u0020Mobile\u00202\u002e\u0020Uaktualnij\u0020swoj\u0105\u0020instalacj\u0119\u0020Matomo\u0020i\u0020spr\u00f3buj\u0020ponownie\u0020lub\u0020zainstaluj\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_LoadingReport":"\u0141aduj\u0119\u0020\u0025s","Mobile_LoginCredentials":"Uprawnienia","Mobile_LoginToPiwikToChangeSettings":"Zaloguj\u0020si\u0119\u0020na\u0020sw\u00f3j\u0020serwer\u0020Matomo\u002c\u0020aby\u0020tworzy\u0107\u0020i\u0020aktualizowa\u0107\u0020serwisy\u002c\u0020u\u017cytkownik\u00f3w\u0020lub\u0020aby\u0020zmieni\u0107\u0020na\u0020przyk\u0142ad\u0020\u0022Domy\u015blny\u0020raport\u0020do\u0020wczytania\u0022\u0020w\u0020sekcji\u0020Konfiguracja","Mobile_LoginUseHttps":"U\u017cyj\u0020https","Mobile_MultiChartLabel":"Wy\u015bwietlanie\u0020lini\u0105\u0020z\u0020gwiazdek","Mobile_NavigationBack":"Powr\u00f3t","Mobile_NetworkError":"B\u0142\u0105d\u0020sieci","Mobile_NetworkErrorWithStatusCode":"Wyst\u0105pi\u0142\u0020b\u0142\u0105d\u003a\u0020\u0022\u0025s\u0022\u002e\u0020\u017b\u0105danie\u0020zwr\u00f3ci\u0142o\u0020status\u0020\u0022\u0025s\u0022\u002e\u0020Adres\u0020URL\u0020to\u003a\u0020\u0022\u0025s\u0022\u002e\u0020W\u0020celu\u0020uzyskania\u0020wi\u0119kszej\u0020ilo\u015bci\u0020informacji\u0020o\u0020b\u0142\u0119dzie\u0020i\u0020jego\u0020rozwi\u0105zaniach\u002c\u0020prosz\u0119\u0020sprawd\u017a\u0020wprowadzony\u0020adres\u0020URL\u0020i\u0020logi\u0020b\u0142\u0119d\u00f3w\u0020serwera\u002e","Mobile_NetworkErrorWithStatusCodeShort":"B\u0142\u0105d\u0020sieci\u0020\u0025s","Mobile_NetworkNotReachable":"Sie\u0107\u0020nieosi\u0105galna","Mobile_NoAccountIsSelected":"Musisz\u0020wybra\u0107\u0020konto\u002e\u0020Dodaj\u0020nowe\u0020konto\u0020je\u015bli\u0020go\u0020nie\u0020skonfigurowa\u0142e\u015b\u002e","Mobile_NoDataShort":"Brak\u0020danych","Mobile_NoPiwikAccount":"Brak\u0020konta\u0020Matomo\u003f","Mobile_NoReportsShort":"Brak\u0020raport\u00f3w","Mobile_NoVisitorFound":"Nie\u0020odnaleziono\u0020odwiedzaj\u0105cego","Mobile_NoVisitorsShort":"Brak\u0020odwiedzaj\u0105cych","Mobile_NoWebsiteFound":"Nie\u0020znaleziono\u0020strony","Mobile_NoWebsitesShort":"Brak\u0020stron","Mobile_PullDownToRefresh":"Przeci\u0105gnij\u0020w\u0020d\u00f3\u0142\u0020aby\u0020od\u015bwie\u017cy\u0107\u002e\u002e","Mobile_PossibleSslError":"Mo\u017cliwy\u0020b\u0142\u0105d\u0020certyfikatu\u0020SSL","Mobile_PossibleSslErrorExplanation":"Wyst\u0105pi\u0142\u0020b\u0142\u0105d\u002c\u0020kt\u00f3rego\u0020przyczyn\u0105\u0020mo\u017ce\u0020by\u0107\u0020niewa\u017cny\u0020lub\u0020samodzielnie\u0020podpisany\u0020certyfikat\u003a\u0020\u0022\u0025s\u0022\u002e\u0020Logowanie\u0020mo\u017ce\u0020by\u0107\u0020mo\u017cliwe\u0020po\u0020wy\u0142\u0105czeniu\u0020weryfikacji\u0020SSL\u002c\u0020ale\u0020jest\u0020mniej\u0020bezpieczne\u002e\u0020Zmian\u0119\u0020weryfikacji\u0020SSL\u0020mo\u017cesz\u0020wykona\u0107\u0020w\u0020Ustawieniach\u0020w\u0020dowolnym\u0020momencie\u002e","Mobile_IgnoreSslError":"Ignoruj\u0020b\u0142\u0105d\u0020SSL","Mobile_RatingDontRemindMe":"Nie\u0020przypominaj\u0020mi","Mobile_RatingNotNow":"Nie\u0020teraz","Mobile_RatingNow":"OK\u002c\u0020oceni\u0119\u0020to\u0020teraz","Mobile_RatingPleaseRateUs":"Aplikacja\u0020Matomo\u0020Mobile\u0020jest\u0020darmowa\u0020i\u0020naprawd\u0119\u0020zale\u017cy\u0020nam\u0020na\u0020Twojej\u0020opinii\u002e\u0020Prosimy\u0020po\u015bwi\u0119\u0107\u00201\u0020minutk\u0119\u0020aby\u0020oceni\u0107\u0020j\u0105\u0020w\u0020\u0025s\u002e\u0020Je\u015bli\u0020chcesz\u0020zaproponowa\u0107\u0020nowe\u0020funkcjonalno\u015bci\u0020lub\u0020zg\u0142osi\u0107\u0020b\u0142\u0105d\u002c\u0020zapraszamy\u0020do\u0020kontaktu\u0020\u0025s","Mobile_ReleaseToRefresh":"Pu\u015b\u0107\u0020aby\u0020od\u015bwie\u017cy\u0107\u002e\u002e\u002e","Mobile_Reloading":"Prze\u0142adowywanie\u002e\u002e\u002e","Mobile_RequestTimedOutShort":"Zbyt\u0020d\u0142ugi\u0020czas\u0020oczekiwania\u0020na\u0020po\u0142\u0105czenie","Mobile_RestrictedCompatibility":"Ograniczona\u0020kompatybilno\u015b\u0107","Mobile_RestrictedCompatibilityExplanation":"Matomo\u0020w\u0020u\u017cytkowanej\u0020wersji\u0020\u0025s\u0020nie\u0020jest\u0020w\u0020pe\u0142ni\u0020wspierany\u0020przez\u0020Matomo\u0020Mobile\u00202\u002e\u0020Istnieje\u0020prawdopodobie\u0144stwo\u0020wyst\u0119powania\u0020b\u0142\u0119d\u00f3w\u002e\u0020Zalecamy\u0020aktualizacj\u0119\u0020Matomo\u0020do\u0020najnowszej\u0020wersji\u0020lub\u0020instalacj\u0119\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_SaveSuccessError":"Adres\u0020Matomo\u0020lub\u0020kombinacja\u0020u\u017cytkownika\u0020i\u0020has\u0142a\u0020s\u0105\u0020b\u0142\u0119dne\u002e","Mobile_SearchWebsite":"Przeszukuj\u0020witryny","Mobile_ShowAll":"Poka\u017c\u0020wszystko","Mobile_ShowLess":"Poka\u017c\u0020mniej","Mobile_StaticGraph":"Wykres\u0020pogl\u0105dowy","Mobile_TopVisitedWebsites":"Najcz\u0119\u015bciej\u0020odwiedzanie\u0020strony","Mobile_TryIt":"Wypr\u00f3buj\u0021","Mobile_UseSearchBarHint":"Pierwsze\u0020\u0025s\u0020serwis\u00f3w\u0020jest\u0020tu\u0020wy\u015bwietlane\u002e\u0020Porsz\u0119\u0020skorzystaj\u0020z\u0020paska\u0020wyszukiwania\u002c\u0020aby\u0020uzyska\u0107\u0020dost\u0119p\u0020do\u0020pozosta\u0142ych\u0020serwis\u00f3w\u002e","Mobile_VerifyAccount":"Weryfikowanie\u0020Konta","Mobile_ValidateSslCertificate":"Zweryfikuj\u0020certyfikat\u0020SSL","Mobile_VerifyLoginData":"Upewnij\u0020si\u0119\u002c\u0020\u017ce\u0020Tw\u00f3j\u0020login\u0020i\u0020has\u0142o\u0020s\u0105\u0020poprawne\u002e","Mobile_YouAreOffline":"Przepraszamy\u002c\u0020obecnie\u0020jeste\u015b\u0020od\u0142\u0105czony","CorePluginsAdmin_Activate":"W\u0142\u0105cz","CorePluginsAdmin_Deactivate":"Wy\u0142\u0105cz","CoreHome_PeriodRange":"Zakres","CoreHome_TableNoData":"Brak\u0020danych\u0020dla\u0020tej\u0020tabeli\u002e","CoreHome_ThereIsNoDataForThisReport":"Brak\u0020danych\u0020dla\u0020tego\u0020raportu\u002e","Actions_SubmenuSitesearch":"Wyszukiwarka","DevicesDetection_ColumnBrowser":"Przegl\u0105darka","Goals_AbandonedCart":"Porzucony\u0020koszyk","Goals_Ecommerce":"E\u002dcommerce","Goals_EcommerceOrder":"Zam\u00f3wienia\u0020E\u002dcommerce","SEO_Rank":"Pozycja","Events_Event":"Zdarzenie","UserCountry_City":"Miasto","UserCountry_Country":"Kraj","UserCountry_Region":"Region","VisitsSummary_NbActionsDescription":"\u0025s\u0020dzia\u0142a\u0144","Feedback_DoYouHaveBugReportOrFeatureRequest":"Odkry\u0142e\u015b\u0020b\u0142\u0105d\u0020o\u0020kt\u00f3rym\u0020chcesz\u0020poinformowa\u0107\u002c\u0020czy\u0020masz\u0020pomys\u0142\u0020na\u0020now\u0105\u0020funkcjonalno\u015b\u0107\u003f","Feedback_ThankYou":"Dzi\u0119kujemy\u0020za\u0020pomoc\u002c\u0020kt\u00f3ra\u0020pozwala\u0020uczyni\u0107\u0020statystyki\u0020Matomo\u0020jeszcze\u0020lepszymi\u0021","UsersManager_ManageAccess":"Zarz\u0105dzanie\u0020uprawnieniami\u0020dost\u0119pu","UsersManager_PrivView":"Widok","SitesManager_ExceptionInvalidUrl":"Adres\u0020url\u0020\u0027\u0025s\u0027\u0020nie\u0020jest\u0020poprawnym\u0020adresem\u0020URL\u002e","SitesManager_MenuManage":"Zarz\u0105dzaj","SitesManager_NotFound":"Nie\u0020znaleziono\u0020stron\u0020dla","CoreUpdater_UpdateTitle":"Aktualizacja","UserCountryMap_RealTimeMap":"Mapa\u0020Czasu\u0020Rzeczywistego","Live_LastHours":"Ostatnie\u0020\u0025s\u0020godziny","Live_LastMinutes":"Ostatnie\u0020\u0025s\u0020minut","Live_VisitorLog":"Dziennik\u0020wizyt","Live_VisitorsInRealTime":"Wizyty\u0020w\u0020czasie\u0020rzeczywistym","CustomVariables_CustomVariables":"Zmienne\u0020Niestandardowe","SegmentEditor_DefaultAllVisits":"Wszystkie\u0020wizyty","Resolution_ColumnResolution":"Rozdzielczo\u015b\u0107","Intl_PeriodDay":"dzie\u0144","Intl_PeriodMonth":"miesi\u0105c","Intl_PeriodWeek":"tydzie\u0144","Intl_PeriodYear":"rok","Intl_Today":"Dzisiaj","Intl_Yesterday":"Wczoraj"}; +module.exports = {"General_AboutPiwikX":"O\u0020Matomo\u0020\u0025s","General_Action":"Aktywno\u015b\u0107","General_AllWebsitesDashboard":"Tablica\u0020analiz\u0020wszystkich\u0020stron","General_Cancel":"Anuluj","General_ChooseDate":"Wybierz datÄ™","General_ChooseLanguage":"Wybierz\u0020j\u0119zyk","General_ChoosePeriod":"Wybierz\u0020okres","General_Close":"Zamknij","General_ColumnNbVisits":"Odwiedziny","General_ColumnPageviews":"Liczba\u0020ods\u0142on","General_ColumnRevenue":"Przychody","General_CurrentMonth":"bie\u017c\u0105cy\u0020miesi\u0105c","General_CurrentWeek":"bie\u017c\u0105cy\u0020tydzie\u0144","General_CurrentYear":"bie\u017c\u0105cy\u0020rok","General_Date":"Data","General_DateRangeFrom":"od","General_DateRangeTo":"do","General_Delete":"Usu\u0144","General_Details":"Szczeg\u00f3\u0142y","General_Documentation":"Dokumentacja","General_Done":"Wykonano","General_Download":"Pobierz","General_Edit":"Edycja","General_Error":"B\u0142\u0105d","General_ErrorRequest":"Uppps\u002e\u002e\u002e\u0020wyst\u0105pi\u0142\u0020problem\u0020z\u0020obs\u0142ug\u0105\u0020\u017c\u0105dania\u002e\u0020Mo\u017cliwe\u002c\u0020\u017ce\u0020na\u0020serwerze\u0020wyst\u0105pi\u0142a\u0020anomalia\u0020lub\u0020za\u017c\u0105dany\u0020raport\u0020zawiera\u0142\u0020zbyt\u0020du\u017co\u0020danych\u002e\u0020Prosz\u0119\u0020spr\u00f3buj\u0020p\u00f3\u017aniej\u002e\u0020Je\u015bli\u0020b\u0142\u0105d\u0020b\u0119dzie\u0020si\u0119\u0020powtarza\u0142\u0020prosz\u0119\u0020\u0025sskontaktuj\u0020si\u0119\u0020ze\u0020swoim\u0020administratorem\u0020Matomo\u0020\u0025s\u0020w\u0020celu\u0020uzyskania\u0020pomocy\u002e","General_Faq":"FAQ","General_Flatten":"P\u0142aski","General_ForExampleShort":"np\u002e","General_Forums":"Forum","General_FromReferrer":"z","General_GeneralSettings":"Og\u00f3lne\u0020ustawienia","General_GiveUsYourFeedback":"Zdaj\u0020relacj\u0119\u0021","General_Goal":"Cel","General_Help":"Pomoc","General_InvalidResponse":"Otrzymane\u0020dane\u0020nie\u0020s\u0105\u0020prawid\u0142owe\u002e","General_Language":"J\u0119zyk","General_LastDaysShort":"Ostatnie\u0020\u0025s\u0020dni","General_Live":"Na\u0020\u017cywo","General_LoadingData":"\u0141aduj\u0119\u0020dane\u002e\u002e\u002e","General_Metric":"Wska\u017anik","General_More":"Wi\u0119cej","General_NewVisitor":"Nowy\u0020ogl\u0105daj\u0105cy","General_Next":"Dalej","General_No":"Nie","General_NotValid":"\u0025s\u0020nie\u0020jest\u0020poprawny","General_NumberOfVisits":"Ilo\u015b\u0107\u0020odwiedzin","General_NVisits":"\u0025s\u0020wizyt","General_Ok":"Ok","General_Others":"Pozosta\u0142e","General_Outlink":"Link\u0020zewn\u0119trzne","General_Password":"Has\u0142o","General_Period":"Okres","General_PiwikXIsAvailablePleaseNotifyPiwikAdmin":"\u0025s\u0020jest\u0020dost\u0119pny\u002e\u0020Prosimy\u0020powiadomi\u0107\u0025sMatomo\u0020administratora\u0025s\u002e","General_PleaseUpdatePiwik":"Prosimy\u0020o\u0020aktualizacj\u0119\u0020oprogramowania\u0020Matomo","General_Plugins":"Wtyczki","General_Previous":"Wstecz","General_PreviousDaysShort":"Poprzednie\u0020\u0025s\u0020dni","General_Refresh":"Od\u015bwie\u017c","General_Remove":"Usu\u0144","General_Reports":"Raporty","General_RequestTimedOut":"\u017b\u0105danie\u0020danych\u0020w\u0020procesie\u0020\u0025s\u0020nie\u0020zosta\u0142o\u0020wykonane\u0020w\u0020wyznaczonym\u0020czasie\u0020\u002d\u0020time\u0020out\u002e\u0020Spr\u00f3buj\u0020ponownie\u002e","General_Required":"\u0025s\u0020wymagane","General_Save":"Zapisz","General_Settings":"Konfiguracja","General_Subtotal":"Razem","General_Unknown":"Nieznany","General_Username":"Nazwa\u0020u\u017cytkownika","General_Value":"Parametr","General_VisitConvertedNGoals":"Odwiedziny\u0020przekszta\u0142ci\u0142y\u0020si\u0119\u0020\u0025s\u0020jako\u0020osi\u0105gni\u0119te\u0020cele\u0020ze\u0020zdefiniowanych\u0020wcze\u015bniej\u0020za\u0142o\u017ce\u0144","General_Visitor":"Odwiedzaj\u0105cy","General_VisitorIP":"IP\u0020odwiedzaj\u0105cego","General_Visitors":"Ogl\u0105daj\u0105cy","General_VisitorSettings":"Konfiguracje\u0020u\u017cytkownika","General_VisitType":"Typ\u0020wizyty","General_Website":"Strona\u0020WWW","General_Yes":"Tak","General_YourChangesHaveBeenSaved":"Twoje\u0020modyfikacje\u0020zosta\u0142y\u0020zapisane\u0020pomy\u015blnie\u002e","Mobile_AboutPiwikMobile":"O\u0020Matomo\u0020Mobile","Mobile_AccessUrlLabel":"Adres\u0020dost\u0119powy\u0020Matomo","Mobile_Account":"Konto","Mobile_Accounts":"Konta","Mobile_AddAccount":"Dodaj\u0020konto","Mobile_AddPiwikDemo":"Dodaj\u0020Matomo\u0020Demo","Mobile_Advanced":"Zaawansowane","Mobile_AnonymousAccess":"Dost\u0119p\u0020anonimowy","Mobile_AnonymousTracking":"Anonimowe\u0020\u015bledzenie","Mobile_AskForAnonymousTrackingPermission":"Po\u0020aktywacji\u002c\u0020Matomo\u0020Mobile\u0020b\u0119dzie\u0020wysy\u0142a\u0142\u0020anonimowe\u0020statystyki\u0020u\u017cytkowania\u0020do\u0020matomo\u002eorg\u002e\u0020Pos\u0142u\u017c\u0105\u0020one\u0020deweloperom\u0020Matomo\u0020Mobile\u0020do\u0020lepszego\u0020zrozumienia\u0020sposob\u00f3w\u0020korzystania\u0020z\u0020aplikacji\u002e\u0020Wysy\u0142ane\u0020informacje\u0020to\u003a\u0020klikni\u0119cia\u0020menu\u0020i\u0020ustawie\u0144\u002c\u0020nazwa\u0020i\u0020wersja\u0020systemu\u0020operacyjnego\u002c\u0020ka\u017cdy\u0020b\u0142\u0105d\u0020wy\u015bwietlony\u0020w\u0020Matomo\u0020Mobile\u002e\u0020NIE\u0020B\u0118DZIEMY\u0020\u015bledzili\u0020\u017cadnych\u0020Twoich\u0020statystyk\u002e\u0020Te\u0020anonimowe\u0020dane\u0020nigdy\u0020nie\u0020zostan\u0105\u0020upublicznione\u002e\u0020W\u0020dowolnym\u0020momencie\u0020mo\u017cesz\u0020w\u0142\u0105czy\u0107\u0020lub\u0020wy\u0142\u0105czy\u0107\u0020anonimowe\u0020statystyki\u0020w\u0020Ustawieniach\u002e","Mobile_ChooseHttpTimeout":"Czas\u0020oczekiwania\u0020na\u0020odpowied\u017a","Mobile_ChooseMetric":"Wybierz\u0020wska\u017anik","Mobile_ChooseReport":"Wybierz\u0020raport","Mobile_ChooseSegment":"Wybierz\u0020segment","Mobile_ConfirmRemoveAccount":"Czy\u0020chcesz\u0020usun\u0105\u0107\u0020to\u0020konto\u003f","Mobile_DefaultReportDate":"Data\u0020raportu","Mobile_EmailUs":"Wy\u015blij\u0020nam\u0020wiadomo\u015b\u0107\u0020email","Mobile_EnableGraphsLabel":"Wy\u015bwietlanie\u0020wykres\u00f3w","Mobile_EvolutionGraph":"Graf\u0020Historyczny","Mobile_HelpUsToImprovePiwikMobile":"Czy\u0020chcesz\u0020w\u0142\u0105czy\u0107\u0020anonimowe\u0020\u015bledzenie\u0020wykorzystania\u0020w\u0020Matomo\u0020Mobile\u003f","Mobile_HowtoDeleteAnAccount":"Naci\u015bnij\u0020i\u0020przytrzymaj\u0020by\u0020usun\u0105\u0107\u0020konto\u002e","Mobile_HowtoDeleteAnAccountOniOS":"W\u0020celu\u0020usuni\u0119cia\u0020konta\u0020przeci\u0105gnij\u0020z\u0020prawej\u0020do\u0020lewej","Mobile_HowtoLoginAnonymous":"Pozostaw\u0020nazw\u0119\u0020i\u0020has\u0142o\u0020uzytkownika\u0020pustymi\u0020dla\u0020logowania\u0020anonimowego","Mobile_HttpIsNotSecureWarning":"Tw\u00f3j\u0020token\u0020autoryzacji\u0020Matomo\u0020\u0028tiken\u005fauth\u0029\u0020b\u0119dzie\u0020przesy\u0142any\u0020jako\u0020zwyk\u0142y\u0020tekst\u002c\u0020gdy\u0020u\u017cywasz\u0020\u0027HTTP\u0027\u002e\u0020Z\u0020tego\u0020powodu\u0020zalecamy\u0020korzystanie\u0020z\u0020HTTPS\u0020umo\u017cliwiaj\u0105cego\u0020bezpieczny\u0020przesy\u0142\u0020danych\u0020przez\u0020Internet\u002e\u0020Czy\u0020chcesz\u0020kontynuowa\u0107\u003f","Mobile_HttpTimeout":"HTTP\u0020Timeout\u0020\u002d\u0020Przekroczono\u0020maksymalny\u0020dozwolony\u0020czas","Mobile_IncompatiblePiwikVersion":"Obecnie\u0020zainstalowana\u0020wersja\u0020Matomo\u0020nie\u0020jest\u0020zgodna\u0020z\u0020Matomo\u0020Mobile\u00202\u002e\u0020Uaktualnij\u0020swoj\u0105\u0020instalacj\u0119\u0020Matomo\u0020i\u0020spr\u00f3buj\u0020ponownie\u0020lub\u0020zainstaluj\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_LoadingReport":"\u0141aduj\u0119\u0020\u0025s","Mobile_LoginCredentials":"Uprawnienia","Mobile_LoginToPiwikToChangeSettings":"Zaloguj\u0020si\u0119\u0020na\u0020sw\u00f3j\u0020serwer\u0020Matomo\u002c\u0020aby\u0020tworzy\u0107\u0020i\u0020aktualizowa\u0107\u0020serwisy\u002c\u0020u\u017cytkownik\u00f3w\u0020lub\u0020aby\u0020zmieni\u0107\u0020na\u0020przyk\u0142ad\u0020\u0022Domy\u015blny\u0020raport\u0020do\u0020wczytania\u0022\u0020w\u0020sekcji\u0020Konfiguracja","Mobile_LoginUseHttps":"U\u017cyj\u0020https","Mobile_MultiChartLabel":"Wy\u015bwietlanie\u0020lini\u0105\u0020z\u0020gwiazdek","Mobile_NavigationBack":"Powr\u00f3t","Mobile_NetworkError":"B\u0142\u0105d\u0020sieci","Mobile_NetworkErrorWithStatusCode":"Wyst\u0105pi\u0142\u0020b\u0142\u0105d\u003a\u0020\u0022\u0025s\u0022\u002e\u0020\u017b\u0105danie\u0020zwr\u00f3ci\u0142o\u0020status\u0020\u0022\u0025s\u0022\u002e\u0020Adres\u0020URL\u0020to\u003a\u0020\u0022\u0025s\u0022\u002e\u0020W\u0020celu\u0020uzyskania\u0020wi\u0119kszej\u0020ilo\u015bci\u0020informacji\u0020o\u0020b\u0142\u0119dzie\u0020i\u0020jego\u0020rozwi\u0105zaniach\u002c\u0020prosz\u0119\u0020sprawd\u017a\u0020wprowadzony\u0020adres\u0020URL\u0020i\u0020logi\u0020b\u0142\u0119d\u00f3w\u0020serwera\u002e","Mobile_NetworkErrorWithStatusCodeShort":"B\u0142\u0105d\u0020sieci\u0020\u0025s","Mobile_NetworkNotReachable":"Sie\u0107\u0020nieosi\u0105galna","Mobile_NoAccountIsSelected":"Musisz\u0020wybra\u0107\u0020konto\u002e\u0020Dodaj\u0020nowe\u0020konto\u0020je\u015bli\u0020go\u0020nie\u0020skonfigurowa\u0142e\u015b\u002e","Mobile_NoDataShort":"Brak\u0020danych","Mobile_NoPiwikAccount":"Brak\u0020konta\u0020Matomo\u003f","Mobile_NoReportsShort":"Brak\u0020raport\u00f3w","Mobile_NoVisitorFound":"Nie\u0020odnaleziono\u0020odwiedzaj\u0105cego","Mobile_NoVisitorsShort":"Brak\u0020odwiedzaj\u0105cych","Mobile_NoWebsiteFound":"Nie\u0020znaleziono\u0020strony","Mobile_NoWebsitesShort":"Brak\u0020stron","Mobile_PullDownToRefresh":"Przeci\u0105gnij\u0020w\u0020d\u00f3\u0142\u0020aby\u0020od\u015bwie\u017cy\u0107\u002e\u002e","Mobile_PossibleSslError":"Mo\u017cliwy\u0020b\u0142\u0105d\u0020certyfikatu\u0020SSL","Mobile_PossibleSslErrorExplanation":"Wyst\u0105pi\u0142\u0020b\u0142\u0105d\u002c\u0020kt\u00f3rego\u0020przyczyn\u0105\u0020mo\u017ce\u0020by\u0107\u0020niewa\u017cny\u0020lub\u0020samodzielnie\u0020podpisany\u0020certyfikat\u003a\u0020\u0022\u0025s\u0022\u002e\u0020Logowanie\u0020mo\u017ce\u0020by\u0107\u0020mo\u017cliwe\u0020po\u0020wy\u0142\u0105czeniu\u0020weryfikacji\u0020SSL\u002c\u0020ale\u0020jest\u0020mniej\u0020bezpieczne\u002e\u0020Zmian\u0119\u0020weryfikacji\u0020SSL\u0020mo\u017cesz\u0020wykona\u0107\u0020w\u0020Ustawieniach\u0020w\u0020dowolnym\u0020momencie\u002e","Mobile_IgnoreSslError":"Ignoruj\u0020b\u0142\u0105d\u0020SSL","Mobile_RatingDontRemindMe":"Nie\u0020przypominaj\u0020mi","Mobile_RatingNotNow":"Nie\u0020teraz","Mobile_RatingNow":"OK\u002c\u0020oceni\u0119\u0020to\u0020teraz","Mobile_RatingPleaseRateUs":"Aplikacja\u0020Matomo\u0020Mobile\u0020jest\u0020darmowa\u0020i\u0020naprawd\u0119\u0020zale\u017cy\u0020nam\u0020na\u0020Twojej\u0020opinii\u002e\u0020Prosimy\u0020po\u015bwi\u0119\u0107\u00201\u0020minutk\u0119\u0020aby\u0020oceni\u0107\u0020j\u0105\u0020w\u0020\u0025s\u002e\u0020Je\u015bli\u0020chcesz\u0020zaproponowa\u0107\u0020nowe\u0020funkcjonalno\u015bci\u0020lub\u0020zg\u0142osi\u0107\u0020b\u0142\u0105d\u002c\u0020zapraszamy\u0020do\u0020kontaktu\u0020\u0025s","Mobile_ReleaseToRefresh":"Pu\u015b\u0107\u0020aby\u0020od\u015bwie\u017cy\u0107\u002e\u002e\u002e","Mobile_Reloading":"Prze\u0142adowywanie\u002e\u002e\u002e","Mobile_RequestTimedOutShort":"Zbyt\u0020d\u0142ugi\u0020czas\u0020oczekiwania\u0020na\u0020po\u0142\u0105czenie","Mobile_RestrictedCompatibility":"Ograniczona\u0020kompatybilno\u015b\u0107","Mobile_RestrictedCompatibilityExplanation":"Matomo\u0020w\u0020u\u017cytkowanej\u0020wersji\u0020\u0025s\u0020nie\u0020jest\u0020w\u0020pe\u0142ni\u0020wspierany\u0020przez\u0020Matomo\u0020Mobile\u00202\u002e\u0020Istnieje\u0020prawdopodobie\u0144stwo\u0020wyst\u0119powania\u0020b\u0142\u0119d\u00f3w\u002e\u0020Zalecamy\u0020aktualizacj\u0119\u0020Matomo\u0020do\u0020najnowszej\u0020wersji\u0020lub\u0020instalacj\u0119\u0020Matomo\u0020Mobile\u00201\u002e","Mobile_SaveSuccessError":"Adres\u0020Matomo\u0020lub\u0020kombinacja\u0020u\u017cytkownika\u0020i\u0020has\u0142a\u0020s\u0105\u0020b\u0142\u0119dne\u002e","Mobile_SearchWebsite":"Przeszukuj\u0020witryny","Mobile_ShowAll":"Poka\u017c\u0020wszystko","Mobile_ShowLess":"Poka\u017c\u0020mniej","Mobile_StaticGraph":"Wykres\u0020pogl\u0105dowy","Mobile_TopVisitedWebsites":"Najcz\u0119\u015bciej\u0020odwiedzanie\u0020strony","Mobile_TryIt":"Wypr\u00f3buj\u0021","Mobile_UseSearchBarHint":"Pierwsze\u0020\u0025s\u0020serwis\u00f3w\u0020jest\u0020tu\u0020wy\u015bwietlane\u002e\u0020Porsz\u0119\u0020skorzystaj\u0020z\u0020paska\u0020wyszukiwania\u002c\u0020aby\u0020uzyska\u0107\u0020dost\u0119p\u0020do\u0020pozosta\u0142ych\u0020serwis\u00f3w\u002e","Mobile_VerifyAccount":"Weryfikowanie\u0020Konta","Mobile_ValidateSslCertificate":"Zweryfikuj\u0020certyfikat\u0020SSL","Mobile_VerifyLoginData":"Upewnij\u0020si\u0119\u002c\u0020\u017ce\u0020Tw\u00f3j\u0020login\u0020i\u0020has\u0142o\u0020s\u0105\u0020poprawne\u002e","Mobile_YouAreOffline":"Przepraszamy\u002c\u0020obecnie\u0020jeste\u015b\u0020od\u0142\u0105czony","CorePluginsAdmin_Activate":"W\u0142\u0105cz","CorePluginsAdmin_Deactivate":"Wy\u0142\u0105cz","CoreHome_PeriodRange":"Zakres","CoreHome_TableNoData":"Brak\u0020danych\u0020dla\u0020tej\u0020tabeli\u002e","CoreHome_ThereIsNoDataForThisReport":"Brak\u0020danych\u0020dla\u0020tego\u0020raportu\u002e","Actions_SubmenuSitesearch":"Wyszukiwarka","DevicesDetection_ColumnBrowser":"Przegl\u0105darka","Goals_AbandonedCart":"Porzucony\u0020koszyk","Goals_Ecommerce":"E\u002dcommerce","Goals_EcommerceOrder":"Zam\u00f3wienia\u0020E\u002dcommerce","SEO_Rank":"Pozycja","Events_Event":"Zdarzenie","UserCountry_City":"Miasto","UserCountry_Country":"Kraj","UserCountry_Region":"Region","VisitsSummary_NbActionsDescription":"\u0025s\u0020dzia\u0142a\u0144","Feedback_DoYouHaveBugReportOrFeatureRequest":"Odkry\u0142e\u015b\u0020b\u0142\u0105d\u0020o\u0020kt\u00f3rym\u0020chcesz\u0020poinformowa\u0107\u002c\u0020czy\u0020masz\u0020pomys\u0142\u0020na\u0020now\u0105\u0020funkcjonalno\u015b\u0107\u003f","Feedback_ThankYou":"Dzi\u0119kujemy\u0020za\u0020pomoc\u002c\u0020kt\u00f3ra\u0020pozwala\u0020uczyni\u0107\u0020statystyki\u0020Matomo\u0020jeszcze\u0020lepszymi\u0021","UsersManager_ManageAccess":"Zarz\u0105dzanie\u0020uprawnieniami\u0020dost\u0119pu","UsersManager_PrivView":"Widok","SitesManager_ExceptionInvalidUrl":"Adres\u0020url\u0020\u0027\u0025s\u0027\u0020nie\u0020jest\u0020poprawnym\u0020adresem\u0020URL\u002e","SitesManager_MenuManage":"Zarz\u0105dzaj","SitesManager_NotFound":"Nie\u0020znaleziono\u0020stron\u0020dla","CoreUpdater_UpdateTitle":"Aktualizacja","UserCountryMap_RealTimeMap":"Mapa\u0020Czasu\u0020Rzeczywistego","Live_LastHours":"Ostatnie\u0020\u0025s\u0020godziny","Live_LastMinutes":"Ostatnie\u0020\u0025s\u0020minut","Live_VisitorLog":"Dziennik\u0020wizyt","Live_VisitorsInRealTime":"Wizyty\u0020w\u0020czasie\u0020rzeczywistym","CustomVariables_CustomVariables":"Zmienne\u0020Niestandardowe","SegmentEditor_DefaultAllVisits":"Wszystkie\u0020wizyty","Resolution_ColumnResolution":"Rozdzielczo\u015b\u0107","Intl_PeriodDay":"dzie\u0144","Intl_PeriodMonth":"miesi\u0105c","Intl_PeriodWeek":"tydzie\u0144","Intl_PeriodYear":"rok","Intl_Today":"Dzisiaj","Intl_Yesterday":"Wczoraj"}; diff --git a/app/models/appSettings.js b/app/models/appSettings.js index 4597a6b8..c9855fa3 100644 --- a/app/models/appSettings.js +++ b/app/models/appSettings.js @@ -53,7 +53,7 @@ exports.definition = { shouldValidateSsl: function () { if (this.hasConfiguredValidateSsl()) { - return this.get('validateSsl'); + return Boolean(this.get('validateSsl')); } return settingDefaults.validateSsl; diff --git a/app/styles/all_websites_dashboard.tss b/app/styles/all_websites_dashboard.tss index fb0f13ee..6cf59e79 100755 --- a/app/styles/all_websites_dashboard.tss +++ b/app/styles/all_websites_dashboard.tss @@ -6,6 +6,7 @@ "#searchBar": { top: 0, + width: Ti.UI.FILL, barColor: "#cccccc", showCancel: true, tintColor: '#212121' diff --git a/app/styles/android/date_chooser.tss b/app/styles/android/date_chooser.tss index 92f58286..f3da0d83 100644 --- a/app/styles/android/date_chooser.tss +++ b/app/styles/android/date_chooser.tss @@ -51,7 +51,6 @@ "#toDatePicker": { top: '8dp', left: '16dp', - bottom: '16dp', type: Ti.UI.PICKER_TYPE_DATE, } @@ -78,4 +77,4 @@ "#period_range": { title: L('CoreHome_PeriodRange'), period: 'range' -} \ No newline at end of file +} diff --git a/app/views/accounts.xml b/app/views/accounts.xml index 7a6a1b68..5b4ce8a4 100755 --- a/app/views/accounts.xml +++ b/app/views/accounts.xml @@ -26,7 +26,7 @@ formFactor="tablet" platform="android" /> - +