Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Aubry <mattab@users.noreply.github.com>2018-01-11 02:23:40 +0300
committerGitHub <noreply@github.com>2018-01-11 02:23:40 +0300
commit07adf0ac04dfb8f35be41d9add1855b6e646f8db (patch)
tree5c3b3d0db2ef82c663d34551394a9ede03167e82 /plugins/Feedback
parent62e3c3f89a4c8bb29f710901de7d62e6576e03cd (diff)
Show Matomo instead of Piwik in the user interface in more places (#12421)
* Replace all occurences of Piwik in english translations of Actions plugin * translation update * Replace all occurences of Piwik in english translations of API plugin * translation update * Replace all occurences of Piwik in english translations of core * replace Piwik occurrences * Rename widget piwik.org blog => matomo.org blog * fix widget name * replaced some more piwik mentions * Renamed to Matomo a few strings * Replaced more strings to Matomo in JSON files, twig templates * Replaced more strings to Matomo in INI file * Replaced more strings to Matomo in API docs, error messages, feedback forms * introduce API.getMatomoVersion and ExampleAPI.getMatomoVersion API + deprecate old ones
Diffstat (limited to 'plugins/Feedback')
-rw-r--r--plugins/Feedback/API.php8
-rw-r--r--plugins/Feedback/lang/ar.json2
-rw-r--r--plugins/Feedback/lang/be.json2
-rw-r--r--plugins/Feedback/lang/bg.json2
-rw-r--r--plugins/Feedback/lang/ca.json2
-rw-r--r--plugins/Feedback/lang/cs.json16
-rw-r--r--plugins/Feedback/lang/da.json8
-rw-r--r--plugins/Feedback/lang/de.json14
-rw-r--r--plugins/Feedback/lang/el.json18
-rw-r--r--plugins/Feedback/lang/en.json18
-rw-r--r--plugins/Feedback/lang/es.json16
-rw-r--r--plugins/Feedback/lang/fi.json2
-rw-r--r--plugins/Feedback/lang/fr.json16
-rw-r--r--plugins/Feedback/lang/hu.json2
-rw-r--r--plugins/Feedback/lang/id.json2
-rw-r--r--plugins/Feedback/lang/it.json16
-rw-r--r--plugins/Feedback/lang/ja.json8
-rw-r--r--plugins/Feedback/lang/ka.json2
-rw-r--r--plugins/Feedback/lang/ko.json8
-rw-r--r--plugins/Feedback/lang/lt.json4
-rw-r--r--plugins/Feedback/lang/lv.json2
-rw-r--r--plugins/Feedback/lang/nb.json4
-rw-r--r--plugins/Feedback/lang/nl.json12
-rw-r--r--plugins/Feedback/lang/nn.json2
-rw-r--r--plugins/Feedback/lang/pl.json16
-rw-r--r--plugins/Feedback/lang/pt-br.json10
-rw-r--r--plugins/Feedback/lang/pt.json2
-rw-r--r--plugins/Feedback/lang/ro.json8
-rw-r--r--plugins/Feedback/lang/ru.json18
-rw-r--r--plugins/Feedback/lang/sl.json2
-rw-r--r--plugins/Feedback/lang/sq.json16
-rw-r--r--plugins/Feedback/lang/sr.json16
-rw-r--r--plugins/Feedback/lang/sv.json18
-rw-r--r--plugins/Feedback/lang/th.json2
-rw-r--r--plugins/Feedback/lang/tl.json10
-rw-r--r--plugins/Feedback/lang/uk.json2
-rw-r--r--plugins/Feedback/lang/vi.json2
-rw-r--r--plugins/Feedback/lang/zh-cn.json2
-rw-r--r--plugins/Feedback/lang/zh-tw.json12
-rw-r--r--plugins/Feedback/templates/index.twig6
40 files changed, 164 insertions, 164 deletions
diff --git a/plugins/Feedback/API.php b/plugins/Feedback/API.php
index 70ba272d4d..5915663d4c 100644
--- a/plugins/Feedback/API.php
+++ b/plugins/Feedback/API.php
@@ -24,7 +24,7 @@ use Piwik\Version;
class API extends \Piwik\Plugin\API
{
/**
- * Sends feedback for a specific feature to the Piwik team or alternatively to the email address configured in the
+ * Sends feedback for a specific feature to the Matomo team or alternatively to the email address configured in the
* config: "feedback_email_address".
*
* @param string $featureName The name of a feature you want to give feedback to.
@@ -64,15 +64,15 @@ class API extends \Piwik\Plugin\API
{
$feedbackEmailAddress = Config::getInstance()->General['feedback_email_address'];
- $subject = '[ Feedback Feature - Piwik ] ' . $subject;
+ $subject = '[ Feedback Feature - Matomo ] ' . $subject;
$body = Common::unsanitizeInputValue($body) . "\n"
- . 'Piwik ' . Version::VERSION . "\n"
+ . 'Matomo ' . Version::VERSION . "\n"
. 'IP: ' . IP::getIpFromHeader() . "\n"
. 'URL: ' . Url::getReferrer() . "\n";
$mail = new Mail();
$mail->setFrom(Piwik::getCurrentUserEmail());
- $mail->addTo($feedbackEmailAddress, 'Piwik Team');
+ $mail->addTo($feedbackEmailAddress, 'Matomo Team');
$mail->setSubject($subject);
$mail->setBodyText($body);
@$mail->send();
diff --git a/plugins/Feedback/lang/ar.json b/plugins/Feedback/lang/ar.json
index ba0dbcc43e..efcafcbe91 100644
--- a/plugins/Feedback/lang/ar.json
+++ b/plugins/Feedback/lang/ar.json
@@ -5,6 +5,6 @@
"LearnWaysToParticipate": "تعرف على كافة الطرق التي يمكنك %1$s المساهمة %2$s بها.",
"ManuallySendEmailTo": "الرجاء إرسال رسالتك يدوياً إلى",
"SendFeedback": "أرسل التغذية الراجعة",
- "ThankYou": "شكراً لمساعدتك في جعل Piwik أفضل!"
+ "ThankYou": "شكراً لمساعدتك في جعل Matomo أفضل!"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/be.json b/plugins/Feedback/lang/be.json
index 5fd20e94f2..1be1bcce5b 100644
--- a/plugins/Feedback/lang/be.json
+++ b/plugins/Feedback/lang/be.json
@@ -5,6 +5,6 @@
"LearnWaysToParticipate": "Даведайцеся пра ўсе спосабы %1$s ўдзельнічыства %2$s",
"ManuallySendEmailTo": "Калі ласка, уручную адпраўце паведамленне да",
"SendFeedback": "Адправіць водгук",
- "ThankYou": "Дзякуй за дапамогу нам зрабіць Piwik лепш!"
+ "ThankYou": "Дзякуй за дапамогу нам зрабіць Matomo лепш!"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/bg.json b/plugins/Feedback/lang/bg.json
index 2085faac8b..97e865b6d3 100644
--- a/plugins/Feedback/lang/bg.json
+++ b/plugins/Feedback/lang/bg.json
@@ -6,7 +6,7 @@
"ManuallySendEmailTo": "Моля изпратете ръчно Вашето съобщение до",
"RateFeatureThankYouTitle": "Благодарим ви, че оценихте '%s'!",
"SendFeedback": "Изпрати съобщението",
- "ThankYou": "Благодаря, че помогнахте да направим Piwik по-добър!",
+ "ThankYou": "Благодаря, че помогнахте да направим Matomo по-добър!",
"TopLinkTooltip": "Може да ни кажете какво мислите, както и да изискате професионална помощ."
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/ca.json b/plugins/Feedback/lang/ca.json
index f172f63546..320a165981 100644
--- a/plugins/Feedback/lang/ca.json
+++ b/plugins/Feedback/lang/ca.json
@@ -5,7 +5,7 @@
"LearnWaysToParticipate": "Apren sobre les formes en que tu pots %1$s participar %2$s",
"ManuallySendEmailTo": "Siusplau envia el vostre missatge manualmetn a",
"SendFeedback": "Enviar Feedback",
- "ThankYou": "Gràcies per ajudar-nos a fer el Piwik millor!",
+ "ThankYou": "Gràcies per ajudar-nos a fer el Matomo millor!",
"TopLinkTooltip": "Digue'ns que en penses o demana suport Professional."
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/cs.json b/plugins/Feedback/lang/cs.json
index a0031b3a11..f222227c8f 100644
--- a/plugins/Feedback/lang/cs.json
+++ b/plugins/Feedback/lang/cs.json
@@ -5,30 +5,30 @@
"IWantTo": "Chci:",
"LearnWaysToParticipate": "Naučit způsoby jak %1$s spolupracovat %2$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.",
+ "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 Matomo 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 nám (týmu Piwiku) pošle zprávu (s vaší emailovou adresou), abychom vás v případě otázek mohli kontaktovat.",
+ "RateFeatureSendFeedbackInformation": "Piwik nám (týmu Matomou) 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!",
+ "ThankYou": "Děkujeme vám, že pomáháte Matomo dělat lepším!",
"TopLinkTooltip": "Řekni co si myslíš, nebo požádej o pomoc profesionála.",
"ViewAnswersToFAQ": "Zobrazit odpovědi na %1$sčasto kladené otázky%2$s",
- "ViewUserGuides": "Naučte se, jak konfigurovat Piwik a efektivně analyzovat data s našimi %1$suživatelskými příručkami%2$s",
+ "ViewUserGuides": "Naučte se, jak konfigurovat Matomo a efektivně analyzovat data s našimi %1$suživatelskými příručkami%2$s",
"CommunityHelp": "Komunitní pomoc",
"ProfessionalHelp": "Profesionální pomoc",
- "ProfessionalServicesIntro": "Naše celosvětová síť profesionálních Piwik konzultantů podporuje klienty, kteří hostují Piwik na vlastní infrastruktuře.",
+ "ProfessionalServicesIntro": "Naše celosvětová síť profesionálních Piwik konzultantů podporuje klienty, kteří hostují Matomo na vlastní infrastruktuře.",
"ProfessionalServicesOfferIntro": "Ze kterých služeb můžete profitovat?",
- "ProfessionalServicesReviewPiwikSetup": "Kontrola vaší instalace Piwiku",
- "ProfessionalServicesOptimizationMaintenance": "Služby optimalizace a údržby Piwiku",
+ "ProfessionalServicesReviewPiwikSetup": "Kontrola vaší instalace Matomou",
+ "ProfessionalServicesOptimizationMaintenance": "Služby optimalizace a údržby Matomou",
"ProfessionalServicesPhoneEmailSupport": "Telefonická a emailová podpora",
"ProfessionalServicesTraining": "Školení uživatelů, techniků a vývoářů",
"ProfessionalServicesPremiumFeatures": "Prémiové funkce",
"ProfessionalServicesCustomDevelopment": "Vývojářské služby na míru",
"ProfessionalServicesAnalystConsulting": "Služby konzultace analytika",
"ContactUs": "Kontaktujte nás",
- "VisitTheForums": "Navštivte %1$s fóra%2$s a nechte si pomoci komunitou uživatelů aplikace Piwik"
+ "VisitTheForums": "Navštivte %1$s fóra%2$s a nechte si pomoci komunitou uživatelů aplikace Matomo"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/da.json b/plugins/Feedback/lang/da.json
index 4b3f74bf45..1d7b6e8cc1 100644
--- a/plugins/Feedback/lang/da.json
+++ b/plugins/Feedback/lang/da.json
@@ -5,17 +5,17 @@
"IWantTo": "Jeg ønsker at:",
"LearnWaysToParticipate": "Lær om alle de måder, du kan %1$s bidrage%2$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!",
+ "PluginDescription": "Send tilbagemelding til Piwik holdet. Del dine ideer og forslag til at gøre Matomo 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.",
+ "RateFeatureSendFeedbackInformation": "Piwik vil sende Matomo 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!",
+ "ThankYou": "Tak, fordi du hjælper med at gøre Matomo bedre!",
"TopLinkTooltip": "Fortæl os hvad du mener eller anmod om professionel support",
"ViewAnswersToFAQ": "Se svarene på %1$sOfte stillede spørgsmål%2$s",
- "ViewUserGuides": "Lær at konfigurere Piwik og hvordan man effektivt analyserer data med vores %1$sbrugervejledninger%2$s"
+ "ViewUserGuides": "Lær at konfigurere Matomo og hvordan man effektivt analyserer data med vores %1$sbrugervejledninger%2$s"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/de.json b/plugins/Feedback/lang/de.json
index 4afa1defd4..fedbd4fe5a 100644
--- a/plugins/Feedback/lang/de.json
+++ b/plugins/Feedback/lang/de.json
@@ -5,23 +5,23 @@
"IWantTo": "Ich möchte:",
"LearnWaysToParticipate": "Lernen Sie alle Möglichkeiten kennen, wie Sie %1$s uns unterstützen können%2$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.",
+ "PluginDescription": "Senden Sie Ihr Feedback ans Piwik Team. Teilen Sie uns Ihre Ideen und Vorschläge mit, um Matomo 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.",
+ "RateFeatureSendFeedbackInformation": "Ihre Piwik-Plattform wird uns (dem Matomo 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!",
+ "ThankYou": "Danke für Ihre Unterstützung, Matomo zu verbessern!",
"TopLinkTooltip": "Teilen Sie uns Ihre Meinung mit, oder fordern professionelle Unterstützung an.",
"ViewAnswersToFAQ": "Antworten zu %1$sFrequently Asked Questions%2$s ansehen",
- "ViewUserGuides": "Lernen Sie mithilfe unseres %1$sBenutzerhandbuches%2$s, wie Sie Piwik konfigurieren können und wie Sie effektiv Ihre Daten analysieren.",
+ "ViewUserGuides": "Lernen Sie mithilfe unseres %1$sBenutzerhandbuches%2$s, wie Sie Matomo konfigurieren können und wie Sie effektiv Ihre Daten analysieren.",
"CommunityHelp": "Hilfe aus der Community",
"ProfessionalHelp": "Professionelle Hilfe",
- "ProfessionalServicesIntro": "Unser weltweites Netzwerk von professionellen Beratern für Piwik unterstützt Kunden die Piwik auf ihrer eigenen Infrastruktur betreiben wollen.",
+ "ProfessionalServicesIntro": "Unser weltweites Netzwerk von professionellen Beratern für Piwik unterstützt Kunden die Matomo auf ihrer eigenen Infrastruktur betreiben wollen.",
"ProfessionalServicesOfferIntro": "Von welchen Diensten können Sie profitieren?",
- "ProfessionalServicesReviewPiwikSetup": "Eine Überprüfung Ihrer Piwik-Installation",
+ "ProfessionalServicesReviewPiwikSetup": "Eine Überprüfung Ihrer Matomo-Installation",
"ProfessionalServicesOptimizationMaintenance": "Piwik-Optimierung & -Wartung",
"ProfessionalServicesPhoneEmailSupport": "Telefon und E-Mail-Support",
"ProfessionalServicesTraining": "Benutzer-, Technik- und Entwickler-Schulungen",
@@ -29,6 +29,6 @@
"ProfessionalServicesCustomDevelopment": "Individuelle Programmierung",
"ProfessionalServicesAnalystConsulting": "Analysenberatung",
"ContactUs": "Kontaktieren Sie uns",
- "VisitTheForums": "Besuchen Sie die %1$s Foren%2$s und erhalten Sie Hilfe von der Piwik Community"
+ "VisitTheForums": "Besuchen Sie die %1$s Foren%2$s und erhalten Sie Hilfe von der Matomo Community"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/el.json b/plugins/Feedback/lang/el.json
index fcef94e03e..46659787d4 100644
--- a/plugins/Feedback/lang/el.json
+++ b/plugins/Feedback/lang/el.json
@@ -5,30 +5,30 @@
"IWantTo": "Θέλω να:",
"LearnWaysToParticipate": "Μάθετε όλους του τρόπους που μπορείτε να %1$sσυμμετέχετε%2$s",
"ManuallySendEmailTo": "Στείλτε χειροκίνητα το μήνυμά σας στον\/στην",
- "PluginDescription": "Στείλτε τη γνώμη σας στην ομάδα του Piwik. Μοιραστείτε τις ιδέες και τις προτάσεις σας για να κάνετε το Piwik την καλύτερη πλατφόρμα αναλυτικών στον κόσμο!",
- "PrivacyClaim": "Το Piwik σέβεται την %1$sιδιωτικότητά%2$s σας και σας δίνει πλήρη έλεγχο πάνω στα δεδομένα σας.",
+ "PluginDescription": "Στείλτε τη γνώμη σας στην ομάδα του Piwik. Μοιραστείτε τις ιδέες και τις προτάσεις σας για να κάνετε το Matomo την καλύτερη πλατφόρμα αναλυτικών στον κόσμο!",
+ "PrivacyClaim": "Το Matomo σέβεται την %1$sιδιωτικότητά%2$s σας και σας δίνει πλήρη έλεγχο πάνω στα δεδομένα σας.",
"RateFeatureLeaveMessageDislike": "Λυπούμαστε που μας λέτε ότι δεν σας αρέσει! Παρακαλούμε πείτε μας πώς μπορούμε να βελτιωθούμε.",
"RateFeatureLeaveMessageLike": "Χαιρόμαστε που σας αρέσει! Πείτε μας τι σας αρέσει περισσότερο ή αν έχετε κάποια επιθυμία για ένα χαρακτηριστικό.",
- "RateFeatureSendFeedbackInformation": "Η πλατφόρμα του Piwik σας θα μας στείλει ένα e-mail (συμπεριλαμβανομένης της διεύθυνσης e-mail σας) ώστε να μπορούμε να έρθουμε σε επαφή μαζί σας αν έχετε κάποια ερώτηση.",
+ "RateFeatureSendFeedbackInformation": "Η πλατφόρμα του Matomo σας θα μας στείλει ένα e-mail (συμπεριλαμβανομένης της διεύθυνσης e-mail σας) ώστε να μπορούμε να έρθουμε σε επαφή μαζί σας αν έχετε κάποια ερώτηση.",
"RateFeatureThankYouTitle": "Ευχαριστούμε που βαθμολογήσατε το '%s'!",
"RateFeatureTitle": "Σας αρέσει το '%s' χαρακτηριστικό; Παρακαλούμε βαθμολογήστε το και αφήστε ένα σχόλιο",
"SendFeedback": "Στείλτε Επισημάνσεις",
- "ThankYou": "Ευχαριστούμε που βοηθήσατε να κάνουμε το Piwik καλύτερο!",
+ "ThankYou": "Ευχαριστούμε που βοηθήσατε να κάνουμε το Matomo καλύτερο!",
"TopLinkTooltip": "Πείτε μας τι σκέφτεστε ή ζητήστε Επαγγελματική Υποστήριξη.",
"ViewAnswersToFAQ": "Δείτε απαντήσεις στις %1$sΣυχνές Ερωτήσεις%2$s",
- "ViewUserGuides": "Μάθετε πως να παραμετροποιείτε το Piwik και να αναλύετε αποτελεσματικά τα δεδομένα σας με τους %1$sοδηγούς χρήση μας%2$s.",
+ "ViewUserGuides": "Μάθετε πως να παραμετροποιείτε το Matomo και να αναλύετε αποτελεσματικά τα δεδομένα σας με τους %1$sοδηγούς χρήση μας%2$s.",
"CommunityHelp": "Βοήθεια από την κοινότητα",
"ProfessionalHelp": "Βοήθεια από επαγγελματίες",
- "ProfessionalServicesIntro": "Το παγκόσμιο δίκτυό μας επαγγελματιών συμβούλων για υποστήριξη των πελατών του Piwik που φιλοξενούν το Piwik στη δική τους υποδομή.",
+ "ProfessionalServicesIntro": "Το παγκόσμιο δίκτυό μας επαγγελματιών συμβούλων για υποστήριξη των πελατών του Piwik που φιλοξενούν το Matomo στη δική τους υποδομή.",
"ProfessionalServicesOfferIntro": "Από ποιές υπηρεσίες μπορείτε να κερδίσετε;",
- "ProfessionalServicesReviewPiwikSetup": "Μια σύνοψη της εγκατάστασής σας του Piwik",
- "ProfessionalServicesOptimizationMaintenance": "Βελτιστοποίηση του Piwik και υπηρεσίες συντήρησης",
+ "ProfessionalServicesReviewPiwikSetup": "Μια σύνοψη της εγκατάστασής σας του Matomo",
+ "ProfessionalServicesOptimizationMaintenance": "Βελτιστοποίηση του Matomo και υπηρεσίες συντήρησης",
"ProfessionalServicesPhoneEmailSupport": "Τηλεφωνική και μέσω e-mail υποστήριξη",
"ProfessionalServicesTraining": "Εκπαίδευση σε χρηστικό, τεχνικό και προγραμματιστικό επίπεδο",
"ProfessionalServicesPremiumFeatures": "Χαρακτηριστικά επί πληρωμή",
"ProfessionalServicesCustomDevelopment": "Προσαρμοσμένες υπηρεσίες ανάπτυξης",
"ProfessionalServicesAnalystConsulting": "Υπηρεσίες συμβουλευτικής αναλυτικών",
"ContactUs": "Επικοινωνήστε μαζί μας",
- "VisitTheForums": "Δείτε τα %1$sΦόρουμ%2$s και λάβετε βοήθεια από την κοινότητα χρηστών του Piwik"
+ "VisitTheForums": "Δείτε τα %1$sΦόρουμ%2$s και λάβετε βοήθεια από την κοινότητα χρηστών του Matomo"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/en.json b/plugins/Feedback/lang/en.json
index d16f70a86b..087d450fb5 100644
--- a/plugins/Feedback/lang/en.json
+++ b/plugins/Feedback/lang/en.json
@@ -5,30 +5,30 @@
"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.",
+ "PluginDescription": "Send your Feedback to the Matomo Team. Share your ideas and suggestions to make Matomo the best analytics platform in the world!",
+ "PrivacyClaim": "Matomo 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.",
+ "RateFeatureSendFeedbackInformation": "Your Matomo platform will send us (the Matomo 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!",
+ "ThankYou": "Thank you for helping us to make Matomo 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",
+ "ViewUserGuides": "Learn how to configure Matomo and how to effectively analyze your data with our %1$suser guides%2$s",
"CommunityHelp": "Community Help",
"ProfessionalHelp": "Professional Help",
- "ProfessionalServicesIntro": "Our worldwide network of professional consultants for Piwik support clients who host Piwik on their own infrastructure.",
+ "ProfessionalServicesIntro": "Our worldwide network of professional consultants for Matomo support clients who host Matomo on their own infrastructure.",
"ProfessionalServicesOfferIntro": "What services can you benefit from?",
- "ProfessionalServicesReviewPiwikSetup": "A review of your Piwik setup",
- "ProfessionalServicesOptimizationMaintenance": "Piwik optimization & maintenance services",
+ "ProfessionalServicesReviewPiwikSetup": "A review of your Matomo setup",
+ "ProfessionalServicesOptimizationMaintenance": "Matomo optimization & maintenance services",
"ProfessionalServicesPhoneEmailSupport": "Phone and Email support",
"ProfessionalServicesTraining": "User, Technical and Developer training",
"ProfessionalServicesPremiumFeatures": "Premium features",
"ProfessionalServicesCustomDevelopment": "Custom Development services",
"ProfessionalServicesAnalystConsulting": "Analyst consulting services",
"ContactUs": "Contact us",
- "VisitTheForums": "Visit the %1$s Forums%2$s and get help from the community of Piwik users"
+ "VisitTheForums": "Visit the %1$s Forums%2$s and get help from the community of Matomo users"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/es.json b/plugins/Feedback/lang/es.json
index 4f4bfef846..55e450f007 100644
--- a/plugins/Feedback/lang/es.json
+++ b/plugins/Feedback/lang/es.json
@@ -5,30 +5,30 @@
"IWantTo": "Yo quiero:",
"LearnWaysToParticipate": "Aprende a cerca de todas las formas de %1$sparticipar%2$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!",
+ "PluginDescription": "Envíe su comentario al equipo de Piwik. ¡Comparte tus ideas y sugerencias para hacer de Matomo 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.",
+ "RateFeatureSendFeedbackInformation": "Su plataforma Piwik nos enviará a nosotros (el Equipo de Matomo) 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!",
+ "ThankYou": "¡Gracias por ayudarnos a hacer Matomo mejor!",
"TopLinkTooltip": "Danos tu opinión o solicita Soporte Profesional",
"ViewAnswersToFAQ": "Ver respuestas a las %1$sPreguntas frecuentes%2$s",
- "ViewUserGuides": "Aprende a configurar Piwik y analizar sus datos de modo eficaz con nuestras %1$sguías de usuario%2$s",
+ "ViewUserGuides": "Aprende a configurar Matomo y analizar sus datos de modo eficaz con nuestras %1$sguías de usuario%2$s",
"CommunityHelp": "Ayuda comunitaria",
"ProfessionalHelp": "Ayuda profesional",
- "ProfessionalServicesIntro": "Nuestra red mundial de consultores profesionales que brindan asistencia a todos los clientes que hospedan Piwik en su propia infraestructura.",
+ "ProfessionalServicesIntro": "Nuestra red mundial de consultores profesionales que brindan asistencia a todos los clientes que hospedan Matomo en su propia infraestructura.",
"ProfessionalServicesOfferIntro": "¿De qué servicios puedes beneficiarte?",
- "ProfessionalServicesReviewPiwikSetup": "Una reseña de su instalación Piwik",
- "ProfessionalServicesOptimizationMaintenance": "Servicios de mantenimiento & optimización Piwik",
+ "ProfessionalServicesReviewPiwikSetup": "Una reseña de su instalación Matomo",
+ "ProfessionalServicesOptimizationMaintenance": "Servicios de mantenimiento & optimización Matomo",
"ProfessionalServicesPhoneEmailSupport": "Asistencia por teléfono y correo electrónico",
"ProfessionalServicesTraining": "Cursos de usuario, técnico y desarrollador",
"ProfessionalServicesPremiumFeatures": "Funciones premium",
"ProfessionalServicesCustomDevelopment": "Servicios de desarrollo personalizado",
"ProfessionalServicesAnalystConsulting": "Servicios de consultoría de análisis",
"ContactUs": "Contáctanos",
- "VisitTheForums": "Visita el %1$sForo%2$s y obtenga ayuda de la comuniad de usuarios Piwik"
+ "VisitTheForums": "Visita el %1$sForo%2$s y obtenga ayuda de la comuniad de usuarios Matomo"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/fi.json b/plugins/Feedback/lang/fi.json
index 9dfb2c3ee1..f945b7bafb 100644
--- a/plugins/Feedback/lang/fi.json
+++ b/plugins/Feedback/lang/fi.json
@@ -9,7 +9,7 @@
"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ä!",
+ "ThankYou": "Kiitos että autat parantamaan Matomoiä!",
"TopLinkTooltip": "Kerro meille mitä ajattelet, tai osta tukipalveluita (englanniksi).",
"CommunityHelp": "Yhteisön apu",
"ProfessionalHelp": "Ammattilaisapu",
diff --git a/plugins/Feedback/lang/fr.json b/plugins/Feedback/lang/fr.json
index df29994e66..39985ef990 100644
--- a/plugins/Feedback/lang/fr.json
+++ b/plugins/Feedback/lang/fr.json
@@ -5,30 +5,30 @@
"IWantTo": "Je veux:",
"LearnWaysToParticipate": "Renseignez vous sur les manières dont vous pouvez %1$s participer%2$s",
"ManuallySendEmailTo": "Merci d'envoyer manuellement votre message à",
- "PluginDescription": "Envoyez 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!",
+ "PluginDescription": "Envoyez votre retour d'expérience à l'équipe Piwik. Partagez vos idées et suggestions pour aider à faire de Matomo 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.",
+ "RateFeatureSendFeedbackInformation": "Votre installation Piwik nous enverra (l'équipe Matomo) 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!",
+ "ThankYou": "Merci d'avoir aidé à améliorer Matomo!",
"TopLinkTooltip": "Dites nous ce que vous en pensez, ou demandez un Support Professionnel.",
"ViewAnswersToFAQ": "Voir les réponses aux %1$squestions fréquemment posées%2$s",
- "ViewUserGuides": "Apprenez comment configurer Piwik et comment analyser de manière efficaces vos données avec notre %1$sguide utilisateur%2$s",
+ "ViewUserGuides": "Apprenez comment configurer Matomo 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",
- "ProfessionalServicesIntro": "Notre réseau mondial de consultants professionnels Piwik supporte nos clients qui hébergent Piwik sur leurs propres infrastructures.",
+ "ProfessionalServicesIntro": "Notre réseau mondial de consultants professionnels Piwik supporte nos clients qui hébergent Matomo sur leurs propres infrastructures.",
"ProfessionalServicesOfferIntro": "De quel services pouvez vous bénéficier?",
- "ProfessionalServicesReviewPiwikSetup": "Une revue de votre installation Piwik",
- "ProfessionalServicesOptimizationMaintenance": "Services d'optimisation et de maintenance pour Piwik",
+ "ProfessionalServicesReviewPiwikSetup": "Une revue de votre installation Matomo",
+ "ProfessionalServicesOptimizationMaintenance": "Services d'optimisation et de maintenance pour Matomo",
"ProfessionalServicesPhoneEmailSupport": "Support courriel et téléphonique",
"ProfessionalServicesTraining": "Formation d'utilisation, technique et en développement",
"ProfessionalServicesPremiumFeatures": "Fonctionnalités premium",
"ProfessionalServicesCustomDevelopment": "Services de développement personnalisés",
"ProfessionalServicesAnalystConsulting": "Services de consultation en analyse",
"ContactUs": "Nous contacter",
- "VisitTheForums": "Visitez les %1$sForums%2$s et obtenez de l'aide de la communauté d'utilisateurs Piwik."
+ "VisitTheForums": "Visitez les %1$sForums%2$s et obtenez de l'aide de la communauté d'utilisateurs Matomo."
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/hu.json b/plugins/Feedback/lang/hu.json
index 94192d5b17..fc2945c334 100644
--- a/plugins/Feedback/lang/hu.json
+++ b/plugins/Feedback/lang/hu.json
@@ -5,6 +5,6 @@
"LearnWaysToParticipate": "Győződj meg róla, %1$shányféleképpen segíthetsz%2$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!"
+ "ThankYou": "Köszönjük, hogy segítesz jobbá tenni a Matomo-et!"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/id.json b/plugins/Feedback/lang/id.json
index ad342d65e4..a1d476d4cc 100644
--- a/plugins/Feedback/lang/id.json
+++ b/plugins/Feedback/lang/id.json
@@ -5,7 +5,7 @@
"LearnWaysToParticipate": "Pelajari bagaimana kamu dapat %1$s berpartisipasi%2$s",
"ManuallySendEmailTo": "Silakan kirim manual pesan Anda ke",
"SendFeedback": "Kirim Umpanbalik",
- "ThankYou": "Terimaksih telah membantu kami menjadikan Piwik lebih baik!",
+ "ThankYou": "Terimaksih telah membantu kami menjadikan Matomo lebih baik!",
"TopLinkTooltip": "Katakan apa yang Anda pikirkan, atau membutuhkan Bantuan Profesional.",
"ContactUs": "Kontak kami"
}
diff --git a/plugins/Feedback/lang/it.json b/plugins/Feedback/lang/it.json
index 744d638340..3154cf2655 100644
--- a/plugins/Feedback/lang/it.json
+++ b/plugins/Feedback/lang/it.json
@@ -5,30 +5,30 @@
"IWantTo": "Vorrei:",
"LearnWaysToParticipate": "Impara tutti i modi attraverso i quali puoi %1$s partecipare %2$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!",
+ "PluginDescription": "Invia un Feedback al Team di Piwik. Condividi idee e suggerimenti per rendere Matomo 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.",
+ "RateFeatureSendFeedbackInformation": "La tua piattaforma Piwik invierà a noi (il team di Matomo) 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!",
+ "ThankYou": "Grazie per aiutarci a rendere Matomo migliore!",
"TopLinkTooltip": "Dicci cosa ne pensi, o richiedi supporto professionale.",
"ViewAnswersToFAQ": "Guarda le risposte alle %1$sDomande frequenti%2$s",
- "ViewUserGuides": "Impara a configurare Piwik e ad analizzare efficacemente i tuoi dati con le nostre %1$sguide utente%2$s",
+ "ViewUserGuides": "Impara a configurare Matomo e ad analizzare efficacemente i tuoi dati con le nostre %1$sguide utente%2$s",
"CommunityHelp": "Aiuto dalla comunità",
"ProfessionalHelp": "Aiuto professionale",
- "ProfessionalServicesIntro": "La nostra rete mondiale di consulenti professionali per l'assistenza a Piwik ai clienti che ospitano Piwik in infrastrutture proprie.",
+ "ProfessionalServicesIntro": "La nostra rete mondiale di consulenti professionali per l'assistenza a Piwik ai clienti che ospitano Matomo in infrastrutture proprie.",
"ProfessionalServicesOfferIntro": "Di quali servizi potete beneficiare?",
- "ProfessionalServicesReviewPiwikSetup": "Un'analisi della configurazione di Piwik",
- "ProfessionalServicesOptimizationMaintenance": "Servizi per l'ottimizzazione e la manutenzione di Piwik",
+ "ProfessionalServicesReviewPiwikSetup": "Un'analisi della configurazione di Matomo",
+ "ProfessionalServicesOptimizationMaintenance": "Servizi per l'ottimizzazione e la manutenzione di Matomo",
"ProfessionalServicesPhoneEmailSupport": "Assistenza Telefonica ed Email",
"ProfessionalServicesTraining": "Formazione per Utenti, Tecnici e Sviluppatori",
"ProfessionalServicesPremiumFeatures": "Funzionalità Premium",
"ProfessionalServicesCustomDevelopment": "Servizi di sviluppo per il cliente",
"ProfessionalServicesAnalystConsulting": "Servizi di Consulenza per analisti",
"ContactUs": "Contattaci",
- "VisitTheForums": "Visita il %1$s Forum%2$s e ottieni aiuto dalla comunità degli utenti Piwik"
+ "VisitTheForums": "Visita il %1$s Forum%2$s e ottieni aiuto dalla comunità degli utenti Matomo"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/ja.json b/plugins/Feedback/lang/ja.json
index 643fe705fc..15403f55b0 100644
--- a/plugins/Feedback/lang/ja.json
+++ b/plugins/Feedback/lang/ja.json
@@ -5,11 +5,11 @@
"IWantTo": "あなたの希望:",
"LearnWaysToParticipate": "あなたが参加できるすべての方法を%1$s学んでください%2$s",
"ManuallySendEmailTo": "あなたのメッセージを手作業で次のアドレスへ送ってください:",
- "PluginDescription": "Piwik チームにフィードバックをお送りください。あなたのアイデアや提案をシェアすることで、Piwik を世界で最高のアナリティックス・プラットフォームにしましょう。",
+ "PluginDescription": "Piwik チームにフィードバックをお送りください。あなたのアイデアや提案をシェアすることで、Matomo を世界で最高のアナリティックス・プラットフォームにしましょう。",
"PrivacyClaim": "Piwik は あなたの %1$sプライバシー%2$s を尊重します。あなたのデータに関する全ての管理はあなたにお任せします。",
"RateFeatureLeaveMessageDislike": "好きではない とのこと、非常に残念です。ぜひどのように改善すべきかお知らせください。",
"RateFeatureLeaveMessageLike": "気に入った とのこと、とても嬉しいです ! ぜひあなたの最も気に入った内容や今後のリクエストをお知らせください。",
- "RateFeatureSendFeedbackInformation": "Piwikプラットフォームは私たち ( Piwikチーム ) に電子メール ( あなたの電子メールアドレスを含む ) を送信しますので、質問があれば連絡を取ることができます。",
+ "RateFeatureSendFeedbackInformation": "Piwikプラットフォームは私たち ( Matomoチーム ) に電子メール ( あなたの電子メールアドレスを含む ) を送信しますので、質問があれば連絡を取ることができます。",
"RateFeatureThankYouTitle": "'%s' の評価をありがとう!",
"RateFeatureTitle": "'%s' の機能は好きですか ? ぜひ評価コメントを残してください。",
"SendFeedback": "フィードバックを送信",
@@ -19,7 +19,7 @@
"ViewUserGuides": "Piwik の設定方法と、効果的なデータ分析方法は、%1$s user guides %2$s をご確認ください。",
"CommunityHelp": "コミュニティヘルプ",
"ProfessionalHelp": "プロフェッショナルヘルプ",
- "ProfessionalServicesIntro": "世界的なネットワークである我々 Piwik のプロコンサルタントは、独自のインフラストラクチャで Piwik をホストするクライアントをサポートします。",
+ "ProfessionalServicesIntro": "世界的なネットワークである我々 Piwik のプロコンサルタントは、独自のインフラストラクチャで Matomo をホストするクライアントをサポートします。",
"ProfessionalServicesOfferIntro": "どのようなサービスを利用できますか?",
"ProfessionalServicesReviewPiwikSetup": "Piwik セットアップのレビュー",
"ProfessionalServicesOptimizationMaintenance": "Piwik 最適化および保守サービス",
@@ -29,6 +29,6 @@
"ProfessionalServicesCustomDevelopment": "カスタム開発サービス",
"ProfessionalServicesAnalystConsulting": "アナリストコンサルティングサービス",
"ContactUs": "お問い合わせ",
- "VisitTheForums": "%1$s フォーラム %2$s にアクセスし、Piwik ユーザーのコミュニティから助けを得る"
+ "VisitTheForums": "%1$s フォーラム %2$s にアクセスし、Matomo ユーザーのコミュニティから助けを得る"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/ka.json b/plugins/Feedback/lang/ka.json
index 478c9a605b..97115ae3a0 100644
--- a/plugins/Feedback/lang/ka.json
+++ b/plugins/Feedback/lang/ka.json
@@ -5,7 +5,7 @@
"LearnWaysToParticipate": "გაეცანით ინფორმაციას %1$s მონაწილეობის%2$s მიღების ყველა გზის შესახებ",
"ManuallySendEmailTo": "გთხოვთ, ხელით გამოაგზავნეთ წერილი მისამართზე",
"SendFeedback": "გამოხმაურების გაგზავნა",
- "ThankYou": "გმადლობთ, რომ გვეხმარებით Piwik გახდეს უკეთესი!",
+ "ThankYou": "გმადლობთ, რომ გვეხმარებით Matomo გახდეს უკეთესი!",
"VisitTheForums": "იხილეთ %1$s ფორუმები%2$s"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/ko.json b/plugins/Feedback/lang/ko.json
index f77068beac..71b1d312c2 100644
--- a/plugins/Feedback/lang/ko.json
+++ b/plugins/Feedback/lang/ko.json
@@ -5,18 +5,18 @@
"IWantTo": "내가 원하는 것은:",
"LearnWaysToParticipate": "당신이 %1$s참여%2$s할 수있는 모든 방법",
"ManuallySendEmailTo": "당신의 메시지를 다음 주소로 직접 보내주세요:",
- "PluginDescription": "Piwik 팀에게 피드백 보내기. 당신의 아이디어와 제안은 더 나은 세상에서 가장 우수한 분석 플랫폼이 될 Piwik를 만드는데 큰 도움이 됩니다.",
+ "PluginDescription": "Piwik 팀에게 피드백 보내기. 당신의 아이디어와 제안은 더 나은 세상에서 가장 우수한 분석 플랫폼이 될 Matomo를 만드는데 큰 도움이 됩니다.",
"PrivacyClaim": "Piwik는 당신의 %1$s프라이버시%2$s를 존중하며 동시에 당신의 데이터가 당신의 통제 하에 있도록 노력합니다.",
"RateFeatureLeaveMessageDislike": "안 좋아하신다고요! 죄송합니다! 우리가 이를 개선할 수 있도록 도움을 주세요!",
"RateFeatureLeaveMessageLike": "좋아요에 감사 드립니다! 어떤 점을 좋게 생각하시는지 혹은 어떤 기능적 개선 요구가 있는지 알고 싶습니다.",
- "RateFeatureSendFeedbackInformation": "당신의 Piwik 플랫폼은 우리들(Piwik 팀)에게 (당신의 이메일 주소를 포함한) 메일을 보낼 것입니다. 따라서 당신의 질문에 따라 우리가 연락을 취할 수 있습니다.",
+ "RateFeatureSendFeedbackInformation": "당신의 Piwik 플랫폼은 우리들(Matomo 팀)에게 (당신의 이메일 주소를 포함한) 메일을 보낼 것입니다. 따라서 당신의 질문에 따라 우리가 연락을 취할 수 있습니다.",
"RateFeatureThankYouTitle": "'%s' 등급에 감사 드립니다.",
"RateFeatureTitle": "'%s'의 기능이 어떤가요? 평가 및 코멘트 해주세요.",
"SendFeedback": "의견 보내기",
- "ThankYou": "우리가 Piwik을 향상시키는 데 도움을 주셔서 감사합니다!",
+ "ThankYou": "우리가 Matomo을 향상시키는 데 도움을 주셔서 감사합니다!",
"TopLinkTooltip": "당신이 필요로 하는 기술 지원 요청을 알려주세요.",
"ViewAnswersToFAQ": "%1$s자주 하는 질문%2$s에서 답변 보기",
- "ViewUserGuides": "%1$s사용자 가이드%2$s에서 효율적으로 당신의 데이터를 분석하는 방법과 Piwik를 구성하는 법에 대해서 알 수 있습니다.",
+ "ViewUserGuides": "%1$s사용자 가이드%2$s에서 효율적으로 당신의 데이터를 분석하는 방법과 Matomo를 구성하는 법에 대해서 알 수 있습니다.",
"CommunityHelp": "커뮤니티에서의 도움",
"ProfessionalHelp": "전문가의 도움",
"ContactUs": "연락주세요"
diff --git a/plugins/Feedback/lang/lt.json b/plugins/Feedback/lang/lt.json
index a00f39f1c9..b67835a705 100644
--- a/plugins/Feedback/lang/lt.json
+++ b/plugins/Feedback/lang/lt.json
@@ -4,13 +4,13 @@
"IWantTo": "Aš noriu:",
"LearnWaysToParticipate": "Sužinokite kaip galite %1$s prisijungti%2$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!",
+ "PluginDescription": "Siųskite savo atsiliepimus Piwik komandai. Dalinkitės savo idėjomis ir pasiūlymais, kad padarytumėte Matomo 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!",
+ "ThankYou": "Dėkojame už pagalbą kuriant tobulesnį Matomo!",
"CommunityHelp": "Bendruomenės pagalba",
"ProfessionalHelp": "Profesionali pagalba"
}
diff --git a/plugins/Feedback/lang/lv.json b/plugins/Feedback/lang/lv.json
index 061ea389c3..2a9f450b03 100644
--- a/plugins/Feedback/lang/lv.json
+++ b/plugins/Feedback/lang/lv.json
@@ -5,6 +5,6 @@
"LearnWaysToParticipate": "Uzzināt vairāk par to, kā Jūs varat %1$s piedalīties%2$s",
"ManuallySendEmailTo": "Lūdzu manuāli nosūtiet savu ziņu uz",
"SendFeedback": "Sūtīt atsauksmes",
- "ThankYou": "Paldies, ka palīdzat uzlabot Piwik!"
+ "ThankYou": "Paldies, ka palīdzat uzlabot Matomo!"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/nb.json b/plugins/Feedback/lang/nb.json
index e23641925b..e1bb3f4f8c 100644
--- a/plugins/Feedback/lang/nb.json
+++ b/plugins/Feedback/lang/nb.json
@@ -8,9 +8,9 @@
"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!",
+ "ThankYou": "Takk for at du hjelper oss å lage Matomo bedre!",
"TopLinkTooltip": "Fortell oss hva du synes eller be om profesjonell støtte.",
- "CommunityHelp": "Hjelp fra Piwik-samfunnet",
+ "CommunityHelp": "Hjelp fra Matomo-samfunnet",
"ProfessionalHelp": "Profesjonell hjelp",
"ProfessionalServicesPhoneEmailSupport": "Telefon- og e-poststøtte",
"ProfessionalServicesPremiumFeatures": "Premium-funksjoner",
diff --git a/plugins/Feedback/lang/nl.json b/plugins/Feedback/lang/nl.json
index be1b63efdb..1e7bebb28f 100644
--- a/plugins/Feedback/lang/nl.json
+++ b/plugins/Feedback/lang/nl.json
@@ -5,25 +5,25 @@
"IWantTo": "Ik wil:",
"LearnWaysToParticipate": "Ontdek op welke manieren je kunt %1$s bijdragen%2$s",
"ManuallySendEmailTo": "Verstuur uw bericht handmatig 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!",
+ "PluginDescription": "Stuur je feedback naar het Piwik team. Deel je ideeën en suggesties om van Matomo 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.",
+ "RateFeatureSendFeedbackInformation": "Je Piwik installatie zal ons (het Matomo 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": "Feedback versturen",
- "ThankYou": "Bedankt voor uw hulp om Piwik beter te maken!",
+ "ThankYou": "Bedankt voor uw hulp om Matomo beter te maken!",
"TopLinkTooltip": "Vertel ons je waat je ervan denkt, of vraag om Professionele Ondersteuning.",
"ViewAnswersToFAQ": "Bekijk de antwoorden van %1$sveelgestelde vragen%2$s",
- "ViewUserGuides": "Leer hoe je Piwik moet configureren en hoe je data te analyseren met onze %1$sgebruikers handleidingen%2$s",
+ "ViewUserGuides": "Leer hoe je Matomo moet configureren en hoe je data te analyseren met onze %1$sgebruikers handleidingen%2$s",
"CommunityHelp": "Hulp van de gemeenschap",
"ProfessionalHelp": "Professionele hulp",
- "ProfessionalServicesReviewPiwikSetup": "Een overzicht van je Piwik omgeving",
+ "ProfessionalServicesReviewPiwikSetup": "Een overzicht van je Matomo omgeving",
"ProfessionalServicesPhoneEmailSupport": "Telefoon en Email ondersteuning",
"ProfessionalServicesPremiumFeatures": "Premium functies",
"ProfessionalServicesAnalystConsulting": "Analytisch consulting services",
"ContactUs": "Neem contact met ons op",
- "VisitTheForums": "Bezoek het %1$s Forums%2$s en ontvang hulp van de community van Piwik users"
+ "VisitTheForums": "Bezoek het %1$s Forums%2$s en ontvang hulp van de community van Matomo users"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/nn.json b/plugins/Feedback/lang/nn.json
index 21179bd3e2..d7db87c007 100644
--- a/plugins/Feedback/lang/nn.json
+++ b/plugins/Feedback/lang/nn.json
@@ -5,6 +5,6 @@
"LearnWaysToParticipate": "Lær om korleis du kan %1$s medverka%2$s",
"ManuallySendEmailTo": "Send meldinga di manuelt til",
"SendFeedback": "Send attendemelding",
- "ThankYou": "Takk for at hjelper oss med å forbetra Piwik!"
+ "ThankYou": "Takk for at hjelper oss med å forbetra Matomo!"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/pl.json b/plugins/Feedback/lang/pl.json
index 07e3549b42..6ce20b35df 100644
--- a/plugins/Feedback/lang/pl.json
+++ b/plugins/Feedback/lang/pl.json
@@ -5,30 +5,30 @@
"IWantTo": "Pragnę:",
"LearnWaysToParticipate": "Poznaj wszystkie sposoby %1$suczestnictwa%2$s",
"ManuallySendEmailTo": "Prosimy ręcznie wysłać swoją wiadomość do",
- "PluginDescription": "Wyślij informację zwrotną do Zespołu Piwik. Dziel się pomysłami i sugestiami, które pomogą uczynić Piwik najlepszą platformą analityczną Świata!",
+ "PluginDescription": "Wyślij informację zwrotną do Zespołu Piwik. Dziel się pomysłami i sugestiami, które pomogą uczynić Matomo najlepszą platformą analityczną Świata!",
"PrivacyClaim": "Piwik respektuje twoją %1$sprywatność%2$s i oddaje ci pełną kontrolę nad twoimi danymi.",
"RateFeatureLeaveMessageDislike": "Przykro nam słyszeć, że Ci się nie podoba! Proszę napisz, jak możemy to poprawić.",
"RateFeatureLeaveMessageLike": "Cieszymy, że podoba Ci się ta funkcjonalność! Prosimy pisz, aby podzielić się swoimi spostrzeżeniami lub nowymi pomysłami.",
- "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.",
+ "RateFeatureSendFeedbackInformation": "Twoja platforma Piwik wyśle nam (Ekipa Matomo) 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ę funkcjonalność '%s'? Prosimy oceń ją i zostaw komentarz",
"SendFeedback": "Wyślij opinię",
- "ThankYou": "Dziękujemy za pomoc, która pozwala uczynić statystyki Piwik jeszcze lepszymi!",
+ "ThankYou": "Dziękujemy za pomoc, która pozwala uczynić statystyki Matomo jeszcze lepszymi!",
"TopLinkTooltip": "Powiedz nam co myslisz albo poproś o profesjonalne wsparcie.",
"ViewAnswersToFAQ": "Zobacz odpowiedzi na %1$sNajczęściej Zadawane Pytania (FAQ)%2$s",
- "ViewUserGuides": "Naucz się jak skonfigurować Piwik i jak efektywnie analizować twoje dane z naszym %1$spodręcznikiem użytkownika%2$s",
+ "ViewUserGuides": "Naucz się jak skonfigurować Matomo i jak efektywnie analizować twoje dane z naszym %1$spodręcznikiem użytkownika%2$s",
"CommunityHelp": "Wsparcie społeczności",
"ProfessionalHelp": "Profesjonalna pomoc",
- "ProfessionalServicesIntro": "Nasza ogólnoświatowa sieć profesjonalnych konsultantów wsparcia Piwik dla Klientów korzystających z własnej instalacji Piwik.",
+ "ProfessionalServicesIntro": "Nasza ogólnoświatowa sieć profesjonalnych konsultantów wsparcia Piwik dla Klientów korzystających z własnej instalacji Matomo.",
"ProfessionalServicesOfferIntro": "Jakie usługi przyniosą Ci korzyści?",
- "ProfessionalServicesReviewPiwikSetup": "Przegląd ustawień Twojego Piwik'a",
- "ProfessionalServicesOptimizationMaintenance": "Usługi optymalizacji i utrzymania Piwik",
+ "ProfessionalServicesReviewPiwikSetup": "Przegląd ustawień Twojego Matomo'a",
+ "ProfessionalServicesOptimizationMaintenance": "Usługi optymalizacji i utrzymania Matomo",
"ProfessionalServicesPhoneEmailSupport": "Wsparcie telefoniczne i e-mail",
"ProfessionalServicesTraining": "Szkolenie użytkowników, techników i deweloperów",
"ProfessionalServicesPremiumFeatures": "Funkcjonalności premium",
"ProfessionalServicesCustomDevelopment": "Usługi programistyczne na zamówienie",
"ProfessionalServicesAnalystConsulting": "Usługi konsultacji analitycznej",
"ContactUs": "Skontaktuj się z nami",
- "VisitTheForums": "Odwiedź %1$sFora%2$s i uzyskaj pomoc społeczności użytkowników Piwik"
+ "VisitTheForums": "Odwiedź %1$sFora%2$s i uzyskaj pomoc społeczności użytkowników Matomo"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/pt-br.json b/plugins/Feedback/lang/pt-br.json
index 5200835190..dab32567d4 100644
--- a/plugins/Feedback/lang/pt-br.json
+++ b/plugins/Feedback/lang/pt-br.json
@@ -5,21 +5,21 @@
"IWantTo": "Eu quero:",
"LearnWaysToParticipate": "Aprenda sobre todas as maneiras que você pode %1$s participar %2$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!",
+ "PluginDescription": "Envie seu Feedback para a Equipe Piwik. Compartilhe as suas ideias e sugestões para tornar Matomo 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.",
+ "RateFeatureSendFeedbackInformation": "Sua plataforma Piwik irá enviar-nos (equipe Matomo) 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!",
+ "ThankYou": "Obrigado por nos ajudar a fazer o Matomo melhor!",
"TopLinkTooltip": "Diga-nos o que você pensa, ou suporte.",
"ViewAnswersToFAQ": "Ver respostas para %1$sPerguntas Frequentes%2$s",
- "ViewUserGuides": "Saiba como configurar o Piwik e como efetivamente analisar seus dados com o nosso %1$sguias do usuário%2$s",
+ "ViewUserGuides": "Saiba como configurar o Matomo e como efetivamente analisar seus dados com o nosso %1$sguias do usuário%2$s",
"CommunityHelp": "Ajuda da Comunidade",
"ProfessionalHelp": "Suporte Profissional",
"ContactUs": "Contato",
- "VisitTheForums": "Visite o %1$s Fóruns%2$s e obtenha ajuda da comunidade de usuários Piwik"
+ "VisitTheForums": "Visite o %1$s Fóruns%2$s e obtenha ajuda da comunidade de usuários Matomo"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/pt.json b/plugins/Feedback/lang/pt.json
index 48329652cb..164eab2d66 100644
--- a/plugins/Feedback/lang/pt.json
+++ b/plugins/Feedback/lang/pt.json
@@ -5,6 +5,6 @@
"LearnWaysToParticipate": "Aprenda todas as formas como pode %1$s participar%2$s",
"ManuallySendEmailTo": "Por favor envie a sua mensagem manualmente para",
"SendFeedback": "Enviar Opinião",
- "ThankYou": "Obrigado por nos ajudar a melhorar o Piwik!"
+ "ThankYou": "Obrigado por nos ajudar a melhorar o Matomo!"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/ro.json b/plugins/Feedback/lang/ro.json
index 851b416a6e..dae8a74530 100644
--- a/plugins/Feedback/lang/ro.json
+++ b/plugins/Feedback/lang/ro.json
@@ -7,14 +7,14 @@
"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.",
+ "RateFeatureSendFeedbackInformation": "Platforma Dvs. Piwik ne va trimite noua (echipa Matomo) 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!",
+ "ThankYou": "Va multumim pentru ca ne ajutati sa facem Matomo mai bun!",
"TopLinkTooltip": "Transmiteti-ne parerea Dvs sau cereti Support Profesional.",
"ViewAnswersToFAQ": "Vedeti raspunsurile la %1$sIntrebari Frecvente(FAQ)%2$s",
- "ViewUserGuides": "Invata cum sa configurezi Piwik si cum sa analizezi datele eficient cu %1$sghidurile de utilizare%2$s",
- "VisitTheForums": "Vizitati %1$s Forumurile%2$s si primiti ajutor de la comunitatea de utilizatori Piwik."
+ "ViewUserGuides": "Invata cum sa configurezi Matomo si cum sa analizezi datele eficient cu %1$sghidurile de utilizare%2$s",
+ "VisitTheForums": "Vizitati %1$s Forumurile%2$s si primiti ajutor de la comunitatea de utilizatori Matomo."
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/ru.json b/plugins/Feedback/lang/ru.json
index 8f6d5d88cd..130bb98223 100644
--- a/plugins/Feedback/lang/ru.json
+++ b/plugins/Feedback/lang/ru.json
@@ -5,30 +5,30 @@
"IWantTo": "Я хочу:",
"LearnWaysToParticipate": "Изучить все способы, с помощью которых вы можете %1$s поучаствовать%2$s",
"ManuallySendEmailTo": "Пожалуйста, отправьте ваше сообщение вручную на",
- "PluginDescription": "Направляет обратную связь команде Piwik. Делитесь своими идеями и предложениями чтобы сделать Piwik лучшей аналитической платформой в мире!",
+ "PluginDescription": "Направляет обратную связь команде Piwik. Делитесь своими идеями и предложениями чтобы сделать Matomo лучшей аналитической платформой в мире!",
"PrivacyClaim": "Piwik уважает вашу %1$sконфиденциальность%2$s и дает вам полный контроль над вашими данными.",
"RateFeatureLeaveMessageDislike": "Мы сожалеем, что вам не понравилось! Пожалуйста, дайте нам знать что мы можем улучшить.",
"RateFeatureLeaveMessageLike": "Пожалуйста, дайте нам знать, что вам нравится больше всего, или хотите в дальнейшем улучшить.",
- "RateFeatureSendFeedbackInformation": "Ваша система Piwik отправит нам(команде Piwik) email (содержащий ваш email адрес) так что мы сможем связаться с вами, если у вас возникли вопросы.",
+ "RateFeatureSendFeedbackInformation": "Ваша система Piwik отправит нам(команде Matomo) email (содержащий ваш email адрес) так что мы сможем связаться с вами, если у вас возникли вопросы.",
"RateFeatureThankYouTitle": "Спасибо за оценку '%s'!",
"RateFeatureTitle": "Вам нравится эта возможность: «%s»? Пожалуйста, оцените и оставьте комментарий",
"SendFeedback": "Отправить отзыв",
- "ThankYou": "Спасибо за помощь в развитии Piwik!",
- "TopLinkTooltip": "Расскажите о своей проблеме с Piwik или запросите профессиональную помощь.",
+ "ThankYou": "Спасибо за помощь в развитии Matomo!",
+ "TopLinkTooltip": "Расскажите о своей проблеме с Matomo или запросите профессиональную помощь.",
"ViewAnswersToFAQ": "Посмотреть ответы на %1$sЧасто Задаваемые Вопросы%2$s",
- "ViewUserGuides": "Узнайте, как настроить Piwik и эффективно анализировать Ваши данные, используя %1$s руководства пользователя%2$s",
+ "ViewUserGuides": "Узнайте, как настроить Matomo и эффективно анализировать Ваши данные, используя %1$s руководства пользователя%2$s",
"CommunityHelp": "Помощь сообщества",
"ProfessionalHelp": "Помощь профессионала",
- "ProfessionalServicesIntro": "Наша всемирная сеть профессиональных консультантов для технической поддержки клиентов Piwik, которые интегрируют Piwik в свою собственную инфраструктуру.",
+ "ProfessionalServicesIntro": "Наша всемирная сеть профессиональных консультантов для технической поддержки клиентов Piwik, которые интегрируют Matomo в свою собственную инфраструктуру.",
"ProfessionalServicesOfferIntro": "Какими услугами вы можете воспользоваться?",
- "ProfessionalServicesReviewPiwikSetup": "Аудит ваших настроек Piwik",
- "ProfessionalServicesOptimizationMaintenance": "Услуги по оптимизации и техническому обслуживанию Piwik",
+ "ProfessionalServicesReviewPiwikSetup": "Аудит ваших настроек Matomo",
+ "ProfessionalServicesOptimizationMaintenance": "Услуги по оптимизации и техническому обслуживанию Matomo",
"ProfessionalServicesPhoneEmailSupport": "Поддержка по телефону и email.",
"ProfessionalServicesTraining": "Обучение пользователей, технических специалистов и разработчиков",
"ProfessionalServicesPremiumFeatures": "Премиальные особенности",
"ProfessionalServicesCustomDevelopment": "Индивидуальные услуги по разработке",
"ProfessionalServicesAnalystConsulting": "Консультации аналитиков",
"ContactUs": "Свяжитесь с нами",
- "VisitTheForums": "Посетите %1$s Форумы%2$s и получите помощь от сообщества пользователей Piwik"
+ "VisitTheForums": "Посетите %1$s Форумы%2$s и получите помощь от сообщества пользователей Matomo"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/sl.json b/plugins/Feedback/lang/sl.json
index 17d70cb095..1dc71184f0 100644
--- a/plugins/Feedback/lang/sl.json
+++ b/plugins/Feedback/lang/sl.json
@@ -5,6 +5,6 @@
"LearnWaysToParticipate": "Oglejte si vse načine kako lahko %1$ssodelujete%2$s",
"ManuallySendEmailTo": "Prosimo, da sporočilo ročno pošljete",
"SendFeedback": "Pošlji povratno informacijo",
- "ThankYou": "Hvala, ker nam pomagate izboljšati Piwik!"
+ "ThankYou": "Hvala, ker nam pomagate izboljšati Matomo!"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/sq.json b/plugins/Feedback/lang/sq.json
index 4dadf4c7cc..36f4d9591a 100644
--- a/plugins/Feedback/lang/sq.json
+++ b/plugins/Feedback/lang/sq.json
@@ -5,30 +5,30 @@
"IWantTo": "Dua të:",
"LearnWaysToParticipate": "Njihuni me krejt mënyrat përmes të cilave mund të %1$s merrni pjesë%2$s",
"ManuallySendEmailTo": "Ju lutemi, dërgojeni mesazhin tuaj dorazi te",
- "PluginDescription": "Dërgojani Përshtypjet tuaja Ekipit të Piwik-ut. Ndani me ta idetë dhe sugjerimet tuaja për ta bërë Piwik-un platformën më të mirë në botë për analiza!",
+ "PluginDescription": "Dërgojani Përshtypjet tuaja Ekipit të Piwik-ut. Ndani me ta idetë dhe sugjerimet tuaja për ta bërë Matomo-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.",
+ "RateFeatureSendFeedbackInformation": "Platforma juaj Piwik do të na dërgojë (ekipit Matomo) 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!",
+ "ThankYou": "Faleminderit që na ndihmoni ta bëjmë më të mirë Matomo-un!",
"TopLinkTooltip": "Na thoni se ç’mendim keni, ose kërkoni Asistencë Profesionale.",
"ViewAnswersToFAQ": "Shihni përgjigjet te %1$sPyetje të Bëra Shpesh%2$s",
- "ViewUserGuides": "Mësoni përmes %1$sudhërrë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",
+ "ViewUserGuides": "Mësoni përmes %1$sudhërrëfyesit tonë për përdoruesit%2$s se si ta formësoni Matomo-un dhe si të analizoni me efektshmëri të dhënat tuaja",
"CommunityHelp": "Ndihmë nga Bashkësia",
"ProfessionalHelp": "Ndihmë Profesionale",
- "ProfessionalServicesIntro": "Rrjeti ynë mbarëbotëror i konsulentëve profesionalë për Piwik ofron asistencë për klientë që kanë të instaluar Piwik-un në infrastrukturën e tyre.",
+ "ProfessionalServicesIntro": "Rrjeti ynë mbarëbotëror i konsulentëve profesionalë për Piwik ofron asistencë për klientë që kanë të instaluar Matomo-un në infrastrukturën e tyre.",
"ProfessionalServicesOfferIntro": "Prej cilave shërbime mund të përfitoni?",
- "ProfessionalServicesReviewPiwikSetup": "Një përmbledhje e rregullimit të Piwik-ut tuaj",
- "ProfessionalServicesOptimizationMaintenance": "Shërbime optimizimi & mirëmbajtjeje të Piwik-ut",
+ "ProfessionalServicesReviewPiwikSetup": "Një përmbledhje e rregullimit të Matomo-ut tuaj",
+ "ProfessionalServicesOptimizationMaintenance": "Shërbime optimizimi & mirëmbajtjeje të Matomo-ut",
"ProfessionalServicesPhoneEmailSupport": "Asistencë me Telefon dhe Email",
"ProfessionalServicesTraining": "Trajnim Përdoruesish, Teknik, dhe Zhvilluesish",
"ProfessionalServicesPremiumFeatures": "Veçori me pagesë",
"ProfessionalServicesCustomDevelopment": "Shërbime Zhvillimi Përshtatjesh",
"ProfessionalServicesAnalystConsulting": "Shërbime konsulence analisti",
"ContactUs": "Lidhuni me ne",
- "VisitTheForums": "Vizitoni %1$s Forumet%2$s dhe merrni ndihmë prej bashkësisë së përdoruesve të Piwik-ut"
+ "VisitTheForums": "Vizitoni %1$s Forumet%2$s dhe merrni ndihmë prej bashkësisë së përdoruesve të Matomo-ut"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/sr.json b/plugins/Feedback/lang/sr.json
index 0df1951ad1..ee7a6a5379 100644
--- a/plugins/Feedback/lang/sr.json
+++ b/plugins/Feedback/lang/sr.json
@@ -5,30 +5,30 @@
"IWantTo": "Želim da:",
"LearnWaysToParticipate": "Pogledajte kako sve možete da %1$s uzmete učešće%2$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!",
+ "PluginDescription": "Pošaljite vaše komentare Piwik timu. Podelite vaše ideje i predloge kako bismo učinili Matomo 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.",
+ "RateFeatureSendFeedbackInformation": "Vaša Piwik platforma će poslati Matomo 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!",
+ "ThankYou": "Hvala vam što nam pomažete da učinimo Matomo boljim!",
"TopLinkTooltip": "Recite nam šta mislite ili zatražite profesionalnu pomoć.",
"ViewAnswersToFAQ": "Prikaži odgovore na %1$sčesto postavljana pitanja%2$s",
- "ViewUserGuides": "Naučite kako da podesite Piwik i kako da efikasno analizirate vaše podatke prateći %1$skorisničko uputstvo%2$s",
+ "ViewUserGuides": "Naučite kako da podesite Matomo i kako da efikasno analizirate vaše podatke prateći %1$skorisničko uputstvo%2$s",
"CommunityHelp": "Pomoć zajednice",
"ProfessionalHelp": "Profesionalna pomoć",
- "ProfessionalServicesIntro": "Svetska mreža profesionalnih konsultanata za podršku klijentima koji hostuju Piwik na sopstvenim platformama.",
+ "ProfessionalServicesIntro": "Svetska mreža profesionalnih konsultanata za podršku klijentima koji hostuju Matomo na sopstvenim platformama.",
"ProfessionalServicesOfferIntro": "Od kojih usluga možete imati koristi?",
- "ProfessionalServicesReviewPiwikSetup": "Provera vaše Piwik instalacije",
- "ProfessionalServicesOptimizationMaintenance": "Usluge optimizacije i održavanja Piwik-a",
+ "ProfessionalServicesReviewPiwikSetup": "Provera vaše Matomo instalacije",
+ "ProfessionalServicesOptimizationMaintenance": "Usluge optimizacije i održavanja Matomo-a",
"ProfessionalServicesPhoneEmailSupport": "Telefonska i podrška putem mejla",
"ProfessionalServicesTraining": "Korisnički, tehnički i razvojni trening",
"ProfessionalServicesPremiumFeatures": "Premium sadržaji",
"ProfessionalServicesCustomDevelopment": "Razvoj usluga po vašoj želji",
"ProfessionalServicesAnalystConsulting": "Usluge analitičkog konsaltinga",
"ContactUs": "Kontaktirajte nas",
- "VisitTheForums": "Posetite %1$s Forum%2$s kako biste dobili pomoć zajednice Piwik korisnika"
+ "VisitTheForums": "Posetite %1$s Forum%2$s kako biste dobili pomoć zajednice Matomo korisnika"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/sv.json b/plugins/Feedback/lang/sv.json
index afc4e309c7..b9501fdf13 100644
--- a/plugins/Feedback/lang/sv.json
+++ b/plugins/Feedback/lang/sv.json
@@ -5,23 +5,23 @@
"IWantTo": "Jag vill:",
"LearnWaysToParticipate": "Läs om alla sätt du kan %1$s delta%2$s",
"ManuallySendEmailTo": "Vänligen skicka ditt meddelande manuellt till",
- "PluginDescription": "Skicka din feedback till Piwik-teamet. Dela dina idéer och förslag för att göra Piwik till världens bästa analysplattform!",
+ "PluginDescription": "Skicka din feedback till Piwik-teamet. Dela dina idéer och förslag för att göra Matomo till världens bästa analysplattform!",
"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.",
+ "RateFeatureLeaveMessageDislike": "Vi är ledsna över att du inte gillar det! Berätta gärna för oss hur vi kan förbättra Matomo.",
+ "RateFeatureLeaveMessageLike": "Vi är glada att du gillar det! Berätta för oss vad du gillar mest med Matomo eller om du har ett förslag på en funktion.",
+ "RateFeatureSendFeedbackInformation": "Din Piwik plattform kommer att skicka oss (Matomo 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!",
+ "ThankYou": "Tack för att du hjälper oss att göra Matomo bättre!",
"TopLinkTooltip": "Tala om för oss vad du tycker, eller fråga efter professionell support.",
"ViewAnswersToFAQ": "Se svar på %1$svanliga frågor%2$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",
+ "ViewUserGuides": "Lär dig att konfigurera Matomo och hur man på ett effektivt sätt analyserar data med våra %1$sanvändarguider%2$s",
"CommunityHelp": "Community Hjälp",
"ProfessionalHelp": "Professionell hjälp",
- "ProfessionalServicesIntro": "Vårt globala nätverk av professionella Piwik-konsulter stöttar de kunder som själva driftar sina Piwik-installationer på egen infrastruktur.",
+ "ProfessionalServicesIntro": "Vårt globala nätverk av professionella Piwik-konsulter stöttar de kunder som själva driftar sina Matomo-installationer på egen infrastruktur.",
"ProfessionalServicesOfferIntro": "Vilka tjänster kan du dra nytta av?",
- "ProfessionalServicesReviewPiwikSetup": "En utvärdering av din Piwikinstallation",
+ "ProfessionalServicesReviewPiwikSetup": "En utvärdering av din Matomoinstallation",
"ProfessionalServicesOptimizationMaintenance": "Piwik optimerings-tjänster och applikationsdrift.",
"ProfessionalServicesPhoneEmailSupport": "Support via telefon och e-post",
"ProfessionalServicesTraining": "Utbildning för användare, tekniker och utvecklare.",
@@ -29,6 +29,6 @@
"ProfessionalServicesCustomDevelopment": "Utvecklingstjänster",
"ProfessionalServicesAnalystConsulting": "Analystjänster",
"ContactUs": "Kontakta oss",
- "VisitTheForums": "Besök %1$s forumet%2$s och få hjälp av Piwik-användare"
+ "VisitTheForums": "Besök %1$s forumet%2$s och få hjälp av Matomo-användare"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/th.json b/plugins/Feedback/lang/th.json
index c5fecf6fa8..7fa6cdc7cc 100644
--- a/plugins/Feedback/lang/th.json
+++ b/plugins/Feedback/lang/th.json
@@ -5,6 +5,6 @@
"LearnWaysToParticipate": "เรียนรู้เกี่ยวกับทั้งหมดด้วยวิธี %1$s คุณสามารถ %2$s มีส่วนร่วมได้",
"ManuallySendEmailTo": "กรุณาส่งข้อความของคุณด้วยตนเอง",
"SendFeedback": "ส่งคำติชม",
- "ThankYou": "ขอบคุณที่ช่วยให้เราสามารถทำให้ Piwik ดีกว่า"
+ "ThankYou": "ขอบคุณที่ช่วยให้เราสามารถทำให้ Matomo ดีกว่า"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/tl.json b/plugins/Feedback/lang/tl.json
index 575f0a2152..cab5ddf1d8 100644
--- a/plugins/Feedback/lang/tl.json
+++ b/plugins/Feedback/lang/tl.json
@@ -5,17 +5,17 @@
"IWantTo": "Gusto kong:",
"LearnWaysToParticipate": "Pag-aralan ang lahat ng daan upang %1$s makasali sa %2$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.",
+ "PrivacyClaim": "Nirerespeto ng Matomo 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.",
+ "RateFeatureSendFeedbackInformation": "Ang iyong Piwik platform ay aming ipapadala(Ang pangkat ng Matomo) 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!",
+ "ThankYou": "Salamat sa pagtulong sa amin upang maging mas mabuti ang Matomo!",
"TopLinkTooltip": "Sabihin sa amin ang iyong iniisip o humiling ng Propesyonal na Suporta.",
"ViewAnswersToFAQ": "Ipakita ang sagot sa %1$s Mga Madalas Itanong %2$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 %1$s Forum %2$s at makakuha ng tulong mula sa komunidad ng mga Piwik user."
+ "ViewUserGuides": "Alamin kung paano i-configure ang Matomo at kung paano epektibong pag-aralan ang iyong data sa aming %1$suser gabay sa %2$s.",
+ "VisitTheForums": "Bisitahin ang mga %1$s Forum %2$s at makakuha ng tulong mula sa komunidad ng mga Matomo user."
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/uk.json b/plugins/Feedback/lang/uk.json
index 6bebd8ff76..f282053733 100644
--- a/plugins/Feedback/lang/uk.json
+++ b/plugins/Feedback/lang/uk.json
@@ -5,6 +5,6 @@
"LearnWaysToParticipate": "Дізнатися про всі способи %1$sдолучитися%2$s",
"ManuallySendEmailTo": "Будь-ласка надішліть ваше повідомлення власноручно на",
"SendFeedback": "Надіслати відгук",
- "ThankYou": "Дякуємо що допомагаєте робити Piwik кращим!"
+ "ThankYou": "Дякуємо що допомагаєте робити Matomo кращим!"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/vi.json b/plugins/Feedback/lang/vi.json
index 6a4ab28315..63a617cda7 100644
--- a/plugins/Feedback/lang/vi.json
+++ b/plugins/Feedback/lang/vi.json
@@ -5,7 +5,7 @@
"LearnWaysToParticipate": "Tìm hiểu về tất cả các cách bạn có thể %1$s tham gia %2$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!",
+ "ThankYou": "Cảm ơn bạn đã giúp chúng tôi để làm cho Matomo 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\""
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/zh-cn.json b/plugins/Feedback/lang/zh-cn.json
index 2fa0b05bcc..2be622419e 100644
--- a/plugins/Feedback/lang/zh-cn.json
+++ b/plugins/Feedback/lang/zh-cn.json
@@ -5,7 +5,7 @@
"LearnWaysToParticipate": "了解所有您可以 %1$s 参与%2$s 的方法",
"ManuallySendEmailTo": "请手动发送信息至",
"SendFeedback": "提交反馈",
- "ThankYou": "感谢您帮助我们改进 Piwik !",
+ "ThankYou": "感谢您帮助我们改进 Matomo !",
"TopLinkTooltip": "告诉我们您的想法,或者寻求专业技术支持。"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/lang/zh-tw.json b/plugins/Feedback/lang/zh-tw.json
index 9d7cdce0c4..dc84d1cb57 100644
--- a/plugins/Feedback/lang/zh-tw.json
+++ b/plugins/Feedback/lang/zh-tw.json
@@ -5,21 +5,21 @@
"IWantTo": "我想要:",
"LearnWaysToParticipate": "了解所有你可以%1$s參與%2$s的方法",
"ManuallySendEmailTo": "請手動寄送你的訊息至",
- "PluginDescription": "寄送你的回饋給 Piwik 團隊。分享你的點子和建議來讓 Piwik 成為全世界最佳的分析平台!",
+ "PluginDescription": "寄送你的回饋給 Piwik 團隊。分享你的點子和建議來讓 Matomo 成為全世界最佳的分析平台!",
"PrivacyClaim": "Piwik 尊重你的%1$s隱私權%2$s並讓你完整掌控你的資料。",
"RateFeatureLeaveMessageDislike": "我們很遺憾你不喜歡它!請讓我們知道我們該如何改進。",
"RateFeatureLeaveMessageLike": "我們很高興你喜歡它!請讓我們知道你最喜歡哪個部分或是有什麼功能請求。",
- "RateFeatureSendFeedbackInformation": "你的 Piwik 平台將寄送一封信件(包含你的 Email )給我們(Piwik 團隊),這樣如果你有任何問題我們才能和你取得聯繫。",
+ "RateFeatureSendFeedbackInformation": "你的 Piwik 平台將寄送一封信件(包含你的 Email )給我們(Matomo 團隊),這樣如果你有任何問題我們才能和你取得聯繫。",
"RateFeatureThankYouTitle": "感謝你為「%s」評分!",
"RateFeatureTitle": "你喜歡「%s」功能嗎?請評分並留下回應",
"SendFeedback": "送出意見",
- "ThankYou": "謝謝你協助我們使 Piwik 變得更好!",
+ "ThankYou": "謝謝你協助我們使 Matomo 變得更好!",
"TopLinkTooltip": "請分享你的意見,或要求專業支援。",
"ViewAnswersToFAQ": "查看%1$s常見問題集%2$s的答案。",
- "ViewUserGuides": "查看我們的%1$s使用者指南%2$s以了解如何設定 Piwik 及如何有效分你的資料。",
+ "ViewUserGuides": "查看我們的%1$s使用者指南%2$s以了解如何設定 Matomo 及如何有效分你的資料。",
"CommunityHelp": "社區協助",
"ProfessionalHelp": "專業協助",
- "ProfessionalServicesIntro": "我們的 Piwik 全球性網路專業顧問支援那些自己架設 Piwik 的客戶。",
+ "ProfessionalServicesIntro": "我們的 Piwik 全球性網路專業顧問支援那些自己架設 Matomo 的客戶。",
"ProfessionalServicesOfferIntro": "你可以獲得哪些服務?",
"ProfessionalServicesReviewPiwikSetup": "Piwik 安裝的評價",
"ProfessionalServicesOptimizationMaintenance": "Piwik 優化及維護服務",
@@ -29,6 +29,6 @@
"ProfessionalServicesCustomDevelopment": "自訂服務開發",
"ProfessionalServicesAnalystConsulting": "分析諮詢服務",
"ContactUs": "聯絡我們",
- "VisitTheForums": "訪問%1$s論壇%2$s從社區中的 Piwik 使用者中取得協助。"
+ "VisitTheForums": "訪問%1$s論壇%2$s從社區中的 Matomo 使用者中取得協助。"
}
} \ No newline at end of file
diff --git a/plugins/Feedback/templates/index.twig b/plugins/Feedback/templates/index.twig
index 1399052957..d2858d7dba 100644
--- a/plugins/Feedback/templates/index.twig
+++ b/plugins/Feedback/templates/index.twig
@@ -63,9 +63,9 @@
<p> &bull; <a rel='noreferrer' target='_blank' href='https://matomo.org/recommends/form-analytics/'>Form Analytics</a>: increase conversions and get better leads from your website forms.</p>
<p> &bull; <a rel='noreferrer' target='_blank' href='https://matomo.org/recommends/media-analytics-website/'>Video and Audio Analytics</a>: powerful insights into how your audience watches your videos and listens to your audio.</p>
<p> &bull; <a rel='noreferrer' target='_blank' href='https://matomo.org/recommends/roll-up-reporting/'>Roll-Up Reporting</a>: aggregate data from multiple websites, apps and shops into a Roll-Up site to gain new insights.</p>
- <p> &bull; <a rel='noreferrer' target='_blank' href='https://matomo.org/recommends/search-keywords-performance/'>Search Keywords Performance</a>: all keywords searched by your users on Google+Bing+Yahoo into your Piwik reports.</p>
- <p> &bull; <a rel='noreferrer' target='_blank' href='https://matomo.org/recommends/activity-log/'>Audit log</a>: better security and problem diagnostic with a detailed audit log of Piwik user activities.</p>
- <p> &bull; <a rel='noreferrer' target='_blank' href='https://matomo.org/recommends/white-label/'>White Label</a>: give your clients access to their analytics reports where all Piwik-branded widgets are removed.</p>
+ <p> &bull; <a rel='noreferrer' target='_blank' href='https://matomo.org/recommends/search-keywords-performance/'>Search Keywords Performance</a>: all keywords searched by your users on Google+Bing+Yahoo into your Matomo reports.</p>
+ <p> &bull; <a rel='noreferrer' target='_blank' href='https://matomo.org/recommends/activity-log/'>Audit log</a>: better security and problem diagnostic with a detailed audit log of Matomo user activities.</p>
+ <p> &bull; <a rel='noreferrer' target='_blank' href='https://matomo.org/recommends/white-label/'>White Label</a>: give your clients access to their analytics reports where all Matomo-branded widgets are removed.</p>
<p> &bull; <strong><a rel='noreferrer' target='_blank' href='https://matomo.org/recommends/premium-plugins'>All premium plugins.</a></strong></p>
</div>