Skip to content

Commit

Permalink
* Fix concats
Browse files Browse the repository at this point in the history
  • Loading branch information
mattab committed Jun 28, 2013
1 parent a62f1c1 commit 6aee04b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
11 changes: 10 additions & 1 deletion plugins/CoreHome/templates/_headerMessage.twig
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,16 @@
{{ 'General_PiwikXIsAvailablePleaseNotifyPiwikAdmin'|translate("<a href='?module=Proxy&action=redirect&url=http://piwik.org/' target='_blank'>Piwik</a> <a href='?module=Proxy&action=redirect&url=http://piwik.org/changelog/' target='_blank'>{{ latest_version_available }}</a>")|raw }}
{% endif %}
{% else %}
{{ 'General_PiwikIsACollaborativeProjectYouCanContributeAndDonate'|translate("<a href='?module=Proxy&action=redirect&url=http://piwik.org' target='_blank'>",piwik_version+"</a>","<br />","<a target='_blank' href='?module=Proxy&action=redirect&url=http://piwik.org/contribute/'>","</a>",'<br/>',"<a href='http://piwik.org/donate/' target='_blank'><strong><em>","</em></strong></a>")|raw }}
{{ 'General_PiwikIsACollaborativeProjectYouCanContributeAndDonate'|translate(
"<a href='?module=Proxy&action=redirect&url=http://piwik.org' target='_blank'>",
piwik_version~"</a>",
"<br />",
"<a target='_blank' href='?module=Proxy&action=redirect&url=http://piwik.org/contribute/'>",
"</a>",
'<br/>',
"<a href='http://piwik.org/donate/' target='_blank'><strong><em>",
"</em></strong></a>"
)|raw }}
{% endif %}
{% if hasSomeAdminAccess %}
<br/>
Expand Down
3 changes: 2 additions & 1 deletion plugins/PDFReports/templates/_addReport.twig
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@
<label for="{{ reportType }}{{ report.uniqueId }}">
{{ report.name }}
{% if report.uniqueId=='MultiSites_getAll' %}
<div class="entityInlineHelp">{{ 'PDFReports_ReportIncludeNWebsites'|translate('"'+countWebsites+' "') }}</div>
<div class="entityInlineHelp">{{ 'PDFReports_ReportIncludeNWebsites'|translate('"'~countWebsites~' "')
}}</div>
{% endif %}
</label>
</li>
Expand Down
2 changes: 1 addition & 1 deletion plugins/UserCountry/templates/adminIndex.twig
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
</div>
<div id="geoipdb-screen2-download" style="display:none">
<p class='loadingPiwik'><img src='./plugins/Zeitgeist/images/loading-blue.gif'/>
{{ 'UserCountry_DownloadingDb'|translate('<a href="'+geoLiteUrl+'">GeoLiteCity.dat</a>')|raw }}...</p>
{{ 'UserCountry_DownloadingDb'|translate('<a href="'~geoLiteUrl~'">GeoLiteCity.dat</a>')|raw }}...</p>
<div id="geoip-download-progress"></div>
</div>
{% endif %}
Expand Down

0 comments on commit 6aee04b

Please sign in to comment.