update Piwik to version 2.16 (fixes #91)
This commit is contained in:
parent
296343bf3b
commit
d885a4baa9
5833 changed files with 418860 additions and 226988 deletions
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
/**
|
||||
* Piwik - Open source web analytics
|
||||
* Piwik - free/libre analytics platform
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
|
|
@ -44,13 +44,20 @@ class API extends \Piwik\Plugin\API
|
|||
}
|
||||
|
||||
$body = sprintf("Feature: %s\nLike: %s\n", $featureName, $likeText, $message);
|
||||
if (!empty($message)) {
|
||||
$body .= sprintf("Feedback:\n%s\n", $message);
|
||||
} else {
|
||||
$body .= "No feedback\n";
|
||||
}
|
||||
|
||||
$this->sendMail($featureName, $body);
|
||||
$feedbackMessage = "";
|
||||
if (!empty($message) && $message != 'undefined') {
|
||||
$feedbackMessage = sprintf("Feedback:\n%s\n", trim($message));
|
||||
}
|
||||
$body .= $feedbackMessage ? $feedbackMessage : " \n";
|
||||
|
||||
$subject = sprintf("%s for %s %s",
|
||||
empty($like) ? "-1" : "+1",
|
||||
$featureName,
|
||||
empty($feedbackMessage) ? "" : "(w/ feedback)"
|
||||
);
|
||||
|
||||
$this->sendMail($subject, $body);
|
||||
}
|
||||
|
||||
private function sendMail($subject, $body)
|
||||
|
|
@ -71,38 +78,14 @@ class API extends \Piwik\Plugin\API
|
|||
@$mail->send();
|
||||
}
|
||||
|
||||
private function findTranslationKeyForFeatureName($featureName)
|
||||
{
|
||||
if (empty($GLOBALS['Piwik_translations'])) {
|
||||
return;
|
||||
}
|
||||
|
||||
foreach ($GLOBALS['Piwik_translations'] as $key => $translations) {
|
||||
$possibleKey = array_search($featureName, $translations);
|
||||
if (!empty($possibleKey)) {
|
||||
return $key . '_' . $possibleKey;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private function getEnglishTranslationForFeatureName($featureName)
|
||||
{
|
||||
$loadedLanguage = Translate::getLanguageLoaded();
|
||||
|
||||
if ($loadedLanguage == 'en') {
|
||||
if (Translate::getLanguageLoaded() == 'en') {
|
||||
return $featureName;
|
||||
}
|
||||
|
||||
$translationKeyForFeature = $this->findTranslationKeyForFeatureName($featureName);
|
||||
$translationKeyForFeature = Translate::findTranslationKeyForTranslation($featureName);
|
||||
|
||||
if (!empty($translationKeyForFeature)) {
|
||||
Translate::reloadLanguage('en');
|
||||
|
||||
$featureName = Piwik::translate($translationKeyForFeature);
|
||||
Translate::reloadLanguage($loadedLanguage);
|
||||
return $featureName;
|
||||
}
|
||||
|
||||
return $featureName;
|
||||
return Piwik::translate($translationKeyForFeature, array(), 'en');
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
/**
|
||||
* Piwik - Open source web analytics
|
||||
* Piwik - free/libre analytics platform
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
|
|
@ -8,14 +8,6 @@
|
|||
*/
|
||||
namespace Piwik\Plugins\Feedback;
|
||||
|
||||
use Exception;
|
||||
use Piwik\Common;
|
||||
use Piwik\Config;
|
||||
use Piwik\IP;
|
||||
use Piwik\Mail;
|
||||
use Piwik\Nonce;
|
||||
use Piwik\Piwik;
|
||||
use Piwik\Url;
|
||||
use Piwik\Version;
|
||||
use Piwik\View;
|
||||
|
||||
|
|
|
|||
|
|
@ -1,15 +1,12 @@
|
|||
<?php
|
||||
/**
|
||||
* Piwik - Open source web analytics
|
||||
* Piwik - free/libre analytics platform
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
*
|
||||
*/
|
||||
namespace Piwik\Plugins\Feedback;
|
||||
use Piwik\Menu\MenuTop;
|
||||
use Piwik\Piwik;
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
@ -18,42 +15,28 @@ class Feedback extends \Piwik\Plugin
|
|||
{
|
||||
|
||||
/**
|
||||
* @see Piwik\Plugin::getListHooksRegistered
|
||||
* @see Piwik\Plugin::registerEvents
|
||||
*/
|
||||
public function getListHooksRegistered()
|
||||
public function registerEvents()
|
||||
{
|
||||
return array(
|
||||
'AssetManager.getStylesheetFiles' => 'getStylesheetFiles',
|
||||
'AssetManager.getJavaScriptFiles' => 'getJsFiles',
|
||||
'Menu.Top.addItems' => 'addTopMenu',
|
||||
'Translate.getClientSideTranslationKeys' => 'getClientSideTranslationKeys'
|
||||
);
|
||||
}
|
||||
|
||||
public function addTopMenu()
|
||||
{
|
||||
MenuTop::addEntry(
|
||||
'General_Help',
|
||||
array('module' => 'Feedback', 'action' => 'index', 'segment' => false),
|
||||
true,
|
||||
$order = 20,
|
||||
$isHTML = false,
|
||||
$tooltip = Piwik::translate('Feedback_TopLinkTooltip')
|
||||
);
|
||||
}
|
||||
|
||||
public function getStylesheetFiles(&$stylesheets)
|
||||
{
|
||||
$stylesheets[] = "plugins/Feedback/stylesheets/feedback.less";
|
||||
|
||||
$stylesheets[] = "plugins/Feedback/angularjs/ratefeature/ratefeature.less";
|
||||
$stylesheets[] = "plugins/Feedback/angularjs/ratefeature/ratefeature.directive.less";
|
||||
}
|
||||
|
||||
public function getJsFiles(&$jsFiles)
|
||||
{
|
||||
$jsFiles[] = "plugins/Feedback/angularjs/ratefeature/ratefeature-model.js";
|
||||
$jsFiles[] = "plugins/Feedback/angularjs/ratefeature/ratefeature-controller.js";
|
||||
$jsFiles[] = "plugins/Feedback/angularjs/ratefeature/ratefeature-directive.js";
|
||||
$jsFiles[] = "plugins/Feedback/angularjs/ratefeature/ratefeature-model.service.js";
|
||||
$jsFiles[] = "plugins/Feedback/angularjs/ratefeature/ratefeature.controller.js";
|
||||
$jsFiles[] = "plugins/Feedback/angularjs/ratefeature/ratefeature.directive.js";
|
||||
}
|
||||
|
||||
public function getClientSideTranslationKeys(&$translationKeys)
|
||||
|
|
@ -66,5 +49,6 @@ class Feedback extends \Piwik\Plugin
|
|||
$translationKeys[] = 'Feedback_SendFeedback';
|
||||
$translationKeys[] = 'Feedback_RateFeatureSendFeedbackInformation';
|
||||
$translationKeys[] = 'General_Ok';
|
||||
$translationKeys[] = 'General_Cancel';
|
||||
}
|
||||
}
|
||||
|
|
|
|||
25
www/analytics/plugins/Feedback/Menu.php
Normal file
25
www/analytics/plugins/Feedback/Menu.php
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
<?php
|
||||
/**
|
||||
* Piwik - free/libre analytics platform
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
*
|
||||
*/
|
||||
namespace Piwik\Plugins\Feedback;
|
||||
|
||||
use Piwik\Menu\MenuUser;
|
||||
use Piwik\Piwik;
|
||||
|
||||
class Menu extends \Piwik\Plugin\Menu
|
||||
{
|
||||
public function configureUserMenu(MenuUser $menu)
|
||||
{
|
||||
$menu->addPlatformItem(
|
||||
'General_Help',
|
||||
$this->urlForAction('index', array('segment' => false)),
|
||||
$order = 99,
|
||||
$tooltip = Piwik::translate('Feedback_TopLinkTooltip')
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
/*!
|
||||
* Piwik - Web Analytics
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
*/
|
||||
|
||||
angular.module('piwikApp').controller('RateFeatureController', function($scope, rateFeatureModel, $filter){
|
||||
|
||||
$scope.dislikeFeature = function () {
|
||||
$scope.like = false;
|
||||
};
|
||||
|
||||
$scope.likeFeature = function () {
|
||||
$scope.like = true;
|
||||
};
|
||||
|
||||
$scope.sendFeedback = function (message) {
|
||||
rateFeatureModel.sendFeedbackForFeature($scope.title, $scope.like, message);
|
||||
$scope.ratingDone = true;
|
||||
// alert($filter('translate')('Feedback_ThankYou'));
|
||||
};
|
||||
});
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
/*!
|
||||
* Piwik - Web Analytics
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Usage:
|
||||
* <div piwik-rate-feature title="My Feature Name">
|
||||
*/
|
||||
angular.module('piwikApp').directive('piwikRateFeature', function($document, piwik, $filter){
|
||||
|
||||
return {
|
||||
restrict: 'A',
|
||||
scope: {
|
||||
title: '@'
|
||||
},
|
||||
templateUrl: 'plugins/Feedback/angularjs/ratefeature/ratefeature.html?cb=' + piwik.cacheBuster,
|
||||
controller: 'RateFeatureController'
|
||||
};
|
||||
});
|
||||
|
|
@ -1,22 +0,0 @@
|
|||
/*!
|
||||
* Piwik - Web Analytics
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
*/
|
||||
|
||||
angular.module('piwikApp').factory('rateFeatureModel', function (piwikApi) {
|
||||
|
||||
var model = {};
|
||||
|
||||
model.sendFeedbackForFeature = function (featureName, like, message) {
|
||||
return piwikApi.fetch({
|
||||
method: 'Feedback.sendFeedbackForFeature',
|
||||
featureName: featureName,
|
||||
like: like ? '1' : '0',
|
||||
message: message + ''
|
||||
});
|
||||
};
|
||||
|
||||
return model;
|
||||
});
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
/*!
|
||||
* Piwik - free/libre analytics platform
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
*/
|
||||
|
||||
(function () {
|
||||
angular.module('piwikApp').factory('rateFeatureModel', rateFeatureModel);
|
||||
|
||||
rateFeatureModel.$inject = ['piwikApi'];
|
||||
|
||||
function rateFeatureModel(piwikApi) {
|
||||
|
||||
return {
|
||||
sendFeedbackForFeature: sendFeedbackForFeature
|
||||
};
|
||||
|
||||
function sendFeedbackForFeature (featureName, like, message) {
|
||||
return piwikApi.fetch({
|
||||
method: 'Feedback.sendFeedbackForFeature',
|
||||
featureName: featureName,
|
||||
like: like ? '1' : '0',
|
||||
message: message + ''
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
})();
|
||||
|
|
@ -0,0 +1,33 @@
|
|||
/*!
|
||||
* Piwik - free/libre analytics platform
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
*/
|
||||
(function () {
|
||||
angular.module('piwikApp').controller('RateFeatureController', RateFeatureController);
|
||||
|
||||
RateFeatureController.$inject = ['$scope', 'rateFeatureModel'];
|
||||
|
||||
function RateFeatureController($scope, model){
|
||||
|
||||
var vm = this;
|
||||
vm.title = $scope.title;
|
||||
vm.dislikeFeature = dislikeFeature;
|
||||
vm.likeFeature = likeFeature;
|
||||
vm.sendFeedback = sendFeedback;
|
||||
|
||||
function dislikeFeature () {
|
||||
vm.like = false;
|
||||
}
|
||||
|
||||
function likeFeature () {
|
||||
vm.like = true;
|
||||
}
|
||||
|
||||
function sendFeedback (message) {
|
||||
model.sendFeedbackForFeature(vm.title, vm.like, message);
|
||||
vm.ratingDone = true;
|
||||
}
|
||||
}
|
||||
})();
|
||||
|
|
@ -1,23 +1,23 @@
|
|||
<div title="{{ 'Feedback_RateFeatureTitle'|translate:title }}" class="ratefeature">
|
||||
<div title="{{ 'Feedback_RateFeatureTitle'|translate:rateFeature.title }}" class="ratefeature">
|
||||
|
||||
<div class="iconContainer"
|
||||
ng-mouseenter="view.expanded=true;"
|
||||
ng-mouseleave="view.expanded=false">
|
||||
|
||||
<img ng-click="likeFeature();view.showFeedbackForm=true;"
|
||||
<img ng-click="rateFeature.likeFeature();view.showFeedbackForm=true;"
|
||||
class="like-icon"
|
||||
src="plugins/Feedback/angularjs/ratefeature/thumbs-up.png"/>
|
||||
|
||||
<img ng-click="dislikeFeature();view.showFeedbackForm=true;"
|
||||
<img ng-click="rateFeature.dislikeFeature();view.showFeedbackForm=true;"
|
||||
class="dislike-icon"
|
||||
ng-show="view.expanded"
|
||||
src="plugins/Feedback/angularjs/ratefeature/thumbs-down.png"/>
|
||||
</div>
|
||||
|
||||
<div class="ui-confirm ratefeatureDialog" piwik-dialog="view.showFeedbackForm" yes="sendFeedback(view.feedbackMessage)">
|
||||
<div class="ui-confirm ratefeatureDialog" piwik-dialog="view.showFeedbackForm" yes="rateFeature.sendFeedback(view.feedbackMessage)">
|
||||
<h2>{{ 'Feedback_RateFeatureThankYouTitle'|translate:title }}</h2>
|
||||
<p ng-if="like">{{ 'Feedback_RateFeatureLeaveMessageLike'|translate }}</p>
|
||||
<p ng-if="!like">{{ 'Feedback_RateFeatureLeaveMessageDislike'|translate }}</p>
|
||||
<p ng-if="rateFeature.like">{{ 'Feedback_RateFeatureLeaveMessageLike'|translate }}</p>
|
||||
<p ng-if="!rateFeature.like">{{ 'Feedback_RateFeatureLeaveMessageDislike'|translate }}</p>
|
||||
<br />
|
||||
|
||||
<div class="messageContainer">
|
||||
|
|
@ -29,8 +29,8 @@
|
|||
value="{{ 'Feedback_SendFeedback'|translate }}" role="yes"/>
|
||||
</div>
|
||||
|
||||
<div class="ui-confirm ratefeatureDialog" piwik-dialog="ratingDone" yes="">
|
||||
<h2>{{ 'Feedback_ThankYou'|translate:title }}</h2>
|
||||
<div class="ui-confirm ratefeatureDialog" piwik-dialog="rateFeature.ratingDone" yes="">
|
||||
<h2>{{ 'Feedback_ThankYou'|translate:rateFeature.title }}</h2>
|
||||
|
||||
<input type="button" value="{{ 'General_Ok'|translate }}" role="yes"/>
|
||||
</div>
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
/*!
|
||||
* Piwik - free/libre analytics platform
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
*/
|
||||
|
||||
/**
|
||||
* Usage:
|
||||
* <div piwik-rate-feature title="My Feature Name">
|
||||
*/
|
||||
(function () {
|
||||
angular.module('piwikApp').directive('piwikRateFeature', piwikRateFeature);
|
||||
|
||||
piwikRateFeature.$inject = ['piwik'];
|
||||
|
||||
function piwikRateFeature(piwik){
|
||||
|
||||
return {
|
||||
restrict: 'A',
|
||||
scope: {
|
||||
title: '@'
|
||||
},
|
||||
templateUrl: 'plugins/Feedback/angularjs/ratefeature/ratefeature.directive.html?cb=' + piwik.cacheBuster,
|
||||
controller: 'RateFeatureController',
|
||||
controllerAs: 'rateFeature',
|
||||
};
|
||||
}
|
||||
})();
|
||||
11
www/analytics/plugins/Feedback/lang/ar.json
Normal file
11
www/analytics/plugins/Feedback/lang/ar.json
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "هل لديك خطأ أو ميزة تود إضافتها وتريد إخبارنا عنها؟",
|
||||
"IWantTo": "أرغب في:",
|
||||
"LearnWaysToParticipate": "تعرف على كافة الطرق التي يمكنك %s المساهمة %s بها.",
|
||||
"ManuallySendEmailTo": "الرجاء إرسال رسالتك يدوياً إلى",
|
||||
"SendFeedback": "أرسل التغذية الراجعة",
|
||||
"ThankYou": "شكراً لمساعدتك في جعل Piwik أفضل!",
|
||||
"VisitTheForums": "قم بزيارة %sالمنتديات%s"
|
||||
}
|
||||
}
|
||||
11
www/analytics/plugins/Feedback/lang/be.json
Normal file
11
www/analytics/plugins/Feedback/lang/be.json
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Ці ёсць у вас памылка аб якой неабходна певедаміць?",
|
||||
"IWantTo": "Я хачу, каб:",
|
||||
"LearnWaysToParticipate": "Даведайцеся пра ўсе спосабы %s ўдзельнічыства %s",
|
||||
"ManuallySendEmailTo": "Калі ласка, уручную адпраўце паведамленне да",
|
||||
"SendFeedback": "Адправіць водгук",
|
||||
"ThankYou": "Дзякуй за дапамогу нам зрабіць Piwik лепш!",
|
||||
"VisitTheForums": "Наведайце %s форумы %s"
|
||||
}
|
||||
}
|
||||
13
www/analytics/plugins/Feedback/lang/bg.json
Normal file
13
www/analytics/plugins/Feedback/lang/bg.json
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Желаете да докладвате за грешка или имате предложение?",
|
||||
"IWantTo": "Желая да:",
|
||||
"LearnWaysToParticipate": "Научете повече за начините, как бихте могли да %sучаствате%s",
|
||||
"ManuallySendEmailTo": "Моля изпратете ръчно Вашето съобщение до",
|
||||
"RateFeatureThankYouTitle": "Благодарим ви, че оценихте '%s'!",
|
||||
"SendFeedback": "Изпрати съобщението",
|
||||
"ThankYou": "Благодаря, че помогнахте да направим Piwik по-добър!",
|
||||
"TopLinkTooltip": "Може да ни кажете какво мислите, както и да изискате професионална помощ.",
|
||||
"VisitTheForums": "Посетете нашият %sФорум%s"
|
||||
}
|
||||
}
|
||||
5
www/analytics/plugins/Feedback/lang/bn.json
Normal file
5
www/analytics/plugins/Feedback/lang/bn.json
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"IWantTo": "আমি চাই:"
|
||||
}
|
||||
}
|
||||
12
www/analytics/plugins/Feedback/lang/ca.json
Normal file
12
www/analytics/plugins/Feedback/lang/ca.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Teniu algun error que reportar o una petició de noves funcionalitats?",
|
||||
"IWantTo": "Jo vull:",
|
||||
"LearnWaysToParticipate": "Apren sobre les formes en que tu pots %s participar %s",
|
||||
"ManuallySendEmailTo": "Siusplau envia el vostre missatge manualmetn a",
|
||||
"SendFeedback": "Enviar Feedback",
|
||||
"ThankYou": "Gràcies per ajudar-nos a fer el Piwik millor!",
|
||||
"TopLinkTooltip": "Digue'ns que en penses o demana suport Professional.",
|
||||
"VisitTheForums": "Entra als %s Forums%s"
|
||||
}
|
||||
}
|
||||
34
www/analytics/plugins/Feedback/lang/cs.json
Normal file
34
www/analytics/plugins/Feedback/lang/cs.json
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Máte hlášení chyby, nebo námět na vylepšení?",
|
||||
"HowToCreateTicket": "Prosím, přečtěte si doporučení, jak dobře nahlásit %1$schybu%2$s nebo %3$sžádost o vlastnost%4$s. Potom se zaregistrujte nebo přihlaste do %5$ssystému pro sledování problémů%6$s a vytvořte %7$snový problém%8$s.",
|
||||
"IWantTo": "Chci:",
|
||||
"LearnWaysToParticipate": "Naučit způsoby jak %s spolupracovat %s",
|
||||
"ManuallySendEmailTo": "Prosím pošlete ručně zprávu",
|
||||
"PluginDescription": "Pošlete tým Piwiku vaši odezvu. Podělte se o své návrhy a nápady a pomozte nám, aby se Piwik stal nejlepší analytickou platformou vůbec.",
|
||||
"PrivacyClaim": "Piwik respektuje vaše %1$ssoukromí%2$s a dává vám plnou kontrolu nad vašimi daty.",
|
||||
"RateFeatureLeaveMessageDislike": "Je nám líto, že se vám to nelíbí. Řekněte nám, jak se můžeme zlepšit.",
|
||||
"RateFeatureLeaveMessageLike": "Jsme rádi, že se vám to líbí. Řekněte nám, co se vám líbí nejvíc, nebo jestli máte nějaký návrh na novou funkci.",
|
||||
"RateFeatureSendFeedbackInformation": "Piwik platforma nám (týmu Piwiku) pošle zprávu s vaší emailovou adresou, abychom vás v případě otázek mohli kontaktovat.",
|
||||
"RateFeatureThankYouTitle": "Děkujeme za ohodnocení %s.",
|
||||
"RateFeatureTitle": "Líbí se vám vlastnost %s? Ohodnoťte ji a zanechte komentář",
|
||||
"SendFeedback": "Odeslat odezvu",
|
||||
"ThankYou": "Děkujeme vám, že pomáháte Piwik dělat lepším!",
|
||||
"TopLinkTooltip": "Řekni co si myslíš, nebo požádej o pomoc profesionála.",
|
||||
"ViewAnswersToFAQ": "Zobrazit odpovědi na %sčasto kladené otázky%s",
|
||||
"ViewUserGuides": "Naučte se, jak konfigurovat Piwik a efektivně analyzovat data s našimi %1$suživatelskými příručkami%2$s",
|
||||
"CommunityHelp": "Komunitní pomoc",
|
||||
"ProfessionalHelp": "Profesionální pomoc",
|
||||
"PiwikProIntro": "Piwik Pro poskytuje konzultace s experty pro ty, kteří hostují Piwik na vlastní infrastruktuře.",
|
||||
"PiwikProOfferIntro": "Naše nabídka obsahuje",
|
||||
"PiwikProReviewPiwikSetup": "Kontrolu vašeho nastavení Piwik",
|
||||
"PiwikProOptimizationMaintenance": "Služby optimalizace a údržby Piwiku",
|
||||
"PiwikProPhoneEmailSupport": "Telefonická a emailová podpora",
|
||||
"PiwikProTraining": "Uživatelská, technická a vývojářská školení",
|
||||
"PiwikProPremiumFeatures": "Prémiové funkce",
|
||||
"PiwikProCustomDevelopment": "Služby vlastního vývoje",
|
||||
"PiwikProAnalystConsulting": "Služby analytického konzultanta",
|
||||
"ContactUs": "Kontaktujte nás",
|
||||
"VisitTheForums": "Navštivte %s forum%s"
|
||||
}
|
||||
}
|
||||
22
www/analytics/plugins/Feedback/lang/da.json
Normal file
22
www/analytics/plugins/Feedback/lang/da.json
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Har du en fejlrapport eller en anmodning om en funktion?",
|
||||
"HowToCreateTicket": "Læs anbefalingerne om at skrive en god %1$sfejlrapport%2$s eller %3$sfunktionsanmodning%4$s. Tilmeld eller log ind på %5$svores emne tracker%6$s og opret et %7$snyt emne%8$s.",
|
||||
"IWantTo": "Jeg ønsker at:",
|
||||
"LearnWaysToParticipate": "Lær om alle de måder, du kan %s bidrage%s",
|
||||
"ManuallySendEmailTo": "Send din besked manuelt til",
|
||||
"PluginDescription": "Send tilbagemelding til Piwik holdet. Del dine ideer og forslag til at gøre Piwik til den bedste analyseplatform i verden!",
|
||||
"PrivacyClaim": "Piwik respekterer din %1$sprivacy%2$s og giver dig fuld kontrol over dine data.",
|
||||
"RateFeatureLeaveMessageDislike": "Vi er kede af at høre, at du ikke kan lide det! Fortæl os, hvad vi kan gøre bedre.",
|
||||
"RateFeatureLeaveMessageLike": "Vi er glad for du kan lide det! Fortæl os hvad du kan lide mest eller hvis du har forslag til en ny funktion.",
|
||||
"RateFeatureSendFeedbackInformation": "Piwik vil sende Piwik holdet en e-mail (med din e-mail-adresse), så vi kan komme i kontakt med dig, hvis du har nogen spørgsmål.",
|
||||
"RateFeatureThankYouTitle": "Tak for din bedømmelse '%s'!",
|
||||
"RateFeatureTitle": "Kan du lide '%s' funktionen? Bedøm og efterlade en kommentar",
|
||||
"SendFeedback": "Send tilbagemelding",
|
||||
"ThankYou": "Tak, fordi du hjælper med at gøre Piwik bedre!",
|
||||
"TopLinkTooltip": "Fortæl os hvad du mener eller anmod om professionel support",
|
||||
"ViewAnswersToFAQ": "Se svarene på %sOfte stillede spørgsmål%s",
|
||||
"ViewUserGuides": "Lær at konfigurere Piwik og hvordan man effektivt analyserer data med vores %1$sbrugervejledninger%2$s",
|
||||
"VisitTheForums": "Besøg %s Forum%s"
|
||||
}
|
||||
}
|
||||
34
www/analytics/plugins/Feedback/lang/de.json
Normal file
34
www/analytics/plugins/Feedback/lang/de.json
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Möchten Sie einen Fehler melden oder haben Sie eine Idee für eine neue Funktion?",
|
||||
"HowToCreateTicket": "Bitte lesen Sie die Empfehlungen wie man eine gute %1$sFehlermeldung%2$s oder einen %3$sVerbesserungsvorschlag%4$s erstellt. Dann registrieren Sie sich oder loggen Sie sich bei %5$sunserem Fehlermeldesystem%6$s an und erstellen Sie einen %7$sneuen Fall%8$s.",
|
||||
"IWantTo": "Ich möchte:",
|
||||
"LearnWaysToParticipate": "Lernen Sie alle Möglichkeiten kennen, wie Sie %s uns unterstützen können%s",
|
||||
"ManuallySendEmailTo": "Senden Sie Ihre Nachricht manuell an",
|
||||
"PluginDescription": "Senden Sie Ihr Feedback ans Piwik Team. Teilen Sie uns Ihre Ideen und Vorschläge mit, um Piwik zur besten Analyseplattform der Welt zu machen.",
|
||||
"PrivacyClaim": "Piwik respektiert Ihre %1$sPrivatsphäre%2$s und gibt Ihnen volle Kontrolle über Ihre Daten.",
|
||||
"RateFeatureLeaveMessageDislike": "Es tut uns leid zu hören, dass es Ihnen nicht gefällt! Bitte teilen Sie uns mit, wie wir es verbessern können.",
|
||||
"RateFeatureLeaveMessageLike": "Wir sind froh, dass Sie es mögen! Bitte teilen Sie uns mit, was sie am meisten mögen oder ob Sie eine Idee für eine neue Funktion haben.",
|
||||
"RateFeatureSendFeedbackInformation": "Ihre Piwik-Plattform wird uns (dem Piwik Team) eine E-Mail (inklusiver Ihrer E-Mail-Adresse) senden, damit wir mit Ihnen in Kontakt treten könne, sollten Sie Fragen haben.",
|
||||
"RateFeatureThankYouTitle": "Danke für das Bewerten von '%s'!",
|
||||
"RateFeatureTitle": "Gefällt Ihnen das Feature '%s'? Bitte bewerten Sie es und hinterlassen einen Kommentar!",
|
||||
"SendFeedback": "Feedback absenden",
|
||||
"ThankYou": "Danke für Ihre Unterstützung, Piwik zu verbessern!",
|
||||
"TopLinkTooltip": "Teilen Sie uns Ihre Meinung mit, oder fordern professionelle Unterstützung an.",
|
||||
"ViewAnswersToFAQ": "Antworten zu %sFrequently Asked Questions%s ansehen",
|
||||
"ViewUserGuides": "Lernen Sie mithilfe unseres %1$sBenutzerhandbuches%2$s, wie Sie Piwik konfigurieren können und wie Sie effektiv Ihre Daten analysieren.",
|
||||
"CommunityHelp": "Hilfe aus der Community",
|
||||
"ProfessionalHelp": "Profesionelle Hilfe",
|
||||
"PiwikProIntro": "Piwik PRO bietet professionellen Support und Beratung an für Kunden, welche Piwik auf deren eigenen Infrastruktur hosten.",
|
||||
"PiwikProOfferIntro": "Unser Angebot umfasst",
|
||||
"PiwikProReviewPiwikSetup": "Eine Überprüfung Ihrer Piwik-Installation",
|
||||
"PiwikProOptimizationMaintenance": "Piwik-Optimierung & -Wartung",
|
||||
"PiwikProPhoneEmailSupport": "Telefon und E-Mail-Support",
|
||||
"PiwikProTraining": "Benutzer-, Technik- und Entwickler-Schulungen",
|
||||
"PiwikProPremiumFeatures": "Premiumfeatures",
|
||||
"PiwikProCustomDevelopment": "Individuelle Programmierung",
|
||||
"PiwikProAnalystConsulting": "Analysenberatung",
|
||||
"ContactUs": "Kontaktieren Sie uns",
|
||||
"VisitTheForums": "Besuchen Sie die %s Foren%s"
|
||||
}
|
||||
}
|
||||
34
www/analytics/plugins/Feedback/lang/el.json
Normal file
34
www/analytics/plugins/Feedback/lang/el.json
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Έχετε να αναφέρετε ένα πρόβλημα ή ένα αίτημα για χαρακτηριστικό;",
|
||||
"HowToCreateTicket": "Παρακαλούμε διαβάστε τις προτάσεις για τη σύνταξη μιας καλής %1$sαναφοράς σφάλματος%2$s ή %3$sαίτησης για νέο χαρακτηριστικό%4$s. Στη συνέχεια κάντε εγγραφή ή συνδεθείτε στην %5$sπαρακολούθηση αιτημάτων%6$s και υποβάλλετε ένα %7$sνέο αίτημα%8$s.",
|
||||
"IWantTo": "Θέλω να:",
|
||||
"LearnWaysToParticipate": "Μάθετε όλους του τρόπους που μπορείτε να %sσυμμετέχετε%s",
|
||||
"ManuallySendEmailTo": "Στείλτε χειροκίνητα το μήνυμά σας στον\/στην",
|
||||
"PluginDescription": "Στείλτε τη γνώμη σας στην ομάδα του Piwik. Μοιραστείτε τις ιδέες και τις προτάσεις σας για να κάνετε το Piwik την καλύτερη πλατφόρμα αναλυτικών στον κόσμο!",
|
||||
"PrivacyClaim": "Το Piwik σέβεται την %1$sιδιωτικότητά%2$s σας και σας δίνει πλήρη έλεγχο πάνω στα δεδομένα σας.",
|
||||
"RateFeatureLeaveMessageDislike": "Λυπούμαστε που μας λέτε ότι δεν σας αρέσει! Παρακαλούμε πείτε μας πώς μπορούμε να βελτιωθούμε.",
|
||||
"RateFeatureLeaveMessageLike": "Χαιρόμαστε που σας αρέσει! Πείτε μας τι σας αρέσει περισσότερο ή αν έχετε κάποια επιθυμία για ένα χαρακτηριστικό.",
|
||||
"RateFeatureSendFeedbackInformation": "Η πλατφόρμα του Piwik σας θα μας στείλει ένα e-mail (συμπεριλαμβανομένης της διεύθυνσης e-mail σας) ώστε να μπορούμε να έρθουμε σε επαφή μαζί σας αν έχετε κάποια ερώτηση.",
|
||||
"RateFeatureThankYouTitle": "Ευχαριστούμε που βαθμολογήσατε το '%s'!",
|
||||
"RateFeatureTitle": "Σας αρέσει το '%s' χαρακτηριστικό; Παρακαλούμε βαθμολογήστε το και αφήστε ένα σχόλιο",
|
||||
"SendFeedback": "Στείλτε Επισημάνσεις",
|
||||
"ThankYou": "Ευχαριστούμε που βοηθήσατε να κάνουμε το Piwik καλύτερο!",
|
||||
"TopLinkTooltip": "Πείτε μας τι σκέφτεστε ή ζητήστε Επαγγελματική Υποστήριξη.",
|
||||
"ViewAnswersToFAQ": "Δείτε τις απαντήσεις στις %sΣυχνές Ερωτήσεις%s",
|
||||
"ViewUserGuides": "Μάθετε πως να παραμετροποιείτε το Piwik και να αναλύετε αποτελεσματικά τα δεδομένα σας με τους %1$sοδηγούς χρήση μας%2$s.",
|
||||
"CommunityHelp": "Βοήθεια από την κοινότητα",
|
||||
"ProfessionalHelp": "Βοήθεια από επαγγελματίες",
|
||||
"PiwikProIntro": "Το Piwik PRO παρέχει υποστήριξη από ειδικούς και συμβουλές σε πελάτες που τρέχουν το Piwik στη δική τους υποδομή.",
|
||||
"PiwikProOfferIntro": "Η προσφορά μας καλύπτει",
|
||||
"PiwikProReviewPiwikSetup": "Μια σύνοψη της εγκατάστασης του Piwik σας",
|
||||
"PiwikProOptimizationMaintenance": "Βελτιστοποίηση του Piwik και υπηρεσίες συντήρησης",
|
||||
"PiwikProPhoneEmailSupport": "Τηλεφωνική και με e-mail υποστήριξη",
|
||||
"PiwikProTraining": "Εκπαίδευση για χρήστες, τεχνικούς και προγραμματιστές",
|
||||
"PiwikProPremiumFeatures": "Χαρακτηριστικά έκδοσης επί πληρωμή",
|
||||
"PiwikProCustomDevelopment": "Προσαρμοσμένες υπηρεσίες ανάπτυξης",
|
||||
"PiwikProAnalystConsulting": "Υπηρεσίες συμβουλευτικής από αναλυτές",
|
||||
"ContactUs": "Επικοινωνήστε μαζί μας",
|
||||
"VisitTheForums": "Επισκεφτείτε τις %s Δημόσιες Συζητήσεις%s"
|
||||
}
|
||||
}
|
||||
34
www/analytics/plugins/Feedback/lang/en.json
Normal file
34
www/analytics/plugins/Feedback/lang/en.json
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Do you have a bug to report or a feature request?",
|
||||
"HowToCreateTicket": "Please read the recommendations on writing a good %1$sbug report%2$s or %3$sfeature request%4$s. Then register or login on %5$sour issue tracker%6$s and create a %7$snew issue%8$s.",
|
||||
"IWantTo": "I want to:",
|
||||
"LearnWaysToParticipate": "Learn about all the ways you can %1$s participate%2$s",
|
||||
"ManuallySendEmailTo": "Please manually send your message to",
|
||||
"PluginDescription": "Send your Feedback to the Piwik Team. Share your ideas and suggestions to make Piwik the best analytics platform in the world!",
|
||||
"PrivacyClaim": "Piwik respects your %1$sprivacy%2$s and gives you full control over your data.",
|
||||
"RateFeatureLeaveMessageDislike": "We are sorry to hear you don't like it! Please let us know how we can improve.",
|
||||
"RateFeatureLeaveMessageLike": "We are glad you like it! Please let us know what you like the most or if you have a feature request.",
|
||||
"RateFeatureSendFeedbackInformation": "Your Piwik platform will send us (the Piwik team) an email (including your email address) so we can get in contact with you if you have any question.",
|
||||
"RateFeatureThankYouTitle": "Thank you for rating '%s'!",
|
||||
"RateFeatureTitle": "Do you like the '%s' feature? Please rate and leave a comment",
|
||||
"SendFeedback": "Send Feedback",
|
||||
"ThankYou": "Thank you for helping us to make Piwik better!",
|
||||
"TopLinkTooltip": "Tell us what you think, or request Professional Support.",
|
||||
"ViewAnswersToFAQ": "View answers to %1$sFrequently Asked Questions%2$s",
|
||||
"ViewUserGuides": "Learn how to configure Piwik and how to effectively analyze your data with our %1$suser guides%2$s",
|
||||
"CommunityHelp": "Community Help",
|
||||
"ProfessionalHelp": "Professional Help",
|
||||
"PiwikProIntro": "Piwik PRO provides expert support and consulting to clients who host Piwik on their own infrastructure.",
|
||||
"PiwikProOfferIntro": "Our offer includes",
|
||||
"PiwikProReviewPiwikSetup": "A review of your Piwik setup",
|
||||
"PiwikProOptimizationMaintenance": "Piwik optimization & maintenance services",
|
||||
"PiwikProPhoneEmailSupport": "Phone and Email support",
|
||||
"PiwikProTraining": "User, Technical and Developer training",
|
||||
"PiwikProPremiumFeatures": "Premium features",
|
||||
"PiwikProCustomDevelopment": "Custom Development services",
|
||||
"PiwikProAnalystConsulting": "Analyst consulting services",
|
||||
"ContactUs": "Contact us",
|
||||
"VisitTheForums": "Visit the %1$s Forums%2$s and get help from the community of Piwik users"
|
||||
}
|
||||
}
|
||||
34
www/analytics/plugins/Feedback/lang/es.json
Normal file
34
www/analytics/plugins/Feedback/lang/es.json
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "¿Tienes un error que informar o una nueva característica?",
|
||||
"HowToCreateTicket": "Por favor, lee las recomendaciones de cómo escribir un buen %1$sinforme de error%2$s o %3$spetición de funcionalidad%4$s. Luego regístrese o inicie sesión en nuestro %5$ssistema de seguimiento de errores%6$s y crea un %7$snuevo tema de discusión%8$s.",
|
||||
"IWantTo": "Yo quiero:",
|
||||
"LearnWaysToParticipate": "Aprende sobre todas las formas de %sparticipar%s",
|
||||
"ManuallySendEmailTo": "Por favor envíe su mensaje manualmente a",
|
||||
"PluginDescription": "Envíe su comentario al equipo de Piwik. ¡Comparte tus ideas y sugerencias para hacer de Piwik la mejor plataforma de analíticas en el mundo!",
|
||||
"PrivacyClaim": "Piwik respeta su %1$sprivacidad%2$s y le deja controlar todos sus datos.",
|
||||
"RateFeatureLeaveMessageDislike": "¡Lamentamos que no le gusta! Por favor háganos saber cómo podemos mejorarlo.",
|
||||
"RateFeatureLeaveMessageLike": "¡Nos alegra que le guste! Por favor háganos saber qué es lo que más le gusta y si hay otras funciones que le gustaría tener.",
|
||||
"RateFeatureSendFeedbackInformation": "Su plataforma Piwik nos enviará a nosotros (el Equipo de Piwik) un correo electrónico (incluso tu dirección de correo electrónico) para que podamos contactarte en caso de que tenga preguntas.",
|
||||
"RateFeatureThankYouTitle": "¡Gracias por evaluar '%s'!",
|
||||
"RateFeatureTitle": "¿Te gusta la función '%s'? Por favor evaluala y deja un comentario",
|
||||
"SendFeedback": "Enviar comentario",
|
||||
"ThankYou": "¡Gracias por ayudarnos a hacer Piwik mejor!",
|
||||
"TopLinkTooltip": "Danos tu opinión o solicita Soporte Profesional",
|
||||
"ViewAnswersToFAQ": "Ver respuestas a las %sPreguntas frecuentes%s",
|
||||
"ViewUserGuides": "Aprende a configurar Piwik y analizar sus datos de modo eficaz con nuestras %1$sguías de usuario%2$s",
|
||||
"CommunityHelp": "Ayuda comunitaria",
|
||||
"ProfessionalHelp": "Ayuda profesional",
|
||||
"PiwikProIntro": "Piwik PRO proporciona soporte de calidad y consultas a clientes que alojan Piwik en su propia infraestructura.",
|
||||
"PiwikProOfferIntro": "Nuestra oferta incluye",
|
||||
"PiwikProReviewPiwikSetup": "Una reseña de tu instalación de Piwik",
|
||||
"PiwikProOptimizationMaintenance": "Servicios de optimización y mantenimiento de Piwik",
|
||||
"PiwikProPhoneEmailSupport": "Soporte por teléfono y correo electrónico",
|
||||
"PiwikProTraining": "Entrenamiento del usuario, técnico y desarrollador",
|
||||
"PiwikProPremiumFeatures": "Funcionalidades premium",
|
||||
"PiwikProCustomDevelopment": "Servicios de desarrollo personalizado",
|
||||
"PiwikProAnalystConsulting": "Servicios de consultoría de análisis",
|
||||
"ContactUs": "Contáctanos",
|
||||
"VisitTheForums": "Visita el %sForo%s y obtenga ayuda de la comuniad de usuarios Piwik"
|
||||
}
|
||||
}
|
||||
6
www/analytics/plugins/Feedback/lang/et.json
Normal file
6
www/analytics/plugins/Feedback/lang/et.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"IWantTo": "Ma tahan:",
|
||||
"SendFeedback": "Saada tagasisidet"
|
||||
}
|
||||
}
|
||||
12
www/analytics/plugins/Feedback/lang/fa.json
Normal file
12
www/analytics/plugins/Feedback/lang/fa.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "آیا شما یک باگ برای گزارش دارید یا درخواستی برای یک ویژگی جدید دارید؟",
|
||||
"IWantTo": "من می خواهم به :",
|
||||
"LearnWaysToParticipate": "درباره راه هایی که می توانید %sمشارکت کنید%s بیشتر بدانید.",
|
||||
"ManuallySendEmailTo": "لطفا پیام خود را به صورت دستی ارسال کنید به",
|
||||
"SendFeedback": "ارسال بازخورد",
|
||||
"ThankYou": "از شما برای کمک به بهتر کردن پیویک متشکریم!",
|
||||
"TopLinkTooltip": "به ما بگویید چه می اندیشید یا پشتیبانی حرفه ای درخواست کنید.",
|
||||
"VisitTheForums": "بازدید %s از فروم %s"
|
||||
}
|
||||
}
|
||||
16
www/analytics/plugins/Feedback/lang/fi.json
Normal file
16
www/analytics/plugins/Feedback/lang/fi.json
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Onko sinulle virheraportti tai pyyntö uudesta ominaisuudesta?",
|
||||
"IWantTo": "Haluan:",
|
||||
"LearnWaysToParticipate": "Katso erilaisia tapoja %s osallistua%s",
|
||||
"ManuallySendEmailTo": "Ole hyvä ja lähetä viesti osoitteeseen",
|
||||
"RateFeatureLeaveMessageDislike": "Harmillista kuulla että et pidä siitä! Voisitko kertoa meille, miten voimme korjata tämän?",
|
||||
"RateFeatureLeaveMessageLike": "Olemme iloisia että pidit siitä! Kerro meille mistä pidit eniten tai jos sinulla on ehdotuksia uusiksi ominaisuuksiksi.",
|
||||
"RateFeatureThankYouTitle": "Kiitos '%s':n arvostelemisesta!",
|
||||
"RateFeatureTitle": "Pidätkö ominaisuudesta '%s'? Jätä arvostelu ja kommentti",
|
||||
"SendFeedback": "Lähetä palaute",
|
||||
"ThankYou": "Kiitos että autat parantamaan Piwikiä!",
|
||||
"TopLinkTooltip": "Kerro meille mitä ajattelet, tai osta tukipalveluita (englanniksi).",
|
||||
"VisitTheForums": "Käy %s foorumeilla %s"
|
||||
}
|
||||
}
|
||||
34
www/analytics/plugins/Feedback/lang/fr.json
Normal file
34
www/analytics/plugins/Feedback/lang/fr.json
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Avez-vous un bug à rapporter ou une fonctionnalité à demander ?",
|
||||
"HowToCreateTicket": "Veuillez consulter les recommandations sur la rédaction d'un bon %1$srapport de bug%2$s ou %3$sdemande de fonctionnalité%4$s. Puis s'enregistrer ou se connecter sur %5$snotre système de suivi des incidents%6$s et créer un %7$snouvel incident%8$s.",
|
||||
"IWantTo": "Je veux:",
|
||||
"LearnWaysToParticipate": "Renseignez vous sur les manières dont vous pouvez %s participer%s",
|
||||
"ManuallySendEmailTo": "Merci d'envoyer manuellement votre message à",
|
||||
"PluginDescription": "Envoyez votre votre retour d'expérience à l'équipe Piwik. Partagez vos idées et suggestions pour aider à faire de Piwik la meilleure plateforme d'analyse web du monde!",
|
||||
"PrivacyClaim": "Piwik respecte votre %1$svie privée%2$s et vous donne un contrôle total sur vos données.",
|
||||
"RateFeatureLeaveMessageDislike": "Nous sommes désolés de voir que vous n'aimez pas ça. N'hésitez pas à nous dire comme nous pouvons améliorer.",
|
||||
"RateFeatureLeaveMessageLike": "Nous sommes heureux de savoir que vous l'aimez ! S'il vous plaît laissez-nous savoir ce que vous aimez le plus ou si vous avez une demande de fonctionnalité.",
|
||||
"RateFeatureSendFeedbackInformation": "Votre installation Piwik nous enverra (l'équipe Piwik) un e-mail (contenant votre adresse e-mail) afin que nous puissions entrer en contact avec vous si vous avez des questions.",
|
||||
"RateFeatureThankYouTitle": "Merci d'avoir noté \"%s\" !",
|
||||
"RateFeatureTitle": "Est-ce que vous aimez la fonctionnalité \"%s\" ? Notez la et laissez un commentaire",
|
||||
"SendFeedback": "Envoyer le retour",
|
||||
"ThankYou": "Merci d'avoir aidé à améliorer Piwik!",
|
||||
"TopLinkTooltip": "Dites nous ce que vous en pensez, ou demandez un Support Professionnel.",
|
||||
"ViewAnswersToFAQ": "Voir les réponses aux %squestions fréquemment posées%s",
|
||||
"ViewUserGuides": "Apprenez comment configurer Piwik et comment analyser de manière efficaces vos données avec notre %1$sguide utilisateur%2$s",
|
||||
"CommunityHelp": "Aide de la communauté",
|
||||
"ProfessionalHelp": "Aide professionnelle",
|
||||
"PiwikProIntro": "Piwik PRO fournit un service expert de support et de consultation aux clients qui hébergent Piwik sur leurs propres infrastructures.",
|
||||
"PiwikProOfferIntro": "Notre offre inclut",
|
||||
"PiwikProReviewPiwikSetup": "Une revue de votre installation Piwik",
|
||||
"PiwikProOptimizationMaintenance": "Services d'optimisation et de maintenance",
|
||||
"PiwikProPhoneEmailSupport": "Support courriel et téléphonique",
|
||||
"PiwikProTraining": "Formation d'utilisation, technique et en développement",
|
||||
"PiwikProPremiumFeatures": "Fonctionnalités premium",
|
||||
"PiwikProCustomDevelopment": "Services de développement personnalisés",
|
||||
"PiwikProAnalystConsulting": "Services de consultation en analyse",
|
||||
"ContactUs": "Nous contacter",
|
||||
"VisitTheForums": "Visitez les %s Forums%s"
|
||||
}
|
||||
}
|
||||
8
www/analytics/plugins/Feedback/lang/gl.json
Normal file
8
www/analytics/plugins/Feedback/lang/gl.json
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"IWantTo": "Quero:",
|
||||
"CommunityHelp": "Axuda da comunidade",
|
||||
"ProfessionalHelp": "Axuda profesional",
|
||||
"ContactUs": "Contacte connosco"
|
||||
}
|
||||
}
|
||||
16
www/analytics/plugins/Feedback/lang/hi.json
Normal file
16
www/analytics/plugins/Feedback/lang/hi.json
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "क्या आपके पास एक बग की रिपोर्ट या एक सुविधा का अनुरोध है?",
|
||||
"IWantTo": "मैं चाहता हूँ:",
|
||||
"LearnWaysToParticipate": "सभी तरीकों के बारे में जानें, आप %s भाग %s ले सकते हैं",
|
||||
"ManuallySendEmailTo": "अपने संदेश को स्वेक्षा से भेजने के लिए कृपया",
|
||||
"RateFeatureLeaveMessageDislike": "आप इसे पसंद नहीं करते हम सुनने के लिए खेद है! कृपया हमें बतायें हम कैसे बेहतर कर सकते हैं।",
|
||||
"RateFeatureLeaveMessageLike": "आप इसे पसंद हम खुश हैं! हमें आप एक सुविधा का अनुरोध किया है अगर आप सबसे अधिक पसंद है या क्या पता है।",
|
||||
"SendFeedback": "प्रतिक्रिया भेजें",
|
||||
"ThankYou": "Piwik बेहतर बनाने में हमें मदद करने के लिए आपका शुक्रिया",
|
||||
"TopLinkTooltip": "आप क्या सोचते हैं हमें बताओ,या व्यावसायिक सहायता का अनुरोध करे",
|
||||
"CommunityHelp": "समुदाय सहायता",
|
||||
"ProfessionalHelp": "पेशेवर मदद",
|
||||
"VisitTheForums": "%s विचार मंच %s पर जाएँ"
|
||||
}
|
||||
}
|
||||
11
www/analytics/plugins/Feedback/lang/hu.json
Normal file
11
www/analytics/plugins/Feedback/lang/hu.json
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Hibát szeretnél bejelenteni, vagy egy funkció kifejlesztését szeretnéd kérni?",
|
||||
"IWantTo": "A következőt szeretném:",
|
||||
"LearnWaysToParticipate": "Győződj meg róla, %shányféleképpen segíthetsz%s",
|
||||
"ManuallySendEmailTo": "Kérjük, küldd el manuálisan az üzeneted ide:",
|
||||
"SendFeedback": "Visszajelzés elküldése",
|
||||
"ThankYou": "Köszönjük, hogy segítesz jobbá tenni a Piwik-et!",
|
||||
"VisitTheForums": "Látogasd meg a %sFórumot%s"
|
||||
}
|
||||
}
|
||||
12
www/analytics/plugins/Feedback/lang/id.json
Normal file
12
www/analytics/plugins/Feedback/lang/id.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Apakah Anda ada laporan kutu atau permintaan fitur?",
|
||||
"IWantTo": "Saya ingin:",
|
||||
"LearnWaysToParticipate": "Pelajari bagaimana kamu dapat %s berpartisipasi%s",
|
||||
"ManuallySendEmailTo": "Silakan kirim manual pesan Anda ke",
|
||||
"SendFeedback": "Kirim Umpanbalik",
|
||||
"ThankYou": "Terimaksih telah membantu kami menjadikan Piwik lebih baik!",
|
||||
"TopLinkTooltip": "Katakan apa yang Anda pikirkan, atau membutuhkan Bantuan Profesional.",
|
||||
"VisitTheForums": "Kunjungi %s Forum%s"
|
||||
}
|
||||
}
|
||||
34
www/analytics/plugins/Feedback/lang/it.json
Normal file
34
www/analytics/plugins/Feedback/lang/it.json
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Hai un bug da segnalare o una richiesta di funzionalità?",
|
||||
"HowToCreateTicket": "Si prega di leggere le raccomandazioni per scrivere un buon %1$srapporto bug%2$s o una %3$srichiesta di funzionalità%4$s. Poi registrati o accedi al nostro %5$stracker dei problemi%6$s e segnala un %7$snuovo problema%8$s.",
|
||||
"IWantTo": "Vorrei:",
|
||||
"LearnWaysToParticipate": "Impara tutti i modi attraverso i quali puoi %s partecipare%s",
|
||||
"ManuallySendEmailTo": "Perfavore invia manualmente il messaggio a",
|
||||
"PluginDescription": "Invia un Feedback al Team di Piwik. Condividi idee e suggerimenti per rendere Piwik la migliore piattaforma al mondo di statistiche web!",
|
||||
"PrivacyClaim": "Piwik rispetta la tua %1$sprivacy%2$s e ti dà il pieno controllo sui tuoi dati.",
|
||||
"RateFeatureLeaveMessageDislike": "Ci dispiace sapere che non ti piace! Facci sapere come possiamo migliorare.",
|
||||
"RateFeatureLeaveMessageLike": "Siamo felici che tu lo apprezzi! Facci sapere cosa ti piace di più o se hai richieste di altre funzioni.",
|
||||
"RateFeatureSendFeedbackInformation": "La tua piattaforma Piwik invierà a noi (il team di Piwik) una email (che include il tuo indirizzo email) in modo tale che noi ci possiamo mettere in contatto con te se dovessi avere qualche domanda.",
|
||||
"RateFeatureThankYouTitle": "Grazie per il voto '%s'!",
|
||||
"RateFeatureTitle": "Ti piace la funzione '%s'? Votala e lascia un commento.",
|
||||
"SendFeedback": "Invia",
|
||||
"ThankYou": "Grazie per aiutarci a rendere Piwik migliore!",
|
||||
"TopLinkTooltip": "Dicci cosa ne pensi, o richiedi supporto professionale.",
|
||||
"ViewAnswersToFAQ": "Guarda le risposte alle %sDomande frequenti%s",
|
||||
"ViewUserGuides": "Impara a configurare Piwik e ad analizzare efficacemente i tuoi dati con le nostre %1$sguide utente%2$s",
|
||||
"CommunityHelp": "Aiuto dalla comunità",
|
||||
"ProfessionalHelp": "Aiuto professionale",
|
||||
"PiwikProIntro": "Piwik PRO fornisce il supporto di esperti e consulenza ai clienti che installano Piwik nella propria infrastruttura",
|
||||
"PiwikProOfferIntro": "La nostra offerta include",
|
||||
"PiwikProReviewPiwikSetup": "Analisi della tua installazione Piwik",
|
||||
"PiwikProOptimizationMaintenance": "Servizi di manutenzione e ottimizzazione di Piwik",
|
||||
"PiwikProPhoneEmailSupport": "Supporto telefonico ed email",
|
||||
"PiwikProTraining": "Corsi per utenti, tecnici e sviluppatori",
|
||||
"PiwikProPremiumFeatures": "Funzionalità esclusive",
|
||||
"PiwikProCustomDevelopment": "Sviluppo personalizzato su commissione",
|
||||
"PiwikProAnalystConsulting": "Consulenza di analisti",
|
||||
"ContactUs": "Contattaci",
|
||||
"VisitTheForums": "Visita i %s Forum%s e ottieni aiuto dalla comunità degli utenti Piwik"
|
||||
}
|
||||
}
|
||||
34
www/analytics/plugins/Feedback/lang/ja.json
Normal file
34
www/analytics/plugins/Feedback/lang/ja.json
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "報告するべきバグや機能要望がありますか?",
|
||||
"HowToCreateTicket": "推奨事項をお読みになり、%1$s バグ報告 %2$s や %3$s 機能のリクエスト %4$s を書いてください。その後、登録又は %5$s 課題トラッカー%6$s にログインして、%7$s 新しい課題 %8$s を作成します。",
|
||||
"IWantTo": "あなたの希望:",
|
||||
"LearnWaysToParticipate": "あなたが参加できるすべての方法を%s学んでください%s",
|
||||
"ManuallySendEmailTo": "あなたのメッセージを手作業で次のアドレスへ送ってください:",
|
||||
"PluginDescription": "Piwik チームにフィードバックをお送りください。あなたのアイデアや提案をシェアすることで、Piwik を世界で最高のアナリティックス・プラットフォームにしましょう。",
|
||||
"PrivacyClaim": "Piwik は あなたの %1$sprivacy%2$s を尊重します。あなたのデータに関する全ての管理はあなたにお任せします。",
|
||||
"RateFeatureLeaveMessageDislike": "好きではない とのこと、非常に残念です。ぜひどのように改善すべきかお知らせください。",
|
||||
"RateFeatureLeaveMessageLike": "気に入った とのこと、とても嬉しいです !ぜひあなたの最も気に入った内容や今後のリクエストをお知らせください。",
|
||||
"RateFeatureSendFeedbackInformation": "Piwik プラットフォームから 私たち ( Piwik チーム ) 宛に、あなたのメールアドレスを含む E メールが届きました。もし何かご質問があれば、私達にコンタクトを取って頂けます。",
|
||||
"RateFeatureThankYouTitle": "'%s' の評価をありがとう!",
|
||||
"RateFeatureTitle": "'%s' の機能は好きですか ? ぜひ評価コメントを残してください。",
|
||||
"SendFeedback": "フィードバックを送信",
|
||||
"ThankYou": "私たちが Piwik をより良くするのを支援していただきありがとうございます!",
|
||||
"TopLinkTooltip": "あなたの意見をお知らせください。または、プロフェッショナルサポートをリクエストしてください。",
|
||||
"ViewAnswersToFAQ": "%s Frequently Asked Questions %s への回答をご覧ください。",
|
||||
"ViewUserGuides": "Piwik の設定方法と、効果的なデータ分析方法は、%1$s user guides %2$s をご確認ください。",
|
||||
"CommunityHelp": "コミュニティヘルプ",
|
||||
"ProfessionalHelp": "プロフェッショナルヘルプ",
|
||||
"PiwikProIntro": "Piwik PRO は、専門家のサポートと Piwik 独自のインフラストラクチャ上でホストするクライアントへのコンサルティングを提供します。",
|
||||
"PiwikProOfferIntro": "当社オファーには以下が含まれます",
|
||||
"PiwikProReviewPiwikSetup": "Piwik セットアップのレビュー",
|
||||
"PiwikProOptimizationMaintenance": "Piwikiの最適化と保守のサービス",
|
||||
"PiwikProPhoneEmailSupport": "電話とEメールのサポート",
|
||||
"PiwikProTraining": "ユーザー及び技術開発者のトレーニング",
|
||||
"PiwikProPremiumFeatures": "プレミア機能",
|
||||
"PiwikProCustomDevelopment": "カスタム開発サービス",
|
||||
"PiwikProAnalystConsulting": "アナリストのコンサルティングサービス",
|
||||
"ContactUs": "お問い合わせ",
|
||||
"VisitTheForums": "%s フォーラム %s にアクセスし、Piwik ユーザーのコミュニティから助けを得る"
|
||||
}
|
||||
}
|
||||
11
www/analytics/plugins/Feedback/lang/ka.json
Normal file
11
www/analytics/plugins/Feedback/lang/ka.json
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "არ გაქვთ შეცდომის რეპორტი ან მახასიათებლების მოთხოვნა?",
|
||||
"IWantTo": "მე მინდა:",
|
||||
"LearnWaysToParticipate": "გაეცანით ინფორმაციას %s მონაწილეობის%s მიღების ყველა გზის შესახებ",
|
||||
"ManuallySendEmailTo": "გთხოვთ, ხელით გამოაგზავნეთ წერილი მისამართზე",
|
||||
"SendFeedback": "გამოხმაურების გაგზავნა",
|
||||
"ThankYou": "გმადლობთ, რომ გვეხმარებით Piwik გახდეს უკეთესი!",
|
||||
"VisitTheForums": "იხილეთ %s ფორუმები%s"
|
||||
}
|
||||
}
|
||||
34
www/analytics/plugins/Feedback/lang/ko.json
Normal file
34
www/analytics/plugins/Feedback/lang/ko.json
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "발견한 버그나 기능에 대한 의견을 보고하시겠습니까?",
|
||||
"HowToCreateTicket": "좋은 %1$s버그 리포트%2$s 혹은 %3$s기능 개선%4$s을 작성하는 추천법에 대해 읽어주세요. 그 후 %5$s우리의 이슈 트래커%6$s에 가입 및 로그인 하셔서 %7$s새로운 이슈%8$s를 만들어주세요.",
|
||||
"IWantTo": "내가 원하는 것은:",
|
||||
"LearnWaysToParticipate": "당신이 %s참여%s할 수있는 모든 방법",
|
||||
"ManuallySendEmailTo": "당신의 메시지를 다음 주소로 직접 보내주세요:",
|
||||
"PluginDescription": "Piwik 팀에게 피드백 보내기. 당신의 아이디어와 제안은 더 나은 세상에서 가장 우수한 분석 플랫폼이 될 Piwik를 만드는데 큰 도움이 됩니다.",
|
||||
"PrivacyClaim": "Piwik는 당신의 %1$s프라이버시%2$s를 존중하며 동시에 당신의 데이터가 당신의 통제 하에 있도록 노력합니다.",
|
||||
"RateFeatureLeaveMessageDislike": "안 좋아하신다고요! 죄송합니다! 우리가 이를 개선할 수 있도록 도움을 주세요!",
|
||||
"RateFeatureLeaveMessageLike": "좋아요에 감사 드립니다! 어떤 점을 좋게 생각하시는지 혹은 어떤 기능적 개선 요구가 있는지 알고 싶습니다.",
|
||||
"RateFeatureSendFeedbackInformation": "당신의 Piwik 플랫폼은 우리들(Piwik 팀)에게 (당신의 이메일 주소를 포함한) 메일을 보낼 것입니다. 따라서 당신의 질문에 따라 우리가 연락을 취할 수 있습니다.",
|
||||
"RateFeatureThankYouTitle": "'%s' 등급에 감사 드립니다.",
|
||||
"RateFeatureTitle": "'%s'의 기능이 어떤가요? 평가 및 코멘트 해주세요.",
|
||||
"SendFeedback": "의견 보내기",
|
||||
"ThankYou": "우리가 Piwik을 향상시키는 데 도움을 주셔서 감사합니다!",
|
||||
"TopLinkTooltip": "당신이 필요로 하는 기술 지원 요청을 알려주세요.",
|
||||
"ViewAnswersToFAQ": "%s자주 하는 질문%s에서 답변 보기",
|
||||
"ViewUserGuides": "%1$s사용자 가이드%2$s에서 효율적으로 당신의 데이터를 분석하는 방법과 Piwik를 구성하는 법에 대해서 알 수 있습니다.",
|
||||
"CommunityHelp": "커뮤니티에서의 도움",
|
||||
"ProfessionalHelp": "전문가의 도움",
|
||||
"PiwikProIntro": "Piwik PRO는 전문가들이 구축한 인프라에서 그들의 지원과 컨설팅을 받을 수 있는 서비스입니다.",
|
||||
"PiwikProOfferIntro": "제공되는 것들",
|
||||
"PiwikProReviewPiwikSetup": "Piwik 셋업",
|
||||
"PiwikProOptimizationMaintenance": "Piwik 최적화 및 관리 보수",
|
||||
"PiwikProPhoneEmailSupport": "전화 및 이메일",
|
||||
"PiwikProTraining": "사용자, 기술자 및 개발자",
|
||||
"PiwikProPremiumFeatures": "프리미엄",
|
||||
"PiwikProCustomDevelopment": "맞춤 개발",
|
||||
"PiwikProAnalystConsulting": "전문가 컨설팅",
|
||||
"ContactUs": "연락주세요",
|
||||
"VisitTheForums": "%s포럼%s으로 이동"
|
||||
}
|
||||
}
|
||||
18
www/analytics/plugins/Feedback/lang/lt.json
Normal file
18
www/analytics/plugins/Feedback/lang/lt.json
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Norite pranešti apie aptiktą klaidą arba paprašyti naujų ypatybių?",
|
||||
"IWantTo": "Aš noriu:",
|
||||
"LearnWaysToParticipate": "Sužinokite kaip galite %s prisijungti%s",
|
||||
"ManuallySendEmailTo": "Prašome išsiųsti rankiniu būdu",
|
||||
"PluginDescription": "Siųskite savo atsiliepimus Piwik komandai. Dalinkitės savo idėjomis ir pasiūlymais, kad padarytumėte Piwik geriausia analitikos platforma pasaulyje!",
|
||||
"RateFeatureLeaveMessageDislike": "Mes apgailestaujame išgirsti, kad jums ji nepatinka! Prašome parašyti, kaip mes galėtume ją patobulinti.",
|
||||
"RateFeatureLeaveMessageLike": "Mums malonu išgirsti, kad jums ji patinka! Prašome parašyti kas jums labiausiai patinka arba, jeigu turite, ypatybės prašymą.",
|
||||
"RateFeatureThankYouTitle": "Dėkojame, kad įvertinate ypatybę \"%s\"!",
|
||||
"RateFeatureTitle": "Ar jums patinka ypatybė \"%s\"? Prašome įvertinti ir parašyti komentarą",
|
||||
"SendFeedback": "Siųsti atsiliepimą",
|
||||
"ThankYou": "Dėkojame už pagalbą kuriant tobulesnį Piwik!",
|
||||
"CommunityHelp": "Bendruomenės pagalba",
|
||||
"ProfessionalHelp": "Profesionali pagalba",
|
||||
"VisitTheForums": "Apsilankykite %s forumuose%s"
|
||||
}
|
||||
}
|
||||
10
www/analytics/plugins/Feedback/lang/lv.json
Normal file
10
www/analytics/plugins/Feedback/lang/lv.json
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Vai Jums ir kļūdas ziņojums vai papildus funkcionalitātes pieprasījums?",
|
||||
"IWantTo": "Es vēlos:",
|
||||
"LearnWaysToParticipate": "Uzzināt vairāk par to, kā Jūs varat %s piedalīties%s",
|
||||
"ManuallySendEmailTo": "Lūdzu manuāli nosūtiet savu ziņu uz",
|
||||
"SendFeedback": "Sūtīt atsauksmes",
|
||||
"ThankYou": "Paldies, ka palīdzat uzlabot Piwik!"
|
||||
}
|
||||
}
|
||||
21
www/analytics/plugins/Feedback/lang/nb.json
Normal file
21
www/analytics/plugins/Feedback/lang/nb.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Har du en feil å rapportere eller ny funksjonalitet du ønsker deg?",
|
||||
"IWantTo": "Jeg vil:",
|
||||
"LearnWaysToParticipate": "Lær om alle måtene du kan %s bidra%s",
|
||||
"ManuallySendEmailTo": "Send meldingen manuelt til",
|
||||
"RateFeatureThankYouTitle": "Takk for at du rangerer «%s»!",
|
||||
"RateFeatureTitle": "Liker du funksjonen «%s»? Vennligst ranger den og legg igjen en kommentar",
|
||||
"SendFeedback": "Send tilbakemelding",
|
||||
"ThankYou": "Takk for at du hjelper oss å lage Piwik bedre!",
|
||||
"TopLinkTooltip": "Fortell oss hva du synes eller be om profesjonell støtte.",
|
||||
"ProfessionalHelp": "Profesjonell hjelp",
|
||||
"PiwikProOfferIntro": "Vårt tilbud inkluderer",
|
||||
"PiwikProOptimizationMaintenance": "Piwik optimalisering- og vedlikeholdstjenester",
|
||||
"PiwikProPhoneEmailSupport": "Telefon og e-post-støtte",
|
||||
"PiwikProTraining": "Bruker, teknisk- og utviklertrening",
|
||||
"PiwikProPremiumFeatures": "Premium-funksjoner",
|
||||
"ContactUs": "Kontakt oss",
|
||||
"VisitTheForums": "Besøk %sforumet%s"
|
||||
}
|
||||
}
|
||||
34
www/analytics/plugins/Feedback/lang/nl.json
Normal file
34
www/analytics/plugins/Feedback/lang/nl.json
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Heeft u een bugmelding of een verzoek voor nieuwe functies?",
|
||||
"HowToCreateTicket": "Gelieve de richtlijnen te lezen over hoe een correct %1$sbug rapport%2$s of %3$sfeature request%4$s te schrijven. Daarna kun je je registreren of inloggen op %5$sonze issue tracker%6$s en een %7$snieuw issue%8$s aanmaken.",
|
||||
"IWantTo": "Ik wil:",
|
||||
"LearnWaysToParticipate": "Ontdek op welke manieren je kunt %s bijdragen%s",
|
||||
"ManuallySendEmailTo": "Gelieve uw bericht handmatig te zenden naar",
|
||||
"PluginDescription": "Stuur je feedback naar het Piwik team. Deel je ideeën en suggesties om van Piwik het beste analytics platform in de wereld te maken!",
|
||||
"PrivacyClaim": "Piwik respecteert je %1$sprivacy%2$s en geeft je alle controle over jouw data.",
|
||||
"RateFeatureLeaveMessageDislike": "We vinden het jammer te horen dat je het niks vind! Laat ons alsjeblieft weten hoe we het kunnen verbeteren.",
|
||||
"RateFeatureLeaveMessageLike": "We zijn blij dat je het leuk vind! Laat ons weten wat het leukste vind of als je een goed idee hebt.",
|
||||
"RateFeatureSendFeedbackInformation": "Je Piwik installatie zal ons (het Piwik team) een email sturen (inclusief je email adres) zodat we met je in contact kunnen treden mochten we vragen hebben.",
|
||||
"RateFeatureThankYouTitle": "Bedank voor het waarderen '%s'!",
|
||||
"RateFeatureTitle": "Hou je van deze '%s' feature? Beoordeel ons en geef ons wat commentaar",
|
||||
"SendFeedback": "Stuur Feedback",
|
||||
"ThankYou": "Bedankt voor uw bijdrage om Piwik beter te maken!",
|
||||
"TopLinkTooltip": "Vertel ons je waat je ervan denkt, of vraag om Professionele Ondersteuning.",
|
||||
"ViewAnswersToFAQ": "Bekijk de antwoorden van %sveelgestelde vragen%s",
|
||||
"ViewUserGuides": "Leer hoe je Piwik moet configureren en hoe je data te analyseren met onze %1$sgebruikers handleidingen%2$s",
|
||||
"CommunityHelp": "Hulp van de community",
|
||||
"ProfessionalHelp": "Professionele Hulp",
|
||||
"PiwikProIntro": "Piwik Pro biedt je expert ondersteuning en consultants aan klanten die Piwik hosten op hun eigen infrastructuur.",
|
||||
"PiwikProOfferIntro": "Ons aanbod omvat",
|
||||
"PiwikProReviewPiwikSetup": "Een beoordeling van je Piwik omgeving",
|
||||
"PiwikProOptimizationMaintenance": "Piwik optimilaisatie & onderhoud diensten",
|
||||
"PiwikProPhoneEmailSupport": "Telefoon en e-mail ondersteuning",
|
||||
"PiwikProTraining": "Gebruikers- Technische en Ontwikkelaars training",
|
||||
"PiwikProPremiumFeatures": "Premium functies",
|
||||
"PiwikProCustomDevelopment": "Eigen Ontwikkel diensten",
|
||||
"PiwikProAnalystConsulting": "Analyst consultatie diensten",
|
||||
"ContactUs": "Contacteer ons",
|
||||
"VisitTheForums": "Bezoek de %s Forums %s"
|
||||
}
|
||||
}
|
||||
11
www/analytics/plugins/Feedback/lang/nn.json
Normal file
11
www/analytics/plugins/Feedback/lang/nn.json
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Vil du rapportera ein feil eller førespurnad om ein funksjon?",
|
||||
"IWantTo": "Eg ønskjer:",
|
||||
"LearnWaysToParticipate": "Lær om korleis du kan %s medverka%s",
|
||||
"ManuallySendEmailTo": "Send meldinga di manuelt til",
|
||||
"SendFeedback": "Send attendemelding",
|
||||
"ThankYou": "Takk for at hjelper oss med å forbetra Piwik!",
|
||||
"VisitTheForums": "Gå til %s Forumet%s"
|
||||
}
|
||||
}
|
||||
18
www/analytics/plugins/Feedback/lang/pl.json
Normal file
18
www/analytics/plugins/Feedback/lang/pl.json
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Czy odkryłeś błąd o którym chcesz poinformować, lub masz pomysł na nową funkcjonalność?",
|
||||
"IWantTo": "Pragnę:",
|
||||
"LearnWaysToParticipate": "Poznaj wszystkie sposoby %s uczestnictwa%s",
|
||||
"ManuallySendEmailTo": "Prosimy ręcznie wysłać swoją wiadomość",
|
||||
"PrivacyClaim": "Piwik respektuje twoją %1$sprywatność%2$s i oddaje ci pełną kontrolę nad twoimi danymi.",
|
||||
"RateFeatureLeaveMessageDislike": "Przykro nam słyszeć, że Tobie się nie podoba! Proszę pozwól nam wiedzieć, jak możemy to poprawić.",
|
||||
"RateFeatureSendFeedbackInformation": "Twoja platforma Piwik wyśle nam (Ekipa Piwik) wiadomość email (zawierającą twój adres email), dzięki temu będziemy mogli mieć z toba kontakt jeśli miałbyś jakieś pytania.",
|
||||
"RateFeatureThankYouTitle": "Dziękujemy za ocenę '%s'!",
|
||||
"RateFeatureTitle": "Czy podoba Ci się '%s' funkcja? Proszę ocenić i zostawić komentarz",
|
||||
"SendFeedback": "Wyślij opinię",
|
||||
"ThankYou": "Dziękujemy za pomoc, która pozwala uczynić statystyki Piwik jeszcze lepszymi!",
|
||||
"TopLinkTooltip": "Powiedz nam co myslisz albo poproś o profesjonalne wsparcie.",
|
||||
"ViewUserGuides": "Naucz się jak skonfigurować Piwik i jak efektywnie analizować twoje dane z naszym %1$spodręcznikiem użytkownika%2$s",
|
||||
"VisitTheForums": "Odwiedź %s forum%s"
|
||||
}
|
||||
}
|
||||
34
www/analytics/plugins/Feedback/lang/pt-br.json
Normal file
34
www/analytics/plugins/Feedback/lang/pt-br.json
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Você tem algum bug para relatar ou alguma função para pedir?",
|
||||
"HowToCreateTicket": "Por favor, leia as recomendações de como escrever um bom %1$sbug relatório%2$s ou %3$sfunção requerimento%4$s. Então, registre-se ou faço seu login em %5$snosso questões tracker%6$s e crie uma %7$snova questão%8$s.",
|
||||
"IWantTo": "Eu quero:",
|
||||
"LearnWaysToParticipate": "Aprenda sobre todas as maneiras que você pode %s participar %s",
|
||||
"ManuallySendEmailTo": "Por favor envie manualmente sua mensagem para",
|
||||
"PluginDescription": "Envie seu Feedback para a Equipe Piwik. Compartilhe as suas ideias e sugestões para tornar Piwik a melhor plataforma de análise do mundo!",
|
||||
"PrivacyClaim": "Piwik respeita sua %1$sprivacy%2$s e lhe dá controle total de seus dados.",
|
||||
"RateFeatureLeaveMessageDislike": "Lamentamos saber que você não gosta! Por favor, diga-nos como podemos melhorar.",
|
||||
"RateFeatureLeaveMessageLike": "Estamos felizes por você gostar! Por favor, diga-nos o que você mais gosta ou se tem um pedido de função.",
|
||||
"RateFeatureSendFeedbackInformation": "Sua plataforma Piwik irá enviar-nos (equipe Piwik) um e-mail (incluindo o seu endereço de e-mail) para que possamos entrar em contato com você, caso você tenha alguma dúvida.",
|
||||
"RateFeatureThankYouTitle": "Obrigado por avaliar '%s'!",
|
||||
"RateFeatureTitle": "Você gosta da função '%s'? Por favor, classifique e deixe um comentário",
|
||||
"SendFeedback": "Envie FeedBack",
|
||||
"ThankYou": "Obrigado por nos ajudar a fazer o Piwik melhor!",
|
||||
"TopLinkTooltip": "Diga-nos o que você pensa, ou suporte.",
|
||||
"ViewAnswersToFAQ": "Ver respostas para %sPerguntas Frequentes%s",
|
||||
"ViewUserGuides": "Saiba como configurar o Piwik e como efetivamente analisar seus dados com o nosso %1$sguias do usuário%2$s",
|
||||
"CommunityHelp": "Ajuda da Comunidade",
|
||||
"ProfessionalHelp": "Suporte Profissional",
|
||||
"PiwikProIntro": "Piwik PRO fornece suporte especializado e consultoria para clientes que hospedam Piwik em suas próprias infra-estruturas.",
|
||||
"PiwikProOfferIntro": "Nossa oferta inclui",
|
||||
"PiwikProReviewPiwikSetup": "Um exame da sua configuração Piwik",
|
||||
"PiwikProOptimizationMaintenance": "Serviços de otimização & manutenção Piwik",
|
||||
"PiwikProPhoneEmailSupport": "Suporte por telefone e e-mail",
|
||||
"PiwikProTraining": "Treinamento de Desenvolvedores, Técnicos e Usuários",
|
||||
"PiwikProPremiumFeatures": "Características Premium",
|
||||
"PiwikProCustomDevelopment": "Serviços de Desenvolvimento Personalizados",
|
||||
"PiwikProAnalystConsulting": "Serviços de Consulturia Analítica",
|
||||
"ContactUs": "Contato",
|
||||
"VisitTheForums": "Visite o %s Foruns %s"
|
||||
}
|
||||
}
|
||||
11
www/analytics/plugins/Feedback/lang/pt.json
Normal file
11
www/analytics/plugins/Feedback/lang/pt.json
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Tem algum erro para reportar ou um pedido de funcionalidade?",
|
||||
"IWantTo": "Eu quero:",
|
||||
"LearnWaysToParticipate": "Aprenda todas as formas como pode %s participar%s",
|
||||
"ManuallySendEmailTo": "Por favor envie a sua mensagem manualmente para",
|
||||
"SendFeedback": "Enviar Opinião",
|
||||
"ThankYou": "Obrigado por nos ajudar a melhorar o Piwik!",
|
||||
"VisitTheForums": "Visitar os %s Fóruns%s"
|
||||
}
|
||||
}
|
||||
20
www/analytics/plugins/Feedback/lang/ro.json
Normal file
20
www/analytics/plugins/Feedback/lang/ro.json
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Doreşti să raportezi o problemă sau să propui o înbunătăţire?",
|
||||
"IWantTo": "Doresc să:",
|
||||
"LearnWaysToParticipate": "Invata despre toate modalitatile in care poti %s participa%s",
|
||||
"ManuallySendEmailTo": "Va rugam trimiteti manual mesajul dvs catre",
|
||||
"PrivacyClaim": "Piwik respecta %1$sintimitatea%2$s Dvs. si va acorda control total pentru toate datele.",
|
||||
"RateFeatureLeaveMessageDislike": "Ne pare rau sa aflam ca nu va place! Va rugam semnalati-ne cum putem imbunatati.",
|
||||
"RateFeatureLeaveMessageLike": "Ne bucuram ca va place! Va rugam semnaati-ne ce va place mai mult sau daca aveti o cerinta pentru o functionalitate noua.",
|
||||
"RateFeatureSendFeedbackInformation": "Platforma Dvs. Piwik ne va trimite noua (echipa Piwik) un email (incluzand adresa Dvs de email) pentru ca noi sa putem intra in contact cu Dvs daca aveti vreo intrebare.",
|
||||
"RateFeatureThankYouTitle": "Iti multumim pentru ca ai evaluat '%s'!",
|
||||
"RateFeatureTitle": "Va place functionalitatea '%s' ? Va rugam evaluati si lasati un comentariu",
|
||||
"SendFeedback": "Trimite Feedback",
|
||||
"ThankYou": "Va multumim pentru ca ne ajutati sa facem Piwik mai bun!",
|
||||
"TopLinkTooltip": "Transmiteti-ne parerea Dvs sau cereti Support Profesional.",
|
||||
"ViewAnswersToFAQ": "Vedeti raspunsurile la %sIntrebari Frecvente(FAQ)%s",
|
||||
"ViewUserGuides": "Invata cum sa configurezi Piwik si cum sa analizezi datele eficient cu %1$sghidurile de utilizare%2$s",
|
||||
"VisitTheForums": "Vizitati %s Forumurile%s si primiti ajutor de la comunitatea de utilizatori Piwik."
|
||||
}
|
||||
}
|
||||
32
www/analytics/plugins/Feedback/lang/ru.json
Normal file
32
www/analytics/plugins/Feedback/lang/ru.json
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "У вас есть багрепорт, или предложение по улучшению функционала?",
|
||||
"IWantTo": "Я хочу:",
|
||||
"LearnWaysToParticipate": "Изучить все способы, с помощью которых вы можете %s поучаствовать%s",
|
||||
"ManuallySendEmailTo": "Пожалуйста, отправьте ваше сообщение вручную на",
|
||||
"PluginDescription": "Направляет обратную связь команде Piwik. Делитесь своими идеями и предложениями чтобы сделать Piwik лучшей аналитической платформой в мире!",
|
||||
"PrivacyClaim": "Piwik уважает вашу %1$sконфиденциальность%2$s и дает вам полный контроль над вашими данными.",
|
||||
"RateFeatureLeaveMessageDislike": "Мы сожалеем, что вам не понравилось! Пожалуйста, дайте нам знать что мы можем улучшить.",
|
||||
"RateFeatureLeaveMessageLike": "Пожалуйста, дайте нам знать, что вам нравится больше всего, или хотите в дальнейшем улучшить.",
|
||||
"RateFeatureSendFeedbackInformation": "Ваша система Piwik отправит нам(команде Piwik) email (содержащий ваш email адрес) так что мы сможем связаться с вами, если у вас возникли вопросы.",
|
||||
"RateFeatureThankYouTitle": "Спасибо за оценку '%s'!",
|
||||
"RateFeatureTitle": "Вам нравится эта возможность: «%s»? Пожалуйста, оцените и оставьте комментарий",
|
||||
"SendFeedback": "Отправить отзыв",
|
||||
"ThankYou": "Спасибо за помощь в развитии Piwik!",
|
||||
"TopLinkTooltip": "Расскажите о своей проблеме с Piwik или запросите профессиональную помощь.",
|
||||
"ViewAnswersToFAQ": "Посмотреть ответы на %sЧасто Задаваемые Вопросы%s",
|
||||
"ViewUserGuides": "Узнайте, как настроить Piwik и эффективно анализировать Ваши данные, используя %1$s руководства пользователя%2$s",
|
||||
"CommunityHelp": "Помощь сообщества",
|
||||
"ProfessionalHelp": "Помощь профессионала",
|
||||
"PiwikProOfferIntro": "Наше предложение включает",
|
||||
"PiwikProReviewPiwikSetup": "Просмотр Вашей установки Piwik",
|
||||
"PiwikProOptimizationMaintenance": "Услуги оптимизации и обслуживания Piwik",
|
||||
"PiwikProPhoneEmailSupport": "Поддержку по телефону и электронной почте",
|
||||
"PiwikProTraining": "Обучение пользователей, технических специалистов и разработчиков",
|
||||
"PiwikProPremiumFeatures": "Премиальные возможности",
|
||||
"PiwikProCustomDevelopment": "Услуги разработки",
|
||||
"PiwikProAnalystConsulting": "Услуги аналитика-консультанта",
|
||||
"ContactUs": "Свяжитесь с нами",
|
||||
"VisitTheForums": "Посетить %s Форумы%s"
|
||||
}
|
||||
}
|
||||
6
www/analytics/plugins/Feedback/lang/sk.json
Normal file
6
www/analytics/plugins/Feedback/lang/sk.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"IWantTo": "Chcem:",
|
||||
"SendFeedback": "Odoslať spätnú väzbu"
|
||||
}
|
||||
}
|
||||
11
www/analytics/plugins/Feedback/lang/sl.json
Normal file
11
www/analytics/plugins/Feedback/lang/sl.json
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Imate napako ali pa željo, ki nam jo želite sporočiti?",
|
||||
"IWantTo": "Želim:",
|
||||
"LearnWaysToParticipate": "Oglejte si vse načine kako lahko %ssodelujete%s",
|
||||
"ManuallySendEmailTo": "Prosimo, da sporočilo ročno pošljete",
|
||||
"SendFeedback": "Pošlji povratno informacijo",
|
||||
"ThankYou": "Hvala, ker nam pomagate izboljšati Piwik!",
|
||||
"VisitTheForums": "Obiščite %sForume%s"
|
||||
}
|
||||
}
|
||||
34
www/analytics/plugins/Feedback/lang/sq.json
Normal file
34
www/analytics/plugins/Feedback/lang/sq.json
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Keni ndonjë të metë që ta raportoni apo kërkesë për veçori të reja?",
|
||||
"HowToCreateTicket": "Ju lutemi, lexoni rekomandimet se si të shkruhet si duhet një %1$snjoftim të metash%2$s apo %3$skërkesë për veçori%4$s. Mandej regjistrohuni ose bëni hyrjen te %5$sndjekësi ynë i çështjeve%6$s dhe krijoni një %7$sçështje të re%8$s.",
|
||||
"IWantTo": "Dua të:",
|
||||
"LearnWaysToParticipate": "Njihuni me krejt mënyrat përmes të cilave mund të %s merrni pjesë%s",
|
||||
"ManuallySendEmailTo": "Ju lutem, dërgojeni mesazhin tuaj dorazi te",
|
||||
"PluginDescription": "Dërgojani Përshtypjet tuaja Ekipit të Piwik-ut. Ndani me taidetë dhe sugjerimet tuaja për ta bërë Piwik-un platformën më të mirë në botë për analiza!",
|
||||
"PrivacyClaim": "Piwik-u respekton %1$sprivatësinë%2$s tuaj dhe ju jep kontroll të plotë mbi të dhënat tuaja.",
|
||||
"RateFeatureLeaveMessageDislike": "Na vjen keq që dëgjojmë se s’ju pëlqen! Ju lutemi, na thoni se si mund ta përmirësojmë.",
|
||||
"RateFeatureLeaveMessageLike": "Gëzohemi që ju pëlqen! Ju lutemi, na thoni se çfarë ju pëlqeu më shumë ose nëse keni ndonjë kërkesë për veçori të re.",
|
||||
"RateFeatureSendFeedbackInformation": "Platforma juaj Piwik do të na dërgojë (ekipit Piwik) një email (përfshi adresën tuaj email), që të mund të lidhemi me ju, nëse keni ndonjë pyetje.",
|
||||
"RateFeatureThankYouTitle": "Faleminderit për vlerësimin e '%s'!",
|
||||
"RateFeatureTitle": "Ju pëlqen veçoria '%s'? Ju lutemi, vlerësojeni dhe lini një koment",
|
||||
"SendFeedback": "Dërgoji Përshtypjet",
|
||||
"ThankYou": "Faleminderit që na ndihmoni ta bëjmë më të mirë Piwik-un!",
|
||||
"TopLinkTooltip": "Na thoni se ç’mendim keni, ose kërkoni Asistencë Profesionale.",
|
||||
"ViewAnswersToFAQ": "Shihni përgjigjet te %sPyetje të Bëra Shpesh%s",
|
||||
"ViewUserGuides": "Mësoni përmes %1$sudhërëfyesit tonë për përdoruesit%2$s se si ta formësoni Piwik-un dhe si të analizoni me efektshmëri të dhënat tuaja",
|
||||
"CommunityHelp": "Ndihmë nga Bashkësia",
|
||||
"ProfessionalHelp": "Ndihmë Profesionale",
|
||||
"PiwikProIntro": "Piwik PRO ofron për klientë që e kanë Piwik-un të strehuar në infrastrukturë të tyre asistencë dhe konsulencë.",
|
||||
"PiwikProOfferIntro": "Në ofertën tonë përfshihet",
|
||||
"PiwikProReviewPiwikSetup": "Një përmbledhje e rregullimeve tuaja për Piwik-un",
|
||||
"PiwikProOptimizationMaintenance": "Shërbime optimizimi & mirëmbajtjeje Piwik-u",
|
||||
"PiwikProPhoneEmailSupport": "Asistencë Telefonike dhe me Email",
|
||||
"PiwikProTraining": "Trajnim Teknik, Përdoruesi, Zhvilluesi",
|
||||
"PiwikProPremiumFeatures": "Veçori Me Pagesë",
|
||||
"PiwikProCustomDevelopment": "Shërbime Personalizimesh",
|
||||
"PiwikProAnalystConsulting": "Shërbime konsulence analizash",
|
||||
"ContactUs": "Lidhuni me ne",
|
||||
"VisitTheForums": "Vizitoni %s Forumet%s"
|
||||
}
|
||||
}
|
||||
34
www/analytics/plugins/Feedback/lang/sr.json
Normal file
34
www/analytics/plugins/Feedback/lang/sr.json
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Da li želite da prijavite grešku u programu ili imate neku želju?",
|
||||
"HowToCreateTicket": "Molimo vas da pročitate preporuke kako se piše dobra %1$sprijava problema%2$s ili %3$szahtev za novom funkcionalnošću%4$s. Nakon toga se %5$sregistrujte ili prijavite%6$s i kreirajte %7$snovi zahtev%8$s.",
|
||||
"IWantTo": "Želim da:",
|
||||
"LearnWaysToParticipate": "Pogledajte kako sve možete da %s uzmete učešće%s",
|
||||
"ManuallySendEmailTo": "Molimo vas da pošaljete poruku na",
|
||||
"PluginDescription": "Pošaljite vaše komentare Piwik timu. Podelite vaše ideje i predloge kako bismo učinili Piwik najboljom analitičkom platformom na svetu!",
|
||||
"PrivacyClaim": "Piwik poštuje vašu %1$sprivatnost%2$s i daje vam potpunu kontrolu nad vašim podacima.",
|
||||
"RateFeatureLeaveMessageDislike": "Šao nam je da vam se ne dopada! Molimo vas da nam javite kako možemo da ga poboljšamo.",
|
||||
"RateFeatureLeaveMessageLike": "Drago nam je da vam se dopada! Molimo vas da nam javite šta vam se najviše sviđa ili da li imate neki zahtev.",
|
||||
"RateFeatureSendFeedbackInformation": "Vaša Piwik platforma će poslati Piwik timu mejl (uključujući i vašu adresu) tako da možemo da stupimo sa vama u kontakt ukoliko imate neko pitanje.",
|
||||
"RateFeatureThankYouTitle": "Hvala vam na oceni '%s'!",
|
||||
"RateFeatureTitle": "Da li vam se sviđa '%s'? Molimo vas da date ocenu i ostavite komentar",
|
||||
"SendFeedback": "Pošaljite vaše zapažanje",
|
||||
"ThankYou": "Hvala vam što nam pomažete da učinimo Piwik boljim!",
|
||||
"TopLinkTooltip": "Recite nam šta mislite ili zatražite profesionalnu pomoć.",
|
||||
"ViewAnswersToFAQ": "Prikaži odgovore na %sčesto postavljana pitanja%s",
|
||||
"ViewUserGuides": "Naučite kako da podesite Piwik i kako da efikasno analizirate vaše podatke prateći %1$skorisničko uputstvo%2$s",
|
||||
"CommunityHelp": "Pomoć zajednice",
|
||||
"ProfessionalHelp": "Profesionalna pomoć",
|
||||
"PiwikProIntro": "Piwik PRO omogućuje podršku i konsalting eksperata klijentima koji hostuju Piwik na sopstvenim platformama.",
|
||||
"PiwikProOfferIntro": "Naša ponuda uključuje",
|
||||
"PiwikProReviewPiwikSetup": "Proveru vaše Piwik instalacije",
|
||||
"PiwikProOptimizationMaintenance": "Usluge optimizacije i održavanja Piwik-a",
|
||||
"PiwikProPhoneEmailSupport": "Telefonsku i podršku putem mejla",
|
||||
"PiwikProTraining": "Korisnički, tehnički i razvojni trening",
|
||||
"PiwikProPremiumFeatures": "Premium sadržaje",
|
||||
"PiwikProCustomDevelopment": "Razvoj usluga po vašoj želji",
|
||||
"PiwikProAnalystConsulting": "Usluge analitičkog konsaltinga",
|
||||
"ContactUs": "Kontaktirajte nas",
|
||||
"VisitTheForums": "Posetite %s Forum%s"
|
||||
}
|
||||
}
|
||||
26
www/analytics/plugins/Feedback/lang/sv.json
Normal file
26
www/analytics/plugins/Feedback/lang/sv.json
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Har du en bugg att rapportera eller en funktionsbegäran?",
|
||||
"HowToCreateTicket": "Vänligen läs rekommendationerna för hur du skriver en bra %1$sfel rapport%2$s eller %3$sfunktionsförfrågan%4$s. Registrera eller logga in på %5$svårt ärendehanteringssystem%6$s och skapa %7$sett nytt ärende%8$s.",
|
||||
"IWantTo": "Jag vill:",
|
||||
"LearnWaysToParticipate": "Läs om alla sätt du kan %s delta%s",
|
||||
"ManuallySendEmailTo": "Vänligen skicka ditt meddelande manuellt till",
|
||||
"PrivacyClaim": "Piwik respekterar din %1$sintegritet%2$s och ger dig full kontroll över din information.",
|
||||
"RateFeatureLeaveMessageDislike": "Vi är ledsna över att du inte gillar det! Berätta gärna för oss hur vi kan förbättra Piwik.",
|
||||
"RateFeatureLeaveMessageLike": "Vi är glada att du gillar det! Berätta för oss vad du gillar mest med Piwik eller om du har ett förslag på en funktion.",
|
||||
"RateFeatureSendFeedbackInformation": "Din Piwik plattform kommer att skicka oss (Piwik teamet) ett e-post (inklusive din e-postadress) så att vi kan komma i kontakt med dig om du har några frågor.",
|
||||
"RateFeatureThankYouTitle": "Tack för att du betygsatt '%s'!",
|
||||
"RateFeatureTitle": "Tycker du om '%s'-funktionen? Vänligen betygsätt och lämna en kommentar",
|
||||
"SendFeedback": "Skicka Feedback",
|
||||
"ThankYou": "Tack för att du hjälper oss att göra Piwik bättre!",
|
||||
"TopLinkTooltip": "Tala om för oss vad du tycker, eller fråga efter professionell support.",
|
||||
"ViewAnswersToFAQ": "Se svar på %svanliga frågor%s",
|
||||
"ViewUserGuides": "Lär dig att konfigurera Piwik och hur man på ett effektivt sätt analyserar data med våra %1$sanvändarguider%2$s",
|
||||
"ProfessionalHelp": "Professionell hjälp",
|
||||
"PiwikProOfferIntro": "Vårt erbjudande inkluderar",
|
||||
"PiwikProPhoneEmailSupport": "Telefon och e-postsupport",
|
||||
"PiwikProPremiumFeatures": "Premium-funktioner",
|
||||
"ContactUs": "Kontakta oss",
|
||||
"VisitTheForums": "Besök %s Forumet%s"
|
||||
}
|
||||
}
|
||||
9
www/analytics/plugins/Feedback/lang/ta.json
Normal file
9
www/analytics/plugins/Feedback/lang/ta.json
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "நீங்கள் ஏதேனும் ஒரு பிழையை அல்லது புதிய அம்சம் பற்றி கோர வேண்டுமா?",
|
||||
"IWantTo": "எனக்கு தேவை:",
|
||||
"LearnWaysToParticipate": "நீங்கள் %s பங்குகொள்ளகூடிய%s அனைத்து வழிகளைவும் தெரிந்து கொள்ள",
|
||||
"ManuallySendEmailTo": "தயவுசெய்து சுயமாக உங்கள் செய்தியை இவருக்கு அனுப்புங்கள்",
|
||||
"SendFeedback": "கருத்து தெரிவிக்க"
|
||||
}
|
||||
}
|
||||
11
www/analytics/plugins/Feedback/lang/th.json
Normal file
11
www/analytics/plugins/Feedback/lang/th.json
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "คุณมีข้อบกพร่องในการรายงานหรือการร้องขอคุณลักษณะหรือไม่",
|
||||
"IWantTo": "ฉันอยากจะ:",
|
||||
"LearnWaysToParticipate": "เรียนรู้เกี่ยวกับทั้งหมดด้วยวิธี %s คุณสามารถ %s มีส่วนร่วมได้",
|
||||
"ManuallySendEmailTo": "กรุณาส่งข้อความของคุณด้วยตนเอง",
|
||||
"SendFeedback": "ส่งคำติชม",
|
||||
"ThankYou": "ขอบคุณที่ช่วยให้เราสามารถทำให้ Piwik ดีกว่า",
|
||||
"VisitTheForums": "เข้าชม %s เว็บบอร์ด %s"
|
||||
}
|
||||
}
|
||||
21
www/analytics/plugins/Feedback/lang/tl.json
Normal file
21
www/analytics/plugins/Feedback/lang/tl.json
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Mayroon ka bang iuulat na bug o hihilinging feature?",
|
||||
"HowToCreateTicket": "Mangyaring basahin ang rekomendasyon sa mahusay na pagsusulat %1$sbug report%2$s o %3$sfeature request%4$s. Pagkatapos magrehistro o mag-login sa %5$sour issue tracker%6$s at gumawa ng %7$snew issue%8$s.",
|
||||
"IWantTo": "Gusto kong:",
|
||||
"LearnWaysToParticipate": "Pag-aralan ang lahat ng daan upang %s makasali sa %s",
|
||||
"ManuallySendEmailTo": "Mangyaring manu-manong ipadala ang iyong mensahe sa.",
|
||||
"PrivacyClaim": "Nirerespeto ng Piwik ang iyong %1$s privacy %2$s at nagbibigay sa iyo ng ganap na kontrol sa iyong data.",
|
||||
"RateFeatureLeaveMessageDislike": "Ikinalulungkot namin na hindi mo ito gustong marinig! Mangyaring ipaalam samin kung paano naman ito mapapabuti.",
|
||||
"RateFeatureLeaveMessageLike": "Kami ay natutuwa na gusto mo ito! Mangyaring ipaalam sa amin kung ano ang gusto mo ang pinaka o kung mayroon kang gustong feature na pwedeng i-dagdag.",
|
||||
"RateFeatureSendFeedbackInformation": "Ang iyong Piwik platform ay aming ipapadala(Ang pangkat ng Piwik) ang email (kasama ang iyong email address) upang pwede ka namin kontakin kung ikaw ay merong mga katanungan.",
|
||||
"RateFeatureThankYouTitle": "Salamat sa pag-rate '%s'!",
|
||||
"RateFeatureTitle": "Gusto mo ba ang '%s' feature? Paki-rate at mag-iwan ng komento",
|
||||
"SendFeedback": "Magpadala ng Feedback",
|
||||
"ThankYou": "Salamat sa pagtulong sa amin upang maging mas mabuti ang Piwik!",
|
||||
"TopLinkTooltip": "Sabihin sa amin ang iyong iniisip o humiling ng Propesyonal na Suporta.",
|
||||
"ViewAnswersToFAQ": "Ipakita ang sagot sa %s Mga Madalas Itanong %s",
|
||||
"ViewUserGuides": "Alamin kung paano i-configure ang Piwik at kung paano epektibong pag-aralan ang iyong data sa aming %1$suser gabay sa %2$s.",
|
||||
"VisitTheForums": "Bisitahin ang mga %s Forum %s at makakuha ng tulong mula sa komunidad ng mga Piwik user."
|
||||
}
|
||||
}
|
||||
15
www/analytics/plugins/Feedback/lang/tr.json
Normal file
15
www/analytics/plugins/Feedback/lang/tr.json
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Hata raporu veya özellik öneriniz mi var?",
|
||||
"IWantTo": "İstiyorum:",
|
||||
"LearnWaysToParticipate": "%sOrtak olabileceğiniz%s tüm yolları öğrenin",
|
||||
"ManuallySendEmailTo": "Lütfen mesajınızı elle yollayın",
|
||||
"RateFeatureLeaveMessageDislike": "Beğenmediğiniz için çok üzgünüz! Lütfen bunu nasıl geliştireceğimiz konusunda yardımcı olun.",
|
||||
"RateFeatureThankYouTitle": "Oyladığınız için teşekkürler '%s'!",
|
||||
"RateFeatureTitle": "'%s' özelliğini beğendiniz mi? Lütfen oy verip, bir yorum yapın",
|
||||
"SendFeedback": "Geribildirim Yollayın",
|
||||
"ThankYou": "Piwik'i daha iyi yapmamıza yardım ettiğiniz için teşekkür ederiz!",
|
||||
"TopLinkTooltip": "Bize fikirlerinizi iletin, ya da Profesyonel Destek isteyin.",
|
||||
"VisitTheForums": "%sForumları%s ziyaret edin"
|
||||
}
|
||||
}
|
||||
11
www/analytics/plugins/Feedback/lang/uk.json
Normal file
11
www/analytics/plugins/Feedback/lang/uk.json
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Ви хочете надіслати нам повідомлення про помилку чи попросити додати нову функцію?",
|
||||
"IWantTo": "Я хочу:",
|
||||
"LearnWaysToParticipate": "Дізнатися про всі способи %sдолучитися%s",
|
||||
"ManuallySendEmailTo": "Будь-ласка надішліть ваше повідомлення власноручно на",
|
||||
"SendFeedback": "Надіслати відгук",
|
||||
"ThankYou": "Дякуємо що допомагаєте робити Piwik кращим!",
|
||||
"VisitTheForums": "Відвідати %s Форум%s"
|
||||
}
|
||||
}
|
||||
12
www/analytics/plugins/Feedback/lang/vi.json
Normal file
12
www/analytics/plugins/Feedback/lang/vi.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "Bạn đã có lỗi với báo cáo hoặc yêu cầu tính năng?",
|
||||
"IWantTo": "Tôi muốn:",
|
||||
"LearnWaysToParticipate": "Tìm hiểu về tất cả các cách bạn có thể %s tham gia %s",
|
||||
"ManuallySendEmailTo": "Hãy tự gửi thông điệp của bạn tới",
|
||||
"SendFeedback": "Gửi feedback",
|
||||
"ThankYou": "Cảm ơn bạn đã giúp chúng tôi để làm cho Piwik tốt hơn!",
|
||||
"TopLinkTooltip": "Hãy cho chúng tôi những suy nghĩ của bạn, hoặc gửi một yều \"Professional Support\"",
|
||||
"VisitTheForums": "Thăm %s diễn đàn %s"
|
||||
}
|
||||
}
|
||||
12
www/analytics/plugins/Feedback/lang/zh-cn.json
Normal file
12
www/analytics/plugins/Feedback/lang/zh-cn.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "您有bug报告或要新增功能?",
|
||||
"IWantTo": "我想要:",
|
||||
"LearnWaysToParticipate": "了解所有您可以 %s 参与%s 的方法",
|
||||
"ManuallySendEmailTo": "请手动发送信息至",
|
||||
"SendFeedback": "提交反馈",
|
||||
"ThankYou": "感谢您帮助我们改进 Piwik !",
|
||||
"TopLinkTooltip": "告诉我们您的想法,或者寻求专业技术支持。",
|
||||
"VisitTheForums": "访问 %s 论坛%s"
|
||||
}
|
||||
}
|
||||
12
www/analytics/plugins/Feedback/lang/zh-tw.json
Normal file
12
www/analytics/plugins/Feedback/lang/zh-tw.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"Feedback": {
|
||||
"DoYouHaveBugReportOrFeatureRequest": "你有一個臭蟲回報或功能請求?",
|
||||
"IWantTo": "我想要:",
|
||||
"LearnWaysToParticipate": "瞭解所有你可以 %s 參與%s 的方法",
|
||||
"ManuallySendEmailTo": "請手動寄送你的訊息至",
|
||||
"SendFeedback": "送出意見",
|
||||
"ThankYou": "謝謝你協助我們使 Piwik 變得更好!",
|
||||
"TopLinkTooltip": "請分享您的意見,或提出專業支援要求。",
|
||||
"VisitTheForums": "訪問 %s 論壇%s"
|
||||
}
|
||||
}
|
||||
|
|
@ -1,11 +1,4 @@
|
|||
#feedback-faq {
|
||||
color: #5e5e5c;
|
||||
width: 675px;
|
||||
font-size: 14px;
|
||||
|
||||
strong {
|
||||
color: #5e5e5c;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
|
|
@ -14,14 +7,12 @@
|
|||
line-height: 18px;
|
||||
}
|
||||
|
||||
p {
|
||||
.header_full, p {
|
||||
padding-bottom: 0px;
|
||||
line-height: 1.7em;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #5176a0;
|
||||
text-decoration: none;
|
||||
p {
|
||||
line-height: 1.7em;
|
||||
}
|
||||
|
||||
.piwik-donate-call {
|
||||
|
|
@ -56,7 +47,8 @@
|
|||
}
|
||||
|
||||
hr {
|
||||
background-color: #CCC;
|
||||
margin-top: 45px;
|
||||
background-color: @color-silver-l90;
|
||||
height: 1px;
|
||||
border: 0px;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,14 +1,16 @@
|
|||
{% extends 'dashboard.twig' %}
|
||||
{% extends 'user.twig' %}
|
||||
|
||||
{% set test_piwikUrl='http://demo.piwik.org/' %}
|
||||
{% set isPiwikDemo %}{{ piwikUrl == 'http://demo.piwik.org/' or piwikUrl == 'https://demo.piwik.org/'}}{% endset %}
|
||||
|
||||
{% set title %}{{ 'General_AboutPiwikX'|translate(piwikVersion) }}{% endset %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<div id="feedback-faq" class="admin centerLargeDiv">
|
||||
<div id="feedback-faq" class="admin">
|
||||
<h2 piwik-enriched-headline
|
||||
feature-name="{{ 'General_Help'|translate }}"
|
||||
>{{ 'General_AboutPiwikX'|translate(piwikVersion) }}</h2>
|
||||
>{{ title }}</h2>
|
||||
|
||||
<div class="header_full">
|
||||
<p>{{ 'General_PiwikIsACollaborativeProjectYouCanContributeAndDonate'|translate(
|
||||
|
|
@ -22,50 +24,58 @@
|
|||
"</a>"
|
||||
)|raw }}
|
||||
</p>
|
||||
<br/>
|
||||
</div>
|
||||
|
||||
<h2>{{ 'Do you need help?'|translate }}</h2>
|
||||
<h2>{{ 'Feedback_CommunityHelp'|translate }}</h2>
|
||||
|
||||
<div class="header_full">
|
||||
<p> • {{ 'Feedback_ViewUserGuides'|translate("<a target='_blank' href='?module=Proxy&action=redirect&url=http://piwik.org/docs/'>","</a>")|raw }}.</p>
|
||||
<p> • {{ 'Feedback_ViewAnswersToFAQ'|translate("<a target='_blank' href='?module=Proxy&action=redirect&url=http://piwik.org/faq/'>","</a>")|raw }}.</p>
|
||||
<p> • {{ 'Feedback_VisitTheForums'|translate("<a target='_blank' href='?module=Proxy&action=redirect&url=http://forum.piwik.org/'>","</a>")|raw }}.</p>
|
||||
<br/>
|
||||
<p> • {{ 'API_LearnAboutCommonlyUsedTerms'|translate(
|
||||
'<a href="'~ linkTo({'module':"API",'action':"glossary"}) ~ '#metrics">' ~ 'General_Metrics'|translate ~ '</a>',
|
||||
'<a href="'~ linkTo({'module':"API",'action':"glossary"}) ~ '#reports">' ~ 'General_Reports'|translate ~ '</a>')|raw
|
||||
}} ({{ 'API_Glossary'|translate }})</p>
|
||||
</div>
|
||||
|
||||
<h2>{{ 'Feedback_ProfessionalHelp'|translate }}</h2>
|
||||
|
||||
<div class="header_full">
|
||||
<p>{{ 'Feedback_PiwikProIntro'|translate }}</p>
|
||||
|
||||
<p>{{ 'Feedback_PiwikProOfferIntro'|translate }}:</p>
|
||||
<p> • {{ 'Feedback_PiwikProReviewPiwikSetup'|translate }}</p>
|
||||
<p> • {{ 'Feedback_PiwikProOptimizationMaintenance'|translate }}</p>
|
||||
<p> • {{ 'Feedback_PiwikProPhoneEmailSupport'|translate }}</p>
|
||||
<p> • {{ 'Feedback_PiwikProTraining'|translate }}</p>
|
||||
<p> • {{ 'Feedback_PiwikProPremiumFeatures'|translate }}</p>
|
||||
<p> • {{ 'Feedback_PiwikProCustomDevelopment'|translate }}</p>
|
||||
<p> • {{ 'Feedback_PiwikProAnalystConsulting'|translate }}</p>
|
||||
</div>
|
||||
|
||||
<form target="_blank" action="https://piwik.pro/contact#contact-form">
|
||||
<input type="hidden" name="pk_campaign" value="App_Help">
|
||||
<input type="hidden" name="pk_source" value="Piwik_App">
|
||||
<input type="hidden" name="pk_medium" value="App_ContactUs_button">
|
||||
<br />
|
||||
<input type="submit" value="{{ 'Feedback_ContactUs'|translate }}">
|
||||
</form>
|
||||
|
||||
<h2>{{ 'Feedback_DoYouHaveBugReportOrFeatureRequest'|translate }}</h2>
|
||||
|
||||
<div class="header_full">
|
||||
<p>{{ 'Feedback_HowToCreateIssue'|translate(
|
||||
<p>{{ 'Feedback_HowToCreateTicket'|translate(
|
||||
"<a target='_blank' href='?module=Proxy&action=redirect&url=http://developer.piwik.org/guides/core-team-workflow%23submitting-a-bug-report'>",
|
||||
"</a>",
|
||||
"<a target='_blank' href='?module=Proxy&action=redirect&url=http://developer.piwik.org/guides/core-team-workflow%23submitting-a-feature-request'>",
|
||||
"</a>",
|
||||
"<a target='_blank' href='?module=Proxy&action=redirect&url=http://dev.piwik.org/trac/register'>",
|
||||
"<a target='_blank' href='?module=Proxy&action=redirect&url=https://github.com/piwik/piwik/issues'>",
|
||||
"</a>",
|
||||
"<a target='_blank' href='?module=Proxy&action=redirect&url=http://dev.piwik.org/trac/login'>",
|
||||
"</a>",
|
||||
"<a target='_blank' href='?module=Proxy&action=redirect&url=http://dev.piwik.org/trac/newticket'>",
|
||||
"<a target='_blank' href='?module=Proxy&action=redirect&url=https://github.com/piwik/piwik/issues/new'>",
|
||||
"</a>"
|
||||
)|raw }}</p>
|
||||
<br/>
|
||||
</div>
|
||||
|
||||
<h2>{{ 'Feedback_SpecialRequest'|translate }}</h2>
|
||||
|
||||
<div class="header_full">
|
||||
<p>{{ 'Feedback_GetInTouch'|translate }}
|
||||
<a target='_blank' href="?module=Proxy&action=redirect&url=http://piwik.org/contact/"
|
||||
>{{ 'Feedback_ContactThePiwikTeam'|translate }}</a>
|
||||
</p>
|
||||
<br/>
|
||||
</div>
|
||||
|
||||
<h2 id="donate">{{ 'Feedback_WantToThankConsiderDonating'|translate }}</h2>
|
||||
{% include "@CoreHome/_donate.twig" with { 'msg':""} %}
|
||||
<br/>
|
||||
|
||||
<div class="footer">
|
||||
<hr/>
|
||||
<ul class="social">
|
||||
|
|
@ -74,20 +84,20 @@
|
|||
<a target="_blank" href="?module=Proxy&action=redirect&url=http://piwik.org/newsletter/">Newsletter</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="http://www.facebook.com/Piwik"><img class="icon" src="plugins/Feedback/images/facebook.png"></a>
|
||||
<a target="_blank" href="http://www.facebook.com/Piwik">Facebook</a>
|
||||
<a rel="noreferrer" target="_blank" href="http://www.facebook.com/Piwik"><img class="icon" src="plugins/Feedback/images/facebook.png"></a>
|
||||
<a rel="noreferrer" target="_blank" href="http://www.facebook.com/Piwik">Facebook</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="http://twitter.com/piwik"><img class="icon" src="plugins/Feedback/images/twitter.png"></a>
|
||||
<a target="_blank" href="http://twitter.com/piwik">Twitter</a>
|
||||
<a rel="noreferrer" target="_blank" href="http://twitter.com/piwik"><img class="icon" src="plugins/Feedback/images/twitter.png"></a>
|
||||
<a rel="noreferrer" target="_blank" href="http://twitter.com/piwik">Twitter</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="http://www.linkedin.com/groups?gid=867857"><img class="icon" src="plugins/Feedback/images/linkedin.png"></a>
|
||||
<a target="_blank" href="http://www.linkedin.com/groups?gid=867857">Linkedin</a>
|
||||
<a rel="noreferrer" target="_blank" href="http://www.linkedin.com/groups?gid=867857"><img class="icon" src="plugins/Feedback/images/linkedin.png"></a>
|
||||
<a rel="noreferrer" target="_blank" href="http://www.linkedin.com/groups?gid=867857">Linkedin</a>
|
||||
</li>
|
||||
<li>
|
||||
<a target="_blank" href="https://github.com/piwik/piwik"><img class="icon" src="plugins/Feedback/images/github.png"></a>
|
||||
<a target="_blank" href="https://github.com/piwik/piwik">GitHub</a>
|
||||
<a rel="noreferrer" target="_blank" href="https://github.com/piwik/piwik"><img class="icon" src="plugins/Feedback/images/github.png"></a>
|
||||
<a rel="noreferrer" target="_blank" href="https://github.com/piwik/piwik">GitHub</a>
|
||||
</li>
|
||||
</ul>
|
||||
<ul class="menu">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue