Ticket #62: i18n.patch
| File i18n.patch, 58.1 KB (added by mauser, 4 years ago) |
|---|
-
plugins/VisitFrequency/index.tpl
2 2 <script type="text/javascript" src="plugins/Home/templates/sparkline.js"></script> 3 3 4 4 <a name="evolutionGraph" graphId="VisitFrequencygetLastVisitsReturningGraph"></a> 5 <h2> Evolution over the period</h2>5 <h2>{'VisitFrequency_Evolution'|translate}</h2> 6 6 {$graphEvolutionVisitFrequency} 7 7 8 8 {include file=VisitFrequency/sparklines.tpl} 9 9 10 {postEvent name="template_footerVisitsFrequency"} 11 brakuje znaku koÅca linii na koÅcu pliku 10 {postEvent name="template_footerVisitsFrequency"} -
plugins/VisitFrequency/VisitFrequency.php
18 18 public function getInformation() 19 19 { 20 20 $info = array( 21 'name' => 'Visit orFrequency',21 'name' => 'VisitFrequency', 22 22 'description' => 'VisitorFrequency', 23 23 'author' => 'Piwik', 24 24 'homepage' => 'http://piwik.org/', 25 25 'version' => '0.1', 26 'translationAvailable' => true 26 27 ); 27 28 28 29 return $info; -
plugins/VisitFrequency/sparklines.tpl
1 1 2 <p><img class="sparkline" src="{$urlSparklineNbVisitsReturning}" /> <span><strong>{$nbVisitsReturning} </strong> returning visits</span></p>3 <p><img class="sparkline" src="{$urlSparklineNbActionsReturning}" /> <span><strong>{$nbActionsReturning} </strong> actions by the returning visits</span></p>4 <p><img class="sparkline" src="{$urlSparklineMaxActionsReturning}" /> <span><strong>{$maxActionsReturning} </strong> maximum actions by a returning visit</span></p>5 <p><img class="sparkline" src="{$urlSparklineSumVisitLengthReturning}" /> <span><strong>{$sumVisitLengthReturning|sumtime} </strong> total time spent by returning visits</span></p>6 <p><img class="sparkline" src="{$urlSparklineBounceCountReturning}" /> <span><strong>{$bounceCountReturning} </strong> times that a returning visit has bounced (left the site after one page)</span></p>2 <p><img class="sparkline" src="{$urlSparklineNbVisitsReturning}" /> <span><strong>{$nbVisitsReturning} </strong> {'VisitFrequency_ReturnVisits'|translate}</span></p> 3 <p><img class="sparkline" src="{$urlSparklineNbActionsReturning}" /> <span><strong>{$nbActionsReturning} </strong> {'VisitFrequency_ReturnActions'|translate}</span></p> 4 <p><img class="sparkline" src="{$urlSparklineMaxActionsReturning}" /> <span><strong>{$maxActionsReturning} </strong> {'VisitFrequency_ReturnMaxActions'|translate}</span></p> 5 <p><img class="sparkline" src="{$urlSparklineSumVisitLengthReturning}" /> <span><strong>{$sumVisitLengthReturning|sumtime} </strong> {'VisitFrequency_ReturnTotalTime'|translate}</span></p> 6 <p><img class="sparkline" src="{$urlSparklineBounceCountReturning}" /> <span><strong>{$bounceCountReturning} </strong> {'VisitFrequency_ReturnBounces'|translate} </span></p> -
plugins/SitesManager/SitesManager.php
24 24 'author' => 'Piwik', 25 25 'homepage' => 'http://piwik.org/', 26 26 'version' => '0.1', 27 'translationAvailable' => false,27 'translationAvailable' => true, 28 28 ); 29 29 30 30 return $info; -
plugins/SitesManager/templates/SitesManager.tpl
1 1 <script type="text/javascript" src="plugins/SitesManager/templates/SitesManager.js"></script> 2 2 3 <h2> Sites</h2>3 <h2>{'SitesManager_Sites'|translate}</h2> 4 4 <div id="ajaxError" style="display:none"></div> 5 <div id="ajaxLoading" style="display:none"> Loading...<img src="themes/default/loading.gif"></div>5 <div id="ajaxLoading" style="display:none">{'General_LoadingData'|translate} <img src="themes/default/loading.gif"></div> 6 6 7 7 {if $sites|@count == 0} 8 You don't have any website to administrate.8 {'SitesManager_NoWebsites'|translate} 9 9 {else} 10 10 <table id="editSites" border=1 cellpadding="10"> 11 11 <thead> 12 12 <tr> 13 <th> Id</th>14 <th> Name</th>15 <th> URLs</th>13 <th>{'SitesManager_Id'|translate}</th> 14 <th>{'SitesManager_Name'|translate}</th> 15 <th>{'SitesManager_Urls'|translate}</th> 16 16 <th> </th> 17 17 <th> </th> 18 <th> Javascript code</th>18 <th> {'SitesManager_JsCode'|translate} </th> 19 19 </tr> 20 20 </thead> 21 21 <tbody> … … 25 25 <td id="siteName" class="editableSite">{$site.name}</td> 26 26 <td id="urls" class="editableSite">{foreach from=$site.alias_urls item=url}{$url}<br>{/foreach}</td> 27 27 <td><img src='plugins/UsersManager/images/edit.png' class="editSite" id="row{$i}" href='#'></td> 28 <td><img src='plugins/UsersManager/images/remove.png' class="deleteSite" id="row{$i}" value=" Delete"></td>29 <td><a href='{url actionToLoad=displayJavascriptCode idsite=$site.idsite}'> Show Code</a></td>28 <td><img src='plugins/UsersManager/images/remove.png' class="deleteSite" id="row{$i}" value="{'General_Delete'|translate}"></td> 29 <td><a href='{url actionToLoad=displayJavascriptCode idsite=$site.idsite}'>{'SitesManager_ShowJsCode'|translate}</a></td> 30 30 </tr> 31 31 {/foreach} 32 32 33 33 </tbody> 34 34 </table> 35 <div id="addRowSite"><img src='plugins/UsersManager/images/add.png'> <a href="#"> Add a new Site</a></div>35 <div id="addRowSite"><img src='plugins/UsersManager/images/add.png'> <a href="#">{'SitesManager_AddSite'|translate}</a></div> 36 36 {/if} 37 37 -
plugins/SitesManager/templates/DisplayJavascriptCode.tpl
1 <p> Here is the javascript code to include on all your pages:</p>1 <p>{'SitesManager_JsCodeHelp'|translate}:</p> 2 2 3 3 <code> 4 4 {$jsTag} -
plugins/Dashboard/Dashboard.php
20 20 'author' => 'Piwik', 21 21 'homepage' => 'http://piwik.org/', 22 22 'version' => '0.1', 23 'translationAvailable' => true, 23 24 ); 24 25 } 25 26 -
plugins/Dashboard/templates/index.tpl
22 22 23 23 <div class="dialog" id="confirm"> 24 24 <img src="themes/default/images/delete.png" style="padding: 10px; position: relative; margin-top: 10%; float: left;"/> 25 <p> Are you sure you want to delete this widget from the dashboard ?</p>26 <input id="yes" type="button" value=" Yes"/>27 <input id="no" type="button" value=" No"/>25 <p>{'Dashboard_DeleteWidgetConfirm'|translate}</p> 26 <input id="yes" type="button" value="{'General_Yes'|translate}"/> 27 <input id="no" type="button" value="{'General_No'|translate}"/> 28 28 </div> 29 29 30 30 <div class="button" id="addWidget"> 31 Add a widget...31 {'Dashboard_AddWidget'|translate} 32 32 </div> 33 33 34 34 <div class="menu" id="widgetChooser"> 35 <div id="closeMenuIcon"><img src="themes/default/images/close_medium.png" title=" Close this menu"/></div>36 <div id="menuTitleBar"> Select the widget to add in the dashboard</div>35 <div id="closeMenuIcon"><img src="themes/default/images/close_medium.png" title="{'General_Close'|translate}"/></div> 36 <div id="menuTitleBar">{'Dashboard_SelectWidget'|translate}</div> 37 37 <div class="subMenu" id="sub1"> 38 38 </div> 39 39 … … 42 42 43 43 <div class="subMenu" id="sub3"> 44 44 <div class="widget"> 45 <div class="handle" title=" Add previewed widget to the dashboard">45 <div class="handle" title="{'Dashboard_AddPreviewedWidget'|translate}"> 46 46 <div class="button" id="close"> 47 <img src="themes/default/images/close.png" />47 <img src="themes/default/images/close.png" title="{'General_Close'|translate}"/> 48 48 </div> 49 <div class="widgetTitle"> Widget preview</div>49 <div class="widgetTitle">{'Dashboard_WidgetPreview'|translate}</div> 50 50 </div> 51 51 <div class="widgetDiv previewDiv"></div> 52 52 </div> -
plugins/Home/Controller.php
36 36 { 37 37 if(($currentLogin = Piwik::getCurrentUserLogin()) != 'anonymous') 38 38 { 39 Piwik_ExitWithMessage( "You are logged in as '$currentLogin' but it seems you don't have any permission set in Piwik. 40 <br />Ask your Piwik administrator to give you 'view' access to a website. 41 <br /><br /> <b><a href='?module=Login&action=logout'>› Logout from Piwik</a></b><br />"); 39 Piwik_ExitWithMessage( sprintf(Piwik_Translate('Home_NoPrivileges'),$currentLogin). 40 "<br /><br /> <b><a href='?module=Login&action=logout'>› ".Piwik_Translate('General_Logout')."</a></b><br />"); 42 41 } 43 42 else 44 43 { … … 116 115 117 116 118 117 119 } 120 brakuje znaku koÅca linii na koÅcu pliku 118 } -
plugins/Home/templates/datatable.tpl
3 3 {$arrayDataTable.message} 4 4 {else} 5 5 {if count($arrayDataTable) == 0} 6 <div id="emptyDatatable"> No data for this table.</div>6 <div id="emptyDatatable">{'Home_TableNoData'|translate}</div> 7 7 {else} 8 8 <a name="{$id}"></a> 9 9 <table cellspacing="0" class="dataTable"> -
plugins/Home/templates/links_misc_modules.tpl
3 3 <li><a href='?module=API&action=listAllAPI'>API examples</a></li> 4 4 <li>Embed Piwik widgets everywhere: <a href='?module=Widgetize'>Widgetize!</a></li> 5 5 <li><a href='?module=AdminHome'>Administration</a></li> 6 <li><a href='?module=SitesManager&action=displayJavascriptCode&idsite={$idSite}'> Show the javascript code to insert</a></li>6 <li><a href='?module=SitesManager&action=displayJavascriptCode&idsite={$idSite}'>{'Home_ShowJSCode'|translate}</a></li> 7 7 </ul> 8 </span> 9 brakuje znaku koÅca linii na koÅcu pliku 8 </span> -
plugins/Home/templates/datatable_actions_subdatable.tpl
3 3 {$arrayDataTable.message} 4 4 {else} 5 5 {if count($arrayDataTable) == 0} 6 <tr><td colspan="{$nbColumns}"> No data in this category. Try to "Include all population".</td></tr>6 <tr><td colspan="{$nbColumns}">{'Home_CategoryNoData'|translate}</td></tr> 7 7 {else} 8 8 {foreach from=$arrayDataTable item=row} 9 9 <tr {if $row.idsubdatatable}class="subActionsDataTable" id="{$row.idsubdatatable}"{else}class="actionsDataTable"{/if}> … … 16 16 </tr> 17 17 {/foreach} 18 18 {/if} 19 {/if} 20 brakuje znaku koÅca linii na koÅcu pliku 19 {/if} -
plugins/Home/templates/datatable_actions_recursive.tpl
3 3 {$arrayDataTable.message} 4 4 {else} 5 5 {if count($arrayDataTable) == 0} 6 <div id="emptyDatatable"> No data for this table.</div>6 <div id="emptyDatatable">{'Home_TableNoData'|translate}</div> 7 7 {else} 8 8 <table cellspacing="0" class="dataTable dataTableActions"> 9 9 <thead> … … 41 41 {include file="Home/templates/datatable_actions_js.tpl"} 42 42 43 43 {/if} 44 </div> 45 brakuje znaku koÅca linii na koÅcu pliku 44 </div> -
plugins/Home/templates/datatable_footer.tpl
7 7 </span> 8 8 9 9 <span id="dataTablePages"></span> 10 <span id="dataTablePrevious">< Previous</span>11 <span id="dataTableNext"> Next></span>10 <span id="dataTablePrevious">< {'General_Previous'|translate}</span> 11 <span id="dataTableNext">{'General_Next'|translate} ></span> 12 12 <div> 13 13 <span id="exportDataTable"> 14 14 <span id="exportToFormat" style="display:none"> … … 19 19 <a target="_blank" class="exportToFormat" methodToCall="{$method}" format="JSON" filter_limit="100">Json</a> | 20 20 <a target="_blank" class="exportToFormat" methodToCall="{$method}" format="PHP" filter_limit="100">Php</a> 21 21 </span> 22 <a class="viewDataTable" format="table"><img width="16" height="16" src="themes/default/images/table.png" title=" Table" /></a>23 <a class="viewDataTable" format="cloud"><img width="16" height="16" src="themes/default/images/tagcloud.png" title=" Tag Cloud" /></a>24 <a class="viewDataTable" format="graphVerticalBar"><img width="16" height="16" src="themes/default/images/chart_bar.png" title=" Vertical bar graph" /></a>25 <a class="viewDataTable" format="graphPie"><img width="16" height="16" src="themes/default/images/chart_pie.png" title=" Pie chart" /></a>22 <a class="viewDataTable" format="table"><img width="16" height="16" src="themes/default/images/table.png" title="{'General_Table'|translate}" /></a> 23 <a class="viewDataTable" format="cloud"><img width="16" height="16" src="themes/default/images/tagcloud.png" title="{'General_TagCloud'|translate}" /></a> 24 <a class="viewDataTable" format="graphVerticalBar"><img width="16" height="16" src="themes/default/images/chart_bar.png" title="{'General_VBarGraph'|translate}" /></a> 25 <a class="viewDataTable" format="graphPie"><img width="16" height="16" src="themes/default/images/chart_pie.png" title="{'General_Piechart'|translate}" /></a> 26 26 </span> 27 27 <span id="exportDataTableShow" style="display:none"> 28 28 <img src="plugins/Home/templates/images/more.png" /> 29 29 </span> 30 30 </span> 31 31 32 <span id="loadingDataTable"><img src="themes/default/images/loading-blue.gif" /> Loading...</span>32 <span id="loadingDataTable"><img src="themes/default/images/loading-blue.gif" /> {'General_LoadingData'|translate}</span> 33 33 </div> 34 34 </div> 35 35 -
plugins/Home/templates/datatable_actions.tpl
3 3 {$arrayDataTable.message} 4 4 {else} 5 5 {if count($arrayDataTable) == 0} 6 <div id="emptyDatatable"> No data for this table.</div>6 <div id="emptyDatatable">{'Home_TableNoData'|translate}</div> 7 7 {else} 8 8 <table cellspacing="0" class="dataTable dataTableActions"> 9 9 <thead> -
plugins/Home/templates/graph.tpl
6 6 <form class="formEmbedCode" id="{$formId}"> 7 7 Embed <input name="embed_code" value="{$codeEmbed}" onclick="javascript:document.getElementById('{$formId}').embed_code.focus();document.getElementById('{$formId}').embed_code.select();" readonly="true" type="text"> 8 8 9 | <a target="_blank" href="{$urlData}"> Graph data</a>9 | <a target="_blank" href="{$urlData}">{'General_GraphData'|translate}</a> 10 10 </form> 11 11 12 12 {include file="Home/templates/datatable_footer.tpl"} -
plugins/Home/templates/index.tpl
281 281 {/foreach} 282 282 </optgroup> 283 283 </select> 284 </span> | {if $userLogin=='anonymous'}<a href='?module=Login'> Login</a>{else}<a href='?module=Login&action=logout'>Logout</a>{/if}</a>284 </span> | {if $userLogin=='anonymous'}<a href='?module=Login'>{'Login_LogIn'|translate}</a>{else}<a href='?module=Login&action=logout'>{'Login_Logout'|translate}</a>{/if}</a> 285 285 </small> 286 286 </form> 287 287 </span> … … 298 298 299 299 <noscript> 300 300 <span id="javascriptDisable"> 301 JavaScript must be enabled in order for you to use Piwik in standard view.<br> 302 However, it seems JavaScript is either disabled or not supported by your browser.<br> 303 To use standard view, enable JavaScript by changing your browser options, then <a href=''>try again</a>.<br> 301 {'Home_JavascriptDisabled'|translate} 304 302 </span> 305 303 </noscript> 306 304 {include file="Home/templates/period_select.tpl"} … … 310 308 311 309 <div style='clear:both'></div> 312 310 313 <div id="loadingPiwik" {if $basicHtmlView}style="display:none"{/if}><img src="themes/default/images/loading-blue.gif"> Loading data...</div>314 <div id="loadingError"> Oops… problem during the request, please try again.</div>311 <div id="loadingPiwik" {if $basicHtmlView}style="display:none"{/if}><img src="themes/default/images/loading-blue.gif"> {'General_LoadingData'|translate}</div> 312 <div id="loadingError">{'General_ErrorRequest'|translate}</div> 315 313 <div id='content'> 316 314 {if $content}{$content}{/if} 317 315 </div> -
plugins/Home/Home.php
20 20 'author' => 'Piwik', 21 21 'homepage' => 'http://piwik.org/', 22 22 'version' => '0.1', 23 'translationAvailable' => false,23 'translationAvailable' => true, 24 24 ); 25 25 } 26 26 } -
plugins/PluginsAdmin/PluginsAdmin.php
15 15 { 16 16 return array( 17 17 // name must be the className prefix! 18 'name' => 'Plugins administration',18 'name' => 'PluginsAdmin', 19 19 'description' => '', 20 20 'author' => 'Piwik', 21 21 'homepage' => 'http://piwik.org/', 22 22 'version' => '0.1', 23 'translationAvailable' => false,23 'translationAvailable' => true, 24 24 ); 25 25 } 26 26 } -
plugins/PluginsAdmin/templates/manage.tpl
20 20 <td>{$plugin.info.description} </td> 21 21 <td class="center"><a href="{$plugin.info.homepage}">{$plugin.info.author}</a></td> 22 22 <td>{$plugin.info.version}</td> 23 <td class="switch">{if $plugin.alwaysActivated}<span title=" This plugin cannot be deactivated">Activated</span>{elseif $plugin.activated}<a href=?module=PluginsAdmin&action=deactivate&pluginName={$name}>Deactivate</a>24 {else}<a href=?module=PluginsAdmin&action=activate&pluginName={$name}> Activate</a>{/if}</td>23 <td class="switch">{if $plugin.alwaysActivated}<span title="{'PluginsAdmin_ActivatedHelp'|translate}">{'PluginsAdmin_Activated'|translate}</span>{elseif $plugin.activated}<a href=?module=PluginsAdmin&action=deactivate&pluginName={$name}>{'PluginsAdmin_Deactivate'|translate}</a> 24 {else}<a href=?module=PluginsAdmin&action=activate&pluginName={$name}>{'PluginsAdmin_Activate'|translate}</a>{/if}</td> 25 25 </tr> 26 26 {/foreach} 27 27 -
plugins/UsersManager/UsersManager.php
19 19 { 20 20 $info = array( 21 21 // name must be the className prefix! 22 'name' => 'User Manager',22 'name' => 'UsersManager', 23 23 'description' => 'Description', 24 24 'author' => 'Piwik', 25 25 'homepage' => 'http://piwik.org/', 26 26 'version' => '0.1', 27 'translationAvailable' => false,27 'translationAvailable' => true, 28 28 ); 29 29 30 30 return $info; -
plugins/UsersManager/templates/UsersManager.tpl
18 18 </style> 19 19 {/literal} 20 20 21 <h2> Manage access</h2>21 <h2>{'UsersManager_ManageAccess'|translate}</h2> 22 22 23 23 <div id="sites"> 24 24 <form method="post" action="{url actionToLoad=index}" id="accessSites"> 25 <p> Sites: <select id="selectIdsite" name="idsite" onchange="this.form.submit()">25 <p>{'UsersManager_Sites'|translate}: <select id="selectIdsite" name="idsite" onchange="this.form.submit()"> 26 26 27 <optgroup label=" All websites">28 <option label=" All websites" value="-1" {if $idSiteSelected==-1} selected="selected"{/if}>Apply to all websites</option>27 <optgroup label="{'UsersManager_AllWebsites'|translate}"> 28 <option label="{'UsersManager_AllWebsites'|translate}" value="-1" {if $idSiteSelected==-1} selected="selected"{/if}>{'UsersManager_ApplyToAllWebsites'|translate}</option> 29 29 </optgroup> 30 <optgroup label=" Sites">30 <optgroup label="{'UsersManager_Sites'|translate}"> 31 31 {foreach from=$websites item=info} 32 32 <option value="{$info.idsite}" {if $idSiteSelected==$info.idsite} selected="selected"{/if}>{$info.name}</option> 33 33 {/foreach} … … 40 40 <table id="access"> 41 41 <thead> 42 42 <tr> 43 <th> User</th>44 <th> No access</th>45 <th> View</th>46 <th> Admin</th>43 <th>{'UsersManager_User'|translate}</th> 44 <th>{'UsersManager_PrivNone'|translate}</th> 45 <th>{'UsersManager_PrivView'|translate}</th> 46 <th>{'UsersManager_PrivAdmin'|translate}</th> 47 47 </tr> 48 48 </thead> 49 49 … … 61 61 </tbody> 62 62 </table> 63 63 64 <div id="accessUpdated"> Done!</div>64 <div id="accessUpdated">{'General_Done'|translate}!</div> 65 65 66 66 <div class="dialog" id="confirm"> 67 <p> Are you sure you want to change '<span id='login'></span>' permissions on all the websites?</p>68 <input id="yes" type="button" value=" Yes"/>69 <input id="no" type="button" value=" No"/>67 <p>{'UsersManager_ChangeAllConfirm'|translate:"<span id='login'></span>"}</p> 68 <input id="yes" type="button" value="{'General_Yes'|translate}"/> 69 <input id="no" type="button" value="{'General_No'|translate}"/> 70 70 </div> 71 71 72 72 <h2>Manage users</h2> 73 73 74 74 <div id="ajaxError" style="display:none"></div> 75 <div id="ajaxLoading" style="display:none"> Loading...<img src="themes/default/loading.gif"></div>75 <div id="ajaxLoading" style="display:none">{'General_LoadingData'|translate} <img src="themes/default/loading.gif"></div> 76 76 <table id="users"> 77 77 <thead> 78 78 <tr> 79 <th> Login</th>80 <th> Password</th>81 <th> Email</th>82 <th> Alias</th>83 <th> token_auth</th>84 <th> Edit</th>85 <th> Delete</th>79 <th>{'UsersManager_Login'|translate}</th> 80 <th>{'UsersManager_Password'|translate}</th> 81 <th>{'UsersManager_Email'|translate}</th> 82 <th>{'UsersManager_Alias'|translate}</th> 83 <th>{'UsersManager_Token'|translate}</th> 84 <th>{'General_Edit'|translate}</th> 85 <th>{'General_Delete'|translate}</th> 86 86 </tr> 87 87 </thead> 88 88 … … 103 103 </tbody> 104 104 </table> 105 105 106 <div id="addrow"><img src='plugins/UsersManager/images/add.png'> Add a new user</div>106 <div id="addrow"><img src='plugins/UsersManager/images/add.png'> {'UsersManager_AddUser'|translate}</div> 107 107 <script type="text/javascript" src="plugins/UsersManager/templates/UsersManager.js"></script> -
plugins/UserSettings/UserSettings.php
38 38 'author' => 'Piwik', 39 39 'homepage' => 'http://piwik.org/', 40 40 'version' => '0.1', 41 'translationAvailable' => true, 41 42 ); 42 43 43 44 return $info; -
plugins/UserSettings/index.tpl
1 1 <div id='leftcolumn'> 2 <h2> Browser families</h2>2 <h2>{'UserSettings_BrowserFamilies'|translate}</h2> 3 3 {$dataTableBrowserType} 4 4 5 <h2> Browsers</h2>5 <h2>{'UserSettings_Browsers'|translate}</h2> 6 6 {$dataTableBrowser} 7 7 8 <h2> Plugins</h2>8 <h2>{'UserSettings_Plugins'|translate}</h2> 9 9 {$dataTablePlugin} 10 10 </div> 11 11 12 12 <div id='rightcolumn'> 13 <h2> Configurations</h2>13 <h2>{'UserSettings_Configurations'|translate}</h2> 14 14 {$dataTableConfiguration} 15 15 16 <h2> Operating systems</h2>16 <h2>{'UserSettings_OperatinsSystems'|translate}</h2> 17 17 {$dataTableOS} 18 18 19 <h2> Resolutions</h2>19 <h2>{'UserSettings_Resolutions'|translate}</h2> 20 20 {$dataTableResolution} 21 21 22 <h2> Wide Screen</h2>22 <h2>{'UserSettings_WideScreen'|translate}</h2> 23 23 {$dataTableWideScreen} 24 24 </div> 25 25 -
plugins/VisitsSummary/VisitsSummary.php
19 19 { 20 20 $info = array( 21 21 // name must be the className prefix! 22 'name' => ' Piwik_VisitsSummary',22 'name' => 'VisitsSummary', 23 23 'description' => 'Description', 24 24 'author' => 'Piwik', 25 25 'homepage' => 'http://piwik.org/', 26 26 'version' => '0.1', 27 'translationAvailable' => false,27 'translationAvailable' => true, 28 28 ); 29 29 30 30 return $info; … … 129 129 Piwik_AddWidget( 'VisitsSummary', 'getLastUniqueVisitorsGraph', 'Last unique visitors graph'); 130 130 Piwik_AddWidget( 'VisitsSummary', 'index', 'Overview with graph'); 131 131 132 Piwik_AddMenu('Visitors', 'Overview', array('module' => 'VisitsSummary'), true); 133 brakuje znaku koÅca linii na koÅcu pliku 132 Piwik_AddMenu('Visitors', 'Overview', array('module' => 'VisitsSummary'), true); -
plugins/VisitsSummary/index.tpl
2 2 <script type="text/javascript" src="plugins/Home/templates/sparkline.js"></script> 3 3 4 4 <a name="evolutionGraph" graphId="VisitsSummarygetLastVisitsGraph"></a> 5 <h2> Evolution on the last 30 {$period}s</h2>5 <h2>{'VisitsSummary_Evolution'|translate:$period}</h2> 6 6 {$graphEvolutionVisitsSummary} 7 7 8 <h2> Report</h2>8 <h2>{'VisitsSummary_Report'|translate}</h2> 9 9 {include file=VisitsSummary/sparklines.tpl} 10 10 11 11 12 12 <br><br><br> 13 <p style='color:lightgrey; size:0.8em;'>{$totalTimeGeneration} seconds {if $totalNumberOfQueries != 0}/ {$totalNumberOfQueries} queries{/if} to generate the page</p> 13 <p style='color:lightgrey; size:0.8em;'> 14 {'VisitsSummary_GenerateTime'|translate:$totalTimeGeneration:$totalNumberOfQueries} 15 {if $totalNumberOfQueries != 0}, {'VisitsSummary_GenerateQueries'|translate:$totalNumberOfQueries}{/if} 16 </p> -
plugins/VisitsSummary/sparklines.tpl
1 1 <div id="to remove this div" class="parentDiv"> 2 <p><img class="sparkline" src="{$urlSparklineNbVisits}" /> <span><strong>{$nbVisits} </strong> visits</span></p>3 <p><img class="sparkline" src="{$urlSparklineNbUniqVisitors}" /> <span><strong>{$nbUniqVisitors}</strong> unique visitors</span></p>4 <p><img class="sparkline" src="{$urlSparklineNbActions}" /> <span><strong>{$nbActions}</strong> actions (page views)</span></p>5 <p><img class="sparkline" src="{$urlSparklineSumVisitLength}" /> <span><strong>{$sumVisitLength|sumtime}</strong> total time spent by the visitors</span></p>6 <p><img class="sparkline" src="{$urlSparklineMaxActions}" /> <span><strong>{$maxActions}</strong> max actions in one visit</span></p>7 <p><img class="sparkline" src="{$urlSparklineBounceCount}" /> <span><strong>{$bounceCount} </strong>visitors have bounced (left the site after one page)</span></p>2 <p><img class="sparkline" src="{$urlSparklineNbVisits}" /> <span><strong>{$nbVisits} </strong> {'VisitsSummary_NbVisits'|translate}</span></p> 3 <p><img class="sparkline" src="{$urlSparklineNbUniqVisitors}" /> <span><strong>{$nbUniqVisitors}</strong> {'VisitsSummary_NbUniqueVisitors'|translate}</span></p> 4 <p><img class="sparkline" src="{$urlSparklineNbActions}" /> <span><strong>{$nbActions}</strong> {'VisitsSummary_NbActions'|translate}</span></p> 5 <p><img class="sparkline" src="{$urlSparklineSumVisitLength}" /> <span><strong>{$sumVisitLength|sumtime}</strong> {'VisitsSummary_TotalTime'|translate}</span></p> 6 <p><img class="sparkline" src="{$urlSparklineMaxActions}" /> <span><strong>{$maxActions}</strong> {'VisitsSummary_MaxNbActions'|translate}</span></p> 7 <p><img class="sparkline" src="{$urlSparklineBounceCount}" /> <span><strong>{$bounceCount}</strong> {'VisitsSummary_NbBounced'|translate}</span></p> 8 8 9 </div> 10 brakuje znaku koÅca linii na koÅcu pliku 9 </div> -
plugins/Actions/Actions.php
37 37 'author' => 'Piwik', 38 38 'homepage' => 'http://piwik.org/', 39 39 'version' => '0.1', 40 'translationAvailable' => false 40 41 ); 41 42 42 43 return $info; -
plugins/Installation/Installation.php
29 29 'author' => 'Piwik', 30 30 'homepage' => 'http://piwik.org/', 31 31 'version' => '0.1', 32 'translationAvailable' => false,32 'translationAvailable' => true, 33 33 ); 34 34 35 35 return $info; … … 67 67 } 68 68 else 69 69 { 70 Piwik::exitWithErrorMessage(" 71 The Piwik configuration file couldn't be found and you are trying to access a Piwik page.<br> 72 <b> » You can <a href='index.php'>install Piwik now</a></b> 73 <br><small>If you installed Piwik before and have some tables in your DB, don't worry, 74 you can reuse the same tables and keep your existing data!</small>"); 70 Piwik::exitWithErrorMessage(Piwik_Translate('Installation_NoConfigFound')); 75 71 } 76 72 exit; 77 73 } 78 } 79 brakuje znaku koÅca linii na koÅcu pliku 74 } -
plugins/Installation/templates/systemCheck.tpl
2 2 {assign var=error value="<img src='themes/default/images/error.png' />"} 3 3 {assign var=warning value="<img src='themes/default/images/warning.png' />"} 4 4 5 <h1> System check</h1>5 <h1>{'Installation_SystemCheck'|translate}</h1> 6 6 7 7 8 8 <table class="infosServer"> 9 9 <tr> 10 <td class="label"> PHP version> {$infos.phpVersion_minimum}</td>10 <td class="label">{'Installation_SystemCheckPhp'|translate} > {$infos.phpVersion_minimum}</td> 11 11 <td>{if $infos.phpVersion_ok}{$ok}{else}{$error}{/if}</td> 12 12 </tr><tr> 13 <td class="label"> Pdo extension</td>13 <td class="label">{'Installation_SystemCheckPdo'|translate}</td> 14 14 <td>{if $infos.pdo_ok}{$ok} 15 15 {else}{$error}{/if} 16 16 </td> 17 17 </tr> 18 18 <tr> 19 <td class="label"> Pdo_Mysql extension</td>19 <td class="label">{'Installation_SystemCheckPdoMysql'|translate}</td> 20 20 <td>{if $infos.pdo_mysql_ok}{$ok} 21 21 {else}{$error} 22 22 {/if} 23 23 24 24 {if !$infos.pdo_mysql_ok || !$infos.pdo_ok} 25 <p class="error" style="width:80%">You need to enable the <code>php_pdo</code> and <code>php_pdo_mysql</code> extensions in your 26 php.ini file. 25 <p class="error" style="width:80%">{'Installation_SystemCheckPdoError'|translate} 27 26 <small> 28 <br><br>On a windows server you can add the lines 29 <code>extension=php_pdo.dll 30 extension=php_pdo_mysql.dll</code> in your php.ini 31 32 <br><br>On a Linux server you can compile php with the following option 33 <code>--with-pdo-mysql </code> 34 35 <br><br>More information on the <a style="color:red" href='http://php.net/pdo'>PHP website</a>. 27 <br><br> 28 {'Installation_SystemCheckPdoErrorHelp'|translate} 36 29 </small> 37 30 </p> 38 31 {/if} … … 42 35 43 36 {* We don't use utf8_encode currently but I think we will soon so I leave the code here 44 37 <tr> 45 <td class="label"> PHP-XML extension<br> (utf8_decode function)</td>38 <td class="label">{'Installation_SystemCheckPhpXml'|translate} <br> (utf8_decode function)</td> 46 39 <td>{if $infos.phpXml_ok}{$ok}{else}{$error}{/if}</td> 47 40 </tr> 48 41 *} 49 42 <tr> 50 43 <td valign="top"> 51 Directories with write access44 {'Installation_SystemCheckWriteDirs'|translate} 52 45 </td> 53 46 <td> 54 47 {foreach from=$infos.directories key=dir item=bool} … … 64 57 {if $problemWithSomeDirectories} 65 58 <br> 66 59 <div class="error"> 67 To fix this error on your Linux system, try typing in the following command(s):60 {'Installation_SystemCheckWriteDirsHelp'|translate}: 68 61 {foreach from=$infos.directories key=dir item=bool} 69 62 <ul>{if !$bool} 70 63 <li>chmod a+w {$basePath}{$dir}</li> … … 77 70 <h1>Optional</h1> 78 71 <table class="infos"> 79 72 <tr> 80 <td class="label"> Memory limit</td>73 <td class="label">{'Installation_SystemCheckMemoryLimit'|translate}</td> 81 74 <td> 82 75 {$infos.memoryCurrent} 83 76 {if $infos.memory_ok}{$ok}{else}{$warning} 84 <br><i>On a high traffic website, the archiving process may require more memory than currently allowed. 85 <br>See the directive memory_limit in your php.ini file if necessary.</i>{/if} 77 <br><i>{'Installation_SystemCheckMemoryLimitHelp'|translate}</i>{/if} 86 78 </td> 87 79 </tr> 88 80 <tr> 89 <td class="label"> GD > 2.x (graphics)</td>81 <td class="label">{'Installation_SystemCheckGD'|translate}</td> 90 82 <td> 91 {if $infos.gd_ok}{$ok}{else}{$warning} <br><i> The sparklines (small graphs) will not work.</i>{/if}83 {if $infos.gd_ok}{$ok}{else}{$warning} <br><i>{'Installation_SystemCheckGDHelp'|translate}</i>{/if} 92 84 </td> 93 85 </tr> 94 86 <tr> 95 <td class="label"> set_time_limit() allowed</td>87 <td class="label">{'Installation_SystemCheckTimeLimit'|translate}</td> 96 88 <td>{if $infos.setTimeLimit_ok}{$ok}{else}{$warning} 97 <br><i>On a high traffic website, executing the archiving process may require more time than currently allowed. 98 <br>See the directive max_execution_time in your php.ini file if necessary.</i>{/if}</td> 89 <br><i>{'Installation_SystemCheckTimeLimitHelp'|translate}</i>{/if}</td> 99 90 </tr> 100 91 <tr> 101 <td class="label"> mail() allowed</td>92 <td class="label">{'Installation_SystemCheckMail'|translate}</td> 102 93 <td>{if $infos.mail_ok}{$ok}{else}{$warning}{/if}</td> 103 94 </tr> 104 95 </table> 105 96 <p><small> 106 97 Legend: 107 98 <br> 108 {$ok} Ok<br>109 {$error} Error to be fixed<br>110 {$warning} Warning: Piwik will work normally but some features may be missing<br>99 {$ok} {'General_Ok'|translate}<br> 100 {$error} {'General_Error'|translate}: {'Installation_SystemCheckError'|translate} <br> 101 {$warning} {'General_Warning'|translate}: {'Installation_SystemCheckWarning'|translate} <br> 111 102 </small></p> 112 103 113 104 {if !$showNextStep} 114 105 <p class="nextStep"> 115 <a href="{url}"> Refresh the page»</a>106 <a href="{url}">{'General_Refresh'|translate} »</a> 116 107 </p> 117 108 118 109 {/if} -
plugins/Installation/templates/databaseSetup.tpl
1 <h1> Mysql database setup</h1>1 <h1>{'Installation_MysqlSetup'|translate}</h1> 2 2 3 3 {if isset($errorMessage)} 4 4 <div class="error"> 5 5 <img src="themes/default/images/error_medium.png"> 6 Error while trying to connect to the Mysql database:6 {'Installation_MysqlErrorConnect'|translate}: 7 7 <br>{$errorMessage} 8 8 9 9 </div> … … 11 11 12 12 {if isset($form_data)} 13 13 {include file=default/genericForm.tpl} 14 {/if} 15 brakuje znaku koÅca linii na koÅcu pliku 14 {/if} -
plugins/Installation/templates/displayJavascriptCode.tpl
31 31 <img src="themes/default/images/success_medium.png"> 32 32 </span> 33 33 {/if} 34 <h1>Javascript tag</h1> 35 <p>To count all visitors, you must insert the javascript code on all of your pages.</p> 36 <p>Your pages do not have to be made with PHP, Piwik will work on all kinds of pages (whether it is HTML, ASP, Perl or any other languages).</p> 37 <p>Here is the code you have to insert: (copy and paste on all your pages) </P> 34 <h1>{'Installation_JsTag'|translate}</h1> 35 {'Installation_JsTagHelp'|translate} 38 36 <code> 39 37 {$javascriptTag} 40 38 </code> -
plugins/Installation/templates/finished.tpl
1 <h1> Congratulations</h1>1 <h1>{'Installation_Congratulations'|translate}</h1> 2 2 3 <p>Congratulations! Your Piwik installation is complete.</p> 3 {'Installation_ContratulationsHelp'|translate} 4 4 5 <p>Make sure your javascript code is entered on your pages,6 and wait for your first visitors!</p>7 5 8 9 6 <p class="nextStep"> 10 <a href="{url module='' action=''}"> Go to Piwik»</a>7 <a href="{url module='' action=''}">{'Installation_GoToPiwik'|translate} »</a> 11 8 </p> -
plugins/Installation/templates/firstWebsiteSetup.tpl
2 2 3 3 {if isset($displayGeneralSetupSuccess)} 4 4 <span id="toFade" class="success"> 5 General Setup configured with success5 {'Installation_GeneralSetupSuccess'|translate} 6 6 <img src="themes/default/images/success_medium.png"> 7 7 </span> 8 8 {/if} 9 9 10 <h1> Setup a website</h1>10 <h1>{'Installation_SetupWebsite'|translate}</h1> 11 11 12 12 13 13 14 14 {if isset($errorMessage)} 15 15 <div class="error"> 16 16 <img src="themes/default/images/error_medium.png"> 17 There was an error when adding the website:17 {'Installation_SetupWebsiteError'|translate}: 18 18 <br>- {$errorMessage} 19 19 20 20 </div> … … 23 23 24 24 {if isset($form_data)} 25 25 {include file=default/genericForm.tpl} 26 {/if} 27 brakuje znaku koÅca linii na koÅcu pliku 26 {/if} -
plugins/Installation/templates/welcome.tpl
1 <h1>Welcome!</h1> 2 <p>Piwik is an open source web analytics software that makes it easy to get the information you want from your visitors.</p> 1 <h1>{'Installation_Welcome'|translate}</h1> 3 2 4 <p>This process is split up into {$totalNumberOfSteps} easy steps and will take around 5 minutes.</p> 5 brakuje znaku koÅca linii na koÅcu pliku 3 {'Installation_WelcomeHelp'|translate:$totalNumberOfSteps} -
plugins/Installation/templates/generalSetup.tpl
1 <h1> General Setup</h1>1 <h1>{'Installation_GeneralSetup'|translate}</h1> 2 2 3 3 {if isset($form_data)} 4 4 {include file=default/genericForm.tpl} 5 {/if} 6 brakuje znaku koÅca linii na koÅcu pliku 5 {/if} -
plugins/Installation/templates/tablesCreation.tpl
1 <h1> Creating the tables</h1>1 <h1>{'Installation_Tables'|translate}</h1> 2 2 {if isset($someTablesInstalled)} 3 <div class="warning"> Some <span id="linkToggle">Piwik tables</span> are already installed in the DB3 <div class="warning">{'Installation_TablesWarning'|translate} 4 4 <img src="themes/default/images/warning_medium.png"> 5 5 </div> 6 <div id="toggle" style="display:none;color:#4F2410"><small><i> The following tables have been found in the database:6 <div id="toggle" style="display:none;color:#4F2410"><small><i>{'Installation_TablesFound'|translate}: 7 7 <br>{$tablesInstalled} </i></small></div> 8 8 9 <p>Either choose to reuse the existing database tables or select a clean install 10 to erase all existing data in the database.</p> 9 <p>{'Installation_TablesWarningHelp'|translate}</p> 11 10 12 <p class="nextStep"><a href="{url action=$nextModuleName}"> Reuse the existing tables»</a></p>13 <p class="nextStep" id="eraseAllTables"><a href="{url deleteTables=1}"> Delete the detected tables»</a></p>11 <p class="nextStep"><a href="{url action=$nextModuleName}">{'Installation_TablesReuse'|translate} »</a></p> 12 <p class="nextStep" id="eraseAllTables"><a href="{url deleteTables=1}">{'Installation_TablesDelete'|translate} »</a></p> 14 13 15 14 {/if} 16 15 17 16 {if isset($existingTablesDeleted)} 18 <div class="success"> Existing Piwik tables deleted with success17 <div class="success"> {'Installation_TablesDeletedSuccess'|translate} 19 18 <img src="themes/default/images/success_medium.png"></div> 20 19 {/if} 21 20 22 21 23 22 {if isset($tablesCreated)} 24 <div class="success"> Tables created with success!23 <div class="success"> {'Installation_TablesCreatedSuccess'|translate} 25 24 <img src="themes/default/images/success_medium.png"></div> 26 25 {/if} 27 26 … … 32 31 {literal} 33 32 <script> 34 33 $(document).ready( function(){ 35 var strConfirmEraseTables = "Are you sure you want to delete all the Piwik tables from this database?"; 34 {/literal} 35 var strConfirmEraseTables = "{'Installation_TablesDeleteConfirm'|translate} "; 36 {literal} 36 37 37 38 // toggle the display of the tables detected during the installation when clicking 38 39 // on the span "linkToggle" … … 64 65 ; 65 66 }); 66 67 </script> 67 {/literal} 68 brakuje znaku koÅca linii na koÅcu pliku 68 {/literal} -
plugins/Installation/templates/structure.tpl
1 1 2 2 <html> 3 3 <head> 4 <title>Piwik » Installation</title>4 <title>Piwik » {'Installation_Installation'|translate}</title> 5 5 </head> 6 6 <body> 7 7 … … 194 194 {include file="$subTemplateToLoad"} 195 195 {if $showNextStep} 196 196 <p class="nextStep"> 197 <a href="{url action=$nextModuleName}"> Next»</a>197 <a href="{url action=$nextModuleName}">{'General_Next'|translate} »</a> 198 198 </p> 199 199 {/if} 200 200 </div> 201 201 202 202 <div class="both"></div> 203 203 204 <h3> Installation status</h3>204 <h3>{'Installation_InstallationStatus'|translate}</h3> 205 205 206 206 <div id="installPercent"> 207 207 <p style="width: {$percentDone}%;"></p> 208 208 </div> 209 209 210 { $percentDone}% Done210 {'Installation_PercentDone'|translate:$percentDone} 211 211 </div> -
plugins/AdminHome/templates/index.tpl
21 21 </div> 22 22 23 23 <div id="footer" style="border-top:1px solid gray; margin-top:20px;padding-top:10px;"> 24 <a href='?module=Home'> Back to Piwik homepage</a>24 <a href='?module=Home'>{'General_BackToHomepage'|translate}</a> 25 25 26 26 </div> -
plugins/UserCountry/lang/en.php
1 1 <?php 2 2 $translations = array ( 3 3 4 'UserCountry_Country' => 'Country', 5 'UserCountry_Continent' => 'Continent', 6 'UserCountry_DistinctCountries' => 'distinct countries', 7 4 8 // Countries 5 9 'country_ac' => 'Ascension Islands', 6 10 'country_ad' => 'Andorra', -
plugins/UserCountry/index.tpl
2 2 3 3 <script type="text/javascript" src="plugins/Home/templates/sparkline.js"></script> 4 4 5 <h2> Country</h2>5 <h2>{'UserCountry_Country'|translate}</h2> 6 6 {$dataTableCountry} 7 7 8 <h2> Continent</h2>8 <h2>{'UserCountry_Continent'|translate}</h2> 9 9 {$dataTableContinent} 10 10 11 <p><img class="sparkline" src="{$urlSparklineCountries}" /> <span><strong>{$numberDistinctCountries} </strong> distinct countries</span></p>11 <p><img class="sparkline" src="{$urlSparklineCountries}" /> <span><strong>{$numberDistinctCountries} </strong> {'UserCountry_DistinctCountries'|translate} </span></p> 12 12 13 {postEvent name="template_footerUserCountry"} 14 brakuje znaku koÅca linii na koÅcu pliku 13 {postEvent name="template_footerUserCountry"} -
plugins/Login/templates/login.tpl
27 27 {if $form_data.errors} 28 28 <div id="login_error"> 29 29 {foreach from=$form_data.errors item=data} 30 <strong> ERROR</strong>: {$data}<br />30 <strong>{'General_Error'|translate}</strong>: {$data}<br /> 31 31 {/foreach} 32 32 </div> 33 33 {/if} 34 34 35 35 {if $AccessErrorString} 36 <div id="login_error"><strong> ERROR</strong>: {$AccessErrorString}<br /></div>36 <div id="login_error"><strong>{'General_Error'|translate}</strong>: {$AccessErrorString}<br /></div> 37 37 {/if} 38 38 39 39 <form {$form_data.attributes}> … … 57 57 58 58 {* 59 59 <p id="nav"> 60 <a href="" title="Password Lost and Found"> Lost your password?</a>60 <a href="" title="Password Lost and Found">{'Login_LostYourPassword'|translate}</a> 61 61 </p> 62 62 *} 63 63 </div> -
plugins/Login/Login.php
27 27 'author' => 'Piwik', 28 28 'homepage' => 'http://piwik.org/', 29 29 'version' => '0.1', 30 'translationAvailable' => false,30 'translationAvailable' => true, 31 31 ); 32 32 33 33 return $info; -
plugins/API/API.php
20 20 'author' => 'Piwik', 21 21 'homepage' => 'http://piwik.org/', 22 22 'version' => '0.1', 23 'translationAvailable' => false,23 'translationAvailable' => true, 24 24 ); 25 25 } 26 26 } -
plugins/API/Controller.php
55 55 function listAllAPI() 56 56 { 57 57 $token_auth = Zend_Registry::get('auth')->getTokenAuth(); 58 echo "<style>body{ font-family:georgia,arial; font-size:0.95em;} </style>"; 59 echo "<h1>API quick documentation</h1>"; 60 echo "<p>If you don't have data for today you can first <a href='misc/generateVisits.php' target=_blank>generate some data</a> using the Visits Generator script.</p>"; 61 echo "<p>You can try the different formats available for every method. It is very easy to extract any data you want from piwik!</p>"; 62 echo "<p>If you want to <b>request the data without being logged in to Piwik</b> you need to add the parameter <code><u>&token_auth=$token_auth</u></code> to the API calls URLs that require authentication.</p>"; 63 echo "<p><b>For more information have a look at the <a href='http://dev.piwik.org/trac/wiki/API'>official API Documentation</a> or the <a href='http://dev.piwik.org/trac/wiki/API/Reference'>API Reference</a>.</b></P>"; 58 echo "<style>body{ font-family:georgia,arial; font-size:0.95em;} </style>"; 59 echo sprintf(Piwik_Translate('API_QuickDocumentation'),$token_auth); 60 64 61 65 62 $loaded = $this->init(); 66 echo "<p><i> Loaded successfully $loaded APIs</i></p>\n";63 echo "<p><i> ".sprintf(Piwik_Translate('API_LoadedAPIs'),$loaded)."</i></p>\n"; 67 64 68 65 echo Piwik_API_Proxy::getInstance()->getAllInterfaceString(); 69 echo "<p><a href='?module=Home'> Back to Piwik homepage</a></p>";66 echo "<p><a href='?module=Home'>".Piwik_Translate('General_BackToHomepage')."</a></p>"; 70 67 } 71 68 72 69 } -
plugins/Referers/lang/en.php
1 1 <?php 2 2 $translations = array( 3 'Referers_DirectEntry' => 'Direct Entry',4 3 'Referers_SearchEngines' => 'Search Engines', 5 'Referers_Websites' => 'Websites', 6 'Referers_Partners' => 'Partners', 7 'Referers_Newsletters' => 'Newsletters', 8 'Referers_Campaigns' => 'Campaigns', 4 5 'Referers_Keywords' => 'Keywords', 6 7 'Referers_Evolution' => 'Evolution over the period', 8 9 'Referers_Type' => 'Referer Type', 10 'Referers_TypeDirectEntries' => 'direct entries', 11 'Referers_TypeSearchEngines' => 'from search engines', 12 'Referers_TypePartners' => 'from partners', 13 'Referers_TypeWebsites' => 'from websites', 14 'Referers_TypeNewsletters' => 'from newsletters', 15 'Referers_TypeCampaigns' => 'from campaigns', 16 17 'Referers_Other' => 'Other', 18 'Referers_OtherDistinctSearchEngines' => 'distinct search engines', 19 'Referers_OtherDistinctKeywords' => 'distinct keywords', 20 'Referers_OtherDistinctWebsites' => 'distinct websites (using <strong>%s</strong> distinct urls)', 21 'Referers_OtherDistinctPartners' => 'distinct partners (using <strong>%s</strong> distinct urls)', 22 'Referers_OtherDistinctCampaigns' => 'distinct campaigns', 23 24 'Referers_TagCloud' => 'Tag cloud output', 25 9 26 ); 10 27 -
plugins/Referers/searchEngines_Keywords.tpl
1 1 <div id='leftcolumn'> 2 <h2> Search engines</h2>2 <h2>{'Referers_SearchEngines'|translate}</h2> 3 3 {$searchEngines} 4 4 </div> 5 5 6 6 <div id='rightcolumn'> 7 <h2> Keywords</h2>7 <h2>{'Referers_Keywords'|translate}</h2> 8 8 {$keywords} 9 9 </div> -
plugins/Referers/index.tpl
1 1 <script type="text/javascript" src="plugins/Home/templates/sparkline.js"></script> 2 2 3 3 <a name="evolutionGraph" graphId="{$nameGraphEvolutionReferers}"></a> 4 <h2> Evolution over the period</h2>4 <h2>{'Referers_Evolution'|translate}</h2> 5 5 {$graphEvolutionReferers} 6 6 7 <h2> Referer Type</h2>7 <h2>{'Referers_Type'|translate}</h2> 8 8 <table> 9 9 <tr><td> 10 <p><img class="sparkline" src="{$urlSparklineDirectEntry}" /> <span><strong>{$visitorsFromDirectEntry} </strong> direct entries</span></p>11 <p><img class="sparkline" src="{$urlSparklineSearchEngines}" /> <span><strong>{$visitorsFromSearchEngines} </strong> from search engines</span></p>12 <p><img class="sparkline" src="{$urlSparklinePartners}" /> <span><strong>{$visitorsFromPartners} </strong> from partners</span></p>10 <p><img class="sparkline" src="{$urlSparklineDirectEntry}" /> <span><strong>{$visitorsFromDirectEntry} </strong> {'Referers_TypeDirectEntries'|translate}</span></p> 11 <p><img class="sparkline" src="{$urlSparklineSearchEngines}" /> <span><strong>{$visitorsFromSearchEngines} </strong> {'Referers_TypeSearchEngines'|translate}</span></p> 12 <p><img class="sparkline" src="{$urlSparklinePartners}" /> <span><strong>{$visitorsFromPartners} </strong> {'Referers_TypePartners'|translate}</span></p> 13 13 </td><td> 14 <p><img class="sparkline" src="{$urlSparklineWebsites}" /> <span><strong>{$visitorsFromWebsites} </strong> from websites</span></p>15 <p><img class="sparkline" src="{$urlSparklineNewsletters}" /> <span><strong>{$visitorsFromNewsletters} </strong> from newsletters</span></p>16 <p><img class="sparkline" src="{$urlSparklineCampaigns}" /> <span><strong>{$visitorsFromCampaigns} </strong> from campaigns</span></p>14 <p><img class="sparkline" src="{$urlSparklineWebsites}" /> <span><strong>{$visitorsFromWebsites} </strong> {'Referers_TypeWebsites'|translate}</span></p> 15 <p><img class="sparkline" src="{$urlSparklineNewsletters}" /> <span><strong>{$visitorsFromNewsletters} </strong> {'Referers_TypeNewsletters'|translate}</span></p> 16 <p><img class="sparkline" src="{$urlSparklineCampaigns}" /> <span><strong>{$visitorsFromCampaigns} </strong> {'Referers_TypeCampaigns'|translate}</span></p> 17 17 </td></tr> 18 18 </table> 19 19 20 <h2> Other</h2>20 <h2>{'Referers_Other'|translate}</h2> 21 21 <table> 22 22 <tr><td> 23 <p><img class="sparkline" src="{$urlSparklineDistinctSearchEngines}" /> <span><strong>{$numberDistinctSearchEngines} </strong> distinct search engines</span></p>24 <p><img class="sparkline" src="{$urlSparklineDistinctKeywords}" /> <span><strong>{$numberDistinctKeywords} </strong> distinct keywords</span></p>23 <p><img class="sparkline" src="{$urlSparklineDistinctSearchEngines}" /> <span><strong>{$numberDistinctSearchEngines} </strong> {'Referers_OtherDistinctSearchEngines'|translate}</span></p> 24 <p><img class="sparkline" src="{$urlSparklineDistinctKeywords}" /> <span><strong>{$numberDistinctKeywords} </strong> {'Referers_OtherDistinctKeywords'|translate}</span></p> 25 25 </td><td> 26 <p><img class="sparkline" src="{$urlSparklineDistinctWebsites}" /> <span><strong>{$numberDistinctWebsites} </strong> distinct websites (using <strong>{$numberDistinctWebsitesUrls}</strong> distinct urls)</span></p>27 <p><img class="sparkline" src="{$urlSparklineDistinctPartners}" /> <span><strong>{$numberDistinctPartners} </strong> distinct partners (using <strong>{$numberDistinctPartnersUrls}</strong> distinct urls)</span></p>28 <p><img class="sparkline" src="{$urlSparklineDistinctCampaigns}" /> <span><strong>{$numberDistinctCampaigns} </strong> distinct campaigns</span></p>26 <p><img class="sparkline" src="{$urlSparklineDistinctWebsites}" /> <span><strong>{$numberDistinctWebsites} </strong> {'Referers_OtherDistinctWebsites'|translate:$numberDistinctWebsitesUrls}</span></p> 27 <p><img class="sparkline" src="{$urlSparklineDistinctPartners}" /> <span><strong>{$numberDistinctPartners} </strong> {'Referers_OtherDistinctPartners'|translate:$numberDistinctPartnersUrls}</span></p> 28 <p><img class="sparkline" src="{$urlSparklineDistinctCampaigns}" /> <span><strong>{$numberDistinctCampaigns} </strong> {'Referers_OtherDistinctCampaigns'|translate}</span></p> 29 29 </td></tr> 30 30 </table> 31 31 32 <p>Tag cloud output</p> 33 {$dataTableRefererType} 34 brakuje znaku koÅca linii na koÅcu pliku 32 <p>{'Referers_TagCloud'|translate}</p> 33 {$dataTableRefererType} -
plugins/VisitTime/VisitTime.php
29 29 'author' => 'Piwik', 30 30 'homepage' => 'http://piwik.org/', 31 31 'version' => '0.1', 32 'translationAvailable' => true 32 33 ); 33 34 34 35 return $info; -
plugins/VisitTime/index.tpl
1 1 <div id='leftcolumn'> 2 <h2> Visit per local time</h2>2 <h2>{'VisitTime_LocalTime'|translate}</h2> 3 3 {$dataTableVisitInformationPerLocalTime} 4 4 </div> 5 5 6 6 <div id='rightcolumn'> 7 <h2> Visit per server time</h2>7 <h2>{'VisitTime_ServerTime'|translate}</h2> 8 8 {$dataTableVisitInformationPerServerTime} 9 </div> 10 brakuje znaku koÅca linii na koÅcu pliku 9 </div> -
plugins/VisitorInterest/VisitorInterest.php
49 49 'author' => 'Piwik', 50 50 'homepage' => 'http://piwik.org/', 51 51 'version' => '0.1', 52 'translationAvailable' => true 52 53 ); 53 54 54 55 return $info; -
plugins/VisitorInterest/index.tpl
1 1 2 <h2> Visits per visit duration</h2>2 <h2>{'VisitorInterest_VisitsPerDuration'|translate}</h2> 3 3 {$dataTableNumberOfVisitsPerVisitDuration} 4 <h2>Visits per number of pages</h2> 5 {$dataTableNumberOfVisitsPerPage} 6 brakuje znaku koÅca linii na koÅcu pliku 4 <h2>{'VisitorInterest_VisitsPerNbOfPages'|translate}</h2> 5 {$dataTableNumberOfVisitsPerPage} -
lang/en.php
2 2 $translations = array( 3 3 'General_Unknown' => 'Unknown', 4 4 'General_Required' => '%s required', 5 6 'Login_LoginPasswordNotCorrect' => 'Username & Password not correct', 7 'Login_Login' => 'Username', 8 'Login_Password' => 'Password', 9 'Login_LogIn' => 'Log in', 10 11 ); 12 brakuje znaku koÅca linii na koÅcu pliku 5 'General_Error' => 'Error', 6 'General_Warning' => 'Warning', 7 'General_BackToHomepage' => 'Back to Piwik homepage', 8 'General_Yes' => 'Yes', 9 'General_No' => 'No', 10 'General_Delete' => 'Delete', 11 'General_Edit' => 'Edit', 12 'General_Ok' => 'Ok', 13 'General_Close' => 'Close', 14 'General_Logout' => 'Logout', 15 'General_Done' => 'Done', 16 'General_LoadingData' => 'Loading data...', 17 'General_ErrorRequest' => 'Oops… problem during the request, please try again.', 18 'General_Next' => 'Next', 19 'General_Previous' => 'Previous', 20 'General_Table' => 'Table', 21 'General_Piechart' => 'Piechart', 22 'General_TagCloud' => 'Tag Cloud', 23 'General_VBarGraph' => 'Vertial bar graph', 24 'General_GraphData' => 'Graph data', 25 'General_Refresh' => 'Refresh the page', 26 ); -
lang/fr.php
2 2 $translations = array( 3 3 'General_Unknown' => 'Inconnu', 4 4 'General_Required' => '%s requis', 5 6 'Login_LoginPasswordNotCorrect' => 'Utilisateur & Mot de passe not correct',7 'Login_Login' => 'Utilisateur',8 'Login_Password' => 'Mot de passe',9 'Login_LogIn' => 'Log in',10 11 5 );
