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:
authorChristian Raue <christian.raue@gmail.com>2014-01-31 12:52:05 +0400
committerChristian Raue <christian.raue@gmail.com>2014-01-31 13:41:11 +0400
commit0688801f2f94bc1986673fa58df6ba3ad097c539 (patch)
tree4395290a778df3ed05bdcb03e7974598295c0ae0 /core/Filechecks.php
parent19d7fc7a5f07fb2612ed05be56a7da4375dd4be9 (diff)
made file integrity warning completely translatable
Diffstat (limited to 'core/Filechecks.php')
-rw-r--r--core/Filechecks.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Filechecks.php b/core/Filechecks.php
index 30c519a1ca..8560001400 100644
--- a/core/Filechecks.php
+++ b/core/Filechecks.php
@@ -123,7 +123,7 @@ class Filechecks
if (!class_exists('Piwik\\Manifest')) {
$git = SettingsPiwik::getCurrentGitBranch();
if(empty($git)) {
- $messages[] = Piwik::translate('General_WarningFileIntegrityNoManifest') . " If you are deploying Piwik from Git, this message is normal.";
+ $messages[] = Piwik::translate('General_WarningFileIntegrityNoManifest') . ' ' . Piwik::translate('General_WarningFileIntegrityNoManifestDeployingFromGit');
}
return $messages;
}